blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
332
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
7
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
557 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
77.7k
fork_events_count
int64
0
48k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
82 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
5.41M
extension
stringclasses
11 values
content
stringlengths
7
5.41M
authors
listlengths
1
1
author
stringlengths
0
161
4b184361d624f87e2bad2a195cfc96ce424fa2d3
69c299731b5b7db45972460ae51a7cb5579804f8
/src/filter/Admin.java
4180f418b4e4498c3aecc4bccca5a9b2eb7cbda2
[]
no_license
yaogenum/book
9d60d484a1b388293bddb3de29d76833e8593f28
3a7d1d786c1feb4024cddbb2a9ceb7ff93167e45
refs/heads/master
2021-01-16T21:16:32.395081
2015-02-05T11:11:21
2015-02-05T11:11:21
21,815,973
1
2
null
null
null
null
GB18030
Java
false
false
1,579
java
package filter; import hibernate.AdminDAO; import hibernate.BaseHibernateDAO; import hibernate.Users; import hibernate.UsersDAO; import javax.servlet.Filter; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.FilterChain; import java.io.IOException; import java.util.Iterator; import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; import javax.servlet.http.HttpServletResponse; import org.hibernate.Session; import org.hibernate.Transaction; //设置验证用户的过滤器 public class Admin implements Filter { public void init(FilterConfig config) throws ServletException{ } public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException{ String Admin_name=(String) ((HttpServletRequest) request).getSession().getAttribute("admin_name"); boolean bool=false; Admin admin=new Admin(); AdminDAO dao=new AdminDAO(); Session session=dao.getSession(); Transaction trans=session.beginTransaction(); Iterator iter =dao.findByAdminName(Admin_name).iterator(); while(iter.hasNext()){ bool=true; break; } if(bool==true){ chain.doFilter(request,response) ; } else{ ((HttpServletResponse) response).sendRedirect("/book/errors/errors2.jsp"); } trans.commit(); session.close(); } public void destroy(){ } }
[ "yaogemail@gmail.com" ]
yaogemail@gmail.com
ccdc5d787485ce51fa0f1474f229aa69dc766c92
0b295086c35bd499005d58167441707101013715
/SOS/3_Uebung/somtoolbox_incl_src/src/core/at/tuwien/ifs/somtoolbox/apps/viewer/ItemSelectionListener.java
5d31a3abebea6f4d54ab2ee9a03edfeeb44c523a
[]
no_license
JAMes0x5F0x46/ws09
612c4876dc7335a18a6f4db23246b7a1a1febd1a
6555595ffdea2629bb87b6d7627ac8a071e202e1
refs/heads/master
2022-02-25T21:01:12.697332
2010-04-29T17:53:01
2010-04-29T17:53:01
null
0
0
null
null
null
null
UTF-8
Java
false
false
263
java
package at.tuwien.ifs.somtoolbox.apps.viewer; /** * * @author Christoph Becker * @version $Id: ItemSelectionListener.java 2874 2009-12-11 16:03:27Z frank $ * */ public interface ItemSelectionListener { public void itemSelected(Object[] item); }
[ "christian.gru@10957a6e-c882-11de-8672-e51b9359e43c" ]
christian.gru@10957a6e-c882-11de-8672-e51b9359e43c
d64b6f4178087ca95fb9e052b2b2f7c7c605ae66
d11559ae7511d46dac62c77ea011af389f61bf56
/ge/mziuri/eventmanager/networking/Server.java
09e75860decd676c4b3ec581c6dc7e772bdea835
[]
no_license
mziuri2/EventManager
951879deaec302268764352fd9bded9dab64d838
c93a29ea9b1143ae2e96a0102bf2c0d50566bf7e
refs/heads/master
2020-08-03T04:21:59.548358
2017-05-22T21:29:06
2017-05-22T21:29:06
73,553,656
0
0
null
null
null
null
UTF-8
Java
false
false
73
java
package ge.mziuri.EventManager.networking; public class Server { }
[ "user" ]
user
5c01b67cf1704139237d91f8e5251e719432d9f6
840d3b0052743882665b5a450104fdd9f3014a2f
/JAVA/threads/src/com/ustglobal/threads/properties/PriorityThread.java
f718035b1989efd70bb1a6b6d5cc93d50896e88b
[]
no_license
apoorva-1997/USTGlobal-16Sep19-Apoorva-N
8c0fcf96648df332762d6ca42174fda9f007b039
b3a1d7e144714df7eb08c024b009ce1ebdcc1c03
refs/heads/master
2023-01-23T16:14:51.603522
2019-12-21T13:21:18
2019-12-21T13:21:18
215,540,109
1
0
null
2023-01-07T17:57:17
2019-10-16T12:14:44
CSS
UTF-8
Java
false
false
642
java
package com.ustglobal.threads.properties; public class PriorityThread extends Thread{ public static void main(String[] args) { System.out.println("main started"); int p = Thread.currentThread().getPriority(); System.out.println("main thread priority is : " +p); Thread.currentThread().setPriority(6); System.out.println("set priority "+ Thread.currentThread().getPriority()); PriorityThread t = new PriorityThread(); int q = t.getPriority(); System.out.println("my thread priority : "+q); t.setPriority(16); System.out.println("preotity thread priority " +t.getPriority()); System.out.println("main ended"); } }
[ "apoorvan84@gmail.com" ]
apoorvan84@gmail.com
32bc4d2f40ff0a1835a26544fa2bdf20a210ce4b
d0d8f1fe79866084489947c8fcf32428adf559a4
/jpa.test.db.el.test/src/jpa/test/db/el/test/package-info.java
d8f92f24a725db7a5cff1c09c968c1cf9c060646
[]
no_license
akabanov57/apache-aries-jpa
56eb0581bc27a28cf8cfd3a9fa058b85d3f5eab8
848450eedca7bac8222eca5b34e074727efea1ed
refs/heads/master
2021-04-17T12:48:14.641040
2020-03-24T15:59:16
2020-03-24T15:59:16
249,446,690
0
0
null
null
null
null
UTF-8
Java
false
false
28
java
package jpa.test.db.el.test;
[ "akabanov57@gmail.com" ]
akabanov57@gmail.com
9d6e293751de19d9bdaecc6efeec4150a436115c
0417f4f870f4716a666b01d1d3818d8256c64c8f
/service/service_order/src/main/java/com/atguigu/yygh/order/api/OrderApiController.java
8743f3a6bada1c4ee2513ae7788dbddde8694bda
[]
no_license
c913964776/Project
0987235cb1829a8815a2d1096bb304b8bc9b3680
f61f6d0a4b6c4b05aeea36db0321b9c9fa75687a
refs/heads/master
2023-04-11T04:30:03.115553
2021-04-22T09:27:46
2021-04-22T09:27:46
360,456,185
0
0
null
null
null
null
UTF-8
Java
false
false
2,843
java
package com.atguigu.yygh.order.api; import com.atguigu.yygh.common.result.Result; import com.atguigu.yygh.common.utils.AuthContextHolder; import com.atguigu.yygh.enums.OrderStatusEnum; import com.atguigu.yygh.model.order.OrderInfo; import com.atguigu.yygh.model.user.UserInfo; import com.atguigu.yygh.order.service.OrderService; import com.atguigu.yygh.vo.order.OrderCountQueryVo; import com.atguigu.yygh.vo.order.OrderQueryVo; import com.atguigu.yygh.vo.user.UserInfoQueryVo; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import javax.servlet.http.HttpServletRequest; import java.util.Map; @RestController @RequestMapping("/api/order/orderInfo") public class OrderApiController { @Autowired private OrderService orderService; //生成挂号订单 排班id 病人id @PostMapping("auth/submitOrder/{scheduleId}/{patientId}") public Result savaOrders(@PathVariable String scheduleId, @PathVariable Long patientId) { Long orderId = orderService.saveOrder(scheduleId,patientId); return Result.ok(orderId); } //根据订单id查询订单详情 @GetMapping("auth/getOrders/{orderId}") public Result getOrders(@PathVariable String orderId) { OrderInfo orderInfo = orderService.getOrder(orderId); return Result.ok(orderInfo); } //订单列表(条件查询带分页) @GetMapping("auth/{page}/{limit}") public Result list(@PathVariable Long page, @PathVariable Long limit, OrderQueryVo orderQueryVo, HttpServletRequest request) { //设置当前用户id orderQueryVo.setUserId(AuthContextHolder.getUserId(request)); Page<OrderInfo> pageParam = new Page<>(page,limit); IPage<OrderInfo> pageModel = orderService.selectPage(pageParam,orderQueryVo); return Result.ok(pageModel); } @ApiOperation(value = "获取订单状态") @GetMapping("auth/getStatusList") public Result getStatusList() { return Result.ok(OrderStatusEnum.getStatusList()); } //取消预约 @GetMapping("auth/cancelOrder/{orderId}") public Result cancelOrder(@PathVariable Long orderId) { Boolean isOrder = orderService.cancelOrder(orderId); return Result.ok(isOrder); } @ApiOperation(value = "获取订单统计数据") @PostMapping("inner/getCountMap") public Map<String, Object> getCountMap(@RequestBody OrderCountQueryVo orderCountQueryVo) { return orderService.getCountMap(orderCountQueryVo); } }
[ "913964776@qq.com" ]
913964776@qq.com
e4cb8a3649b92e6cfb9feac4d391e415c70d7b87
ca803fdbea6aae223ee33fd730d6b1991045abc5
/Game/src/game/environment/Farm/Arable/Greenhouse/Greenhouse.java
10cf76682ae06a770ec50a4fb217ff37f3a4279d
[]
no_license
parsaalian/ap-project
48f55fd9fd2b2ff38526b87905966a13540f7cbb
b68d964e7f629636e545e3f4d8bc71e1cba7ac73
refs/heads/main
2023-01-03T04:12:18.532710
2020-10-27T20:43:36
2020-10-27T20:43:36
307,821,755
0
0
null
null
null
null
UTF-8
Java
false
false
12,898
java
package game.environment.Farm.Arable.Greenhouse; import game.environment.Farm.Arable.*; import game.environment.Farm.Arable.Field.Empty_Field.Empty_Field; import game.environment.Farm.Arable.Garden.Garden; import game.Game; import game.objectable.Goods.Stone.Iron.Iron; import game.objectable.Goods.Wood.Old_Lumber.Old_Lumber; import java.util.ArrayList; import java.util.Arrays; import java.util.Scanner; public class Greenhouse extends Arable { private boolean weatherMachine = false; private boolean out = false; public String Weather; public int dropped = 0; public ArrayList<String> placesToGo = new ArrayList<>(Arrays.asList("Farm")); public ArrayList<Arable> fields = new ArrayList<>(Arrays.asList(new Empty_Field(), new Empty_Field(), new Empty_Field(), new Empty_Field(), new Empty_Field(), new Empty_Field())); private String greenMenu() { StringBuilder res = new StringBuilder(); int i = 1; res.append("Greenhouse Fields:\n"); for(Arable field : fields) { res.append(i++ + ". " + field.type + " section\n"); } return res.toString(); } public void inspectGreenhouse() { while (true) { Scanner scanner = new Scanner(System.in); if (!weatherMachine) { System.out.println("Greenhouse:\n1. Repair Greenhouse"); while (true) { String line = scanner.nextLine(); if (line.equals("GoTo Farm")) { Game.Parsa.goTo("Farm"); out = true; break; } else if (line.equals("WhereAmI")) { System.out.println("Greenhouse:\n1. Repair Greenhouse"); } else { int j; try { j = Integer.parseInt(line); } catch (Exception e) { System.out.println("Invalid Command!"); continue; } if (j != 1) { System.out.println("Out of range."); continue; } System.out.println("Do you want to repair greenhouse for 5000 Gil, 20 Old Lumbers and 20 Irons. Is this OK? (Y/N)"); while (true) { String yn = scanner.nextLine(); if (yn.equals("Y")) { if (Game.Parsa.money >= 5000) { if (Game.Parsa.backpack.frequency(new Iron()) >= 20) { if (Game.Parsa.backpack.frequency(new Old_Lumber()) >= 20) { Game.Parsa.money -= 5000; for (int i = 0; i < 20; i++) { Game.Parsa.backpack.takeItem(new Iron()); Game.Parsa.backpack.takeItem(new Old_Lumber()); } System.out.println("You have repaired weather machine."); weatherMachine = true; break; } else { System.out.println("You don't have enough Old Lumber"); } } else { System.out.println("You don't have enough Iron."); } } else { System.out.println("You don't have enough money."); } } else if (yn.equals("Back") || yn.equals("N")) { break; } else if (yn.equals("WhereAmI")) { System.out.println("Do you want to repair greenhouse for 5000 Gil, 20 Old Lumbers and 20 Irons. Is this OK? (Y/N)"); } } if (weatherMachine) { break; } } } if(out) { out = false; break; } } else { System.out.println("Greenhouse:\n1. Inspect Weather Machine\n2. Inspect Fields"); while (true) { String wf = scanner.nextLine(); if(wf.equals("GoTo Farm")) { Game.Parsa.goTo("Farm"); out = true; break; } else if(wf.equals("WhereAmI")) { System.out.println("Greenhouse:\n1. Inspect Weather Machine\n2. Inspect Fields"); } else if(wf.equals("1")) { while(true) { System.out.println("Choose Choose the Greenhouse’s weather:\n1. Spring weather\n2. Summer weather\n3. Autumn weather\n4. Tropical weather"); String w = scanner.nextLine(); if(w.equals("Back")) { break; } else if(w.equals("WhereAmI")) { System.out.println("Choose Choose the Greenhouse’s weather:\n1. Spring weather\n2. Summer weather\n3. Autumn weather\n4. Tropical weather"); } else if(w.equals("1")) { Weather = "Spring"; System.out.println("The greenhouse weather is " + Weather + " now"); break; } else if(w.equals("2")) { Weather = "Summer"; System.out.println("The greenhouse weather is " + Weather + " now"); break; } else if(w.equals("3")) { Weather = "Autumn"; System.out.println("The greenhouse weather is " + Weather + " now"); break; } else if(w.equals("4")) { Weather = "Tropical"; System.out.println("The greenhouse weather is " + Weather + " now"); break; } else { System.out.println("Invalid Command!"); } } } else if(wf.equals("2")) { greenMenu(); while (true) { String f = scanner.nextLine(); if(f.equals("Back")) { break; } else if(f.equals("WhereAmI")) { greenMenu(); } else { int j = 0; try { j = Integer.parseInt(f); } catch (Exception e) { System.out.println("Invalid Command!"); } if(j < 1 || j > fields.size()) { System.out.println("Out of range."); continue; } Arable field = fields.get(j - 1); if(field.type.equals("Apple") || field.type.equals("Lemon") || field.type.equals("Orange") || field.type.equals("Peach") || field.type.equals("Pear") || field.type.equals("Pomegranate") || field.type.equals("Pineapple")) { field.inspectGarden(); while (true) { String inGarden = scanner.nextLine(); if (inGarden.equals("Back")) { break; } else if (inGarden.equals("WhereAmI")) { field.inspectGarden(); } else if (inGarden.equals("1")) { field.status(); } else if (inGarden.equals("2")) { field.water(); } else if (inGarden.equals("3")) { ((Garden) field).collect(); } } } else { field.inspectField(); while (true) { String inField = scanner.nextLine(); if (!field.type.equals("Empty")) { if (inField.equals("Back")) { break; } else if (inField.equals("WhereAmI")) { field.inspectField(); } else if (inField.equals("1")) { field.status(); } else if (inField.equals("2")) { field.water(); } else if (inField.equals("4")) { field.destroy(); System.out.println("Field has been destroyed."); } else if (inField.equals("3")) { field.harvest(); } } else { if (inField.equals("Back")) { break; } else if (inField.equals("WhereAmI")) { field.inspectField(); } else if (inField.equals("1")) { field.status(); } else if (inField.equals("2")) { field.plow(); } else if (inField.equals("3")) { field.water(); } else if (inField.equals("4")) { if(field.plantInGreenhouse()) { break; } } } } } } } } else { System.out.println("Invalid Command!"); } } if(out) { out = false; break; } } } } }
[ "parsaalian0@gmail.com" ]
parsaalian0@gmail.com
d1d0c371f6b0ff5f7dfac7ec1db8945bfb64f63d
bea28a348abc5a791adc92b45c4faf17c8653275
/JSF2SpringjQueryHibernate/src/main/java/jsf2spring/pojos/Success.java
c112fddbb70da097d3d06965acef1ba8fb87a3fb
[]
no_license
Andrew0117/JSF
63b58baa0347853f112d2e0fd094cbc1e56e17a5
8a9d5ea5bfc5978148b3b0b97dc18074944f35c3
refs/heads/main
2023-03-16T02:25:26.256841
2023-02-07T20:22:02
2023-02-07T20:22:02
166,979,652
0
0
null
null
null
null
UTF-8
Java
false
false
387
java
package jsf2spring.pojos; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonRootName; /** * @author Andrey */ @JsonRootName(value = "success") public class Success { @JsonProperty(value = "s") private String s; public String getS() { return s; } public void setS(String s) { this.s = s; } }
[ "andrey.gm.j@gmail.com" ]
andrey.gm.j@gmail.com
656a42652f95f472ff03fefe3ff255f7ccbef4b6
78811ea9217a638e78502aa9dc1f5dab6ef8bf47
/OTM/app/src/main/java/com/nuntteuniachim/otm/Menu/MyItem.java
1d37b577aed78bf28a7fe25edf2097e00dad8ef0
[]
no_license
jnh0465/Android_OTM-Project
6edaf55c22429f2c5b561ce8ba329347af6bd3b8
e1c68c282af6f744801504015df0fc383e27431f
refs/heads/master
2020-04-21T02:20:46.936998
2019-02-27T05:22:39
2019-02-27T05:22:39
169,251,424
0
0
null
null
null
null
UTF-8
Java
false
false
608
java
package com.nuntteuniachim.otm.Menu; import android.graphics.drawable.Drawable; public class MyItem { private Drawable icon; private String name; private String contents; public Drawable getIcon() { return icon; } public void setIcon(Drawable icon) { this.icon = icon; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getContents() { return contents; } public void setContents(String contents) { this.contents = contents; } }
[ "jnh0465@naver.com" ]
jnh0465@naver.com
f08e9307cffda97289e02c86ae9fdbc8114c7024
12a42054b156383ebbe3ccc5de4150633c66da5d
/problems/cracking-the-safe/solution.java
6b5b9089f01d866637f36668fcc9527f87ba3526
[]
no_license
cfoust/leetcode-problems
93c33029f74f32c64caf8294292226d199d6e272
f5ad7866906d0a2cf2250e5972ce910bf35ce526
refs/heads/master
2020-03-16T23:05:45.123781
2018-05-11T16:41:09
2018-05-11T16:41:09
133,064,772
1
1
null
null
null
null
UTF-8
Java
false
false
81
java
class Solution { public String crackSafe(int n, int k) { } }
[ "cfoust@sqweebloid.com" ]
cfoust@sqweebloid.com
7b0a66b2ca35cae08986a07e905d6a04aad73e09
4ccb7a0df5e04097f7b5d8c00740b1f0d78d174b
/src/main/java/com/example/demo/adder/entity/District.java
a6f36756b55ab1fb43186eb15cd875a7c696462c
[]
no_license
caidl95/Reservation
dfc5fe3d3c7001f2a7cc0bfe6bcb114cf29fc7b1
e92e40a6ffcf025cca292c011013772c35950f44
refs/heads/master
2022-06-29T00:42:03.195957
2019-08-10T08:42:10
2019-08-10T08:42:10
201,603,550
0
0
null
2022-06-17T02:23:37
2019-08-10T08:40:27
TSQL
UTF-8
Java
false
false
889
java
package com.example.demo.adder.entity; import java.io.Serializable; /** * 省/市/区数据的实体类 */ public class District implements Serializable { private static final long serialVersionUID = -2777570570541589252L; private Integer id; private String parent; private String code; private String name; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getParent() { return parent; } public void setParent(String parent) { this.parent = parent; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public String toString() { return "District [id=" + id + ", parent=" + parent + ", code=" + code + ", name=" + name + "]"; } }
[ "49805902+caidl95@users.noreply.github.com" ]
49805902+caidl95@users.noreply.github.com
86d1ff8605662b12b469674e8dbf4174b88e7ccd
a384595d3701ae954553fef1b53337275d3de654
/business/Product.java
759d5576ced5f9c9cc6ecedfc3cc16e39a38b14b
[]
no_license
DNADNL/ProjetGenieLogiciel
e8c8c1375e3254e89a79daf59aabd742ffbf8a11
ea207440fe982287869f805d4666440c466b79ad
refs/heads/master
2021-01-10T17:57:51.441744
2016-03-31T15:25:04
2016-03-31T15:25:04
50,852,362
0
2
null
null
null
null
UTF-8
Java
false
false
231
java
package business; public class Product { public String pdt_name; public String briefDesc; public String longDesc; public Integer quantity; public Integer price; public String user_nickname; public Integer id_category; }
[ "khujin12@gmail.com" ]
khujin12@gmail.com
3934565e743bba150d52f3ca783c092dabd2ede6
50e2f1968c4212a43fd78496c31623c144c1d0c0
/app/src/main/java/com/example/edgar_rangel/comarduinorc/MVP_Connections/Presenter.java
d8645055b6f17b3a365ce9611db4e6770ecfce06
[]
no_license
WeirdEddyLog95/ComunicacionAndruino
b1e6e7846d57629154538800e1c2f8727565b33c
60f5842dc89d0541921214418b86a35c97fdbbb9
refs/heads/master
2021-08-22T22:13:38.253119
2017-12-01T12:20:17
2017-12-01T12:20:17
112,736,615
0
0
null
null
null
null
UTF-8
Java
false
false
251
java
package com.example.edgar_rangel.comarduinorc.MVP_Connections; /** * Created by Edgar_Rangel on 11/26/2017. */ public interface Presenter { //Se establece los metodos principales void setView(View view); String cal(final String str); }
[ "wickedscoutftw95@hotmail.com" ]
wickedscoutftw95@hotmail.com
50050cc59171835a79806ca17a029e42840c8f16
7280ffbd493bcd3eb2c81d167b5cf912af351113
/org.cfeclipse.cfml.frameworks.fusebox/src/org/cfeclipse/frameworks/fusebox/actions/NewFileAction.java
28e663ac866e10c195a5d24b0afb2d9f7e14626d
[]
no_license
cfeclipse/cfeclipse
6cb02d34c1fd42fcfec588b13d780a82d073fc9c
c894f73c9aefe50748f818ced48b9bffa193168e
refs/heads/master
2023-01-11T13:37:46.528453
2022-12-30T02:38:23
2022-12-30T02:38:23
1,813,144
51
29
null
2022-12-30T02:39:40
2011-05-28T05:28:49
Java
UTF-8
Java
false
false
4,421
java
/* * Created on : 27-Aug-2004 * Created by : Administrator * File : NewFileAction.java * Description : * */ package org.cfeclipse.frameworks.fusebox.actions; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IWorkspaceRoot; import org.eclipse.core.resources.ResourcesPlugin; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.Path; import org.eclipse.jface.action.IAction; import org.eclipse.jface.viewers.ISelection; import org.eclipse.ui.IEditorActionDelegate; import org.eclipse.ui.IEditorPart; import org.eclipse.ui.IWorkbenchPage; import org.eclipse.ui.PartInitException; import org.eclipse.ui.PlatformUI; import org.eclipse.ui.ide.IDE; import org.eclipse.ui.texteditor.ITextEditor; import org.eclipse.core.runtime.IPath; import org.cfeclipse.cfml.editors.CFMLEditor; /** * @author Administrator * * This action should create a new file and you can name it and put whatever you want in it. * this means that you can use templates in future to fill up the file. * an example idea I had for this was to create a file from a <cfmodule call * <cfmodule template="bob.cfm" var="something" var2="something" /> would create a file called bob.cfm with * <cfparam name="attributes.var" default="" type="string"> * <cfparam name="attributes.var2" default="" type="string"> * */ public class NewFileAction implements IEditorActionDelegate{ protected ITextEditor editor = null; protected IFile file; protected String filename = "untitled.cfm"; protected String contents = ""; boolean isCreated = false; public boolean openAfterOpen = true; /** * The default constructor */ public NewFileAction() { super(); } public void setActiveEditor(IAction action, IEditorPart targetEditor) { if(targetEditor instanceof ITextEditor || targetEditor instanceof CFMLEditor) { editor = (ITextEditor)targetEditor; } } public void selectionChanged(IAction action, ISelection selection) {;} public boolean isCreated(){ return this.isCreated; } /** * @param contents The contents to set. */ public void setContents(String contents) { this.contents = contents; } /** * @param editor The editor to set. */ public void setEditor(ITextEditor editor) { this.editor = editor; } /** * @param filename The filename to set. */ public void setFilename(String filename) { IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot(); this.file = root.getFile(new Path(filename)); this.filename = filename; } public void setFile(IFile file){ this.file = file; } public void run() { run(null); } /*I would like this method to create a file and that we can change the name etc.*/ public void run(IAction action) { createFile(this.filename); } private void createFile(String filename){ //I try to create a file // System.out.println("I shall create a file called " + this.filename); // IPath path = new Path("untitled.cfm"); // System.out.println("Path is valid?" + path.isValidPath("untitled.cfm")); try { InputStream stream = openContentStream(); file.create(stream, true, null); stream.close(); this.isCreated = true; } catch (IOException e) { // System.out.println("There has been an error in " + e.getMessage()); this.isCreated = false; } catch (CoreException co){ // System.out.println("There has been an error in " + co.getMessage()); this.isCreated = false; } if(this.isCreated && this.openAfterOpen){ //once we have created it.. lets try and open it IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); try { IDE.openEditor(page, file, true); } catch (PartInitException e) { e.printStackTrace(System.err); } } } private InputStream openContentStream() { //This is the initial file contents for *.cfm file that should be //word-sorted in the Preview page of the multi-page editor String contents = this.contents; return new ByteArrayInputStream(contents.getBytes()); } }
[ "mark.drew@gmail.com" ]
mark.drew@gmail.com
af1b798af2c853946bd5f47ac1428d43b9c51b8e
f9eb3ae8d587aa560231077dee20f272aa4bb02a
/src/com/wicare/wistormdemo/test/BizApiTest.java
13e0eb0b07010f559c078bc9df9529287457014f
[]
no_license
wisegps/wistorm-API-test
2c9b023c74ae89d39139bd2954eae987563ee8c8
8eaa8bf1a3cba8c32a5df51b490904b3b5032efc
refs/heads/master
2021-01-10T02:21:21.671860
2016-02-02T07:45:22
2016-02-02T07:45:22
50,903,119
0
0
null
null
null
null
UTF-8
Java
false
false
5,708
java
/** * UserApiTest.java * c * TODO * 2015-12-11 */ package com.wicare.wistormdemo.test; import java.util.HashMap; import android.net.Uri; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.test.ActivityInstrumentationTestCase2; import com.baidu.android.common.logging.Log; import com.wicare.wistorm.api.WBusinessApi; import com.wicare.wistorm.api.WCommApi; import com.wicare.wistorm.api.WUserApi; import com.wicare.wistorm.http.BaseVolley; import com.wicare.wistorm.http.Msg; import com.wicare.wistorm.model.Customer; import com.wicare.wistormdemo.activity.LoginTest; /** * UserApiTest * * @author c TODO 2015-12-11 */ public class BizApiTest extends ActivityInstrumentationTestCase2<LoginTest> { /** * @param activityClass */ public WBusinessApi bizApi; public WCommApi commApi; public Handler handler; public BizApiTest() { super(LoginTest.class); handler = new Handler(callback); } @Override protected void setUp() throws Exception { super.setUp(); bizApi = new WBusinessApi(handler); commApi = new WCommApi(handler); BaseVolley.init(getActivity()); } @Override protected void tearDown() throws Exception { super.tearDown(); } /** * 创建业务信息 * * 参数: seller_id; //商户Id cust_id: 车主用户ID cust_name: 车主名称 obj_id: 车辆ID * obj_name: 车牌号 mileage: 行驶里程 business_type: 业务类型 business_content: 业务内容 * 返回: status_code: 状态码 business_id: 新建业务ID */ public void create() { HashMap<String, String> params = new HashMap<String, String>(); params.put( "access_token", "f1b3afaf9bbedfcb0ca3f0465a1d2e7e157c1ea55ad8d2dbcaa7083d125d360cc1792bdb116812d81a3e51f8d269cccc"); params.put("cust_id", "1239"); params.put("seller_id", "178"); params.put("cust_name", "testandr"); params.put("obj_id", "2885"); params.put("obj_name", "粤testandroid"); params.put("mileage", "1000"); params.put("business_type", "1"); params.put("business_content", "业务内容Java测试"); bizApi.create(params); } /** * 获取业务列表 // * 参数: query_json: 查询json;</br> * fields: 返回字段 </br> * sorts: 排序字段,如果倒序,在字段前面加-</br> * page: 分页字段 </br> * min_id: 分页字段的本页最小值 </br> * max_id: 分页字段的本页最小值 </br> * limit: 返回数量 返回:</br> * 按fields返回数据列表</br> */ public void get() { HashMap<String, String> params = new HashMap<String, String>(); params.put( "access_token", "f1b3afaf9bbedfcb0ca3f0465a1d2e7e157c1ea55ad8d2dbcaa7083d125d360cc1792bdb116812d81a3e51f8d269cccc"); params.put("max_id", "0"); params.put("parent_cust_id", "178"); params.put("query_type", "1"); params.put("status", "1"); params.put("sorts", "business_id"); params.put("page", "business_id"); params.put("limit", "20"); String fields = "business_id,business_type,obj_name,obj_id,mileage,evaluate_level,status,arrive_time,leave_time,cust_id,cust_name,business_content,car_brand_id,car_brand,car_series_id,car_series,car_type_id,car_type"; bizApi.get(params,fields); } /** * 更新业务状态 */ public void update() { HashMap<String, String> params = new HashMap<String, String>(); params.put( "access_token", "f1b3afaf9bbedfcb0ca3f0465a1d2e7e157c1ea55ad8d2dbcaa7083d125d360cc1792bdb116812d81a3e51f8d269cccc"); params.put("_business_id", "24"); String leave_time = "2016-01-15 17:02:04"; leave_time = Uri.encode(leave_time); params.put("leave_time", leave_time); params.put("mileage", "1000"); params.put("obj_id", "2885"); params.put("status", "2"); bizApi.update(params); } public void getTotal() { HashMap<String, String> params = new HashMap<String, String>(); params.put( "access_token", "f1b3afaf9bbedfcb0ca3f0465a1d2e7e157c1ea55ad8d2dbcaa7083d125d360cc1792bdb116812d81a3e51f8d269cccc"); params.put("parent_cust_id", "178"); String begin_time = "2015-01-01 00:00:00"; begin_time = Uri.encode(begin_time); String end_time = "2016-01-18 15:15:38"; end_time = Uri.encode(end_time); params.put("begin_time",begin_time); params.put("end_time", end_time); //String fields = "business_id,business_type,obj_name,obj_id,mileage,evaluate_level,status,arrive_time,leave_time,cust_id,cust_name,business_content,car_brand_id,car_brand,car_series_id,car_series,car_type_id,car_type"; bizApi.getTotal(params,""); } Handler.Callback callback = new Handler.Callback() { @Override public boolean handleMessage(Message msg) { switch (msg.what) { case Msg.M_Biz_Create: Bundle bundle = msg.getData(); String status_code = bundle.getString("status_code"); String business_id = bundle.getString("business_id"); Log.i("LoginTest", "返回status_code值" + status_code); Log.i("LoginTest", "返回business_id值" + business_id); break; case Msg.M_Biz_Update: bundle = msg.getData(); status_code = bundle.getString("status_code"); Log.i("LoginTest", "返回Update status_code值" + status_code); break; case Msg.M_Biz_List: bundle = msg.getData(); String list = bundle.getString("list"); Log.i("LoginTest", "返回M_Biz_List status_code值" + list); break; case Msg.M_Biz_Total: bundle = msg.getData(); String total = bundle.getString("total"); Log.i("LoginTest", "返回M_Biz_Total status_code值" + total); break; } return false; } }; }
[ "Administrator@PC--20150902QLW" ]
Administrator@PC--20150902QLW
a95038d6ff814c58729986c4d80e42843e5a0140
9b82bcbcd72aff7c23603db8a18ea2472aac591e
/scenicManagement/src/main/java/com/jiagu/management/fragments/SettingsFragment.java
98d27264fc9fae1aca316f67e0e65677f184e3b4
[]
no_license
wupengwp/ScenicManagement
d80269157012af424a3c0adbbc51a97a12356cdd
4c80e1be12f2dfb2a42817528709bc65eb4687c0
refs/heads/master
2020-03-19T04:18:13.777850
2018-06-02T12:10:57
2018-06-02T12:12:02
135,814,424
0
0
null
null
null
null
UTF-8
Java
false
false
6,969
java
package com.jiagu.management.fragments; import java.io.File; import org.json.JSONException; import org.json.JSONObject; import android.annotation.SuppressLint; import android.content.Intent; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.widget.RelativeLayout; import android.widget.TextView; import android.widget.Toast; import com.jiagu.management.R; import com.jiagu.management.activities.FeedbackActivity; import com.jiagu.management.activities.HelpActivity; import com.jiagu.management.activities.SoftwareActivity; import com.jiagu.management.application.ScenicApplication; import com.jiagu.management.https.DownloadService; import com.jiagu.management.https.HttpUtils; import com.jiagu.management.utils.Constants; import com.jiagu.management.utils.CustomDialog; import com.jiagu.management.utils.FileTools; import com.jiagu.management.utils.Utils; import com.loopj.android.http.AsyncHttpResponseHandler; import com.loopj.android.http.RequestParams; /** * @ClassName: SettingsFragment * @Description: 设置中心 * @author zz * @date 2015年1月15日 下午12:34:14 * @version 1 * @company 西安甲骨企业文化传播有限公司 */ public class SettingsFragment extends Fragment implements OnClickListener { private View mProgressView; private TextView mTitleTv; private TextView mSofeBtn, mHelpBtn, mBackBtn; private RelativeLayout mVersionBtn; private TextView mVersionTv; private CustomDialog.GeneralDialog mAlertDialog; private String newVersionUrl; @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { Intent intent = new Intent(getActivity(), DownloadService.class); getActivity().startService(intent); return inflater.inflate(R.layout.fragment_settings, container, false); } @SuppressLint("CutPasteId") @Override public void onActivityCreated(@Nullable Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); mProgressView = getView().findViewById(android.R.id.progress); mTitleTv = (TextView) getView().findViewById(R.id.title_bar_text); mTitleTv.setText(R.string.setting); mSofeBtn = (TextView) getView().findViewById(R.id.soft_function_btn); mHelpBtn = (TextView) getView().findViewById(R.id.settings_help_btn); mBackBtn = (TextView) getView().findViewById(R.id.system_feedback_btn); mVersionBtn = (RelativeLayout) getView().findViewById( R.id.settings_verson_btn); mSofeBtn.setOnClickListener(this); mHelpBtn.setOnClickListener(this); mBackBtn.setOnClickListener(this); mVersionBtn.setOnClickListener(this); mVersionTv = (TextView) getView().findViewById(R.id.show_verson_tv); mVersionTv.setText(Utils.getVersionName(getActivity())); mAlertDialog = new CustomDialog.GeneralDialog(getActivity()); mAlertDialog.setMessage(getString(R.string.new_version_prompt)); mAlertDialog.hideMiddleButton(); mAlertDialog.setOnLeftButtonClickListener( getString(R.string.dialog_ok), null, new OnClickListener() { @Override public void onClick(View v) { downUpdateApk(newVersionUrl); } }); mAlertDialog.setOnRightButtonClickListener( getString(R.string.dialog_cancel), null, new OnClickListener() { @Override public void onClick(View v) { mAlertDialog.dismiss(); } }); } @Override public void onClick(View v) { switch (v.getId()) { case R.id.soft_function_btn: startActivity(new Intent(getActivity(), SoftwareActivity.class)); break; case R.id.settings_help_btn: startActivity(new Intent(getActivity(), HelpActivity.class)); break; case R.id.system_feedback_btn: startActivity(new Intent(getActivity(), FeedbackActivity.class)); break; case R.id.settings_verson_btn: sendRequest(); break; default: break; } } /* * 版本查询 */ private void sendRequest() { showProgress(); String url = ScenicApplication.SEVER_PATH + "scenicUser/getVersion.htm"; RequestParams params = new RequestParams(); params.put("type", Constants.APK); params.put("version", Utils.getVersionName(getActivity())); FileTools.writeLog("scenic.txt", "Version:"+Utils.getVersionName(getActivity())); params.put("os", Constants.OS); if (HttpUtils.isNetworkConnected(getActivity())) { HttpUtils.post(url, params, new AsyncHttpResponseHandler() { @Override public void onFailure(Throwable arg0, String result) { showToast(R.string.request_error_prompt); hideProgress(); } @Override public void onSuccess(int code, String result) { FileTools.writeLog("scenic.txt", result); if (HttpUtils.RESULTCODE_OK == code) { System.out.println(result); try { JSONObject root = new JSONObject(result); if (Constants.SUCCESS.equals(root .optString("result"))) { String url = root.optJSONArray("records") .optJSONObject(0).optString("url"); if (url != null && url.length() > 0) { newVersionUrl = ScenicApplication.SEVER_APK_PATH + url; Log.i("111", newVersionUrl); mAlertDialog.show(); } else { showToast(R.string.no_new_version); } } else { showToast(R.string.request_error_prompt); } } catch (JSONException e) { System.out.println(e); FileTools.writeLog("scenic.txt", "JSONException toString:"+e.toString()); FileTools.writeLog("scenic.txt", "JSONException getMessage:"+e.getMessage()); showToast(R.string.system_error_prompt); } finally { hideProgress(); } } else { showToast(R.string.network_error_try_again); hideProgress(); } } }); } else { showToast(R.string.network_no_error_prompt); } } /* * 下载apk */ private void downUpdateApk(final String url) { final String savePath = ScenicApplication.RootPath + "APP/"; File folder = new File(savePath); if (!folder.exists()) { folder.mkdir(); } getActivity().runOnUiThread(new Runnable() { @Override public void run() { if (url != null || !url.equals("")) { DownloadService.downNewFile(url, 351, getString(R.string.app_name), savePath); mAlertDialog.dismiss(); } } }); } private void showToast(int res) { Toast.makeText(getActivity(), res, Toast.LENGTH_SHORT).show(); } protected void showProgress() { if (mProgressView != null) mProgressView.setVisibility(View.VISIBLE); } protected void hideProgress() { if (mProgressView != null) mProgressView.setVisibility(View.GONE); } @Override public void onDestroy() { super.onDestroy(); Intent intent = new Intent(getActivity(), DownloadService.class); getActivity().stopService(intent); } }
[ "peng.wu@sin.com" ]
peng.wu@sin.com
329f3094269a43593e9e070db2562ce0c64f9443
96a7d93cb61cef2719fab90742e2fe1b56356d29
/selected projects/desktop/jEdit-v5.5.0/org/jedit/options/OptionTreeModel.java
4fc55cc3e5c4011a85cd343d9272f9c3f5c5f655
[ "MIT" ]
permissive
danielogen/msc_research
cb1c0d271bd92369f56160790ee0d4f355f273be
0b6644c11c6152510707d5d6eaf3fab640b3ce7a
refs/heads/main
2023-03-22T03:59:14.408318
2021-03-04T11:54:49
2021-03-04T11:54:49
307,107,229
0
1
MIT
2021-03-04T11:54:49
2020-10-25T13:39:50
Java
UTF-8
Java
false
false
4,756
java
/* * OptionTreeModel.java - OptionGroup-backed TreeModel * :tabSize=4:indentSize=4:noTabs=false: * :folding=explicit:collapseFolds=1: * * Portions Copyright (C) 2003 Slava Pestov * Copyright (C) 2012 Alan Ezust * Copyright (C) 2016 Eric Le Lay (extracted from PluginOptionGroup) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ package org.jedit.options; import javax.swing.event.EventListenerList; import javax.swing.event.TreeModelEvent; import javax.swing.event.TreeModelListener; import javax.swing.tree.TreeModel; import javax.swing.tree.TreePath; import org.gjt.sp.jedit.OptionGroup; /** * TreeModel implementation backed by an OptionGroup **/ public class OptionTreeModel implements TreeModel { private OptionGroup root; private EventListenerList listenerList; public OptionTreeModel() { this(new OptionGroup(null)); } public OptionTreeModel(OptionGroup root) { this.root = root; listenerList = new EventListenerList(); } public void addTreeModelListener(TreeModelListener l) { listenerList.add(TreeModelListener.class, l); } public void removeTreeModelListener(TreeModelListener l) { listenerList.remove(TreeModelListener.class, l); } public Object getChild(Object parent, int index) { if (parent instanceof OptionGroup) { return ((OptionGroup)parent).getMember(index); } else { return null; } } public int getChildCount(Object parent) { if (parent instanceof OptionGroup) { return ((OptionGroup)parent).getMemberCount(); } else { return 0; } } public int getIndexOfChild(Object parent, Object child) { if (parent instanceof OptionGroup) { return ((OptionGroup)parent) .getMemberIndex(child); } else { return -1; } } public Object getRoot() { return root; } public boolean isLeaf(Object node) { return !(node instanceof OptionGroup); } public void valueForPathChanged(TreePath path, Object newValue) { // this model may not be changed by the TableCellEditor } protected void fireNodesChanged(Object source, Object[] path, int[] childIndices, Object[] children) { Object[] listeners = listenerList.getListenerList(); TreeModelEvent modelEvent = null; for (int i = listeners.length - 2; i >= 0; i -= 2) { if (listeners[i] != TreeModelListener.class) continue; if (modelEvent == null) { modelEvent = new TreeModelEvent(source, path, childIndices, children); } ((TreeModelListener)listeners[i + 1]) .treeNodesChanged(modelEvent); } } protected void fireNodesInserted(Object source, Object[] path, int[] childIndices, Object[] children) { Object[] listeners = listenerList.getListenerList(); TreeModelEvent modelEvent = null; for (int i = listeners.length - 2; i >= 0; i -= 2) { if (listeners[i] != TreeModelListener.class) continue; if (modelEvent == null) { modelEvent = new TreeModelEvent(source, path, childIndices, children); } ((TreeModelListener)listeners[i + 1]) .treeNodesInserted(modelEvent); } } protected void fireNodesRemoved(Object source, Object[] path, int[] childIndices, Object[] children) { Object[] listeners = listenerList.getListenerList(); TreeModelEvent modelEvent = null; for (int i = listeners.length - 2; i >= 0; i -= 2) { if (listeners[i] != TreeModelListener.class) continue; if (modelEvent == null) { modelEvent = new TreeModelEvent(source, path, childIndices, children); } ((TreeModelListener)listeners[i + 1]) .treeNodesRemoved(modelEvent); } } protected void fireTreeStructureChanged(Object source, Object[] path, int[] childIndices, Object[] children) { Object[] listeners = listenerList.getListenerList(); TreeModelEvent modelEvent = null; for (int i = listeners.length - 2; i >= 0; i -= 2) { if (listeners[i] != TreeModelListener.class) continue; if (modelEvent == null) { modelEvent = new TreeModelEvent(source, path, childIndices, children); } ((TreeModelListener)listeners[i + 1]) .treeStructureChanged(modelEvent); } } }
[ "danielogen@gmail.com" ]
danielogen@gmail.com
52d1eafada52528e1bd464204f89e82b47eac885
94450a3fcd41bc472a84d7199a14f4e49f1d7c9b
/src/main/java/com/store/model/entity/Order.java
abe2e6732af1ea95db20c13b6dfe5e87e8ef0d6c
[]
no_license
AlexBringston/Online-Store-Java-Servlet
93094a6977a366597f9357e75adc9e244ca3d817
a52e5088f113617ced8dab9e346755fc781c389c
refs/heads/master
2023-05-22T21:41:55.756419
2021-06-15T11:50:36
2021-06-15T11:50:36
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,247
java
package com.store.model.entity; import java.sql.Timestamp; /** * Order entity. Is used to store data from corresponding table about certain order. * * @author Alexander Mulyk * @since 2021-06-14 */ public class Order extends Entity{ private int userId; private User user; private Timestamp createdAt; private String status; public Order() { } public Order(int userId) { this.userId = userId; } public int getUserId() { return userId; } public void setUserId(int userId) { this.userId = userId; } public User getUser() { return user; } public void setUser(User user) { this.user = user; } public Timestamp getCreatedAt() { return createdAt; } public void setCreatedAt(Timestamp createdAt) { this.createdAt = createdAt; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } @Override public String toString() { return "Order{" + "userId=" + userId + ", createdAt=" + createdAt + ", status='" + status + '\'' + '}'; } }
[ "alexander11mulyk@gmail.com" ]
alexander11mulyk@gmail.com
d156940d8ef323597d531a11c5765703fac935b0
6b5c667fc6671ba590284fb1a127635c440da710
/Huy/Servlet3/src/Unit3/Form.java
4ad1ee21ccd71abfd4f9682921313e2126f62c8d
[]
no_license
NguyenHuyVu-2411/FasttrackSe_1902
4ebfb44e7133b5a51263a85caf09ffb95e678144
9d9b840447a0510dbc7802b79168cd054d95d52f
refs/heads/master
2022-04-11T10:46:16.855829
2020-02-20T12:07:27
2020-02-20T12:07:27
null
0
0
null
null
null
null
UTF-8
Java
false
false
997
java
package Unit3; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @WebServlet(urlPatterns = {"/form"}) public class Form extends HttpServlet{ @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.setContentType("text/html"); PrintWriter pw = resp.getWriter(); pw.println("<form action='/Servlet3/login' method='post'>"); pw.println("UserName <input type='text' name='username'>"); pw.println("PassWord <input type='password' name='password'>"); pw.println("<input type='submit' value='Login'>"); pw.println("</form>"); pw.close(); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }
[ "56071171+huykhung111333@users.noreply.github.com" ]
56071171+huykhung111333@users.noreply.github.com
c6a41ad58b67910436bcf988a59a08b2b1b014e6
1dd76441080c8a67bacde16fa1aaa419f092a14f
/src/br/com/arrays/App1.java
e68e2ccb1cc5c71a90a925b8a9dd28b1134edf66
[]
no_license
albertocerqueira/fundamentos-tecnologia-java
e9c2787e2cf842daed95103f2d7ef4139ad2791a
2ede1b875f6e4c046bcad519878f3506dd14cd00
refs/heads/master
2021-01-17T11:01:11.864422
2016-05-27T23:18:40
2016-05-27T23:18:40
35,844,966
0
0
null
null
null
null
UTF-8
Java
false
false
703
java
package br.com.arrays; public class App1 { public static void main(String[] args) { int[] intArray = new int[] { 3, 5, 1, 9, 10 }; int soma = 0; int max = 0; int min = 0; float media = 0; for (int i = 0, q = intArray.length; i < q; i++) { soma += intArray[i]; if (i == 0) { min = intArray[i]; max = intArray[i]; } if (intArray[i] > max) { max = intArray[i]; } if (intArray[i] < min) { min = intArray[i]; } } media = (float) soma / (float) intArray.length; System.out.println("Soma " + soma); System.out.println("Maximo " + max); System.out.println("Minimo " + min); System.out.println("Media " + media); } }
[ "alberto.cerqueira1990@gmail.com" ]
alberto.cerqueira1990@gmail.com
d547cbe7a62f12ca1dd8a77ae493bca8c1d3d007
073bfeb4f73a60db1d81672b5447329d7452fa5c
/Bingo/src/bingo/output/FrequenciesHistogramOutput.java
a92f054b4bee18e3b67c1379a243393bd8553c6a
[]
no_license
chadheise/bingo
f206b3fa97d0aec5a72a207525f67c9c900c5f38
147fc664af5e93792ec335eef6475d41f2c67a79
refs/heads/master
2020-04-14T04:52:17.368185
2018-12-31T07:07:13
2018-12-31T07:07:13
163,647,687
0
0
null
null
null
null
UTF-8
Java
false
false
2,530
java
package bingo.output; import java.io.File; import java.io.IOException; import java.util.Map; import java.util.Map.Entry; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartUtilities; import org.jfree.chart.JFreeChart; import org.jfree.chart.plot.PlotOrientation; import org.jfree.data.statistics.SimpleHistogramBin; import org.jfree.data.statistics.SimpleHistogramDataset; import org.jfree.data.xy.IntervalXYDataset; public class FrequenciesHistogramOutput implements FrequenciesOutput { // We only have 1 series so the name doesn't matter private static final String SERIES_KEY = "data"; private static final boolean INCLUDE_LOWER_BOUND = false; private static final boolean INCLUDE_UPPER_BOUND = true; private static final String X_AXIS_LABEL = "Number of Calls Before a Blackout"; private static final String Y_AXIS_LABEL = "Number of Games"; private static final double Y_AXIS_PERCENT = 0.35; private final String outputFilePath; private final String title; private final int width; private final int height; public FrequenciesHistogramOutput(final String outputFilePath, final String title, final int width, final int height) { this.outputFilePath = outputFilePath; this.title = title; this.width = width; this.height = height; } @Override public void output(Map<Integer, Integer> object) throws IOException { JFreeChart histogram = ChartFactory.createHistogram( title, X_AXIS_LABEL, Y_AXIS_LABEL, getDataset(object), PlotOrientation.VERTICAL, false, false, false); histogram.getXYPlot().getDomainAxis().setRange(40, 75); histogram.getXYPlot().getRangeAxis().setRange(0, Y_AXIS_PERCENT*getTotal(object)); File file = new File(outputFilePath); ChartUtilities.saveChartAsPNG(file, histogram, width, height); } private static final IntervalXYDataset getDataset(final Map<Integer, Integer> map) { SimpleHistogramDataset dataset = new SimpleHistogramDataset(SERIES_KEY); for (Entry<Integer, Integer> entry : map.entrySet()) { double lowerBound = entry.getKey() - 1; double upperBound = entry.getKey(); SimpleHistogramBin bin = new SimpleHistogramBin(lowerBound, upperBound, INCLUDE_LOWER_BOUND, INCLUDE_UPPER_BOUND); bin.setItemCount(entry.getValue()); dataset.addBin(bin); } return dataset; } // TODO: Do this as a lambda private static final int getTotal(final Map<Integer, Integer> map) { int total = 0; for (Entry<Integer, Integer> entry : map.entrySet()) { total += entry.getValue(); } return total; } }
[ "chad@heise.org" ]
chad@heise.org
7f78d85d747c683977adc9dcadf6c93be1999374
55be292de0b48db85ecce061fa68890ea84001d9
/ElecRecord/src/org/zhbit/excel/service/ImportTableService.java
cfe6f6d4e57022abda3a42dc8ce02d84f348256b
[ "Apache-2.0" ]
permissive
weletry/ElectronicRecord
3b5618b6a141bf8c38192c5f596bcd22fbb10d73
b150d26ca2586a20d323f71f8efcbd0791b94179
refs/heads/master
2021-05-31T17:41:54.971534
2016-06-23T05:25:35
2016-06-23T05:25:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
8,943
java
/* * Copyright 2015 www.hyberbin.com. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * Email:hyberbin@qq.com */ package org.zhbit.excel.service; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.DateUtil; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.zhbit.excel.adapter.ICellReaderAdapter; import org.zhbit.excel.bean.BaseExcelVo; import org.zhbit.excel.bean.CellBean; import org.zhbit.excel.bean.TableBean; import org.zhbit.excel.handler.LoadCellHandler; import org.zhbit.excel.utils.ConverString; import org.zhbit.excel.utils.FieldUtils; import org.zhbit.excel.utils.ObjectHelper; import org.zhbit.excel.utils.Reflections; import java.lang.reflect.Field; import java.text.SimpleDateFormat; import java.util.*; /** * 对规定格式的Excel进行导入. 适配器由用户自己定义或者直接将常规类型的数据直接批量读取到数据库. Created by hyberbin on * 15/7/31. */ public class ImportTableService { private Sheet sheet; private TableBean tableBean; private ICellReaderAdapter defaultCellReaderAdapter; private Integer startRow = 0; private Map<Integer, Integer> forceCellType = new HashMap(); private String dateFormat = "yyyy/MM/dd"; private Map<Integer, LoadCellHandler> cellHandlerMap = new HashMap<Integer, LoadCellHandler>(); public ImportTableService(Sheet sheet) { this.sheet = sheet; } public ImportTableService(Sheet sheet, ICellReaderAdapter defaultCellReaderAdapter) { this.sheet = sheet; this.defaultCellReaderAdapter = defaultCellReaderAdapter; } public void setCellType(int columnIndex, int type) { forceCellType.put(columnIndex, type); } /** * 从Excel导入到TableBean */ public void doImport() { int rowNum = sheet.getLastRowNum() + 1; int columnNum = 0; for (int i = 0; i < rowNum; i++) { if (sheet.getRow(i) != null) { int last = sheet.getRow(i).getLastCellNum(); columnNum = last > columnNum ? last : columnNum; } } tableBean = new TableBean(rowNum, columnNum); Collection<CellBean> cellBeans = new ArrayList<CellBean>(); for (int r = startRow; r < rowNum; r++) { Row row = sheet.getRow(r); if (row != null) { for (int c = 0; c < row.getLastCellNum(); c++) { Cell cell = row.getCell(c); if (cell != null) { String cellValue = null; if (cellHandlerMap.containsKey(c)) { cellValue=cellHandlerMap.get(c).readCell(cell)+""; } else { cell.setCellType(Cell.CELL_TYPE_STRING); Integer type = forceCellType.get(c); if (type != null) { cell.setCellType(type); } if (Cell.CELL_TYPE_BOOLEAN == cell.getCellType()) { cellValue = cell.getBooleanCellValue() + ""; } else if (Cell.CELL_TYPE_FORMULA == cell.getCellType()) { try { cellValue = String.valueOf(cell.getNumericCellValue()); } catch (IllegalStateException e) { cellValue = String.valueOf(cell.getRichStringCellValue()).trim(); } } else if (Cell.CELL_TYPE_NUMERIC == cell.getCellType()) { if (DateUtil.isCellDateFormatted(cell)) { Date date2 = cell.getDateCellValue(); SimpleDateFormat dff = new SimpleDateFormat(dateFormat); cellValue = dff.format(date2); //日期转化 } else { cellValue = String.valueOf(cell.getNumericCellValue()); } } else if (Cell.CELL_TYPE_STRING == cell.getCellType()) { cellValue = cell.getStringCellValue(); } if (cellValue != null && cellValue instanceof String) { cellValue = cellValue.toString().trim(); }} CellBean cellBean = new CellBean(cellValue, r, c); cellBean.setCell(cell); cellBeans.add(cellBean); } } } } tableBean.setCellBeans(cellBeans); } /** * 整个读取 * * @return */ public Object read() { if (tableBean == null) { doImport(); } return defaultCellReaderAdapter.read(tableBean); } /** * 读取内容到List,可以是List<Map>也可以是List<Object> * * @param sortedColumns 从第0列开始,数组中每个元素对应type中的一个字段,元素为空则忽略 * @param type 读取数据存放的类型 * @param <T> 泛型 * @return */ public <T> List<T> read(String[] sortedColumns, Class<? extends T> type) { List<T> list = new ArrayList(); for (int i = startRow; i < tableBean.getRowCount(); i++) { Object bean = Map.class.isAssignableFrom(type) ? new HashMap() : Reflections.instance(type.getName()); for (int j = 0; j < sortedColumns.length; j++) { String column = sortedColumns[j]; if (ObjectHelper.isNotEmpty(column)) { CellBean cellBean = tableBean.getCellBean(i, j); if (cellBean != null) { Cell cell = cellBean.getCell(); if (cell == null) { cell = sheet.getRow(i).createCell(j); } if (bean instanceof Map) { FieldUtils.setFieldValue(bean, "cell" + column, cell); if (ObjectHelper.isNotEmpty(cellBean.getContent())) { FieldUtils.setFieldValue(bean, column, cellBean.getContent()); } } else { if (bean instanceof BaseExcelVo) { BaseExcelVo baseExcelVo = ((BaseExcelVo) bean); baseExcelVo.setCell(column, cell); baseExcelVo.setRow(i); baseExcelVo.setCol(j); } Field accessibleField = Reflections.getAccessibleField(bean, column); Class<?> fieldType = accessibleField.getType(); Object value = cellBean.getContent(); if (!fieldType.equals(String.class)) { value = ConverString.asType(fieldType, cellBean.getContent()); } if (ObjectHelper.isNotEmpty(cellBean.getContent())) { FieldUtils.setFieldValue(bean, column, value); } } } } } list.add((T) bean); } return list; } public void setCellHandler(Integer column, LoadCellHandler handler) { cellHandlerMap.put(column, handler); } /** * 预读取,用于数据校验 * * @param tableBean * @return */ public void preRead(TableBean tableBean) { defaultCellReaderAdapter.preRead(tableBean); } public TableBean getTableBean() { if (tableBean == null) { doImport(); } return tableBean; } public Integer getStartRow() { return startRow; } public void setStartRow(Integer startRow) { this.startRow = startRow; } public String getDateFormat() { return dateFormat; } public void setDateFormat(String dateFormat) { this.dateFormat = dateFormat; } }
[ "987420817@qq.com" ]
987420817@qq.com
8398cc0c3b090e32b93903b61cf36b01d6b3714c
99e6f1e30800cfaa66d5e5487c8d6b680a309e46
/app-dao/src/main/java/com/kangyonggan/app/mapper/CategoryMapper.java
e4a4ba36b227df1b694361d4ec5267c79e85136b
[]
no_license
KittyKoala/app
29508d0ce911f4fe01c02c717328c367c097135e
5bf802d97041b05f24527a7f4f416742af6c0f4d
refs/heads/master
2020-04-24T18:30:14.806513
2019-02-14T08:31:24
2019-02-14T08:31:24
172,181,588
4
0
null
2019-02-23T06:45:51
2019-02-23T06:45:49
null
UTF-8
Java
false
false
292
java
package com.kangyonggan.app.mapper; import com.kangyonggan.app.model.Category; import com.kangyonggan.common.mybatis.MyMapper; import org.apache.ibatis.annotations.Mapper; /** * @author kangyonggan * @since 8/8/18 */ @Mapper public interface CategoryMapper extends MyMapper<Category> { }
[ "kangyonggan@gmail.com" ]
kangyonggan@gmail.com
ae927a6edd06cdf3a8fd9619befe4aa3e4da62a3
0a295ece4792092edd2fc6899ee68680d79c81b6
/writtenexam/src/main/java/Youdao_A.java
d7b5c6878c03316affc81719c2c337770cf8f1a0
[]
no_license
Earne/jalgo
46c16f7bc109a076cda1c0b9651042fb20ecc08a
c3767dace1f861dcfbb34bc6368681678bd30130
refs/heads/master
2021-01-12T21:53:04.139157
2020-08-21T01:11:56
2020-08-21T01:11:56
37,100,687
3
1
null
2020-10-14T00:17:35
2015-06-09T00:32:37
Java
UTF-8
Java
false
false
1,348
java
import java.util.Deque; import java.util.LinkedList; import java.util.Queue; import java.util.Stack; /** * Created by earne on 9/24/15. */ public class Youdao_A { public static void foo(TreeNode root) { Queue<TreeNode> preQueue = new LinkedList<>(); Queue<TreeNode> curQueue = new LinkedList<>(); preQueue.add(root); Deque<Integer> deque = new LinkedList<>(); // deque.add(root.val); while (!preQueue.isEmpty()) { curQueue = new LinkedList<>(); while (!preQueue.isEmpty()) { if (preQueue.peek().left != null) { curQueue.add(preQueue.peek().left); deque.add(preQueue.peek().left.val); } if (preQueue.peek().right != null) { curQueue.add(preQueue.peek().right); deque.add(preQueue.peek().right.val); } preQueue.poll(); } if (!curQueue.isEmpty()) { int head = deque.getLast(); deque.removeLast(); deque.addFirst(head); for (TreeNode node : curQueue) { node.val = deque.getFirst(); deque.removeFirst(); } } preQueue = curQueue; } } }
[ "earneyzxl@gmail.com" ]
earneyzxl@gmail.com
85109b09bdbcc8250827a2299fdc12dcdfd50873
f80f875c9e8a223cc8d9fa5029c38c20d55a18ef
/src/main/java/app/service/ShopServiceImpl.java
36a6366fcee76c61a3d9ecbd481a5da9d80fdd4c
[]
no_license
mohanrajw3/my_teacher_attendance
ee36993501775c3f7d26bad50f8923766476b059
eab7c31258a0b23797dec71138ecce0b021bbdd6
refs/heads/master
2020-04-29T18:43:06.721101
2019-03-28T20:36:58
2019-03-28T20:36:58
176,331,610
0
0
null
null
null
null
UTF-8
Java
false
false
560
java
package app.service; import app.datamapper.ShopDao; import app.entity.Shop; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @Service public class ShopServiceImpl implements ShopService { @Autowired ShopDao shopDao; @Transactional public void addShop(Shop shop) throws Exception{ try { shopDao.save(shop); } catch (Exception e) { throw new Exception(e); } } }
[ "kpgsamy@gmail.com" ]
kpgsamy@gmail.com
23a5b5e8ee250adbb88e8e3d4d6c316f6668ce3a
9612e78acab8dd94246f29b9fc83b278d7cd0426
/blog-catalog/src/main/java/cn/rockingwang/spring/boot/blog/domain/Vote.java
174b123bbc1006653b256a82ea4927727fded663
[]
no_license
RockingWang/simple-blog
50f8c566a1b65a5652a9890724ffe9f98497c02f
91ae6c30113b56f55b7dd6ff302b2b9c0ef7815c
refs/heads/master
2021-05-08T14:36:36.009818
2018-02-24T00:22:53
2018-02-24T00:22:53
120,091,302
0
0
null
null
null
null
UTF-8
Java
false
false
1,022
java
package cn.rockingwang.spring.boot.blog.domain; import javax.persistence.*; import java.io.Serializable; import java.sql.Timestamp; /** * Like 实体 */ @Entity public class Vote implements Serializable { private static final long serialVersionUID = 3328423266100621124L; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @OneToOne(cascade = CascadeType.DETACH, fetch = FetchType.LAZY) @JoinColumn(name = "user_id") private User user; @Column(nullable = false) @org.hibernate.annotations.CreationTimestamp private Timestamp createTimes; protected Vote() { } public Vote(User user) { this.user = user; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public User getUser() { return user; } public void setUser(User user) { this.user = user; } public Timestamp getCreateTimes() { return createTimes; } }
[ "rocking1216@gmail.com" ]
rocking1216@gmail.com
761179e0c35705aae4616a67098e51658ecb4fb5
b9ee304f9bb319789a6821a7d214b1178ca35e5a
/src/main/java/project/watch_and_relax/model/entity/Category.java
4462b6b7fef3fc978b8a7f652b618ac229f0b695
[]
no_license
Fatme98/watch-and-relax
816d55682e26a2092cea0fa161f5c225e2c6c2a0
0f1de00cbfff9f78b95a2c6846d2cb16200a62fe
refs/heads/main
2023-04-24T23:47:09.721594
2021-05-20T06:46:53
2021-05-20T06:46:53
285,384,915
0
0
null
null
null
null
UTF-8
Java
false
false
510
java
package project.watch_and_relax.model.entity; import javax.persistence.Entity; import javax.persistence.Enumerated; import javax.persistence.Table; @Entity @Table(name="categories") public class Category extends BaseEntity{ private CategoryName categoryName; public Category() { } public CategoryName getCategoryName() { return categoryName; } public void setCategoryName(CategoryName categoryName) { this.categoryName = categoryName; } }
[ "noreply@github.com" ]
noreply@github.com
e7d374350c5225c6ca36b7da8ea53802ff0f7805
c99cc343bfda41e95b05bcd6a16590860cfca59e
/Reader.java
78de5faf6d3e869c40e0ae20d59eed4512fedf1d
[]
no_license
CapVinkus/FinecoAMLMensile
19157ead394f4bfab6819962dc92715c40116e5e
aa1bdd6f68159d1d71b74174e38385167a7b307b
refs/heads/main
2023-05-25T10:28:51.217441
2021-06-18T09:56:32
2021-06-18T09:56:32
378,106,622
0
0
null
null
null
null
UTF-8
Java
false
false
4,546
java
package it.gepo.engine; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.sql.DataSource; import org.apache.log4j.Logger; import org.springframework.batch.core.ExitStatus; import org.springframework.batch.core.StepExecution; import org.springframework.batch.core.StepExecutionListener; import org.springframework.batch.item.ExecutionContext; import org.springframework.batch.item.ItemReader; import org.springframework.batch.item.NonTransientResourceException; import org.springframework.batch.item.ParseException; import org.springframework.batch.item.UnexpectedInputException; public class Reader implements StepExecutionListener, ItemReader<List<List<Map<String, Object>>>> { private HashMap<String, Integer> mappaLista = new HashMap<String, Integer>(); private Logger logger = Logger.getLogger(Reader.class); private String query1; private String query2; private DataSource dataSource; boolean readDone = false; private ExecutionContext jobExecutionContext; @Override public List<List<Map<String, Object>>> read() throws Exception, UnexpectedInputException, ParseException, NonTransientResourceException { if (!readDone) { Connection conn1 = null; conn1 = dataSource.getConnection(); conn1.setAutoCommit(false); PreparedStatement stmt1 = conn1.prepareStatement(query1); List<List<Map<String, Object>>> listaTot = new ArrayList<List<Map<String, Object>>>(); List<Map<String, Object>> listaDaControllare = new ArrayList<Map<String, Object>>(); ResultSet rs1 = stmt1.executeQuery(); while (rs1.next()) { Map<String, Object> map = new HashMap<String, Object>(); map.put("IDENTIFICATIVO", rs1.getBigDecimal(1)); map.put("NDG", rs1.getBigDecimal(2)); map.put("CONTO", rs1.getBigDecimal(3)); map.put("INTESTATARIO", rs1.getString(4)); map.put("MITTENTE MAIL", rs1.getString(5)); map.put("OGGETTO MAIL", rs1.getString(6)); map.put("NOME FILE MAIL", rs1.getString(7)); map.put("STATO ATTUALE", rs1.getString(8)); listaDaControllare.add(map); } rs1.close(); stmt1.close(); Connection conn2 = null; conn2 = dataSource.getConnection(); conn2.setAutoCommit(false); PreparedStatement stmt2 = conn2.prepareStatement(query2); List<Map<String, Object>> listaDaLavorare = new ArrayList<Map<String, Object>>(); ResultSet rs = stmt2.executeQuery(); while (rs.next()) { Map<String, Object> mappa = new HashMap<String, Object>(); mappa.put("IDENTIFICATIVO", rs.getBigDecimal(1)); mappa.put("NDG", rs.getBigDecimal(2)); mappa.put("CONTO", rs.getBigDecimal(3)); mappa.put("INTESTATARIO", rs.getString(4)); mappa.put("MITTENTE MAIL", rs.getString(5)); mappa.put("OGGETTO MAIL", rs.getString(6)); mappa.put("NOME FILE MAIL", rs.getString(7)); mappa.put("STATO ATTUALE", rs.getString(8)); listaDaLavorare.add(mappa); } rs.close(); stmt2.close(); listaTot.add(listaDaControllare); listaTot.add(listaDaLavorare); mappaLista.put("DA_CONTROLLARE", listaTot.get(0).size()); mappaLista.put("DA_LAVORARE", listaTot.get(1).size()); jobExecutionContext.put("controllare", listaDaControllare.size()); jobExecutionContext.put("lavorare", listaDaLavorare.size()); readDone = true; return listaTot; } return null; } @Override public ExitStatus afterStep(StepExecution arg0) { return null; } @Override public void beforeStep(StepExecution stepExecution) { jobExecutionContext = stepExecution.getJobExecution().getExecutionContext(); } public String getQuery1() { return query1; } public void setQuery1(String query1) { this.query1 = query1; } public String getQuery2() { return query2; } public void setQuery2(String query2) { this.query2 = query2; } public DataSource getDataSource() { return dataSource; } public void setDataSource(DataSource dataSource) { this.dataSource = dataSource; } public ExecutionContext getJobExecutionContext() { return jobExecutionContext; } public void setJobExecutionContext(ExecutionContext jobExecutionContext) { this.jobExecutionContext = jobExecutionContext; } public Logger getLogger() { return logger; } public void setLogger(Logger logger) { this.logger = logger; } }
[ "noreply@github.com" ]
noreply@github.com
134fbd4f941ec2603dc3ee296984a7ed65de1ac2
c67e1652fa6f056c09a791c23b2268faf30f01e1
/ConverTo/ConverTo/ConverTo/app/src/main/java/com/example/converto/About.java
c75fad7e6f356d61ed3a5c19e18735945206df3f
[]
no_license
shanmukhsurendra/6088_MP
b5eb82acc019b421f589a21838602513ccb49723
87c7ce88933929b1b6d7226b9661cd386236a15a
refs/heads/master
2020-04-28T09:45:58.966820
2019-03-28T02:16:54
2019-03-28T02:16:54
175,179,366
0
0
null
null
null
null
UTF-8
Java
false
false
3,568
java
package com.example.converto; import android.content.Intent; import android.os.Bundle; import android.support.design.widget.FloatingActionButton; import android.support.design.widget.Snackbar; import android.view.View; import android.support.design.widget.NavigationView; import android.support.v4.view.GravityCompat; import android.support.v4.widget.DrawerLayout; import android.support.v7.app.ActionBarDrawerToggle; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.view.Menu; import android.view.MenuItem; public class About extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_abou); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); ActionBarDrawerToggle toggle = new ActionBarDrawerToggle( this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close); drawer.addDrawerListener(toggle); toggle.syncState(); NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view); navigationView.setNavigationItemSelectedListener(this); } @Override public void onBackPressed() { DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); if (drawer.isDrawerOpen(GravityCompat.START)) { drawer.closeDrawer(GravityCompat.START); } else { super.onBackPressed(); } } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.about, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } @SuppressWarnings("StatementWithEmptyBody") @Override public boolean onNavigationItemSelected(MenuItem item) { int id = item.getItemId(); if (id == R.id.nav_length) { Intent intent = new Intent(this, LengthConverter.class); startActivity(intent); return true; } else if (id == R.id.nav_weight) { Intent intent1 = new Intent(this, WeightConverter.class); startActivity(intent1); } else if (id == R.id.nav_temperature) { Intent intent2 = new Intent(this, TemperatureConverter.class); startActivity(intent2); } else if (id == R.id.nav_area) { Intent intent2 = new Intent(this, AreaConverter.class); startActivity(intent2); } else if (id == R.id.nav_velocity) { Intent intent2 = new Intent(this, VelocityConverter.class); startActivity(intent2); } DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); drawer.closeDrawer(GravityCompat.START); return true; } }
[ "shanmukhsurendra@msitprogram.net" ]
shanmukhsurendra@msitprogram.net
df7f60526161c0d8e5326e317c9f03005d6f3b11
11104d141e25ae8197f3fc98ea70b414f8b15d7e
/Adding RecyclerView and CardView/app/src/test/java/com/example/adding_recyclerview_and_cardview/ExampleUnitTest.java
7f3d9942f56b45df7c34c40cfbb41f86a99e6a77
[]
no_license
Mas-R/PWPB
d43ef724d34577e49821d2ed65e8c1a75ad850ef
49ee0bfb9ea37530f401069de1345f693e42a6e7
refs/heads/master
2023-04-18T13:33:55.465213
2021-05-05T09:46:28
2021-05-05T09:46:28
285,851,595
0
0
null
null
null
null
UTF-8
Java
false
false
405
java
package com.example.adding_recyclerview_and_cardview; 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); } }
[ "61482999+Riltzthunder@users.noreply.github.com" ]
61482999+Riltzthunder@users.noreply.github.com
3b022bdccb64170ef4debc56381e80b9b7cadc0e
04c0283d143fa1ea748d95660e4853188387fef4
/app/src/main/java/com/example/lab1/bai1/MyServiceBai1.java
f5d60776b7e05d769936428c57c4156e1286b82a
[]
no_license
bacongau/mob201_service
56d3e1f85dfd549162fd7360e5bbf12ebd929898
77a805f1dbc492ce2f655a5a46500bf0e00bf7cd
refs/heads/master
2023-03-13T09:57:47.577208
2021-03-07T13:31:58
2021-03-07T13:31:58
345,354,515
0
0
null
null
null
null
UTF-8
Java
false
false
1,350
java
package com.example.lab1.bai1; import android.app.Service; import android.content.Intent; import android.os.Bundle; import android.os.IBinder; import android.widget.Toast; public class MyServiceBai1 extends Service { public MyServiceBai1() { } @Override public int onStartCommand(Intent intent, int flags, int startId) { Toast.makeText(this, "Start Service", Toast.LENGTH_SHORT).show(); Bundle bundle = intent.getBundleExtra("StudentInfo"); int stuId = bundle.getInt("StudentId"); String name = bundle.getString("Name"); String lop = bundle.getString("Class"); String a = "Thong tin sinh vien: " + "\n" + "Ma so sinh vien: " + stuId + "\n" + "Ten sinh vien: " + name + "\n" + "Ten lop: " + lop + "\n" + "--------------------------"; Toast.makeText(this, a, Toast.LENGTH_LONG).show(); return super.onStartCommand(intent, flags, startId); } @Override public void onDestroy() { Toast.makeText(this, "Stop Service", Toast.LENGTH_SHORT).show(); super.onDestroy(); } @Override public IBinder onBind(Intent intent) { // TODO: Return the communication channel to the service. throw new UnsupportedOperationException("Not yet implemented"); } }
[ "lungthilinh2895@gmail.com" ]
lungthilinh2895@gmail.com
84d4c169615f9a0eb465726fb40cf8efac293cf4
2d5ff9d20b91aba887bd16f95f9dbaf907cc5dca
/examples/UsesGuava.java
6e4ae83365d55efd49cc04eb90f5358ff8b6052c
[ "Apache-2.0" ]
permissive
renatoathaydes/jgrab
f8551006f2b60247d0b0c24c24ac9bd43492b3b9
ed4eadc3b5f3955a9620cdf72f3d48ee41c95365
refs/heads/master
2021-01-20T00:01:32.739648
2017-05-21T09:22:36
2017-05-21T09:22:36
89,067,898
19
3
null
null
null
null
UTF-8
Java
false
false
767
java
// #jgrab com.google.guava:guava:19.0 package com.zetcode.initializecollectionex; import com.google.common.collect.ImmutableMap; import com.google.common.collect.Lists; import java.util.List; import java.util.Map; /** * Source code copied from http://zetcode.com/articles/guava/ */ public class UsesGuava { public static void main(String[] args) { Map<String, Integer> items = ImmutableMap.of("coin", 3, "glass", 4, "pencil", 1); items.entrySet() .stream() .forEach(System.out::println); List<String> fruits = Lists.newArrayList("orange", "banana", "kiwi", "mandarin", "date", "quince"); for (String fruit: fruits) { System.out.println(fruit); } } }
[ "renato@twobo.com" ]
renato@twobo.com
2b32a0ccda500e789a595ae37afb3265757e7522
a7b868c8c81984dbcb17c1acc09c0f0ab8e36c59
/src/main/java/com/alipay/api/domain/AlipayOpenMiniInneraccountPidQueryModel.java
e212d875bc8b402b535690032ae8016b35f28007
[ "Apache-2.0" ]
permissive
1755616537/alipay-sdk-java-all
a7ebd46213f22b866fa3ab20c738335fc42c4043
3ff52e7212c762f030302493aadf859a78e3ebf7
refs/heads/master
2023-02-26T01:46:16.159565
2021-02-02T01:54:36
2021-02-02T01:54:36
null
0
0
null
null
null
null
UTF-8
Java
false
false
863
java
package com.alipay.api.domain; import com.alipay.api.AlipayObject; import com.alipay.api.internal.mapping.ApiField; /** * 查询小程序管理员虚拟 ID * * @author auto create * @since 1.0, 2020-01-09 14:05:04 */ public class AlipayOpenMiniInneraccountPidQueryModel extends AlipayObject { private static final long serialVersionUID = 7557733721569642139L; /** * 业务类型 */ @ApiField("client_type") private String clientType; /** * 外部业务主体ID */ @ApiField("out_biz_id") private String outBizId; public String getClientType() { return this.clientType; } public void setClientType(String clientType) { this.clientType = clientType; } public String getOutBizId() { return this.outBizId; } public void setOutBizId(String outBizId) { this.outBizId = outBizId; } }
[ "ben.zy@antfin.com" ]
ben.zy@antfin.com
a64e8c26c9d558c9cb7030b743f06e388cd9871a
a5e2e8fa1a4ffffce582f0b0302b3a1d11a245be
/src/json/io/Deserializer.java
f1b48b1ee2be250a0bb8a1f0864681138797b414
[]
no_license
atamurius/json
9f4697a2d2e783fce85dd8d57be0a6232a44d36a
bc3df73cc6823e15968afde0f095330f8c4785ff
refs/heads/master
2021-01-10T20:29:17.551960
2014-09-12T20:05:35
2014-09-12T20:05:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,498
java
package json.io; import static java.lang.Character.isWhitespace; import java.io.IOException; import java.io.Reader; import java.math.BigDecimal; import java.math.BigInteger; import json.Consumer; import json.Producer; public class Deserializer implements Producer { private Reader in; private int pos = -1; public static final Parser PARSER = new Parser() { public Producer parse(Reader in) { return new Deserializer(in); } }; public Deserializer(Reader in) { this.in = in; } protected int next() { int next; do { next = rawNext(); } while (next != -1 && isWhitespace((char) next)); return next; } protected int rawNext() { try { int next = in.read(); pos++; return next; } catch (IOException e) { throw new IORuntimeException(e); } } private int readNextTo(int next, Consumer consumer) { switch(next) { case '{': return readObjectTo(consumer); case '[': return readListTo(consumer); case '"': consumer.onString(readString()); return next(); case 'n': ensure("null"); consumer.onNull(); return next(); case 't': ensure("true"); consumer.onBoolean(true); return next(); case 'f': ensure("false"); consumer.onBoolean(false); return next(); default: return readNumberTo(next, consumer); } } private int readNumberTo(int next, Consumer consumer) { int pos = this.pos; StringBuilder buff = new StringBuilder(); while (next != -1 && "-1234567890.".indexOf((char) next) != -1) { buff.append((char) next); next = rawNext(); } consumer.onNumber(toNumber(buff.toString(), pos)); if (isWhitespace((char) next)) next = next(); return next; } private int readListTo(Consumer consumer) { int next; consumer.beforeList(); do { next = next(); if (next != ']') { consumer.beforeListItem(); next = readNextTo(next, consumer); consumer.afterListItem(); } } while (next == ','); ensure(next,']'); consumer.afterList(); return next(); } private int readObjectTo(Consumer consumer) { int next; consumer.beforeObject(); do { next = next(); if (next == '"') { String name = readString(); consumer.beforeProperty(name); ensure(next(),':'); next = readNextTo(next(), consumer); consumer.afterProperty(name); } } while (next == ','); ensure(next,'}'); consumer.afterObject(); return next(); } @Override public void sendTo(Consumer consumer) { readNextTo(next(), consumer); } private Number toNumber(String string, int pos) { try { if (string.contains(".")) return new BigDecimal(string); else return new BigInteger(string); } catch (NumberFormatException e) { throw new ParseException("Number expected, but got '"+ string +"'", pos); } } private void ensure(String str) { int pos = this.pos - 1; for (int i = 1; i < str.length(); i++) { if (rawNext() != str.charAt(i)) throw new ParseException("'"+ str +"' expected", pos); } } private String readString() { StringBuilder buff = new StringBuilder(); int next; while ((next = rawNext()) != '"') { if (next == '\\') next = rawNext(); buff.append(toChar(next)); } return buff.toString(); } private char toChar(int next) { if (next == -1) throw new ParseException("Unexpected end of data", pos); else return (char) next; } private void ensure(int next, char exp) { if (next != exp) throw new ParseException("'"+ exp +"' expected", pos); } }
[ "atamur@yandex.ru" ]
atamur@yandex.ru
a2f30620eed6c17e5693520dd45ff1cc588ed018
ce996b27610e028fee13661423bb047647a14e14
/src/model/dao/Dao.java
5f780460d9f54ad503e9c0c0840b62c07c6a5702
[]
no_license
ellij/Asiakkaat
b96ab2269a24c19153f11f2404ff0a46ea3265fa
a6f799eea2c788b9baa67bd6dcd5d7101ee68f54
refs/heads/master
2022-07-13T07:45:57.302726
2020-05-16T14:17:56
2020-05-16T14:17:56
264,454,972
0
0
null
null
null
null
WINDOWS-1252
Java
false
false
5,590
java
package model.dao; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.ArrayList; import model.Asiakas; public class Dao { private Connection con=null; private ResultSet rs = null; private PreparedStatement stmtPrep=null; private String sql; private String db ="Myynti.sqlite"; private Connection yhdista(){ Connection con = null; String path = System.getProperty("catalina.base"); path = path.substring(0, path.indexOf(".metadata")).replace("\\", "/"); //Eclipsessa //path += "/webapps/"; //Tuotannossa. Laita tietokanta webapps-kansioon String url = "jdbc:sqlite:"+path+db; try { Class.forName("org.sqlite.JDBC"); con = DriverManager.getConnection(url); System.out.println("Yhteys avattu."); }catch (Exception e){ System.out.println("Yhteyden avaus epäonnistui."); e.printStackTrace(); } return con; } public ArrayList<Asiakas> listaaKaikki(){ ArrayList<Asiakas> asiakkaat = new ArrayList<Asiakas>(); sql = "SELECT * FROM asiakkaat"; try { con=yhdista(); if(con!=null){ //jos yhteys onnistui stmtPrep = con.prepareStatement(sql); rs = stmtPrep.executeQuery(); if(rs!=null){ //jos kysely onnistui while(rs.next()){ Asiakas asiakas = new Asiakas(); asiakas.setAsiakas_id(rs.getInt(1)); asiakas.setEtunimi(rs.getString(2)); asiakas.setSukunimi(rs.getString(3)); asiakas.setPuhelin(rs.getString(4)); asiakas.setSposti(rs.getString(5)); asiakkaat.add(asiakas); } } } con.close(); } catch (Exception e) { e.printStackTrace(); } return asiakkaat; } public ArrayList<Asiakas> listaaKaikki(String hakusana){ ArrayList<Asiakas> asiakkaat = new ArrayList<Asiakas>(); sql = "SELECT * FROM asiakkaat WHERE etunimi LIKE ? or sukunimi LIKE ? or sposti LIKE ?"; try { con=yhdista(); if(con!=null){ //jos yhteys onnistui stmtPrep = con.prepareStatement(sql); stmtPrep.setString(1, "%" + hakusana + "%"); stmtPrep.setString(2, "%" + hakusana + "%"); stmtPrep.setString(3, "%" + hakusana + "%"); rs = stmtPrep.executeQuery(); if(rs!=null){ //jos kysely onnistui while(rs.next()){ Asiakas asiakas = new Asiakas(); asiakas.setAsiakas_id(rs.getInt(1)); asiakas.setEtunimi(rs.getString(2)); asiakas.setSukunimi(rs.getString(3)); asiakas.setPuhelin(rs.getString(4)); asiakas.setSposti(rs.getString(5)); asiakkaat.add(asiakas); } } con.close(); } } catch (Exception e) { e.printStackTrace(); } return asiakkaat; } public boolean lisaaAsiakas(Asiakas asiakas) { boolean paluuArvo=true; sql="INSERT INTO asiakkaat(etunimi, sukunimi, puhelin, sposti) VALUES(?,?,?,?)"; try { con = yhdista(); stmtPrep=con.prepareStatement(sql); stmtPrep.setString(1, asiakas.getEtunimi()); stmtPrep.setString(2, asiakas.getSukunimi()); stmtPrep.setString(3, asiakas.getPuhelin()); stmtPrep.setString(4, asiakas.getSposti()); stmtPrep.executeUpdate(); con.close(); } catch (Exception e) { e.printStackTrace(); paluuArvo=false; } return paluuArvo; } public boolean poistaAsiakas(int asiakas_id){ //Oikeassa elämässä tiedot ensisijaisesti merkitään poistetuksi. boolean paluuArvo=true; sql="DELETE FROM asiakkaat WHERE asiakas_id=?"; try { con = yhdista(); stmtPrep=con.prepareStatement(sql); stmtPrep.setInt(1, asiakas_id); stmtPrep.executeUpdate(); con.close(); } catch (Exception e) { e.printStackTrace(); paluuArvo=false; } return paluuArvo; } public Asiakas etsiAsiakas(int asiakas_id) { Asiakas asiakas = null; sql = "SELECT * FROM asiakkaat WHERE asiakas_id=?"; try { con=yhdista(); if(con!=null) { stmtPrep = con.prepareStatement(sql); stmtPrep.setInt(1, asiakas_id); rs = stmtPrep.executeQuery(); if(rs.isBeforeFirst()) { rs.next(); asiakas = new Asiakas(); asiakas.setAsiakas_id(rs.getInt(1)); asiakas.setEtunimi(rs.getString(2)); asiakas.setSukunimi(rs.getString(3)); asiakas.setPuhelin(rs.getString(4)); asiakas.setSposti(rs.getString(5)); } } con.close(); } catch (Exception e) { e.printStackTrace(); } return asiakas; } public boolean muutaAsiakas (Asiakas asiakas, int asiakas_id) { boolean paluuArvo=true; sql="UPDATE asiakkaat SET etunimi=?, sukunimi=?, puhelin=?, sposti=? WHERE asiakas_id=?"; try { con = yhdista(); stmtPrep=con.prepareStatement(sql); stmtPrep.setString(1, asiakas.getEtunimi()); stmtPrep.setString(2, asiakas.getSukunimi()); stmtPrep.setString(3, asiakas.getPuhelin()); stmtPrep.setString(4, asiakas.getSposti()); stmtPrep.setInt(5, asiakas_id); stmtPrep.executeUpdate(); con.close(); }catch (Exception e) { e.printStackTrace(); paluuArvo=false; } return paluuArvo; } public boolean poistaKaikkiAsiakkaat(String pwd){ //Oikeassa elämässä tiedot ensisijaisesti merkitään poistetuksi. boolean paluuArvo=true; if(pwd!="nimda") { return false; } sql="DELETE FROM asiakkaat"; try { con = yhdista(); stmtPrep=con.prepareStatement(sql); stmtPrep.executeUpdate(); con.close(); } catch (Exception e) { e.printStackTrace(); paluuArvo=false; } return paluuArvo; } }
[ "elli.jokinen@gmail.com" ]
elli.jokinen@gmail.com
d6f163c34584c6d5ce165bb1005c5f98846f615a
756b472fce15b7d238e96fcecb828d2e0eefc570
/브루트 포스/N과M(2)_선택.java
3390996f71bb47131394d6e8b0ca68098fd195e8
[]
no_license
YOONSUNGHYEON/Algorithm
8ddd04840f4e184ff421e5d133c0c274d41141c3
602d932224f9f89c9ee6b2a1b209663245d45ba0
refs/heads/master
2021-07-20T13:02:48.468382
2021-07-07T06:55:27
2021-07-07T06:55:27
152,607,441
0
0
null
null
null
null
UTF-8
Java
false
false
1,153
java
import java.util.*; public class Main { static int[] a = new int[10]; static boolean[] c = new boolean[10]; //이 함수 역할 : 수 index를 선택할지 안할지 결정해야함 static void go(int index, int selected, int n, int m) { //index : 숫자 //selected : 선택한 수의 개수 if (selected == m) { //선택한 수가 m개가 되었을때 return for (int i=0; i<m; i++) { System.out.print(a[i]); if (i != m-1) System.out.print(' '); } System.out.println(); return; } if (index > n) return; //더이상 선택할 수가 없을 경우 //선택했을 경우 a[selected] = index; // 선택한 자리에 index를 넣기 go(index+1, selected+1, n, m); //선택 했으므로 selected와 index 증가 //선택하지 않았을 경우 a[selected] = 0; go(index+1, selected, n, m); } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); go(1, 0, n, m); } }
[ "qead753951@naver.com" ]
qead753951@naver.com
59a15423c79da490ce70af2bb01af4cbc9309a0f
b2bcb6ffc010a96e16471596d26a069f257dbae7
/src/main/java/com/veosaf/bookRental/repository/UserRepository.java
8a27a4794e4ee52c02c01b3f325aa3f8c2423234
[]
no_license
Book-Rental/sample-angularJS-springBoot-oauth2
e5902162286d0c3eb0f3e8777384d05c2a27e550
86367bb988a2f59bdec8322840ddd0aaca13f5aa
refs/heads/master
2021-06-26T15:16:33.120181
2017-09-12T19:34:01
2017-09-12T19:34:01
103,299,114
5
0
null
null
null
null
UTF-8
Java
false
false
469
java
package com.veosaf.bookRental.repository; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; import com.veosaf.bookRental.models.User; public interface UserRepository extends JpaRepository<User, Long> { @Query(value = "Select uC.user from UserCredential uC where uC.username = ?1 and uC.password = ?2") User findByCredentials(String userName, String password); User findByEmail(String email); }
[ "veosaf@gmail.com" ]
veosaf@gmail.com
f7d70e9a9fe0a789e5d0fe6e50228078bdc38e98
caddff9764c16aee4f0b7364a15c94710e6f43f8
/app/src/main/java/ontime/app/customer/Adapter/RvPaymnetMethordListAdapter.java
1425ee719ac460b51964b43beca4e71f8b7a8e3d
[]
no_license
sumitkumarc/maindata
451ea583bfc7ade8f5a99777f852563b23ae94cd
3548e5124d20d504631a58d2be5cbc56f108f444
refs/heads/master
2023-02-28T04:15:29.496699
2021-02-03T02:24:08
2021-02-03T02:24:08
331,492,414
0
0
null
null
null
null
UTF-8
Java
false
false
2,936
java
package ontime.app.customer.Adapter; import android.annotation.SuppressLint; import android.content.Context; import android.graphics.Color; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import androidx.annotation.NonNull; import androidx.recyclerview.widget.RecyclerView; import com.bumptech.glide.Glide; import ontime.app.R; import ontime.app.customer.doneActivity.OrderSummaryActivity; import ontime.app.databinding.RowItemPaymentMethordBinding; import ontime.app.databinding.RowItemorderCancelledBinding; import ontime.app.utils.Common; public class RvPaymnetMethordListAdapter extends RecyclerView.Adapter<RvPaymnetMethordListAdapter.MyViewHolder> { Context mContext; int[] mints; int row_index = 0; int[] ints= new int[]{4,2,1,3}; public RvPaymnetMethordListAdapter(Context context, int[] ints) { mContext = context; mints = ints; } @NonNull @Override public MyViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) { View itemView = LayoutInflater.from(parent.getContext()).inflate(R.layout.row_item_payment_methord, parent, false); return new MyViewHolder(itemView, RowItemPaymentMethordBinding.bind(itemView)); } @SuppressLint({"SetTextI18n", "UseCompatLoadingForDrawables"}) @Override public void onBindViewHolder(@NonNull MyViewHolder holder, final int position) { Glide.with(mContext).load(mints[position]).centerCrop().placeholder(R.drawable.ic_action_user).into(holder.binding.ivPamentMethord); holder.binding.llImgBack.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { row_index=position; Common.PAYMENT_TYPE =ints[position]; if(ints[position] == 1){ OrderSummaryActivity.binding.txtWallet.setVisibility(View.VISIBLE); }else { OrderSummaryActivity.binding.txtWallet.setVisibility(View.GONE); } notifyDataSetChanged();; } }); if (row_index == position) { if (Common.MERCHANT_TYPE == 1) { holder.binding.llImgBack.setBackground(mContext.getResources().getDrawable(R.drawable.btn_red_border)); } else { holder.binding.llImgBack.setBackground(mContext.getResources().getDrawable(R.drawable.btn_orange_border)); } }else { holder.binding.llImgBack.setBackground(null); } } @Override public int getItemCount() { return mints.length; } public class MyViewHolder extends RecyclerView.ViewHolder { RowItemPaymentMethordBinding binding; MyViewHolder(View itemView, RowItemPaymentMethordBinding itemBinding) { super(itemView); binding = itemBinding; } } }
[ "psumit88666@gmail.com" ]
psumit88666@gmail.com
3ea0bafe4b233234a796b7a76b7084e4dc6fe336
47a7afc6143e2cf27f56506cb04868e4d1d79232
/src/main/java/com/in28minutes/rest/webservices/restfulwebservices/helloworld/HelloWorldController.java
67ee60f10f06ee2423233a37a0316d7428393402
[]
no_license
javoPB/MicroServiciosUdemy-RestFull
a3ecb20eef2f2e0975a885e93b6ffe5802149950
2ce292aa48bb8619a659314d2767114099a0f31f
refs/heads/master
2022-12-29T18:45:25.777574
2020-10-12T15:11:06
2020-10-12T15:11:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,446
java
package com.in28minutes.rest.webservices.restfulwebservices.helloworld; import java.util.Locale; import org.hibernate.annotations.UpdateTimestamp; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.MessageSource; import org.springframework.context.i18n.LocaleContextHolder; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestHeader; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloWorldController { @Autowired private MessageSource messageSource; //@RequestMapping(method = RequestMethod.GET, path = "/hello-world") @GetMapping(path = "/hello-world") public String getHelloWorld() { return "Hello World."; } /** * Si en la clase HelloWorldBean no se define el getter del atributo de clase donde se almacena el valor * que se pasa como parámetro en el constructor, de genera un error. * @return */ @GetMapping(path = "/hello-world-bean") public HelloWorldBean getHelloWorldBean() { return new HelloWorldBean("Hello World."); } @GetMapping(path = "/hello-world/path-variable/{name}") public HelloWorldBean getHelloWorldBean(@PathVariable String name) { return new HelloWorldBean(String.format("Hello World %s", name) ); } /** * Para el manejo de la internacionalización. (i18n) * @RequestHeader para indicar que el parámetro se encuentra en el header del request. * y por consiguiente, el lenguaje se pasa como parámetro. * @return */ // @GetMapping(path = "/hello-world-internationalized") // public String getHelloWorldInternationalized(@RequestHeader(name="Accept-Language", required = false) Locale locale) { // return messageSource.getMessage("good.morning.message", null, locale); // } //Optimizando la configuración se la internacionalización. @GetMapping(path = "/hello-world-internationalized") public String getHelloWorldInternationalized() { return messageSource.getMessage("good.morning.message", null, LocaleContextHolder.getLocale()); } }
[ "pbjavouam@gmail.com" ]
pbjavouam@gmail.com
8a1be538d39a3572849b33a7751229009b65c9c1
ff59d94041ab79f96ce000ff70c841f6c904dd08
/Animation/app/src/main/java/com/example/nguyendangtinh/animation/MainActivity.java
8001f9080e91d8c747dff1c159e519bd1f430720
[]
no_license
nguyendangtinhdx/Android
09bfbe60e12860f67777e2690a74782c9f1b80d4
27756f09ea1d1512be855935c4c1bd166caa4a3b
refs/heads/master
2020-05-09T14:27:25.173493
2019-04-13T16:24:55
2019-04-13T16:24:55
181,192,886
0
0
null
null
null
null
UTF-8
Java
false
false
1,386
java
package com.example.nguyendangtinh.animation; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.animation.Animation; import android.view.animation.TranslateAnimation; import android.widget.ImageView; import android.widget.Toast; public class MainActivity extends AppCompatActivity { ImageView img; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); img = (ImageView)findViewById(R.id.imageView); TranslateAnimation animation = new TranslateAnimation(0,200,0,500); animation.setDuration(6000); // 6 giây animation.setFillAfter(true); // chạy xong rồi đứng im không quay lại animation.setAnimationListener(new Animation.AnimationListener() { @Override public void onAnimationStart(Animation animation) { Toast.makeText(MainActivity.this,"Start",Toast.LENGTH_SHORT).show(); } @Override public void onAnimationEnd(Animation animation) { Toast.makeText(MainActivity.this,"End",Toast.LENGTH_SHORT).show(); } @Override public void onAnimationRepeat(Animation animation) { } }); img.startAnimation(animation); } }
[ "=" ]
=
ffa955b0d120073d3d5ed6f3cdd659ee301d0605
2c0526707933c4ec67c9395857d0926bc6af81c9
/src/main/java/com/qa/tc/orangehrm/base/ITestListenerImpl.java
b75da23eb2e7797f3af681833941cd59123fe772
[]
no_license
harshvegada/WebAutomation_Mar21_Hybrid
04e57c50eca78ac079c1f853a9d87582b62cd0ec
c1fd98c8a5ff6b7787a8dcc57c02998b6822efb0
refs/heads/main
2023-06-19T23:56:40.286371
2021-07-22T07:13:56
2021-07-22T07:13:56
386,922,231
0
0
null
2021-07-22T02:59:32
2021-07-17T11:40:53
HTML
UTF-8
Java
false
false
1,982
java
package com.qa.tc.orangehrm.base; import java.lang.reflect.Constructor; import java.lang.reflect.Method; import org.apache.log4j.Logger; import org.testng.IAnnotationTransformer; import org.testng.ITestContext; import org.testng.ITestListener; import org.testng.ITestResult; import org.testng.annotations.ITestAnnotation; import com.google.common.base.Strings; import com.qa.tc.orangehrm.reports.ExtentReportClass; public class ITestListenerImpl extends PredefinedActions implements ITestListener, IAnnotationTransformer { Logger log = Logger.getLogger(ITestListenerImpl.class); private String defalultBrowser = "chrome"; private String defaultEnv = "qa"; private String browser; private String env; public static void main(String[] args) { System.out.println(System.getProperty("")); } @Override public void onTestStart(ITestResult result) { ExtentReportClass.createTest(result.getMethod().getMethodName()); start(browser, env); } @Override public void onTestSuccess(ITestResult result) { ExtentReportClass.pass(result); tearDown(); } @Override public void onTestFailure(ITestResult result) { ExtentReportClass.fail(result); tearDown(); } @Override public void onTestSkipped(ITestResult result) { ExtentReportClass.skip(result); tearDown(); } @Override public void onTestFailedButWithinSuccessPercentage(ITestResult result) { } @Override public void onStart(ITestContext context) { browser = Strings.isNullOrEmpty(System.getProperty("browser")) ? defalultBrowser : System.getProperty("browser"); env = Strings.isNullOrEmpty(System.getProperty("env")) ? defaultEnv : System.getProperty("env"); ExtentReportClass.initReport(); } @Override public void onFinish(ITestContext context) { ExtentReportClass.flushReports(); } @Override public void transform(ITestAnnotation annotation, Class testClass, Constructor testConstructor, Method testMethod) { annotation.setRetryAnalyzer(RetryTestCase.class); } }
[ "harshhpatel07@gmail.com" ]
harshhpatel07@gmail.com
e3970892b3f65a6f28c987cf332e1ed38a80ddbd
44302419cf7f05fa344fd55f16780b3da2570f7b
/src/main/java/com/solidbeans/tr/security/UserDetailsService.java
315a9fbaacbb092b94a425d20f55fb30443b5b51
[]
no_license
dtolland/sb-time-report-jhipster
82e45f7264a2355aa9c63a66bc0853188691a825
82b8151bba4db8dd1c8abe52df3c2693476a8780
refs/heads/master
2020-12-24T19:46:34.296440
2016-05-11T09:17:50
2016-05-11T09:17:50
58,529,535
0
0
null
null
null
null
UTF-8
Java
false
false
2,025
java
package com.solidbeans.tr.security; import com.solidbeans.tr.domain.User; import com.solidbeans.tr.repository.UserRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.authority.SimpleGrantedAuthority; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.core.userdetails.UsernameNotFoundException; import org.springframework.stereotype.Component; import org.springframework.transaction.annotation.Transactional; import javax.inject.Inject; import java.util.*; import java.util.stream.Collectors; /** * Authenticate a user from the database. */ @Component("userDetailsService") public class UserDetailsService implements org.springframework.security.core.userdetails.UserDetailsService { private final Logger log = LoggerFactory.getLogger(UserDetailsService.class); @Inject private UserRepository userRepository; @Override @Transactional public UserDetails loadUserByUsername(final String login) { log.debug("Authenticating {}", login); String lowercaseLogin = login.toLowerCase(Locale.ENGLISH); Optional<User> userFromDatabase = userRepository.findOneByLogin(lowercaseLogin); return userFromDatabase.map(user -> { if (!user.getActivated()) { throw new UserNotActivatedException("User " + lowercaseLogin + " was not activated"); } List<GrantedAuthority> grantedAuthorities = user.getAuthorities().stream() .map(authority -> new SimpleGrantedAuthority(authority.getName())) .collect(Collectors.toList()); return new org.springframework.security.core.userdetails.User(lowercaseLogin, user.getPassword(), grantedAuthorities); }).orElseThrow(() -> new UsernameNotFoundException("User " + lowercaseLogin + " was not found in the " + "database")); } }
[ "david.tolland@gmail.com" ]
david.tolland@gmail.com
885d0f92e1eef751c39bd0677987fb6aca123a1f
65b77c0f43ad8d85d3382dd44810512654ea646d
/build/app/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/swiperefreshlayout/R.java
87264561be0150e934bc793b95b9787b791d55d2
[]
no_license
SionChen/WisdomProperty
2a2f8a087b248a5c77d7825d673e6a0d566cd7fe
250f70a750d14ffe8b0492210f65d6451535d6f5
refs/heads/master
2020-06-03T20:46:42.829564
2020-01-14T08:59:26
2020-01-14T08:59:26
191,723,937
5
0
null
2020-01-14T08:59:43
2019-06-13T08:37:13
Java
UTF-8
Java
false
false
10,458
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package androidx.swiperefreshlayout; public final class R { private R() {} public static final class attr { private attr() {} public static final int alpha = 0x7f020027; public static final int font = 0x7f020073; public static final int fontProviderAuthority = 0x7f020075; public static final int fontProviderCerts = 0x7f020076; public static final int fontProviderFetchStrategy = 0x7f020077; public static final int fontProviderFetchTimeout = 0x7f020078; public static final int fontProviderPackage = 0x7f020079; public static final int fontProviderQuery = 0x7f02007a; public static final int fontStyle = 0x7f02007b; public static final int fontVariationSettings = 0x7f02007c; public static final int fontWeight = 0x7f02007d; public static final int ttcIndex = 0x7f020103; } public static final class color { private color() {} public static final int notification_action_color_filter = 0x7f04003c; public static final int notification_icon_bg_color = 0x7f04003d; public static final int ripple_material_light = 0x7f040047; public static final int secondary_text_default_material_light = 0x7f040049; } public static final class dimen { private dimen() {} public static final int compat_button_inset_horizontal_material = 0x7f05004b; public static final int compat_button_inset_vertical_material = 0x7f05004c; public static final int compat_button_padding_horizontal_material = 0x7f05004d; public static final int compat_button_padding_vertical_material = 0x7f05004e; public static final int compat_control_corner_material = 0x7f05004f; public static final int compat_notification_large_icon_max_height = 0x7f050050; public static final int compat_notification_large_icon_max_width = 0x7f050051; public static final int notification_action_icon_size = 0x7f05005b; public static final int notification_action_text_size = 0x7f05005c; public static final int notification_big_circle_margin = 0x7f05005d; public static final int notification_content_margin_start = 0x7f05005e; public static final int notification_large_icon_height = 0x7f05005f; public static final int notification_large_icon_width = 0x7f050060; public static final int notification_main_column_padding_top = 0x7f050061; public static final int notification_media_narrow_margin = 0x7f050062; public static final int notification_right_icon_size = 0x7f050063; public static final int notification_right_side_padding_top = 0x7f050064; public static final int notification_small_icon_background_padding = 0x7f050065; public static final int notification_small_icon_size_as_large = 0x7f050066; public static final int notification_subtext_size = 0x7f050067; public static final int notification_top_pad = 0x7f050068; public static final int notification_top_pad_large_text = 0x7f050069; } public static final class drawable { private drawable() {} public static final int notification_action_background = 0x7f060056; public static final int notification_bg = 0x7f060057; public static final int notification_bg_low = 0x7f060058; public static final int notification_bg_low_normal = 0x7f060059; public static final int notification_bg_low_pressed = 0x7f06005a; public static final int notification_bg_normal = 0x7f06005b; public static final int notification_bg_normal_pressed = 0x7f06005c; public static final int notification_icon_background = 0x7f06005d; public static final int notification_template_icon_bg = 0x7f06005e; public static final int notification_template_icon_low_bg = 0x7f06005f; public static final int notification_tile_bg = 0x7f060060; public static final int notify_panel_notification_icon_bg = 0x7f060061; } public static final class id { private id() {} public static final int action_container = 0x7f07000d; public static final int action_divider = 0x7f07000f; public static final int action_image = 0x7f070010; public static final int action_text = 0x7f070016; public static final int actions = 0x7f070017; public static final int async = 0x7f07001d; public static final int blocking = 0x7f07001f; public static final int chronometer = 0x7f070026; public static final int forever = 0x7f070038; public static final int icon = 0x7f07003c; public static final int icon_group = 0x7f07003d; public static final int info = 0x7f070040; public static final int italic = 0x7f070041; public static final int line1 = 0x7f070043; public static final int line3 = 0x7f070044; public static final int normal = 0x7f07004c; public static final int notification_background = 0x7f07004d; public static final int notification_main_column = 0x7f07004e; public static final int notification_main_column_container = 0x7f07004f; public static final int right_icon = 0x7f070055; public static final int right_side = 0x7f070056; public static final int tag_transition_group = 0x7f070073; public static final int tag_unhandled_key_event_manager = 0x7f070074; public static final int tag_unhandled_key_listeners = 0x7f070075; public static final int text = 0x7f070076; public static final int text2 = 0x7f070077; public static final int time = 0x7f07007a; public static final int title = 0x7f07007b; } public static final class integer { private integer() {} public static final int status_bar_notification_info_maxnum = 0x7f080004; } public static final class layout { private layout() {} public static final int notification_action = 0x7f09001d; public static final int notification_action_tombstone = 0x7f09001e; public static final int notification_template_custom_big = 0x7f09001f; public static final int notification_template_icon_group = 0x7f090020; public static final int notification_template_part_chronometer = 0x7f090021; public static final int notification_template_part_time = 0x7f090022; } public static final class string { private string() {} public static final int status_bar_notification_info_overflow = 0x7f0b0028; } public static final class style { private style() {} public static final int TextAppearance_Compat_Notification = 0x7f0c00ec; public static final int TextAppearance_Compat_Notification_Info = 0x7f0c00ed; public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0c00ee; public static final int TextAppearance_Compat_Notification_Time = 0x7f0c00ef; public static final int TextAppearance_Compat_Notification_Title = 0x7f0c00f0; public static final int Widget_Compat_NotificationActionContainer = 0x7f0c0158; public static final int Widget_Compat_NotificationActionText = 0x7f0c0159; } public static final class styleable { private styleable() {} public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 }; public static final int ColorStateListItem_android_color = 0; public static final int ColorStateListItem_android_alpha = 1; public static final int ColorStateListItem_alpha = 2; public static final int[] FontFamily = { 0x7f020075, 0x7f020076, 0x7f020077, 0x7f020078, 0x7f020079, 0x7f02007a }; public static final int FontFamily_fontProviderAuthority = 0; public static final int FontFamily_fontProviderCerts = 1; public static final int FontFamily_fontProviderFetchStrategy = 2; public static final int FontFamily_fontProviderFetchTimeout = 3; public static final int FontFamily_fontProviderPackage = 4; public static final int FontFamily_fontProviderQuery = 5; public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f020073, 0x7f02007b, 0x7f02007c, 0x7f02007d, 0x7f020103 }; public static final int FontFamilyFont_android_font = 0; public static final int FontFamilyFont_android_fontWeight = 1; public static final int FontFamilyFont_android_fontStyle = 2; public static final int FontFamilyFont_android_ttcIndex = 3; public static final int FontFamilyFont_android_fontVariationSettings = 4; public static final int FontFamilyFont_font = 5; public static final int FontFamilyFont_fontStyle = 6; public static final int FontFamilyFont_fontVariationSettings = 7; public static final int FontFamilyFont_fontWeight = 8; public static final int FontFamilyFont_ttcIndex = 9; public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; public static final int GradientColor_android_startColor = 0; public static final int GradientColor_android_endColor = 1; public static final int GradientColor_android_type = 2; public static final int GradientColor_android_centerX = 3; public static final int GradientColor_android_centerY = 4; public static final int GradientColor_android_gradientRadius = 5; public static final int GradientColor_android_tileMode = 6; public static final int GradientColor_android_centerColor = 7; public static final int GradientColor_android_startX = 8; public static final int GradientColor_android_startY = 9; public static final int GradientColor_android_endX = 10; public static final int GradientColor_android_endY = 11; public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; public static final int GradientColorItem_android_color = 0; public static final int GradientColorItem_android_offset = 1; } }
[ "759856708@qq.com" ]
759856708@qq.com
ad02b9663c6ba75f30e004732c14a9eab8d44c57
254fba5fff0191edd1950b993630467ed045488f
/Biblioteca_caseira/src/br/edu/ifrs/canoas/fxml/RegistrarLocacaoController.java
1923ee479d15fd20e1f3703c7d2bc8f2f53962a3
[]
no_license
brunorosapohren/BibliotecaCaseira
19aca84e4ad1ad1d8d4219d00c1795c8392550c7
6fd8f9e33bc988628115a74ab6f7e31f87432211
refs/heads/master
2020-06-15T13:28:17.200428
2019-07-05T00:00:55
2019-07-05T00:00:55
195,312,935
0
0
null
null
null
null
UTF-8
Java
false
false
1,937
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package br.edu.ifrs.canoas.fxml; import java.net.URL; import java.util.ResourceBundle; import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.fxml.Initializable; import javafx.scene.control.Button; import javafx.scene.control.TableColumn; import javafx.scene.control.TableView; import javafx.scene.control.TextField; /** * FXML Controller class * Controller responsável por controlar o registro e finalizações das Locações * @author Bruno-PC */ public class RegistrarLocacaoController implements Initializable { @FXML private TableView<?> tabela; @FXML private TableColumn<?, ?> nomeLocatario; @FXML private TableColumn<?, ?> nomeLivro; @FXML private TableColumn<?, ?> dataPegou; @FXML private Button devolvidoBT; @FXML private TableView<?> tabelaLivroNovaLocacao; @FXML private TableColumn<?, ?> livrosDisponiveis; @FXML private TableView<?> tabelaPessoaNovaLocacao; @FXML private TableColumn<?, ?> pessoaLocataria; @FXML private TextField dataQuePegou; @FXML private Button registrarLocacaoBT; @FXML private Button cancelarBT; @FXML private TextField dataDevolucao; /** * Initializes the controller class. * @param url * @param rb */ @Override public void initialize(URL url, ResourceBundle rb) { // TODO } @FXML private void devolverLivro(ActionEvent event) { } @FXML private void registrarLocacao(ActionEvent event) { } /* * Retorna para o menu(TelaInicial) quando pressionado o botão "Cancelar" */ @FXML private void voltarMenu(ActionEvent event) { Main.trocarTelaBiblioteca("TelaInicial.fxml"); } }
[ "brunorosapohren@gmail.com" ]
brunorosapohren@gmail.com
25de40ceada4a90b4316465a0f41082b0a8a6f15
5e4fa021fc0d09256e76bbb420e1510af775600f
/app/src/test/java/com/example/vaviorky/rssandroid/ExampleUnitTest.java
5e2c2c380bf5d62fd50e55ac7d8a5412b33d3488
[]
no_license
Vaviorky/RSSReader
c34e38f0dc16f98ec7aaa344179a7948714d13b1
0943f6f28ef8072f2c487a8ea08c26e4e49d0a35
refs/heads/master
2021-01-16T00:10:01.035325
2017-01-21T18:12:35
2017-01-21T18:12:35
78,891,576
0
0
null
null
null
null
UTF-8
Java
false
false
420
java
package com.example.vaviorky.rssandroid; import org.junit.Test; import static org.junit.Assert.assertEquals; /** * 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() throws Exception { assertEquals(4, 2 + 2); } }
[ "danieloss15@gmail.com" ]
danieloss15@gmail.com
9c8af82f93c5d8d843aa49045915dce75892c603
fc041b7d44a5008c650f219c5e5b5c59fb1087d4
/KisanWork/MyApplication2/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/androidx/legacy/coreui/R.java
a1f75e36fca663ca08e80aaed66ae5d02f9d905f
[]
no_license
rohangho/under_development
f692da8a7365af785d9f03671d5494f26ceae816
e999b4ba1ea4b13243c826523d369d55583c5000
refs/heads/master
2021-05-03T12:13:12.065732
2020-02-11T14:40:19
2020-02-11T14:40:19
100,291,099
0
0
null
null
null
null
UTF-8
Java
false
false
12,395
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package androidx.legacy.coreui; public final class R { private R() {} public static final class attr { private attr() {} public static final int alpha = 0x7f030027; public static final int coordinatorLayoutStyle = 0x7f0300a1; public static final int font = 0x7f0300d4; public static final int fontProviderAuthority = 0x7f0300d6; public static final int fontProviderCerts = 0x7f0300d7; public static final int fontProviderFetchStrategy = 0x7f0300d8; public static final int fontProviderFetchTimeout = 0x7f0300d9; public static final int fontProviderPackage = 0x7f0300da; public static final int fontProviderQuery = 0x7f0300db; public static final int fontStyle = 0x7f0300dc; public static final int fontVariationSettings = 0x7f0300dd; public static final int fontWeight = 0x7f0300de; public static final int keylines = 0x7f030109; public static final int layout_anchor = 0x7f03010e; public static final int layout_anchorGravity = 0x7f03010f; public static final int layout_behavior = 0x7f030110; public static final int layout_dodgeInsetEdges = 0x7f03013c; public static final int layout_insetEdge = 0x7f030148; public static final int layout_keyline = 0x7f030149; public static final int statusBarBackground = 0x7f0301a9; public static final int ttcIndex = 0x7f03020b; } public static final class color { private color() {} public static final int notification_action_color_filter = 0x7f05006b; public static final int notification_icon_bg_color = 0x7f05006c; public static final int ripple_material_light = 0x7f050077; public static final int secondary_text_default_material_light = 0x7f050079; } public static final class dimen { private dimen() {} public static final int compat_button_inset_horizontal_material = 0x7f060051; public static final int compat_button_inset_vertical_material = 0x7f060052; public static final int compat_button_padding_horizontal_material = 0x7f060053; public static final int compat_button_padding_vertical_material = 0x7f060054; public static final int compat_control_corner_material = 0x7f060055; public static final int compat_notification_large_icon_max_height = 0x7f060056; public static final int compat_notification_large_icon_max_width = 0x7f060057; public static final int notification_action_icon_size = 0x7f0600c1; public static final int notification_action_text_size = 0x7f0600c2; public static final int notification_big_circle_margin = 0x7f0600c3; public static final int notification_content_margin_start = 0x7f0600c4; public static final int notification_large_icon_height = 0x7f0600c5; public static final int notification_large_icon_width = 0x7f0600c6; public static final int notification_main_column_padding_top = 0x7f0600c7; public static final int notification_media_narrow_margin = 0x7f0600c8; public static final int notification_right_icon_size = 0x7f0600c9; public static final int notification_right_side_padding_top = 0x7f0600ca; public static final int notification_small_icon_background_padding = 0x7f0600cb; public static final int notification_small_icon_size_as_large = 0x7f0600cc; public static final int notification_subtext_size = 0x7f0600cd; public static final int notification_top_pad = 0x7f0600ce; public static final int notification_top_pad_large_text = 0x7f0600cf; } public static final class drawable { private drawable() {} public static final int notification_action_background = 0x7f07006a; public static final int notification_bg = 0x7f07006b; public static final int notification_bg_low = 0x7f07006c; public static final int notification_bg_low_normal = 0x7f07006d; public static final int notification_bg_low_pressed = 0x7f07006e; public static final int notification_bg_normal = 0x7f07006f; public static final int notification_bg_normal_pressed = 0x7f070070; public static final int notification_icon_background = 0x7f070071; public static final int notification_template_icon_bg = 0x7f070072; public static final int notification_template_icon_low_bg = 0x7f070073; public static final int notification_tile_bg = 0x7f070074; public static final int notify_panel_notification_icon_bg = 0x7f070075; } public static final class id { private id() {} public static final int action_container = 0x7f08000e; public static final int action_divider = 0x7f080010; public static final int action_image = 0x7f080011; public static final int action_text = 0x7f080018; public static final int actions = 0x7f080019; public static final int async = 0x7f08001f; public static final int blocking = 0x7f080023; public static final int bottom = 0x7f080024; public static final int chronometer = 0x7f08002c; public static final int end = 0x7f080042; public static final int forever = 0x7f08004e; public static final int icon = 0x7f080056; public static final int icon_group = 0x7f080057; public static final int info = 0x7f08005a; public static final int italic = 0x7f08005c; public static final int left = 0x7f080060; public static final int line1 = 0x7f080061; public static final int line3 = 0x7f080062; public static final int none = 0x7f080071; public static final int normal = 0x7f080072; public static final int notification_background = 0x7f080073; public static final int notification_main_column = 0x7f080074; public static final int notification_main_column_container = 0x7f080075; public static final int right = 0x7f080081; public static final int right_icon = 0x7f080082; public static final int right_side = 0x7f080083; public static final int start = 0x7f0800aa; public static final int tag_transition_group = 0x7f0800b1; public static final int tag_unhandled_key_event_manager = 0x7f0800b2; public static final int tag_unhandled_key_listeners = 0x7f0800b3; public static final int text = 0x7f0800b4; public static final int text2 = 0x7f0800b5; public static final int time = 0x7f0800bd; public static final int title = 0x7f0800be; public static final int top = 0x7f0800c2; } public static final class integer { private integer() {} public static final int status_bar_notification_info_maxnum = 0x7f09000e; } public static final class layout { private layout() {} public static final int notification_action = 0x7f0b002f; public static final int notification_action_tombstone = 0x7f0b0030; public static final int notification_template_custom_big = 0x7f0b0037; public static final int notification_template_icon_group = 0x7f0b0038; public static final int notification_template_part_chronometer = 0x7f0b003c; public static final int notification_template_part_time = 0x7f0b003d; } public static final class string { private string() {} public static final int status_bar_notification_info_overflow = 0x7f0f003a; } public static final class style { private style() {} public static final int TextAppearance_Compat_Notification = 0x7f100112; public static final int TextAppearance_Compat_Notification_Info = 0x7f100113; public static final int TextAppearance_Compat_Notification_Line2 = 0x7f100115; public static final int TextAppearance_Compat_Notification_Time = 0x7f100118; public static final int TextAppearance_Compat_Notification_Title = 0x7f10011a; public static final int Widget_Compat_NotificationActionContainer = 0x7f1001c1; public static final int Widget_Compat_NotificationActionText = 0x7f1001c2; public static final int Widget_Support_CoordinatorLayout = 0x7f1001ee; } public static final class styleable { private styleable() {} public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f030027 }; public static final int ColorStateListItem_android_color = 0; public static final int ColorStateListItem_android_alpha = 1; public static final int ColorStateListItem_alpha = 2; public static final int[] CoordinatorLayout = { 0x7f030109, 0x7f0301a9 }; public static final int CoordinatorLayout_keylines = 0; public static final int CoordinatorLayout_statusBarBackground = 1; public static final int[] CoordinatorLayout_Layout = { 0x10100b3, 0x7f03010e, 0x7f03010f, 0x7f030110, 0x7f03013c, 0x7f030148, 0x7f030149 }; public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; public static final int CoordinatorLayout_Layout_layout_anchor = 1; public static final int CoordinatorLayout_Layout_layout_anchorGravity = 2; public static final int CoordinatorLayout_Layout_layout_behavior = 3; public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; public static final int CoordinatorLayout_Layout_layout_keyline = 6; public static final int[] FontFamily = { 0x7f0300d6, 0x7f0300d7, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f0300db }; public static final int FontFamily_fontProviderAuthority = 0; public static final int FontFamily_fontProviderCerts = 1; public static final int FontFamily_fontProviderFetchStrategy = 2; public static final int FontFamily_fontProviderFetchTimeout = 3; public static final int FontFamily_fontProviderPackage = 4; public static final int FontFamily_fontProviderQuery = 5; public static final int[] FontFamilyFont = { 0x1010532, 0x1010533, 0x101053f, 0x101056f, 0x1010570, 0x7f0300d4, 0x7f0300dc, 0x7f0300dd, 0x7f0300de, 0x7f03020b }; public static final int FontFamilyFont_android_font = 0; public static final int FontFamilyFont_android_fontWeight = 1; public static final int FontFamilyFont_android_fontStyle = 2; public static final int FontFamilyFont_android_ttcIndex = 3; public static final int FontFamilyFont_android_fontVariationSettings = 4; public static final int FontFamilyFont_font = 5; public static final int FontFamilyFont_fontStyle = 6; public static final int FontFamilyFont_fontVariationSettings = 7; public static final int FontFamilyFont_fontWeight = 8; public static final int FontFamilyFont_ttcIndex = 9; public static final int[] GradientColor = { 0x101019d, 0x101019e, 0x10101a1, 0x10101a2, 0x10101a3, 0x10101a4, 0x1010201, 0x101020b, 0x1010510, 0x1010511, 0x1010512, 0x1010513 }; public static final int GradientColor_android_startColor = 0; public static final int GradientColor_android_endColor = 1; public static final int GradientColor_android_type = 2; public static final int GradientColor_android_centerX = 3; public static final int GradientColor_android_centerY = 4; public static final int GradientColor_android_gradientRadius = 5; public static final int GradientColor_android_tileMode = 6; public static final int GradientColor_android_centerColor = 7; public static final int GradientColor_android_startX = 8; public static final int GradientColor_android_startY = 9; public static final int GradientColor_android_endX = 10; public static final int GradientColor_android_endY = 11; public static final int[] GradientColorItem = { 0x10101a5, 0x1010514 }; public static final int GradientColorItem_android_color = 0; public static final int GradientColorItem_android_offset = 1; } }
[ "rohangho@live.com" ]
rohangho@live.com
5d375592ece6f41f626e16c5658d1605deb993dd
aab7336eba7efcf60f5407480fd57c068c6face0
/pay-service-user/src/main/java/com/globalhua/pay/core/account/mapper/AccountMapper.java
1b000089e169e6e952351d6cf9c42c29d9b1ba49
[ "Apache-2.0" ]
permissive
a413528002/hxpay
fe74b2fb0c10d200d9341032f57afa690e029933
6b400fb2d5dee38bf01bc27f7978513c5846355c
refs/heads/main
2023-03-26T19:51:05.767507
2021-03-24T00:22:41
2021-03-24T00:22:41
349,655,250
0
0
null
null
null
null
UTF-8
Java
false
false
320
java
package com.globalhua.pay.core.account.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.globalhua.pay.facade.account.entity.Account; /** * <p> * 账号表 Mapper 接口 * </p> * * @author ${author} * @since 2021-03-22 */ public interface AccountMapper extends BaseMapper<Account> { }
[ "lrj@qq.com" ]
lrj@qq.com
527657f962d7d3a954cca86e1009768e650de6f8
be00b45c7b74d714e12e64fece2fd4f8b765071b
/src/test/java/com/world/pay/offer/OfferApiApplicationTests.java
4044730939224a6c96efe483694966dc91c1af6a
[]
no_license
harsh342/offer-api
d45e811d9ad9c241f0defeb961000667a32d1834
92ffcc929e9b9699c13fd08d7775bf124d90cf83
refs/heads/master
2020-05-26T03:56:10.227703
2019-05-28T22:19:32
2019-05-28T22:19:32
188,098,682
0
0
null
null
null
null
UTF-8
Java
false
false
338
java
package com.world.pay.offer; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class OfferApiApplicationTests { @Test public void contextLoads() { } }
[ "harsh342@gmail.com" ]
harsh342@gmail.com
95152cb201ffdea9715eb69ccb64554071cc4a2b
08c23f3406eec465b8cbebb69283e8008da30327
/Swing Utilities/src/com/frank/swing/ProgressControl.java
898eb12752f7cda9d393eb04c7fbd9440f1492f3
[]
no_license
frankjiang/Swing-Utilities
720fb5fc6e87e3e093611da2cb7cc7e09f373a88
9b899ec9299e60f5b758d8196a39af5cf540e23a
refs/heads/master
2021-01-18T21:59:58.971777
2016-04-11T03:00:05
2016-04-11T03:00:05
15,766,158
0
0
null
null
null
null
UTF-8
Java
false
false
1,151
java
/* * Copyright (c) 2011, 2020, Frank Jiang and/or its affiliates. All rights * reserved. * ProgressControl.java is built in 2013-5-12. */ package com.frank.swing; /** * This interface defines actions for a progress. * <p> * In this interface, the actions in the specified progress is under control by * the implementation of this interface. * </p> * * @author <a href="mailto:jiangfan0576@gmail.com">Frank Jiang</a> * @version 1.0.0 */ public interface ProgressControl { /** * Progress starts. */ public void start(); /** * Progress stops. */ public void terminate(); /** * Set the journey length of this progress. * * @param length * the journey length */ public void setLength(int length); /** * Update one step. */ public void update(); /** * Update the content of the current running task. * * @param content * task content */ public void update(String content); /** * Update specified steps. * * @param step * the amount of steps to update */ public void update(double step); }
[ "frankjiang0576@vip.qq.com" ]
frankjiang0576@vip.qq.com
07ffa1fab921b12cba0cb9878eb75e5d0b5ff16c
8a5f48db2e82ca88c19fbb23f797dcc78fee6430
/brainS/src/main/java/com/abilix/explainer/view/ExplainerAlertDialogs.java
b23b394b30d5c1e3f14f1c86785c6312342d3a6b
[]
no_license
guanqingguang0914/man5_B
cefc51f78f9a07adf0e167325b5ece31116c6b57
edc01b533b73942422b14c8767822b32e3ad5f2a
refs/heads/master
2020-04-09T11:21:52.896430
2018-12-04T06:06:09
2018-12-04T06:06:09
null
0
0
null
null
null
null
UTF-8
Java
false
false
17,352
java
package com.abilix.explainer.view; import com.abilix.explainer.ControlInfo; import com.abilix.explainer.ExplainerInitiator; import com.abilix.brain.R; import com.abilix.explainer.present.IMainActivityPresent; import com.abilix.explainer.utils.CommonUtils; import com.abilix.explainer.utils.LogMgr; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; import android.view.Gravity; import android.view.View; import android.view.View.OnClickListener; import android.widget.TextView; public class ExplainerAlertDialogs implements IExplainerAlertDialogs { public static final int ALERTDIALOG_BALANCING = 0; public static final int ALERTDIALOG_BALANCE_SUCESSED = 1; public static final int ALERTDIALOG_BALANCE_FAILED = 2; public static final int ALERTDIALOG_COMPASSADJUST_NOTIFICATION = 3; public static final int ALERTDIALOG_COMPASSADJUST_FINISHED = 4; public static final int ALERTDIALOG_CAMERA_OPENING = 5; public static final int ALERTDIALOG_CAMERA_CONNECT_ERROR = 6; public static final int ALERTDIALOG_GRAY_VALUE = 7; public static final int ALERTDIALOG_GRAY_ISCOLLECT = 8; public static final int ALERTDIALOG_GRAY_BLACKLINE = 9; public static final int ALERTDIALOG_GRAY_WHITEBACKGROUND = 10; public static final int ALERTDIALOG_DELETE_VIEWPAGE = 11; private AlertDialog mBalancingAlertDialog; private AlertDialog mBalanceAlertDialogFailedDialog; private AlertDialog mBalanceAlertDialogSucessedDialog; private AlertDialog mCompassAdjustNotificationAlertDialog; private AlertDialog mCompassAdjustFinishedAlertDialog; private AlertDialog mCameraOpeningAlertDialog; private AlertDialog mCameraConnectiongErrorAlertDialog; private AlertDialog mGrayValueAlertDialog; private AlertDialog mGrayIsCollectAlertDialog; private AlertDialog mGrayBlackLineAlertDialog; private AlertDialog mGrayWhiteBackGroundAlertDialog; private AlertDialog mDeleteViewPageAlertDialog; private IMainActivityPresent mainActivityPresent; public ExplainerAlertDialogs(IMainActivityPresent mainActivityPresent) { this.mainActivityPresent = mainActivityPresent; } public void showAlertDialog(Context context, int which, String message) { LogMgr.d("showAlertDialog: which: " + which + " message: " + message); switch (which) { case ALERTDIALOG_BALANCING: //0 showBalancingAlertDialog(context); break; case ALERTDIALOG_BALANCE_SUCESSED: //1 showBalanceSucessedAlertDialog(context); break; case ALERTDIALOG_BALANCE_FAILED: //2 showBalanceFailedAlertDialog(context); break; case ALERTDIALOG_COMPASSADJUST_NOTIFICATION: //3 showCompassAdjustNotificationAlertDialog(context); break; case ALERTDIALOG_COMPASSADJUST_FINISHED: //4 showCompassAdjustFinishedAlertDialog(context); break; case ALERTDIALOG_CAMERA_OPENING: //5 showCameraOpeningAlertDialog(context); break; case ALERTDIALOG_CAMERA_CONNECT_ERROR: //6 showCameraConnectiongErrorAlertDialog(context); break; case ALERTDIALOG_GRAY_VALUE: //7 showGrayValueAlertDialog(context, message); break; case ALERTDIALOG_GRAY_ISCOLLECT: showGrayIsCollectAlertDialog(context); break; case ALERTDIALOG_GRAY_BLACKLINE: showGrayBlackLineAlertDialog(context); break; case ALERTDIALOG_GRAY_WHITEBACKGROUND: showGrayWhiteBackGroundAlertDialog(context); break; case ALERTDIALOG_DELETE_VIEWPAGE: showDeleteViewPageAlertDialog(context); break; default: break; } } public void dismissAlertDialog(int which) { switch (which) { case ALERTDIALOG_BALANCING: //0 dismissBalancingAlertDialog(); break; case ALERTDIALOG_BALANCE_SUCESSED: //1 dismissBalanceSucessedAlertDialog(); break; case ALERTDIALOG_BALANCE_FAILED: //2 dismissBalanceFailedAlertDialog(); break; case ALERTDIALOG_COMPASSADJUST_NOTIFICATION: //3 dismissCompassAdjustNotificationAlertDialog(); break; case ALERTDIALOG_COMPASSADJUST_FINISHED: //4 dismissCompassAdjustFinishedAlertDialog(); break; case ALERTDIALOG_CAMERA_OPENING: //5 dismissCameraOpeningAlertDialog(); break; case ALERTDIALOG_CAMERA_CONNECT_ERROR: //6 dismissCameraConnectiongErrorAlertDialog(); break; case ALERTDIALOG_GRAY_VALUE: //7 dismissDeleteViewPageAlertDialog(); break; default: break; } } public void showBalancingAlertDialog(Context context) { mBalancingAlertDialog = CommonUtils.showNoButtonDialog( context, context.getResources().getString(R.string.pinghengche), context.getResources().getString(R.string.pinghengchezhengzai), false); mBalancingAlertDialog.setCancelable(true); mBalancingAlertDialog.show(); } public void showBalanceFailedAlertDialog(Context context) { mBalanceAlertDialogFailedDialog = CommonUtils.showNoButtonDialog( context, context.getResources().getString(R.string.pinghengche), context.getResources().getString( R.string.pinghengshibai), false); mBalanceAlertDialogFailedDialog.setCancelable(true); mBalanceAlertDialogFailedDialog.show(); } public void showBalanceSucessedAlertDialog(Context context) { mBalanceAlertDialogSucessedDialog = CommonUtils.showNoButtonDialog( context, context.getResources().getString(R.string.pinghengche), context.getResources().getString( R.string.pinghengchenggong), false); mBalanceAlertDialogSucessedDialog.setCancelable(true); mBalanceAlertDialogSucessedDialog.show(); } // 显示采集到的灰度数据 public void showGrayValueAlertDialog(Context context, String data) { mGrayValueAlertDialog = CommonUtils.showNoButtonDialog( context, context.getResources().getString(R.string.huiduzhi), data, false); mGrayValueAlertDialog.setCancelable(true); mGrayValueAlertDialog.show(); } public void dismissGrayValueAlertDialog() { if (mGrayValueAlertDialog != null) { mGrayValueAlertDialog.dismiss(); mGrayValueAlertDialog = null; } } public void showDeleteViewPageAlertDialog(Context context) { mDeleteViewPageAlertDialog = CommonUtils.showTwoButtonDialog( context, "", context.getString(R.string.delete), context.getString(R.string.determine), context.getString(R.string.cancel), false, new OnClickListener() { @Override public void onClick(View v) { LogMgr.d("点击确认删除"); mainActivityPresent.responseAndfinish(); } }, new OnClickListener() { @Override public void onClick(View v) { } }); mDeleteViewPageAlertDialog.setCancelable(true); mDeleteViewPageAlertDialog.show(); } public void dismissDeleteViewPageAlertDialog() { if (mDeleteViewPageAlertDialog != null) { mDeleteViewPageAlertDialog.dismiss(); mDeleteViewPageAlertDialog = null; } } public void showGrayIsCollectAlertDialog(Context context) { mGrayIsCollectAlertDialog = CommonUtils.showTwoButtonDialog( context, context.getResources().getString(R.string.huanjingcaiji), context.getString(R.string.shifouhuanjingcaiji), context.getString(R.string.shi), context.getString(R.string.fou), false, new OnClickListener() { @Override public void onClick(View v) { mainActivityPresent.grayIsCollectPosEvent(); } }, new OnClickListener() { @Override public void onClick(View v) { mainActivityPresent.grayIsCollectNegEvent(); } }); mGrayIsCollectAlertDialog.setCancelable(true); mGrayIsCollectAlertDialog.show(); } public void dismissGrayIsCollectAlertDialog() { if (mGrayIsCollectAlertDialog != null) { mGrayIsCollectAlertDialog.dismiss(); mGrayIsCollectAlertDialog = null; } } public void showGrayWhiteBackGroundAlertDialog(Context context) { mGrayWhiteBackGroundAlertDialog = CommonUtils.showTwoButtonDialog( context, context.getResources().getString(R.string.huanjingcaiji), context.getString(R.string.huanjingcaiji_duizhunbaise), context.getString(R.string.shi), context.getString(R.string.fou), false, new OnClickListener() { @Override public void onClick(View v) { mainActivityPresent.grayWhiteBackgroundPosEvent(); } }, new OnClickListener() { @Override public void onClick(View v) { mainActivityPresent.grayWhiteBackgroundNegEvent(); } }); mGrayWhiteBackGroundAlertDialog.setCancelable(true); mGrayWhiteBackGroundAlertDialog.show(); } public void dismissGrayWhiteBackGroundAlertDialog() { if (mGrayWhiteBackGroundAlertDialog != null) { mGrayWhiteBackGroundAlertDialog.dismiss(); mGrayWhiteBackGroundAlertDialog = null; } } public void showGrayBlackLineAlertDialog(Context context) { mGrayBlackLineAlertDialog = CommonUtils.showTwoButtonDialog( context, context.getResources().getString(R.string.huanjingcaiji), context.getString(R.string.huanjingcaiji_duizhunheixian), context.getString(R.string.shi), context.getString(R.string.fou), false, new OnClickListener() { @Override public void onClick(View v) { mainActivityPresent.grayBlackLinePosEvent(); } }, new OnClickListener() { @Override public void onClick(View v) { mainActivityPresent.grayBlackLineNegEvent(); } }); mGrayBlackLineAlertDialog.setCancelable(true); mGrayBlackLineAlertDialog.show(); } public void dismissGrayBlackLineAlertDialog() { if (mGrayBlackLineAlertDialog != null) { mGrayBlackLineAlertDialog.dismiss(); mGrayBlackLineAlertDialog = null; } } public void dismissBalanceFailedAlertDialog() { if (mBalanceAlertDialogFailedDialog != null) { mBalanceAlertDialogFailedDialog.dismiss(); mBalanceAlertDialogFailedDialog = null; } } public void dismissBalanceSucessedAlertDialog() { if (mBalanceAlertDialogSucessedDialog != null) { mBalanceAlertDialogSucessedDialog.dismiss(); mBalanceAlertDialogSucessedDialog = null; } } @Override public void showCompassAdjustNotificationAlertDialog(Context context) { LogMgr.d("showCompassAdjustNotificationAlertDialog"); int stringId; if (ControlInfo.getMain_robot_type() == ExplainerInitiator.ROBOT_TYPE_M) { stringId = R.string.zhinanzhenxuanzhuan; } else { stringId = R.string.zhinanzhenbazi; } mCompassAdjustNotificationAlertDialog = CommonUtils.showTwoButtonDialog( context, context.getResources().getString(R.string.zhinanzhenjiaozhun), context.getResources().getString(stringId), context.getString(R.string.shi), context.getString(R.string.fou), false, new OnClickListener() { @Override public void onClick(View v) { mainActivityPresent.compassNotifiPosEvent(); } }, new OnClickListener() { @Override public void onClick(View v) { mainActivityPresent.compassNotifiNegEvent(); } }); mCompassAdjustNotificationAlertDialog.setCancelable(true); mCompassAdjustNotificationAlertDialog.show(); } @Override public void dismissCompassAdjustNotificationAlertDialog() { if (mCompassAdjustNotificationAlertDialog != null) { mCompassAdjustNotificationAlertDialog.dismiss(); mCompassAdjustNotificationAlertDialog = null; } } @Override public void showCompassAdjustFinishedAlertDialog(Context context) { mCompassAdjustFinishedAlertDialog = CommonUtils.showTwoButtonDialog( context, context.getResources().getString(R.string.zhinanzhenjiaozhun), context.getResources().getString(R.string.zhinanzhenwancheng), context.getString(R.string.shi), context.getString(R.string.fou), false, new OnClickListener() { @Override public void onClick(View v) { mainActivityPresent.compassAdjustFinishedPosEvent(); } }, new OnClickListener() { @Override public void onClick(View v) { mainActivityPresent.compassAdjustFinishedNegEvent(); } }); mCompassAdjustFinishedAlertDialog.setCancelable(true); mCompassAdjustFinishedAlertDialog.show(); } @Override public void dismissCompassAdjustFinishedAlertDialog() { if (mCompassAdjustFinishedAlertDialog != null) { mCompassAdjustFinishedAlertDialog.dismiss(); mCompassAdjustFinishedAlertDialog = null; } } @Override public void showCameraOpeningAlertDialog(Context context) { // dismissCameraOpeningAlertDialog(); if (mCameraOpeningAlertDialog != null && mCameraOpeningAlertDialog.isShowing()) { return; } mCameraOpeningAlertDialog = CommonUtils.showNoButtonDialog( context, context.getResources().getString(R.string.shexiangtou), context.getResources().getString(R.string.shexiangtouzhengzai), false); mCameraOpeningAlertDialog.setCancelable(true); mCameraOpeningAlertDialog.show(); } @Override public void dismissCameraOpeningAlertDialog() { if (mCameraOpeningAlertDialog != null) { mCameraOpeningAlertDialog.dismiss(); mCameraOpeningAlertDialog = null; } } @Override public void showCameraConnectiongErrorAlertDialog(Context context) { if (mCameraConnectiongErrorAlertDialog!=null&&mCameraConnectiongErrorAlertDialog.isShowing()){ return; } mCameraConnectiongErrorAlertDialog = CommonUtils.showNoButtonDialog( context, context.getResources().getString(R.string.shexiangtou), context.getResources().getString(R.string.shexiangtoushifouchahao), false); mCameraConnectiongErrorAlertDialog.setCancelable(true); mCameraConnectiongErrorAlertDialog.show(); } @Override public void dismissCameraConnectiongErrorAlertDialog() { if (mCameraConnectiongErrorAlertDialog != null) { mCameraConnectiongErrorAlertDialog.dismiss(); mCameraConnectiongErrorAlertDialog = null; } } @Override public void dismissBalancingAlertDialog() { if (mBalancingAlertDialog != null) { mBalancingAlertDialog.dismiss(); mBalancingAlertDialog = null; } } }
[ "guanqingguang0914@163.com" ]
guanqingguang0914@163.com
af1bf69f40ac40345ae77a5eb2811256b7b41b39
6057e01204973a746af17b3014b65d5ddb160d33
/app/src/androidTest/java/com/cy/xintiao/game/ApplicationTest.java
6ec9e196f0fe2ccf4fcbff2660d7cc65ef6cda04
[]
no_license
caoyi01/XinTiaoGame
1a10c057480e2460fc837ddd27d6743a6110a58a
997c4e01074c235f7dd806a5ac61f7b94fcff190
refs/heads/master
2021-01-10T12:58:56.855940
2016-02-02T10:48:39
2016-02-02T10:48:39
50,897,610
0
0
null
null
null
null
UTF-8
Java
false
false
350
java
package com.cy.xintiao.game; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { super(Application.class); } }
[ "282502139@qq.com" ]
282502139@qq.com
fac5eb1d76608e012a6ef71af34e31868a45aedd
5f9964159b7dc486af2878b8d59de43445c747a9
/src/main/java/com/nezha/component/model/ReleaseTimeoutStrategy.java
acc3a8e7c524172035e453cd5315570db4ad3223
[]
no_license
nezha/zklock-spring-boot-starter
85dbbc649b07c7ab361356c4194eb3470e2ba6ff
7c487b1c3a38ab2d1c460d8bca147e19213e508c
refs/heads/master
2020-07-28T16:12:04.602918
2019-09-25T03:20:20
2019-09-25T03:20:20
209,461,639
1
1
null
null
null
null
UTF-8
Java
false
false
838
java
package com.nezha.component.model; import com.nezha.component.handler.ZKlockTimeoutException; import com.nezha.component.handler.release.ReleaseTimeoutHandler; /** * @author wanglaomo * @since 2019/4/15 **/ public enum ReleaseTimeoutStrategy implements ReleaseTimeoutHandler { /** * 继续执行业务逻辑,不做任何处理 */ NO_OPERATION() { @Override public void handle(LockInfo lockInfo) { // do nothing } }, /** * 快速失败 */ FAIL_FAST() { @Override public void handle(LockInfo lockInfo) { String errorMsg = String.format("Found Lock(%s) already been released while lock lease time is %d s", lockInfo.getName(), lockInfo.getLeaseTime()); throw new ZKlockTimeoutException(errorMsg); } } }
[ "1061243497@qq.com" ]
1061243497@qq.com
4ee703ed72a5e8ef89fa965d6fa785dabc97ec4e
0b56115b2662fa136cde06394e04ed917e8fee6e
/src/test/java/VistAndDonate.java
5343f32ada7e17332b5fed732609dc6885ff635b
[]
no_license
ragaie/appuim-iosTest
9a69dc839f59998cd5b8c5bab76f69d3763eca13
d1e15226f12745ba37aee7f8f354758b687fb1e3
refs/heads/master
2022-12-29T17:09:44.848239
2020-10-12T16:26:45
2020-10-12T16:26:45
303,423,389
0
0
null
null
null
null
UTF-8
Java
false
false
3,980
java
import io.appium.java_client.AppiumDriver; import io.appium.java_client.MobileBy; import io.appium.java_client.MobileElement; import io.appium.java_client.TouchAction; import io.appium.java_client.touch.offset.PointOption; import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebElement; import org.openqa.selenium.interactions.touch.TouchActions; import org.openqa.selenium.remote.CapabilityType; import org.openqa.selenium.remote.DesiredCapabilities; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; import org.testng.annotations.Test; import java.io.File; import java.net.MalformedURLException; import java.net.URL; import java.util.List; import java.util.concurrent.TimeUnit; public class VistAndDonate { By skipForNow = By.id("Skip for now"); By skip = By.id("Skip"); By sideMenu = By.id("main_menu_icon_off"); By faceBook = By.id("faceBookButton"); By donateButton = By.id("causeUrgentDonate"); By selectNetwork = By.id("picker Select mobile network"); By pickerView = By.id("pickerView"); By doneButton = By.id("DoneAction"); By selectAmount = By.id("picker Select donation amount"); By payAction = By.id("PayAction"); AppiumDriver<MobileElement> driver; WebDriverWait wait; @Test public void setupIosCapability() throws MalformedURLException { DesiredCapabilities cap = new DesiredCapabilities(); //for ios cap.setCapability("deviceName","iPhone 11 Pro Max"); cap.setCapability("platformVersion","13.3"); cap.setCapability("udid","27C73CC1-E5CC-4CAB-9DFB-4667534D64B5"); cap.setCapability("platformName","iOS"); File classpathRoot = new File(System.getProperty("user.dir")); System.out.println(classpathRoot.getAbsolutePath()); String urlForApp = classpathRoot.getAbsolutePath() + "/src/test/resources/Welcome_To_SwiftUI.app"; cap.setCapability("app", urlForApp); URL url = new URL(" http://0.0.0.0:4723/wd/hub"); driver = new AppiumDriver<MobileElement>(url, cap); wait = new WebDriverWait(driver, 30); System.out.println("application started ......"); skipLoginAndwelcomeTour(); reviewSidemenu(); selectFirstUrgentCaseDonnation(); choosenetwork(); chooseAmount(); takeDonateAction(); } public void skipLoginAndwelcomeTour(){ MobileElement one = driver.findElement(skipForNow); one.click(); wait.until(ExpectedConditions.elementToBeClickable(skip)).click(); } public void reviewSidemenu(){ wait.until(ExpectedConditions.elementToBeClickable(sideMenu)).click(); wait.until(ExpectedConditions.elementToBeClickable(faceBook)); driver.findElement(sideMenu).click(); } public void selectFirstUrgentCaseDonnation(){ driver.findElement(donateButton).click(); } public void choosenetwork(){ wait.until(ExpectedConditions.elementToBeClickable(selectNetwork)).click(); // find the picker elements List<WebElement> pickerEls = wait.until(ExpectedConditions.presenceOfAllElementsLocatedBy(pickerView)); pickerEls.get(0).findElements(MobileBy.className("UIAPickerWheel")).get(0).sendKeys("du"); driver.findElement(doneButton).click(); } public void chooseAmount(){ driver.findElement(selectAmount).click(); List<WebElement> pickerEls = wait.until(ExpectedConditions.presenceOfAllElementsLocatedBy(pickerView)); pickerEls = wait.until(ExpectedConditions.presenceOfAllElementsLocatedBy(pickerView)); pickerEls.get(0).findElements(MobileBy.className("UIAPickerWheel")).get(0).sendKeys("50"); driver.findElement(doneButton).click(); } public void takeDonateAction(){ driver.findElement(payAction).click(); } }
[ "eng.ragaie@gmail.com" ]
eng.ragaie@gmail.com
3da27293aec4c0b9cf6555be9a185d2a7a71513c
45993396ffec1dbe2909ab2b42ee42540afe0b73
/mc/src/com/hex/bigdata/udsp/mc/model/McConsumeLog.java
70cc7f2a62e89fe5e0c951e5ed93c75fa22a986c
[]
no_license
fjfd/boracay
6a9758795400db4208e5ce7dacb8691bb3a68190
184da923f964233a759f766c7f3fa61c30ee0274
refs/heads/master
2020-05-28T01:40:05.124311
2019-04-17T15:25:50
2019-04-17T15:25:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,731
java
package com.hex.bigdata.udsp.mc.model; import java.io.Serializable; public class McConsumeLog implements Serializable { private String pkId; private String userName; private String serviceName; private String requestContent; private String requestStartTime; private String requestEndTime; private String runStartTime; private String runEndTime; private String responseContent; private String status; private String appType; private String requestType; private String appName; private String errorCode; private String message; private String syncType; private String isCache; // 是否从缓存获取(0:是,1:否) private long consumeTime; // 接口耗时(ms) public String getPkId() { return pkId; } public void setPkId(String pkId) { this.pkId = pkId; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getServiceName() { return serviceName; } public void setServiceName(String serviceName) { this.serviceName = serviceName; } public String getRequestContent() { return requestContent; } public void setRequestContent(String requestContent) { this.requestContent = requestContent; } public String getRequestStartTime() { return requestStartTime; } public void setRequestStartTime(String requestStartTime) { this.requestStartTime = requestStartTime; } public String getRequestEndTime() { return requestEndTime; } public void setRequestEndTime(String requestEndTime) { this.requestEndTime = requestEndTime; } public String getRunStartTime() { return runStartTime; } public void setRunStartTime(String runStartTime) { this.runStartTime = runStartTime; } public String getRunEndTime() { return runEndTime; } public void setRunEndTime(String runEndTime) { this.runEndTime = runEndTime; } public String getResponseContent() { return responseContent; } public void setResponseContent(String responseContent) { this.responseContent = responseContent; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getAppType() { return appType; } public void setAppType(String appType) { this.appType = appType; } public String getRequestType() { return requestType; } public void setRequestType(String requestType) { this.requestType = requestType; } public String getAppName() { return appName; } public void setAppName(String appName) { this.appName = appName; } public String getErrorCode() { return errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public String getSyncType() { return syncType; } public void setSyncType(String syncType) { this.syncType = syncType; } public String getIsCache() { return isCache; } public void setIsCache(String isCache) { this.isCache = isCache; } public long getConsumeTime() { return consumeTime; } public void setConsumeTime(long consumeTime) { this.consumeTime = consumeTime; } }
[ "junjie.miao@goupwith.com" ]
junjie.miao@goupwith.com
681a4fc87c715e825cc2f349f90e7fee627aad0f
14c9af0d755c09c95a40d15d265945b9b9708a75
/Part8/part08-Part08_02.AverageOfPositiveNumbers/src/main/java/AverageOfPositiveNumbers.java
c1381c4dfcae3eeb72d03601bc384fb18097b17c
[]
no_license
jameshallam93/moocfijavabasics
6a3af61a5e6ff44a8f44fc591f5fde32f9fffa70
6ee93c34ad6a90f35e5563e1285a22b56d52c89a
refs/heads/master
2022-12-23T20:37:25.413046
2020-09-25T15:10:39
2020-09-25T15:10:39
291,303,717
0
0
null
2020-09-17T16:09:13
2020-08-29T16:06:54
Java
UTF-8
Java
false
false
763
java
import java.util.Scanner; public class AverageOfPositiveNumbers { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int sum = 0; int count = 0; while (true){ int inputValue = Integer.valueOf(scanner.nextLine()); if (inputValue == 0){ break; } if (inputValue > 0){ count++; sum = sum + inputValue; } } if (count == 0){ System.out.println("Cannot calculate the average"); }else{ double average = (1.0 * sum) / count; System.out.println(average); } } }
[ "james.hallam93@gmail.com" ]
james.hallam93@gmail.com
839c0bb7b6882de86d880a45671b3b7c622b825f
140fe086719f0801fab67b4f5673dd477b16843c
/constructor.java
01f1c4b4a8132c684414276ab55a515e67545bd4
[]
no_license
fahim-ash/Java-Tuotorial
1083268dfa79370d5bfc8eca38c51cb584a16df3
ca7774ab89cafe8bb18f2831b3e9149c22b185be
refs/heads/main
2023-05-28T03:17:52.770168
2021-06-20T15:15:34
2021-06-20T15:15:34
377,703,072
0
0
null
null
null
null
UTF-8
Java
false
false
730
java
//****************************************************** public class constructor { public static void main(String[] args) { Human human1 = new Human("Rick",65,70); Human human2 = new Human("Morty",16,50); human1.drink(); human2.eat(); } } //****************************************************** public class Human { String name; int age; double weight; Human(String name,int age,double weight){ this.name = name; this.age = age; this.weight = weight; } void eat() { System.out.println(this.name+" is eating"); } void drink() { System.out.println(this.name+" is drinking *burp*"); } } //******************************************************
[ "noreply@github.com" ]
noreply@github.com
a1689f793d8a0250f552c2f318558038d499a0b3
b796867c5ff3a5044ec2cd086741193ec2eefd09
/engine/src/main/java/org/teiid/query/sql/lang/CollectionValueIterator.java
9a6179b6fe28663397b25eab9a9ee47552cf7445
[ "Apache-2.0" ]
permissive
teiid/teiid
56971cbdc8910b51019ba184b8bb1bb054ff6a47
3de2f782befef980be5dc537249752e28ad972f7
refs/heads/master
2023-08-19T06:32:20.244837
2022-03-10T17:49:34
2022-03-10T17:49:34
6,092,163
277
269
NOASSERTION
2023-01-04T18:50:23
2012-10-05T15:21:04
Java
UTF-8
Java
false
false
1,866
java
/* * Copyright Red Hat, Inc. and/or its affiliates * and other contributors as indicated by the @author tags and * the COPYRIGHT.txt file distributed with this work. * * 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.teiid.query.sql.lang; import java.util.Collection; import java.util.Iterator; import org.teiid.core.TeiidComponentException; import org.teiid.query.sql.util.ValueIterator; public class CollectionValueIterator implements ValueIterator { private Collection vals; private Iterator instance = null; public CollectionValueIterator(Collection vals) { this.vals = vals; } /** * @see org.teiid.query.sql.util.ValueIterator#hasNext() * @since 4.3 */ public boolean hasNext() throws TeiidComponentException { if (instance == null) { this.instance = vals.iterator(); } return this.instance.hasNext(); } /** * @see org.teiid.query.sql.util.ValueIterator#next() * @since 4.3 */ public Object next() throws TeiidComponentException { if (instance == null) { this.instance = vals.iterator(); } return this.instance.next(); } /** * @see org.teiid.query.sql.util.ValueIterator#reset() * @since 4.3 */ public void reset() { this.instance = null; } }
[ "shawkins@redhat.com" ]
shawkins@redhat.com
4b3dceab4af693f8cbee8094065ded63b2ca9fca
a44352d98a07e4fb6a96c61244b610a50e67e129
/LichHoc/src/main/java/com/phucdk/lichhoc/object/HeaderFooter.java
e983d83c76413d3f8ac078259e10b11a9fc8f42f
[]
no_license
phucdkbk/LocLichGiangDay
599b8f12fc639611c2371cd13a46783e84ee6b9c
b0f5aae349fb20c81a4cdec2fa9c6e78179e4b56
refs/heads/master
2021-01-10T05:33:57.679545
2016-03-13T12:02:14
2016-03-13T12:02:14
51,920,541
0
0
null
null
null
null
UTF-8
Java
false
false
1,256
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.phucdk.lichhoc.object; import java.util.ArrayList; import java.util.List; import org.apache.poi.xssf.usermodel.XSSFRow; import org.apache.poi.xssf.usermodel.XSSFWorkbook; /** * * @author Administrator */ public class HeaderFooter { XSSFWorkbook workbook; private List<XSSFRow> listHeaderRows; private List<XSSFRow> listFooterRows; public XSSFWorkbook getWorkbook() { return workbook; } public void setWorkbook(XSSFWorkbook workbook) { this.workbook = workbook; } public List<XSSFRow> getListHeaderRows() { return listHeaderRows; } public void setListHeaderRows(List<XSSFRow> listHeaderRows) { this.listHeaderRows = listHeaderRows; } public List<XSSFRow> getListFooterRows() { return listFooterRows; } public void setListFooterRows(List<XSSFRow> listFooterRows) { this.listFooterRows = listFooterRows; } public HeaderFooter() { this.listFooterRows = new ArrayList<>(); this.listHeaderRows = new ArrayList<>(); } }
[ "phucdkbk@gmail.com" ]
phucdkbk@gmail.com
fbb6a9781af15fd43f02cd52d2de5f9fd45af4da
ae553015f818ad4a97068b54a92fd87471df85ea
/app/src/main/java/com/example/esias/NotificationReceiver.java
b3f505bd59215fdd71d5f137b26903fa59726866
[]
no_license
shaheem-pp/E-Sias-Learn
1933ee0bf038b049a1d964f6608612374d1b0154
d757e18fd981cf321ec29f283ba40fb367d994fa
refs/heads/master
2022-11-22T08:34:08.178618
2020-07-22T17:48:05
2020-07-22T17:48:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,528
java
package com.example.esias; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.view.MenuItem; import android.view.View; import android.widget.ImageView; import android.widget.PopupMenu; import android.widget.Toast; public class NotificationReceiver extends AppCompatActivity implements PopupMenu.OnMenuItemClickListener { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_notification_receiver); ImageView iv = (ImageView) findViewById(R.id.back_arrow); iv.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Intent k = new Intent(getApplicationContext(), MainActivity.class); startActivity(k); } }); } public void showPopup(View v) { PopupMenu popup = new PopupMenu(this, v); popup.setOnMenuItemClickListener(this); popup.inflate(R.menu.logout_menu); popup.show(); } @Override public boolean onMenuItemClick(MenuItem item) { switch (item.getItemId()) { case R.id.logout: Toast.makeText(this, "Aadyam login cheyyande monuse...", Toast.LENGTH_LONG).show(); return true; default: return false; } } @Override public void onBackPressed() { finish(); } }
[ "shanofficial2000@gmail.com" ]
shanofficial2000@gmail.com
8dabb537fe91c6bcb730ad6b66af904fbee7f4e3
3bab4a43b2dbbb0689e75965270c5e3641bbfae4
/src/uk/ac/cam/cl/mk2030/exercises/Exercise8.java
a70eb5dc156600756bf43edeef85091661773af8
[]
no_license
max-kaufmann/Machine_Learning
db8268d88486ae580eefa7357b21fe4bb878a595
ac2a304b128cd871d38dfda29307ca97c6b6da53
refs/heads/master
2023-02-04T08:20:17.412843
2020-12-18T20:07:25
2020-12-18T20:07:25
316,767,831
0
0
null
null
null
null
UTF-8
Java
false
false
8,535
java
package uk.ac.cam.cl.mk2030.exercises; import uk.ac.cam.cl.mlrd.exercises.markov_models.*; import java.io.IOException; import java.nio.file.Path; import java.util.*; public class Exercise8 implements IExercise8 { /** * Uses the Viterbi algorithm to calculate the most likely single sequence * of hidden states given the observed sequence and a model. * * @param model {@link HiddenMarkovModel}<{@link DiceRoll}, {@link DiceType}> * A sequence model. * @param observedSequence {@link List}<{@link DiceRoll}> A sequence of observed die * rolls * @return {@link List}<{@link DiceType}> The most likely single sequence of * hidden states */ @Override public List<DiceType> viterbi(HiddenMarkovModel<DiceRoll, DiceType> model, List<DiceRoll> observedSequence) { return viterbiGeneric(model,observedSequence); } static public <S,O> List<S> viterbiGeneric(HiddenMarkovModel<O,S> model, List<O> observedSequence){ List<Map<S,Double>> delta = new ArrayList<>(); List<Map<S,S>> sigh = new ArrayList<>(); O startSymbol = observedSequence.get(0); int T = observedSequence.size(); Set<S> states = model.getHiddenStates(); Map<S, Map<S,Double>> transitions = model.getTransitionMatrix(); Map<S,Map<O,Double>> emissions = model.getEmissionMatrix(); for (int i = 0; i < T;i++){ Map<S,Double> currentProbs = new HashMap<>(); Map<S,S> currentMostLikely = new HashMap<>(); for (S state : model.getHiddenStates()) { currentProbs.put(state,0.0); currentMostLikely.put(state,null); } delta.add(currentProbs); sigh.add(currentMostLikely); } Map<S,Double> firstColumn = delta.get(0); for(S state: states){ firstColumn.put(state,Math.log(emissions.get(state).get(observedSequence.get(0)))); } for (int t = 1; t <= T - 1; t++) { O currentObservation = observedSequence.get(t); Map<S,Double> currentObservationRow = delta.get(t); Map<S,S> currentMostLikely = sigh.get(t); for (S j : states){ double currentObservationProb = emissions.get(j).get(currentObservation); S currentMaxState = null; Double currentMaxProb = null; for (S i : states) { double observedProb = delta.get(t-1).get(i) + Math.log(transitions.get(i).get(j)) + Math.log(currentObservationProb); if (currentMaxProb == null || observedProb >= currentMaxProb ){ currentMaxProb = observedProb; currentMaxState = i; } } currentObservationRow.put(j,currentMaxProb); currentMostLikely.put(j,currentMaxState); } } S endState = null; O endSymbol = observedSequence.get(observedSequence.size()- 1); Double probMax = null; for(S state: states){ Double stateProb = emissions.get(state).get(endSymbol) ; if (probMax == null || stateProb > probMax){ endState = state; probMax = stateProb; } } int i = observedSequence.size()-1; S currentState = endState; List<S> StateListRev = new ArrayList<>(); while (i > 0){ StateListRev.add(currentState); currentState = sigh.get(i).get(currentState); i = i - 1; } StateListRev.add(currentState); List<S> results = new ArrayList<>(); for (int a = StateListRev.size()-1; a >= 0;a--){ results.add(StateListRev.get(a)); } return results; } /** * Uses the Viterbi algorithm to predict hidden sequences of all observed * sequences in testFiles. * * @param model The HMM model. * @param testFiles A list of files with observed and true hidden sequences. * @return {@link Map}<{@link List}<{@link DiceType}>, * {@link List}<{@link DiceType}>> A map from a real hidden sequence * to the equivalent estimated hidden sequence. * @throws IOException */ @Override public Map<List<DiceType>, List<DiceType>> predictAll(HiddenMarkovModel<DiceRoll, DiceType> model, List<Path> testFiles) throws IOException { List<HMMDataStore<DiceRoll,DiceType>> sequences = HMMDataStore.loadDiceFiles(testFiles); Map<List<DiceType>, List<DiceType>> results = new HashMap<>(); for (HMMDataStore<DiceRoll,DiceType> sequence : sequences) { results.put(sequence.hiddenSequence,viterbi(model,sequence.observedSequence)); } return results; } /** * Calculates the precision of the estimated sequence with respect to the * weighted state, i.e. the proportion of predicted weighted states that * were actually weighted. * * @param true2PredictedMap {@link Map}<{@link List}<{@link DiceType}>, * {@link List}<{@link DiceType}>> A map from a real hidden * sequence to the equivalent estimated hidden sequence. * @return <code>double</code> The precision of the estimated sequence with * respect to the weighted state averaged over all the test * sequences. */ @Override public double precision(Map<List<DiceType>, List<DiceType>> true2PredictedMap) { int numPredictedWeighted = 0; int actualWeighted = 0; for(List<DiceType> trueSequence: true2PredictedMap.keySet()){ List<DiceType> predictedSequence = true2PredictedMap.get(trueSequence); for (int i = 0; i < predictedSequence.size();i++){ if (predictedSequence.get(i) == DiceType.WEIGHTED){ numPredictedWeighted += 1; if (trueSequence.get(i) == DiceType.WEIGHTED){ actualWeighted += 1; } } } } return ((double) actualWeighted/numPredictedWeighted); } /** * Calculates the recall of the estimated sequence with respect to the * weighted state, i.e. the proportion of actual weighted states that were * predicted weighted. * * @param true2PredictedMap {@link Map}<{@link List}<{@link DiceType}>, * {@link List}<{@link DiceType}>> A map from a real hidden * sequence to the equivalent estimated hidden sequence. * @return <code>double</code> The recall of the estimated sequence with * respect to the weighted state averaged over all the test * sequences. */ @Override public double recall(Map<List<DiceType>, List<DiceType>> true2PredictedMap) { int numWeighted = 0; int numPredictedWeighted = 0; for(List<DiceType> trueSequence: true2PredictedMap.keySet()){ List<DiceType> predictedSequence = true2PredictedMap.get(trueSequence); for (int i = 0; i < predictedSequence.size();i++){ if (trueSequence.get(i) == DiceType.WEIGHTED){ numWeighted += 1; if (predictedSequence.get(i) == DiceType.WEIGHTED){ numPredictedWeighted += 1; } } } } return ((double) numPredictedWeighted/numWeighted); } /** * Calculates the F1 measure of the estimated sequence with respect to the * weighted state, i.e. the harmonic mean of precision and recall. * * @param true2PredictedMap {@link Map}<{@link List}<{@link DiceType}>, * {@link List}<{@link DiceType}>> A map from a real hidden * sequence to the equivalent estimated hidden sequence. * @return <code>double</code> The F1 measure of the estimated sequence with * respect to the weighted state averaged over all the test * sequences. */ @Override public double fOneMeasure(Map<List<DiceType>, List<DiceType>> true2PredictedMap) { double precision = precision(true2PredictedMap); double recall = recall(true2PredictedMap); return 2 * ((precision * recall) /(precision + recall)); } }
[ "mk2030@cam.ac.uk" ]
mk2030@cam.ac.uk
8e87bab86434142369fe9cdf68bd996c218488eb
c79d46c242168da3c99f9186ff4e3e8a7e9c2687
/web-example/src/main/java/org/techiekernel/repository/CustomUserDetailsInMemoryRepository.java
4014db615dc32f01a53f0161916e40bd32519673
[]
no_license
dalalsunil1986/spring-security-lab
b5aaec2410d0b84228ef837f9ab7bb49ba8a999a
eee22193c77a6d83aa560d3620682d7c90f57b06
refs/heads/master
2020-06-12T20:13:16.013128
2014-04-01T16:11:39
2014-04-01T16:11:39
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,933
java
package org.techiekernel.repository; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import org.springframework.stereotype.Repository; @Repository public class CustomUserDetailsInMemoryRepository implements CustomUserDetailsRepository<CustomUserDetails> { private final Map<Long, CustomUserDetails> users = new HashMap<Long, CustomUserDetails>(); private final Map<String, Long> usernamesToId = new HashMap<String, Long>(); public CustomUserDetailsInMemoryRepository() { }; @Override public void create(CustomUserDetails user) { if (user == null) return; if (user.getUsername() == null) return; if (user.getUsername().isEmpty()) return; synchronized (this) { // Checking id Long retr = this.usernamesToId.get(user.getUsername()); if (retr != null) throw new IllegalArgumentException("User already exists"); this.users.put(user.getId(), user); this.usernamesToId.put(user.getUsername(), user.getId()); } } @Override public CustomUserDetails read(String username) { if (username == null) return null; if (username.isEmpty()) return null; synchronized (this) { // Checking id Long retr = this.usernamesToId.get(username); if (retr == null) return null; return this.users.get(retr); } } @Override public CustomUserDetails read(long id) { return this.users.get(id); } @Override public void update(CustomUserDetails user) { if (user == null) return; synchronized (this) { CustomUserDetails retr = this.users.get(user.getId()); if (retr == null) throw new IllegalArgumentException("User does not exist"); if (retr.getUsername().equals(user.getUsername())) throw new IllegalArgumentException("User name mismatch: " + retr.getUsername() + ", " + user.getUsername()); this.users.put(user.getId(), user); this.usernamesToId.put(user.getUsername(), user.getId()); } } @Override public void delete(String username) { synchronized (this) { Long retr = this.usernamesToId.get(username); if (retr == null) return; this.users.remove(retr); this.usernamesToId.remove(username); } } @Override public void delete(long id) { synchronized (this) { CustomUserDetails retr = this.users.get(id); if (retr == null) return; this.users.remove(id); this.usernamesToId.remove(retr.getUsername()); } } @Override public boolean contains(CustomUserDetails user) { return this.users.containsKey(user.getId()); } public static class UserIdentifiersImpl implements UserIdentifiers { private final String username; private final long id; public UserIdentifiersImpl(String username, long id) { this.username = username; this.id = id; } @Override public long getId() { return this.id; } @Override public String getUsername() { return this.username; } @Override public int hashCode() { int hash = 7; hash = 37 * hash + (this.username != null ? this.username.hashCode() : 0); hash = 37 * hash + (int) (this.id ^ (this.id >>> 32)); return hash; } @Override public boolean equals(Object obj) { if (obj == this) return true; if (obj == null) return false; if (!UserIdentifiers.class.isAssignableFrom(obj.getClass())) return false; final UserIdentifiers other = (UserIdentifiers) obj; if ((this.username == null) ? (other.getUsername() != null) : !this.username.equals(other.getUsername())) { return false; } if (this.id != other.getId()) { return false; } return true; } } @Override public Set<UserIdentifiers> getUsers() { HashSet<UserIdentifiers> result = new HashSet<UserIdentifiers>(); synchronized (this) { for (CustomUserDetails ui : this.users.values()) { result.add(new UserIdentifiersImpl(ui.getUsername(), ui.getId())); } } return result; } }
[ "karasatishkumar@gmail.com" ]
karasatishkumar@gmail.com
52c3b50e3ac2d2c609d3ceb35501c9f326ccc412
ddb4d34148a816a94c8de40b5eb90e038d6c7f63
/src/main/java/com/momnop/furniture/blocks/BlockFan.java
a700e21cf12f639629816ba0410590a04f71c0ef
[ "MIT" ]
permissive
immortalcatz/How-Bout-That-Furniture
b6c01d323832bb308966488776ea9767603aa373
8171f2e110dc42f67d23e3bff5c6473aa5965eb6
refs/heads/master
2021-06-11T08:23:59.205610
2017-01-06T06:06:22
2017-01-06T06:06:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,320
java
package com.momnop.furniture.blocks; import java.util.Random; import net.minecraft.block.Block; import net.minecraft.block.ITileEntityProvider; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; import net.minecraft.block.properties.IProperty; import net.minecraft.block.properties.PropertyBool; import net.minecraft.block.state.BlockStateContainer; import net.minecraft.block.state.IBlockState; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.EnumBlockRenderType; import net.minecraft.util.EnumFacing; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; import net.minecraft.world.IBlockAccess; import net.minecraft.world.World; import com.momnop.furniture.tiles.TileEntityCeilingFan; public class BlockFan extends BlockFurniture implements ITileEntityProvider { public static final PropertyBool POWERED = PropertyBool.create("powered"); public BlockFan(Material materialIn, float hardness, SoundType type, String unlocalizedName, CreativeTabs tab) { super(materialIn, hardness, type, unlocalizedName, tab); this.setDefaultState(this.getDefaultState().withProperty(POWERED, false)); } @Override public boolean hasTileEntity() { return true; } @Override public TileEntity createNewTileEntity(World worldIn, int meta) { return new TileEntityCeilingFan(); } @Override public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) { return new AxisAlignedBB(0, 12F / 16F, 0, 1, 1, 1); } @Override public EnumBlockRenderType getRenderType(IBlockState state) { return EnumBlockRenderType.MODEL; } @Override public void onBlockAdded(World worldIn, BlockPos pos, IBlockState state) { this.clOnNeighborChanged(state, worldIn, pos, worldIn.getBlockState(pos) .getBlock()); } @Override public boolean canPlaceBlockAt(World worldIn, BlockPos pos) { if (worldIn.getBlockState(pos.up()).isSideSolid(worldIn, pos, EnumFacing.DOWN)) { return true; } else { return false; } } @Override public void clOnNeighborChanged(IBlockState state, World worldIn, BlockPos pos, Block blockIn) { if (!worldIn.getBlockState(pos.up()).isSideSolid(worldIn, pos, EnumFacing.DOWN)) { this.dropBlockAsItem(worldIn, pos, state, 0); worldIn.setBlockToAir(pos); } if (state.getValue(POWERED) && !worldIn.isBlockPowered(pos)) { worldIn.scheduleUpdate(pos, this, 4); } else if (!state.getValue(POWERED) && worldIn.isBlockPowered(pos)) { worldIn.setBlockState(pos, state.withProperty(POWERED, true), 2); } } @Override public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand) { if (state.getValue(POWERED) && !worldIn.isBlockPowered(pos)) { worldIn.setBlockState(pos, state.withProperty(POWERED, false), 2); } } @Override protected BlockStateContainer createBlockState() { return new BlockStateContainer(this, new IProperty[] { POWERED }); } @Override public int getMetaFromState(IBlockState state) { return state.getValue(POWERED) ? 1 : 0; } @Override public IBlockState getStateFromMeta(int meta) { boolean powered = meta == 1 ? true : false; return this.getDefaultState().withProperty(POWERED, powered); } }
[ "redstonedudeiscool@gmail.com" ]
redstonedudeiscool@gmail.com
a8fb6d26d4d808087d9f2be97954281104916e4c
2ef618d7efcc7932e489f0375362dc26dc34caca
/src/dev/game/molegame/RankingActivity.java
5145619a4e204d7200549a8bcfb0a7b354655c60
[]
no_license
tracyhoo/molegame
97b33d2f851bc7086f84b8c683afc4cc1ba960b7
2a091d985680e581c0eb599ee1ee8f635f5eddcb
refs/heads/master
2021-01-01T06:32:29.639220
2014-04-22T03:17:32
2014-04-22T03:17:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,969
java
package dev.game.molegame; import java.text.SimpleDateFormat; import java.util.Date; import java.util.LinkedList; import java.util.List; import android.graphics.Color; import dev.game.molegame.data.DataHelper; import dev.game.molegame.data.DataHelper.ScorePair; import android.app.Activity; import android.os.Bundle; import android.view.Window; import android.view.WindowManager; import android.widget.TableLayout; import android.widget.TableRow; import android.widget.TextView; public class RankingActivity extends Activity { private LinkedList<TableRow> mRankingDatas = new LinkedList<TableRow>(); private DataHelper dh; private List<ScorePair> scorePairs; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON, WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); setContentView(R.layout.ranking); TableLayout table = (TableLayout) RankingActivity.this.findViewById(R.id.ranking_table); table.setBackground(getResources().getDrawable(R.drawable.scoreboard)); dh = new DataHelper(this.getApplicationContext()); scorePairs = dh.getAllRecords(); SimpleDateFormat dt = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); TableRow tableRow = null; TextView tableView = null; tableRow = new TableRow(table.getContext()); tableView = new TextView(table.getContext()); tableView.setText(R.string.ranking_title_no); tableView.setWidth(60); tableView.setPaddingRelative(25, 60, 0, 0); //todo these should all be constant values tableView.setTextColor(0xFF88C426); tableRow.addView(tableView); tableView = new TextView(RankingActivity.this); tableView.setText(R.string.ranking_title_name); tableView.setWidth(80); tableView.setPaddingRelative(25, 60, 0, 0); tableView.setTextColor(0xFFF28530); tableRow.addView(tableView); tableView = new TextView(RankingActivity.this); tableView.setText(R.string.ranking_title_record); tableView.setWidth(55); tableView.setPaddingRelative(25, 60, 0, 0); tableView.setTextColor(0xFFA7DBD7); tableRow.addView(tableView); tableView = new TextView(RankingActivity.this); tableView.setText(R.string.ranking_title_date); tableView.setWidth(85); tableView.setPaddingRelative(25, 60, 0, 0); tableView.setTextColor(0xFFFFEA21); tableRow.addView(tableView); mRankingDatas.add(tableRow); int i = 1; for (ScorePair sp : scorePairs) { tableRow = new TableRow(table.getContext()); tableView = new TextView(table.getContext()); tableView.setText(Integer.toString(i)); tableView.setWidth(55); tableView.setPaddingRelative(25, 10, 0, 0); tableView.setTextColor(0xFF88C426); tableRow.addView(tableView); tableView = new TextView(RankingActivity.this); tableView.setText(sp.name); tableView.setWidth(90); tableView.setPaddingRelative(25, 10, 0, 0); tableView.setTextColor(0xFFF28530); tableRow.addView(tableView); tableView = new TextView(RankingActivity.this); tableView.setText(Integer.toString(sp.score)); tableView.setWidth(60); tableView.setPaddingRelative(25, 10, 0, 0); tableView.setTextColor(0xFFA7DBD7); tableRow.addView(tableView); tableView = new TextView(RankingActivity.this); if(sp.time != 0) tableView.setText(dt.format(new Date(sp.time))); tableView.setWidth(85); tableView.setPaddingRelative(25, 10, 0, 0); tableView.setTextColor(0xFFFFEA21); tableRow.addView(tableView); mRankingDatas.add(tableRow); i++; } for (TableRow row : mRankingDatas) { table.addView(row); } //repaint table.invalidate(); } }
[ "jiamin.hu.tracy@gmail.com" ]
jiamin.hu.tracy@gmail.com
0e5c9f30b319a0a89e0ea7789fbc71a90a99e5ca
8de46c1662573cf57518ede834f8b845bede01ba
/keira_haskins_code_samples/SpaceRockFXMLController.java
b9d29de398d097e02855281b100cbe0db2afb676
[]
no_license
keirahaskins/Keira-Haskins-Code-Portfolio
5869b22174dfb08376c92e100b721bb9c50b753f
3bb9c2bdbc36f77e7bd2b03b4e3e507ecd65abbe
refs/heads/master
2020-03-10T23:23:22.299343
2018-04-15T18:49:57
2018-04-15T18:49:57
129,640,103
0
0
null
null
null
null
UTF-8
Java
false
false
1,866
java
package UI;/* * */ import Commands.Asteroid; import javafx.fxml.FXML; import javafx.fxml.Initializable; import javafx.scene.control.Label; import java.time.Instant; import java.time.format.DateTimeFormatter; import java.util.Calendar; import java.util.Date; import java.net.URL; import java.util.ResourceBundle; /** * * @author Keira */ public class SpaceRockFXMLController implements Initializable { private double size; @FXML private Label timeCaptured; @FXML private Label objectID; @FXML private Label threatLevel; @FXML private Label velocity; @FXML private Label diameter; private long ID; private Instant timestamp; private DateTimeFormatter formatter = DateTimeFormatter.ofPattern("HH:mm:ss"); public void setData(Asteroid asteroid) { this.size = asteroid.size; this.ID = asteroid.id; this.timestamp = asteroid.timestamp; diameter.setText("" + Math.round(size)); objectID.setText("" + ID); timeCaptured.setText("Timestamp: " + timestamp.toString()); } @Override public void initialize(URL url, ResourceBundle rb) { // zoom_txt.setText(Double.toString(0.000)); // section_size_txt.setText(Double.toString(100.0)); // overlap_amount_txt.setText(Double.toString(0.000)); // // zoom_slide.valueProperty().addListener(event -> { // zoom_txt.setText(Double.toString(zoom_slide.getValue())); // }); // section_size_slide.valueProperty().addListener(event -> { // section_size_txt.setText(Double.toString((section_size_slide.getValue() + 25) * 4)); // }); // overlap_amount_slide.valueProperty().addListener(event -> { // overlap_amount_txt.setText(Double.toString((overlap_amount_slide.getValue()) * 2)); // }); } }
[ "noreply@github.com" ]
noreply@github.com
3cd57e91dff89e3a59a1a43fbab61ea120495509
e35d34dbd8251145f34fc5953809b96dbdcc8cbf
/src/main/java/com/example/tablephone/repository/PhoneRepository.java
01b984a259a61cea787e3866e602424f4797d635
[]
no_license
wWNightBringer/tablephone
5a17cbaa75d4f0a77e26769e79b3953de962d5b3
41958d6a5bb486212c7b335e105096e4d2bb7c64
refs/heads/master
2020-03-17T01:39:57.790818
2018-05-17T09:26:00
2018-05-17T09:26:00
133,161,864
0
0
null
null
null
null
UTF-8
Java
false
false
231
java
package com.example.tablephone.repository; import com.example.tablephone.model.Information; import org.springframework.data.repository.CrudRepository; public interface PhoneRepository extends CrudRepository<Information,Long> { }
[ "andrey27059622@gmail.com" ]
andrey27059622@gmail.com
5860e21a6c43db992b0b8d16e88f032c61c40b88
ce65da0e9ac893d21e3cb050e8918fb9203125b4
/library/common/src/main/java/com/jaydenxiao/common/utils/springylib/springyRecyclerView/SpringyAdapterAnimator.java
47b38dcfca4935a6c7a2f50cbd8d07b2c015e319
[]
no_license
veicn/SelfPos2.0
c5319b41b55f2e2e7e12398dce09a46ff948186e
4a826590fa3cd296f4a20966729fe0e611910cef
refs/heads/master
2020-04-10T20:55:35.865144
2018-12-07T03:39:31
2018-12-07T03:39:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,140
java
package com.jaydenxiao.common.utils.springylib.springyRecyclerView; import android.support.v7.widget.RecyclerView; import android.view.View; import com.facebook.rebound.SimpleSpringListener; import com.facebook.rebound.Spring; import com.facebook.rebound.SpringConfig; import com.facebook.rebound.SpringSystem; import com.facebook.rebound.SpringUtil; /** * Created by Zach on 6/30/2017. */ public class SpringyAdapterAnimator { private static final int INIT_DELAY = 100; private static final int INIT_TENSION = 200; private static final int INIT_FRICTION = 20; private int tension; private int fraction ; private static final int PER_ITEM_GAPE = 100; private int parentHeight; private int parentWidth; private RecyclerView parent; private SpringSystem mSpringSystem; private SpringyAdapterAnimationType animationType; private boolean mFirstViewInit = true; private int mLastPosition = -1; private int mStartDelay; public SpringyAdapterAnimator(RecyclerView recyclerView) { parent = recyclerView; mSpringSystem = SpringSystem.create(); animationType = SpringyAdapterAnimationType.SLIDE_FROM_BOTTOM; parentHeight = parent.getResources().getDisplayMetrics().heightPixels; parentWidth = parent.getResources().getDisplayMetrics().widthPixels; mStartDelay = INIT_DELAY; tension = INIT_TENSION; fraction= INIT_FRICTION; } /* * setInitDelay @param initDelay for set delay at screen creation * */ public void setInitDelay(int initDelay){ mStartDelay = initDelay; } public void setSpringAnimationType(SpringyAdapterAnimationType type){ animationType = type; } public void addConfig(int tension,int fraction){ this.tension = tension; this.fraction = fraction; } /** * onSpringyItemCreate call in Adapter's Constructor method * @param item itemView instance from RecyclerView's OnCreateView method * **/ public void onSpringItemCreate(View item) { if (mFirstViewInit) { setAnimation(item, mStartDelay, tension, fraction); mStartDelay += PER_ITEM_GAPE; } } /** * * onSpringyItemBind call in RecyclerView's onBind for scroll effects * @param item itemView instance from RecyclerView's onBind method * @param position from RecyclerView's onBind method * **/ public void onSpringItemBind(View item, int position) { if (!mFirstViewInit && position > mLastPosition) { setAnimation(item, 0, tension - tension/4, fraction); mLastPosition = position; } } private void setAnimation(final View item, final int delay, final int tension, final int friction) { setInitValue(item); Runnable startAnimation = new Runnable() { @Override public void run() { SpringConfig config = new SpringConfig(tension, friction); Spring spring = mSpringSystem.createSpring(); spring.setSpringConfig(config); spring.addListener(new SimpleSpringListener() { @Override public void onSpringUpdate(Spring spring) { switch (animationType) { case SLIDE_FROM_BOTTOM: item.setTranslationY(getMappedValue(spring)); break; case SLIDE_FROM_LEFT: item.setTranslationX(getMappedValue(spring)); break; case SLIDE_FROM_RIGHT: item.setTranslationX(getMappedValue(spring)); break; case SCALE: item.setScaleX(getMappedValue(spring)); item.setScaleY(getMappedValue(spring)); break; } } @Override public void onSpringEndStateChange(Spring spring) { mFirstViewInit = false; } }); spring.setEndValue(1); } }; parent.postDelayed(startAnimation, delay); } private void setInitValue(View item) { switch (animationType) { case SLIDE_FROM_BOTTOM: item.setTranslationY(parentHeight); break; case SLIDE_FROM_LEFT: item.setTranslationX(-parentWidth); break; case SLIDE_FROM_RIGHT: item.setTranslationX(parentWidth); break; case SCALE: item.setScaleX(0); item.setScaleY(0); break; default: item.setTranslationY(parentHeight); break; } } private float getMappedValue(Spring spring) { float value; switch (animationType) { case SLIDE_FROM_BOTTOM: value = (float) SpringUtil.mapValueFromRangeToRange(spring.getCurrentValue(), 0, 1, parentHeight, 0); break; case SLIDE_FROM_LEFT: value = (float) SpringUtil.mapValueFromRangeToRange(spring.getCurrentValue(), 0, 1, -parentWidth, 0); break; case SLIDE_FROM_RIGHT: value = (float) SpringUtil.mapValueFromRangeToRange(spring.getCurrentValue(), 0, 1, parentWidth, 0); break; case SCALE: value = (float) SpringUtil.mapValueFromRangeToRange(spring.getCurrentValue(), 0, 1, 0, 1); break; default: value = (float) SpringUtil.mapValueFromRangeToRange(spring.getCurrentValue(), 0, 1, parentHeight, 0); break; } return value; } }
[ "xzl@acewill.com" ]
xzl@acewill.com
24675ae4ace700b7a83aed97145e553811a95310
b20a86ce19e01d30f0260de6512e037b59e2ecd0
/iGrid/modules/util/javax/sql/RowSetListener.java
e770ab37ed2a8958b307f5b144f59e72fc859265
[]
no_license
mwsobol/iGrid
0ea729b69d417320d6d9233784ab2919df42ec03
b6c6384deb32e570f476c215cb93a5191084b366
refs/heads/master
2021-01-23T13:22:28.149192
2014-07-14T12:53:37
2014-07-14T12:53:37
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,541
java
/* * @(#)RowSetListener.java 1.1 99/05/11 * * Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved. * * This software is the confidential and proprietary information of Sun * Microsystems, Inc. ("Confidential Information"). You shall not * disclose such Confidential Information and shall use it only in * accordance with the terms of the license agreement you entered into * with Sun. * * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING * THIS SOFTWARE OR ITS DERIVATIVES. * * */ package javax.sql; /** * <P>The RowSetListener interface is implemented by a * component that wants to be notified when a significant * event happens in the life of a RowSet */ public interface RowSetListener extends java.util.EventListener { /** * <P>Called when the rowset is changed. * * @param event an object describing the event */ void rowSetChanged(RowSetEvent event); /** * <P>Called when a row is inserted, updated, or deleted. * * @param event an object describing the event */ void rowChanged(RowSetEvent event); /** * Called when a rowset's cursor is moved. * * @param event an object describing the event */ void cursorMoved(RowSetEvent event); }
[ "sobol@sorcersoft.org" ]
sobol@sorcersoft.org
44b3caea8b0eddb63c52bd8a6b0b4467b8ee635d
d3af92808a7971f43b2861a065f0d6e2d3467c44
/src/main/java/com/bolao/exception/ExceptionController.java
2718a7f8b6ed452c715e37e405f297631382b8c0
[]
no_license
xm8g/bolaoBet
2e2d06de4c31deff27d558e08577c4d6f8175ea5
18a6682daede4585f754d26a3893cf9d01cce65b
refs/heads/master
2022-02-16T11:22:33.396156
2022-02-04T20:20:31
2022-02-04T20:20:31
216,013,542
0
0
null
null
null
null
UTF-8
Java
false
false
1,065
java
package com.bolao.exception; import org.springframework.security.core.userdetails.UsernameNotFoundException; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.servlet.ModelAndView; @ControllerAdvice public class ExceptionController { @ExceptionHandler(UsernameNotFoundException.class) public ModelAndView usuarioNaoEncontradoException(UsernameNotFoundException exception) { ModelAndView model = new ModelAndView("error"); model.addObject("status", 404); model.addObject("error", "Operação não pode ser realizada."); model.addObject("message", exception.getMessage()); return model; } @ExceptionHandler(FileStorageException.class) public ModelAndView acessoNegadoException(FileStorageException exception) { ModelAndView model = new ModelAndView("error"); model.addObject("status", 403); model.addObject("error", "Upload não pôde ser feito."); model.addObject("message", exception.getMessage()); return model; } }
[ "alex.dutra@serpro.gov.br" ]
alex.dutra@serpro.gov.br
f5f260d072518ee162ba0c7803715b9e345038c0
80144cbbe03b94c9781d5aff6534c4a08cea9d98
/core/src/main/java/com/example/util/GsonUtils.java
e670e1b983ddb04fef5d12edb8eca416f19e0e8c
[]
no_license
3441242166/ShaShiApp
3c15d85a10ef25a45053b469986ee7eca9783cac
03584dce89e05f024278f667bf05cc323226070f
refs/heads/master
2020-05-22T13:20:05.873815
2019-05-01T02:18:59
2019-05-01T02:18:59
186,354,771
0
0
null
null
null
null
UTF-8
Java
false
false
1,299
java
package com.example.util; import android.util.Log; import com.google.gson.Gson; import java.util.Map; import okhttp3.MediaType; import okhttp3.RequestBody; public class GsonUtils { private static final String TAG = "GsonUtils"; private static Gson gson = new Gson(); /** * 对象转Json字符串 * * @param object * @return */ public static String toJson(Object object) { return gson.toJson(object); } /** * 字符串转Json对象 * * @param json * @param clazz * @param <T> * @return */ public static <T> T fromJson(String json, Class<T> clazz) { return gson.fromJson(json, clazz); } /** * @param map * @param <K,V> * @return */ public static <K,V>RequestBody toBody(Map<K,V> map){ MediaType JSON = MediaType.parse("application/json; charset=utf-8"); String json = toJson(map); Log.i(TAG, "toBody: "+ json); return RequestBody.create(JSON, json); } public static <K,V>RequestBody toBody(Object object){ MediaType JSON = MediaType.parse("application/json; charset=utf-8"); String json = toJson(object); Log.i(TAG, "toBody: "+ json); return RequestBody.create(JSON, json); } }
[ "3441242166@qq.com" ]
3441242166@qq.com
43d91daa7b2f218458d8bf041ee05f0f29fe833a
272085da27702ed419773826cab86af359e76d0a
/app/src/main/java/yu/com/Wifi/wifiway/UserData.java
49d63723203058aca60068e59a83a6619ea85eb2
[ "Apache-2.0" ]
permissive
WifiWay0/WifiWay
9576f1918f7d12c1f9703eaa594c186e77313f10
d6e90ef1a29c82b3a3391862eb76c6c80baeb7c5
refs/heads/master
2020-04-13T01:07:01.212748
2018-12-30T10:04:33
2018-12-30T10:04:33
162,864,704
1
0
null
null
null
null
UTF-8
Java
false
false
1,288
java
//package yu.com.Wifi.wifiway; // //public class UserData { // public int pwdresetFlag = 0; // private String userName; //用户名 // private String userPwd; //用户密码 // private int userId; //用户ID号 // // public UserData(String userName, String userPwd) { //这里只采用用户名和密码 // super(); // this.userName = userName; // this.userPwd = userPwd; // } // // //获取用户名 // public String getUserName() { //获取用户名 // return userName; // } // // //设置用户名 // public void setUserName(String userName) { //输入用户名 // this.userName = userName; // } // // //获取用户密码 // public String getUserPwd() { //获取用户密码 // return userPwd; // } // // //设置用户密码 // public void setUserPwd(String userPwd) { //输入用户密码 // this.userPwd = userPwd; // } // // //获取用户id // public int getUserId() { //获取用户ID号 // return userId; // } // // //设置用户id // public void setUserId(int userId) { //设置用户ID号 // this.userId = userId; // } // //}
[ "durey@foxmail.com" ]
durey@foxmail.com
549e06eb1c731d5e71939bbfd8db198bc1fef28a
9f1045e44679ddfe245be9da7e248742687e0dfc
/src/3_Enkapsulasi/AnggotaTgas1841720061faizin.java
ccab244c59067f6eae5b0d8e6161b3f3d0120781
[]
no_license
MuhammadNurFaizin/laporan-praktikum-pbo
6621609fa16518784cb0acc862222d19c9da6356
0b767a482f1cc72fb1e26108cc41bab3e19ea927
refs/heads/master
2020-07-16T01:26:31.550883
2019-12-10T03:42:15
2019-12-10T03:42:15
205,691,150
0
0
null
2019-09-01T14:52:21
2019-09-01T14:52:21
null
UTF-8
Java
false
false
1,247
java
package Tugas4; public class AnggotaTgas1841720061faizin { private int jumlah, limit, nomorKTP; private String nama; //Menyebut Konstruktor AnggotaTgas1841720061faizin(String nama, int nomorKtp, int limit) { this.nama = nama; this.nomorKTP = nomorKtp; this.limit = limit; } public void setNama(String nama) { this.nama = nama; } public String getNama() { return nama; } public void setNoKTP(int nomorKTP) { this.nomorKTP = nomorKTP; } public int getKTP() { return nomorKTP; } //pemanggilan data pinjaman yang diisi public int getLimitPinjaman() { return limit; } //Method pengisian jumlah pinjaman public void setJumlahPinjaman(int pinjam) { if (pinjam < limit) { jumlah = pinjam; } else { System.out.println("Maaf, Jumlah pinjaman melebihi limit!!"); } } public int getJumlahPinjaman() { return jumlah; } public void angsuran(int uang) { if (uang >= (jumlah * 0.1)) { jumlah -= uang; } else { System.out.println("Maaf angsuran harus 10% dari jumlah pinjaman"); } } }
[ "muhammadnurfaizin611@gmail.com" ]
muhammadnurfaizin611@gmail.com
7dff28897c363ecf0827b519b9003d4f52ed4d8d
6996039c4d4f43e698258727db540746abef2f90
/Server/relaxo/src/main/java/de/teamrocket/relaxo/rest/models/usermanagement/response/UserGroupResponse.java
03adacbb18d6491e8e1f3ec112e9a0b5c3a3ba42
[]
no_license
martinjuhasz/Softwaretechnik
e90155ad6fb83e5a12dd3bc9433dcdf049c06373
94fbd7a05fb30f5d78607225f89c2254bebfc4aa
refs/heads/master
2021-01-10T07:18:05.102428
2015-11-06T09:41:03
2015-11-06T09:41:03
45,672,857
1
0
null
null
null
null
UTF-8
Java
false
false
759
java
package de.teamrocket.relaxo.rest.models.usermanagement.response; import de.teamrocket.relaxo.models.usermanagement.UserGroup; /** * Antwort der REST-Anfrage für eine Benutzergruppe */ public class UserGroupResponse { /** * ID der Benutzergruppe. */ private int id; /** * Name der Benutzergruppe. */ private String name; /** * Erstellt eine Response anhander der Benutzergruppe. * * @param group Die Benutzergruppe. */ public UserGroupResponse(UserGroup group) { this.id = group.getId(); this.name = group.getName(); } public String getName() { return name; } public int getId() { return id; } }
[ "info@martinjuhasz.de" ]
info@martinjuhasz.de
7e1d7ed56cd934db78ccb7756b7606638a7efe2e
33cb64eff90e9ffdcbd3d5f1f14b2709f592ba3a
/test1/src/j052401/smart2.java
4d347a79195493576c0ca8699be3c00576304d30
[]
no_license
jxj666/java_study
8c84b82b40c9b8b68588f9923848f7c3626ee409
58847110917a9244ed21aa0fe26bf0d01d885e57
refs/heads/master
2022-01-15T10:23:16.549700
2019-06-06T11:15:13
2019-06-06T11:15:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
284
java
package j052401; import j051701.Phone; public class smart2 { public static void main(String[] args) { // TODO Auto-generated method stub Phone phone1 = new Phone(); Phone phone2 = new SmartPhone(); // SmartPhone phone3 =new Phone(); phone1.call(); phone2.call(); } }
[ "228322991@qq.com" ]
228322991@qq.com
3cbf38eed741777d08eb7a916ef85630adf58ba8
57f21bf21271e90ba83512e3aa10a1e4387f5102
/src/br/com/iveso/dasa/action/produto/DeletarProdutoAction.java
21c9cf09af789c3ccf596aec0a82843ea9d6bf1a
[]
no_license
LHenriqueec/Dasa
6866e1aa72ccaff5efbaf3735524d876ae814082
9722212efefe7354b1ed52b696a29db5c41c4ba5
refs/heads/master
2021-09-07T22:15:41.929258
2018-02-04T12:07:54
2018-02-04T12:07:54
81,965,134
0
0
null
null
null
null
UTF-8
Java
false
false
450
java
package br.com.iveso.dasa.action.produto; import br.com.iveso.dasa.action.Action; import br.com.iveso.dasa.service.ProdutoService; public class DeletarProdutoAction extends Action { @Override public void process() throws Exception { ProdutoService service = serviceFactory.getProdutoService(); String codigo = getRequest().getParameter("codigo"); service.deletar(codigo); System.out.println("Produto:" + codigo + " deletado!"); } }
[ "luizhenrique.ecl@gmail.com" ]
luizhenrique.ecl@gmail.com
c10a3d6c7bfca7d6232eb7aad98d6265c7b03282
8de7891a3ab36567957aa537795b5c1fc40c69c6
/concrete-pom/concrete-accounts/concrete-accounts-common-tools/src/main/java/org/coodex/concrete/accounts/AbstractTenantAccountFactory.java
b7d3cba23af95b47a975e4b3a6eb0f79c5f8cbcd
[ "Apache-2.0" ]
permissive
coodex2016/concrete.coodex.org
a09ae70f5fee21c045d83c1495915c0aba22f8ce
d4ff2fdcafba4a8a426b6ceb79b086c931147525
refs/heads/0.5.x
2023-08-04T04:37:51.116386
2023-07-13T05:48:51
2023-07-13T05:48:51
85,026,857
23
10
NOASSERTION
2023-02-22T00:09:24
2017-03-15T03:52:33
Java
UTF-8
Java
false
false
2,515
java
/* * Copyright (c) 2018 coodex.org (jujus.shen@126.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.coodex.concrete.accounts; import org.coodex.concrete.common.Account; import org.coodex.concrete.common.ClassifiableAccountFactory; import org.coodex.concrete.common.ClassifiableAccountID; import org.coodex.concrete.common.IF; import org.coodex.config.Config; import org.coodex.util.SingletonMap; import static org.coodex.concrete.accounts.AccountConstants.TYPE_TENANT_ADMINISTRATOR; import static org.coodex.concrete.common.AccountsErrorCodes.NONE_THIS_ACCOUNT; /** * Created by davidoff shen on 2017-05-26. */ public abstract class AbstractTenantAccountFactory extends ClassifiableAccountFactory { // private ConcreteCache<String, TenantAccount> accountCache = new ConcreteCache<String, TenantAccount>() { // @Override // protected TenantAccount load(String key) { // return newAccount(key); // } // // @Override // protected String getRule() { // return AbstractTenantAccountFactory.class.getPackage().getName(); // } // }; private SingletonMap<String, TenantAccount> accountSingletonMap = SingletonMap.<String, TenantAccount>builder() .function(this::newAccount).maxAge(Config.getValue("cache.object.life", 10, AbstractTenantAccountFactory.class.getPackage().getName() ) * 60L * 1000L).build(); protected abstract TenantAccount newAccount(String key); @Override public Account<ClassifiableAccountID> getAccountByID(ClassifiableAccountID id) { return IF.isNull(accountSingletonMap.get(id.getId()), NONE_THIS_ACCOUNT); } @Override protected Integer[] getSupportTypes() { return new Integer[]{TYPE_TENANT_ADMINISTRATOR}; } // @Override // public boolean accept(ClassifiableAccountID param) { // return param != null && param.getCategory() == AccountConstants.TYPE_TENANT_ADMINISTRATOR; // } }
[ "jujus.shen@126.com" ]
jujus.shen@126.com
9b7d14c139a9ddfb30ab326c4805cda4a13147ea
33a27fb52f36b1803ec927b0ee5d543f39cc3ba2
/.metadata/.plugins/org.eclipse.core.resources/.history/80/e05a1ad51d3e001b134283bfd9356f74
2539df7705fb2b62c62ea49b9f146673100783e5
[]
no_license
sami-betka/samworkspace
3e11ecb7e5079b5efb7a3ef90796e9ddd400dd41
cdd931b81faf44b7c43e93b9db73d8231287cfd0
refs/heads/main
2023-03-20T09:49:23.218167
2021-03-17T16:06:47
2021-03-17T16:06:47
348,770,016
0
0
null
null
null
null
UTF-8
Java
false
false
410
package cote.entity; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @Entity @Data @NoArgsConstructor @AllArgsConstructor public class Combi { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; }
[ "sami1206@hotmail.fr" ]
sami1206@hotmail.fr
3e4beb09ffd20b7bd3383700bb6434cca7b5e1aa
b884fcc90d1123106e9b74e2e32757d78b5fc494
/backend.core/src/main/java/com/spinyowl/spinygui/backend/core/event/SystemWindowMaximizeEvent.java
85ed1005ab23245621bfadf1e709a3625500fd79
[ "MIT" ]
permissive
mjKosmic/SpinyGUI
42feffe96b9d16da6258f40c2541f5ceaae69ede
f8bed6ff604f208d3f6e5cdbe816d2d754308d36
refs/heads/restructurization
2020-11-28T13:03:01.041912
2019-12-25T20:32:00
2019-12-25T20:32:00
229,823,419
0
0
MIT
2019-12-25T20:32:02
2019-12-23T21:10:46
null
UTF-8
Java
false
false
594
java
package com.spinyowl.spinygui.backend.core.event; import org.apache.commons.lang3.builder.ToStringBuilder; public class SystemWindowMaximizeEvent extends SystemEvent { public final long window; public final boolean maximized; public SystemWindowMaximizeEvent(long window, boolean maximized) { this.window = window; this.maximized = maximized; } @Override public String toString() { return new ToStringBuilder(this) .append("window", window) .append("maximized", maximized) .toString(); } }
[ "shchalexander@gmail.com" ]
shchalexander@gmail.com
b6ef93d03a4ad5d6b2ace949d1c689683f44a67b
21256034827991c7b076ac5fac0dd313da3de74b
/hireath-config/hireath-config-client/src/main/java/com/hireath/web/HelloController.java
a838b3ce8eefcbc433de90e6606f143becd79ddb
[ "Apache-2.0" ]
permissive
capitek-xun/hireath
0dfdf80aa9dc1337dabf23a857599cc1aa63aa08
6a9cade458637e500e2ec49b07beef64fce996d9
refs/heads/master
2021-05-02T11:58:37.072430
2018-03-08T09:39:08
2018-03-08T09:39:08
119,853,193
0
0
null
null
null
null
UTF-8
Java
false
false
663
java
package com.hireath.web; import org.springframework.beans.factory.annotation.Value; import org.springframework.cloud.context.config.annotation.RefreshScope; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RefreshScope//使用该注解的类,会在接到SpringCloud配置中心配置刷新的时候,自动将新的配置更新到该类对应的字段中。 class HelloController { @Value("${hireath.hello}") private String hello; @RequestMapping("/hello") public String from() { System.out.println(hello); return this.hello; } }
[ "xun@capitek.com.cn" ]
xun@capitek.com.cn
b54d96e6487268039021d89e1648f07c2c7d143a
51fadb3b45a3447046cdb11dac7d8d5bd4443ed0
/app/src/main/java/com/niukeclient/niuke/utils/RetrofitClient.java
fcb1e66dc8596e7b1473103d1d0c49cb7648aa80
[]
no_license
angelcherry1/niuke-Android
cccc383cf8a11161e5efc9d8033477b02a0d84e5
eaf99ea28ba42f714ee9ad14b7838c615756cd5c
refs/heads/master
2022-09-23T16:19:09.578729
2020-05-29T10:02:35
2020-05-29T10:02:35
266,556,760
1
0
null
null
null
null
UTF-8
Java
false
false
5,351
java
package com.niukeclient.niuke.utils; import android.content.Context; import android.text.TextUtils; import java.io.File; import java.util.Map; import java.util.concurrent.TimeUnit; import io.reactivex.Observable; import io.reactivex.Observer; import io.reactivex.android.schedulers.AndroidSchedulers; import io.reactivex.schedulers.Schedulers; import me.goldze.mvvmhabit.http.cookie.CookieJarImpl; import me.goldze.mvvmhabit.http.cookie.store.PersistentCookieStore; import me.goldze.mvvmhabit.http.interceptor.BaseInterceptor; import me.goldze.mvvmhabit.http.interceptor.CacheInterceptor; import me.goldze.mvvmhabit.http.interceptor.logging.Level; import me.goldze.mvvmhabit.http.interceptor.logging.LoggingInterceptor; import me.goldze.mvvmhabit.utils.KLog; import me.goldze.mvvmhabit.utils.Utils; import okhttp3.Cache; import okhttp3.ConnectionPool; import okhttp3.OkHttpClient; import okhttp3.internal.platform.Platform; import retrofit2.Retrofit; import retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory; import retrofit2.converter.gson.GsonConverterFactory; /** * Created by goldze on 2017/5/10. * RetrofitClient封装单例类, 实现网络请求 */ public class RetrofitClient { //超时时间 private static final int DEFAULT_TIMEOUT = 20; //缓存时间 private static final int CACHE_TIMEOUT = 10 * 1024 * 1024; //公司电脑服务端根路径 public static String baseUrl = "http://192.168.10.62:8090/"; //笔记本电脑服务端根路径 // public static String baseUrl = "http://192.168.191.1:8090/"; // public static String baseUrl = "https://www.oschina.net/"; private static Context mContext = Utils.getContext(); private static OkHttpClient okHttpClient; private static Retrofit retrofit; private Cache cache = null; private File httpCacheDirectory; private static class SingletonHolder { private static RetrofitClient INSTANCE = new RetrofitClient(); } public static RetrofitClient getInstance() { return SingletonHolder.INSTANCE; } private RetrofitClient() { this(baseUrl, null); } private RetrofitClient(String url, Map<String, String> headers) { if (TextUtils.isEmpty(url)) { url = baseUrl; } if (httpCacheDirectory == null) { httpCacheDirectory = new File(mContext.getCacheDir(), "goldze_cache"); } try { if (cache == null) { cache = new Cache(httpCacheDirectory, CACHE_TIMEOUT); } } catch (Exception e) { KLog.e("Could not create http cache", e); } HttpsUtils.SSLParams sslParams = HttpsUtils.getSslSocketFactory(); okHttpClient = new OkHttpClient.Builder() .cookieJar(new CookieJarImpl(new PersistentCookieStore(mContext))) // .cache(cache) .addInterceptor(new BaseInterceptor(headers)) .addInterceptor(new CacheInterceptor(mContext)) .sslSocketFactory(sslParams.sSLSocketFactory, sslParams.trustManager) .addInterceptor(new LoggingInterceptor .Builder()//构建者模式 .loggable(true) //是否开启日志打印 .setLevel(Level.BASIC) //打印的等级 .log(Platform.INFO) // 打印类型 .request("Request") // request的Tag .response("Response")// Response的Tag .addHeader("token", "I am the log request token.") // 添加打印头, 注意 key 和 value 都不能是中文 .build() ) .connectTimeout(DEFAULT_TIMEOUT, TimeUnit.SECONDS) .writeTimeout(DEFAULT_TIMEOUT, TimeUnit.SECONDS) .connectionPool(new ConnectionPool(8, 15, TimeUnit.SECONDS)) // 这里你可以根据自己的机型设置同时连接的个数和时间,我这里8个,和每个保持时间为10s .build(); retrofit = new Retrofit.Builder() .client(okHttpClient) .addConverterFactory(GsonConverterFactory.create()) .addCallAdapterFactory(RxJava2CallAdapterFactory.create()) .baseUrl(url) .build(); } /** * create you ApiService * Create an implementation of the API endpoints defined by the {@code service} interface. */ public <T> T create(final Class<T> service) { if (service == null) { throw new RuntimeException("Api service is null!"); } return retrofit.create(service); } /** * /** * execute your customer API * For example: * MyApiService service = * RetrofitClient.getInstance(MainActivity.this).create(MyApiService.class); * <p> * RetrofitClient.getInstance(MainActivity.this) * .execute(service.lgon("name", "password"), subscriber) * * @param subscriber */ public static <T> T execute(Observable<T> observable, Observer<T> subscriber) { observable.subscribeOn(Schedulers.io()) .unsubscribeOn(Schedulers.io()) .observeOn(AndroidSchedulers.mainThread()) .subscribe(subscriber); return null; } }
[ "2946571671@qq.com" ]
2946571671@qq.com
a872ae235daf86638f186871847f88faf12734cb
c4a3e799476fb4af16cba9459eeadcbb73fb9716
/src/main/java/org/springframework/samples/mvc/Coupon.java
881744755289e3da7672c0d559c2b266179067d2
[]
no_license
rochitranjan/coupon-managment-system
87a3e1959822de8dd217de49967181e6582450e2
af547cb73cf63b0915bc1b5d62a8884594c0e559
refs/heads/master
2020-04-25T01:02:41.798890
2019-02-24T22:18:14
2019-02-24T22:18:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,419
java
package org.springframework.samples.mvc; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Arrays; import java.util.Date; import java.util.List; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.OneToOne; import javax.validation.constraints.Future; import javax.validation.constraints.FutureOrPresent; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; import org.springframework.format.annotation.DateTimeFormat; import com.fasterxml.jackson.annotation.JsonFormat; @Entity public class Coupon { @Id @Size(min = 5, max = 9) @NotNull @Column(unique=true, updatable = false) private String couponCode; @Size(min = 5, max = 25) @NotNull private String offerName; @FutureOrPresent @NotNull @JsonFormat(pattern="dd/MM/yyyy") private Date effecttiveDt; @Future @NotNull @DateTimeFormat(pattern = "dd/MM/yyyy") @JsonFormat(pattern="dd/MM/yyyy") private Date expiryDt; @Size(min = 5, max = 150) private String couponDescription; private Integer maxUsages; //Coupon() {} public Coupon(String couponCode, String offerName, Date effecttiveDt, Date expiryDt, String couponDescription, Integer maxUsages) { // super(); this.couponCode = couponCode; this.offerName = offerName; this.effecttiveDt = effecttiveDt; this.expiryDt = expiryDt; this.couponDescription = couponDescription; this.maxUsages = maxUsages; } public Coupon() { super(); } public String getCouponCode() { return couponCode; } public void setCouponCode(String couponCode) { this.couponCode = couponCode; } public String getOfferName() { return offerName; } public void setOfferName(String offerName) { this.offerName = offerName; } public Date getEffecttiveDt() { return effecttiveDt; } public void setEffecttiveDt(Date effecttiveDt) { this.effecttiveDt = effecttiveDt; } public Date getExpiryDt() { return expiryDt; } public void setExpiryDt(Date expiryDt) { this.expiryDt = expiryDt; } public String getCouponDescription() { return couponDescription; } public void setCouponDescription(String couponDescription) { this.couponDescription = couponDescription; } public Integer getMaxUsages() { return maxUsages; } public void setMaxUsages(Integer maxUsages) { this.maxUsages = maxUsages; } }
[ "rochitranjan@gmail.com" ]
rochitranjan@gmail.com
872c680ef92d92c4e4ea38554f80a85ff9bc1acf
29a000e6266e6bb5b9861dfad174e42506b95d28
/src/main/java/mii/marke/web/rest/vm/ManagedUserVM.java
dac647a142b5db417d8472d85ac9931697061d5c
[]
no_license
danangrisang/marke
97423f89ece80662723042849d2ce021c9591a21
03eb3fd22031f98e06b5f7c5a440e759f7eb6c83
refs/heads/master
2020-12-03T00:40:43.457784
2017-07-03T02:00:18
2017-07-03T02:00:18
96,060,877
0
0
null
null
null
null
UTF-8
Java
false
false
1,351
java
package mii.marke.web.rest.vm; import mii.marke.service.dto.UserDTO; import javax.validation.constraints.Size; import java.time.Instant; import java.util.Set; /** * View Model extending the UserDTO, which is meant to be used in the user management UI. */ public class ManagedUserVM extends UserDTO { public static final int PASSWORD_MIN_LENGTH = 4; public static final int PASSWORD_MAX_LENGTH = 100; @Size(min = PASSWORD_MIN_LENGTH, max = PASSWORD_MAX_LENGTH) private String password; public ManagedUserVM() { // Empty constructor needed for Jackson. } public ManagedUserVM(Long id, String login, String password, String firstName, String lastName, String email, boolean activated, String imageUrl, String langKey, String createdBy, Instant createdDate, String lastModifiedBy, Instant lastModifiedDate, Set<String> authorities) { super(id, login, firstName, lastName, email, activated, imageUrl, langKey, createdBy, createdDate, lastModifiedBy, lastModifiedDate, authorities); this.password = password; } public String getPassword() { return password; } @Override public String toString() { return "ManagedUserVM{" + "} " + super.toString(); } }
[ "danangrisang@gmail.com" ]
danangrisang@gmail.com
4e609b63ad9403af90ed19b3848b7e1dbd761840
27ef443cc2b35adc3a7a24b20dfaa2e3f84e8d86
/n6502/src/main/java/org/fife/emu/cpu/n6502/n6502Impl.java
665bf488d251e0870fe7e49b9198cc6ce5cc0e60
[]
no_license
bobbylight/finnes
4458f3168e54f433fff6aa44de1e1ef825ca67e0
021cc4884206d1765177c76e05cf4a8b666a04da
refs/heads/master
2023-04-09T08:06:17.310577
2021-07-24T15:07:00
2021-07-24T15:07:00
26,563,643
1
0
null
null
null
null
UTF-8
Java
false
false
49,848
java
package org.fife.emu.cpu.n6502; import java.io.*; import java.nio.charset.Charset; import java.nio.file.Paths; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; import org.fife.emu.*; import org.fife.emu.cpu.*; /** * Implementation of a 6502 CPU. This CPU is what the NES CPU * was based on. * * @author Robert Futrell * @version 1.0 */ @SuppressFBWarnings(value = "SE_BAD_FIELD", justification = "CPU name is OK for class name") @SuppressWarnings({"checkstyle:TypeName", "checkstyle:MethodName", "checkstyle:WhitespaeAround"}) public class n6502Impl extends AbstractCpu implements n6502, Serializable { private static final int MIN_DEBUG_OUT_INDEX = 0; private static final long serialVersionUID = 2920750437770524090L; /* * JLS 14.21 states that most optimizing compilers (such as javac) * will optimize away "if" statements where conditional is always * false. */ private static final boolean DEBUG_OPCODE_COUNTS = false; private static final boolean DEBUG_COUNT_EXECUTED_INSTRUCTIONS = true; protected int flagC; protected int flagI; protected int flagD; protected int flagB; protected int flagV; protected int flagNZ; // Use 9 bits (not 8!), 0-6=>Z, 7=>N&Z, 8=>N protected int a; // 8 bits protected int x; // 8 bits protected int y; // 8 bits protected boolean halted; private long[] opcodeCounts; private long executedInstructionCount; protected long totCycles; protected int endCycles; private Debug6502State stateLogger; private boolean logState; private int debugOutIndex; @SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "Just for debugging purposes") private PrintWriter debugOut; private long debugExecutedInstructionCount; private static final int STACK_BOTTOM = 0x100; // 0x100-0x1ff private static final int N_BIT = 0x80; /** * Constructor. * * @param context The CPU context. * @param clockSpeed The clock speed of this CPU. */ @SuppressFBWarnings(value = "NM_CLASS_NAMING_CONVENTION", justification = "CPU name is OK for class name") public n6502Impl(CpuContext context, float clockSpeed) { super(context, clockSpeed); if (DEBUG_OPCODE_COUNTS) { opcodeCounts = new long[256]; } //reset(); stateLogger = new Debug6502State(this); } /** * Utility method that returns the byte at PC as an * absolute indexed address. * * @param index The index. * @return The address. */ private int _absIndexed(int index) { int temp = context.readWord(pc); pc += 2; int address = temp + index; crossingPageBoundary(temp, address); return address; } /** * Utility method that returns the indirect indexed * address pointed to by PC and Y. * * @return The address. * @see #_preIndIndX() */ private int _postIndIndY() { int temp = context.readWord(context.readByte(pc++)); crossingPageBoundary(temp, temp + y); //return (temp+y)&0xffff; return temp + y; } /** * Utility method that returns the indexed indirect * address pointed to by PC and X. * * @return The address. * @see #_postIndIndY() */ private int _preIndIndX() { int data = (context.readByte(pc++) + x) & 0xff; return context.readWord(data); } /** * Utility method that returns the byte at PC as a * zero-page address. * * @return The address. * @see #_zeroPageIndexed(int) */ private int _zeroPage() { return context.readByte(pc++); } /** * Utility method that returns the byte at PC as a * zero-page indexed address. * * @return The address. * @see #_zeroPage() */ private int _zeroPageIndexed(int index) { return (context.readByte(pc++) + index) & 0xff; } /** * Performs an absolute-index-addressed read (LDA, LDX, * LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT, LAX, LAE, * SHS, NOP). * * @param index The index. * @return The byte read. */ private int absoluteIndex_Read(int index) { return context.readByte(_absIndexed(index)); } /** * Performs an absolute-index-addressed write * (STA, STX, STY, SHA, SHX, SHY). * * @param index The index. * @param b The byte to write. */ private void absoluteIndex_Write(int index, int b) { context.writeByte(_absIndexed(index), b); } /** * Performs an absolute-addressed read (LDA, LDX, * LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT, LAX, NOP). * * @return The byte read. */ private int absolute_Read() { int val = context.readByte(context.readWord(pc)); pc += 2; return val; } /** * Performs an absolute-addressed write (STA, STX, * STY, SAX). * * @param b The byte to write. */ private void absolute_Write(int b) { context.writeByte(context.readWord(pc), b); pc += 2; } /** * If two memory addresses cross a page boundary, the remaining * cycles count is decremented. * * @param address1 The first address. * @param address2 The second address. */ private void crossingPageBoundary(int address1, int address2) { cycles += ((address1 ^ address2) & 0x100) >> 8; } /** * Executes an ADC instruction. All flags are updated * appropriately. * * @param val The value to ADC to the A register. */ protected void doADC(int val) { // TODO: Implement BCD mode. // if (flagD>0) { // throw new InternalError("ADC instruction in BCD mode (not implemented)"); // } // else { int temp = a + val + flagC; flagC = (temp & 0x100) >> 8; flagV = ((~(a ^ val)) & (a ^ temp) & 0x80) >> 7; flagNZ = a = temp & 0xff; // } } /** * Executes an AND instruction. All flags are updated * appropriately. * * @param val The value to logically AND to the A * register. */ private void doAND(int val) { flagNZ = a &= val; } /** * Performs an ASL instruction. Flags are updated * appropriately. * * @param b The byte to ASL. * @return The modified byte. */ private int doASL(int b) { flagC = (b >> 7) & 0x01; return flagNZ = (b << 1) & 0xff; } /** * Performs an ASL instruction that operates on memory. * Flags are updated appropriately. * * @param address The address in memory to ASL. */ private void doASLMem(int address) { int val = context.readByte(address); context.writeByte(address, val); // Write back val = doASL(val); context.writeByte(address, val); } /** * Executes a BIT instruction. All flags are updated * appropriately. * * @param b The byte to test. */ private void doBIT(int b) { // Z flag set from result ("a&b"), while N flag is set // from just "b". flagNZ = ((b & a) > 0 ? 1 : 0) | ((b & 0x80) << 1); flagV = (b & 0x40) >> 6; // "V" flag is bit 6. } /** * Executes one of the branch instructions. The PC and * cycle cound are updated appropriately. * * @param test Whether the branch condition was met. * @return The number of cycles used doing the branch. */ private void doBranch(boolean test) { if (test) { cycles += 3; // 2 cycles + 1 for branch int offset = (byte)context.readByte(pc++); // Force to -128,127. crossingPageBoundary(pc, pc + offset); // +1 if on different page pc += offset; } else { pc++; // Skip branch address. cycles += 2; } } /** * Performs a BRK instruction. The program counter and flags * are updated appropriately. */ private void doBRK() { context.readByte(pc++); // Throw away pushWord(pc); flagB = 1; // Push P with flag B set. pushByte(getRegP()); flagI = 1; // Flags B and I are set pc = context.readWord(0xfffe); } /** * Compares the specified byte to the specified register value. * All flags are updated appropriately. * * @param reg The value of a register (one of <code>a</code>, * <code>x</code> or <code>y</code>). * @param b The byte to compare with the register. */ private void doCMP(int reg, int b) { int result = reg - b; flagC = (~result >> 8) & 0x01; flagNZ = result & 0xff; } /** * Performs a DEC instruction. All flags are updated * appropriately. * * @param b The byte to decrement. * @return The decremented byte. */ private int doDEC(int b) { return flagNZ = (b - 1) & 0xff; } /** * Performs an DEC instruction that operates on memory. * Flags are updated appropriately. * * @param address The address in memory to DEC. */ private void doDECMem(int address) { int val = context.readByte(address); context.writeByte(address, val); // Write back val = doDEC(val); context.writeByte(address, val); } /** * Performs an EOR (XOR) instruction. All flags are * updated appropriately. * * @param b The byte to EOR with the <code>a</code> * register. */ private void doEOR(int b) { flagNZ = a ^= b; } /** * Performs a INC instruction. All flags are updated * appropriately. * * @param b The byte to increment. * @return The incremented byte. */ private int doINC(int b) { return flagNZ = (b + 1) & 0xff; } /** * Performs an INC instruction that operates on memory. * Flags are updated appropriately. * * @param address The address in memory to INC. */ private void doINCMem(int address) { int val = context.readByte(address); context.writeByte(address, val); // Write back val = doINC(val); context.writeByte(address, val); } /** * Performs an ISC (aka ISB, INS) instruction on * memory (which is all it ever operates on). * All flags are updated appropriately. * * @param address The memory address to increment. */ private void doISCMem(int address) { int val = context.readByte(address); context.writeByte(address, val); // Write back val = (val + 1) & 0xff; doSBC(val); context.writeByte(address, val); } /** * Performs a KIL/JAM/HLT instruction. */ private void doKIL() { halted = true; cycles = 0; } /** * Performs an LAX instruction. All flags are updated * appropriately. * * @param b The byte to load into the <code>a</code> * and <code>x</code> registers. */ private void doLAX(int b) { flagNZ = a = x = b; } /** * Performs an LDA instruction. All flags are updated * appropriately. * * @param b The byte to load into the <code>a</code> * register. */ private void doLDA(int b) { flagNZ = a = b; } /** * Performs an LDX instruction. All flags are updated * appropriately. * * @param b The byte to load into the <code>x</code> * register. */ private void doLDX(int b) { flagNZ = x = b; } /** * Performs an LDY instruction. All flags are updated * appropriately. * * @param b The byte to load into the <code>y</code> * register. */ private void doLDY(int b) { flagNZ = y = b; } /** * Performs an LSR instruction. Flags are updated appropriately. * * @param b The byte to LSR. * @return The modified byte. */ private int doLSR(int b) { flagC = b & 0x01; return flagNZ = b >> 1; } /** * Performs an LSR instruction that operates on memory. * Flags are updated appropriately. * * @param address The address in memory to LSR. */ private void doLSRMem(int address) { int val = context.readByte(address); context.writeByte(address, val); // Write back val = doLSR(val); context.writeByte(address, val); } /** * Executes an ORA instruction. All flags are updated * appropriately. * * @param val The value to logically OR to the * <code>A</code> register. */ private void doORA(int val) { flagNZ = a |= val; } /** * Performs an ROL instruction. Flags are updated appropriately. * * @param b The byte to ROL. * @return The modified byte. */ private int doROL(int b) { flagNZ = ((b << 1) & 0xff) | flagC; flagC = (b >> 7) & 0x01; return flagNZ; } /** * Performs an ROL instruction that operates on memory. * Flags are updated appropriately. * * @param address The address in memory to ROL. */ private void doROLMem(int address) { int val = context.readByte(address); context.writeByte(address, val); // Write back val = doROL(val); context.writeByte(address, val); } /** * Performs an ROR instruction. Flags are updated appropriately. * * @param b The byte to ROR. * @return The modified byte. */ private int doROR(int b) { flagNZ = (b >> 1) | (flagC << 7); flagC = b & 0x01; return flagNZ; } /** * Performs an ROR instruction that operates on memory. * Flags are updated appropriately. * * @param address The address in memory to ROR. */ private void doRORMem(int address) { int val = context.readByte(address); context.writeByte(address, val); // Write back val = doROR(val); context.writeByte(address, val); } /** * Performs an RTI instruction. Status flags and the * program counter are set appropriately. */ private void doRTI() { context.readByte(pc); // Throw away setRegP(popByte()); pc = popWord(); } /** * Performs an SBC instruction. All flags are * updated appropriately. * * @param b The byte to subtract from the * <code>A</code> register. */ protected void doSBC(int b) { // TODO: Implement BCD mode. // if (flagD>0) { // throw new InternalError("SBC instruction in bcd mode (not implemented)"); // } // else { int temp = a - b - (flagC ^ 0x01); flagV = ((a ^ b) & (a ^ temp) & 0x80) >> 7; flagNZ = a = temp & 0xff; flagC = ((~temp) >> 8) & 0x01; // } } /** * Performs an SLO instruction that operates on memory. * All flags are updated appropriately. * * @param address The address in memory to SLO. */ private void doSLOMem(int address) { int val = context.readByte(address); context.writeByte(address, val); // Write the value back. flagC = (val >> 7) & 0x01; val = (val << 1) & 0xff; context.writeByte(address, val); flagNZ = a |= val; } /** * Dumps the number of times each n6502 instruction was executed * to a file.<p> * <p> * If {@link #DEBUG_OPCODE_COUNTS} is not set to * <code>true</code>, this method will not dump out instruction * counts. */ public void dumpOpcodeCounts() { try { PrintWriter out = new PrintWriter(new File("n6502_opcodeCounts.txt"), Charset.defaultCharset().name()); if (!DEBUG_OPCODE_COUNTS) { out.println("Opcode counting was not enabled for the n6502"); out.close(); return; } for (int i = 0; i < 256; i++) { out.println(i + ":\t" + opcodeCounts[i]); } out.close(); } catch (IOException ioe) { ioe.printStackTrace(); } } private int earliestIRQBefore(int time) { if (flagI == 0) { int irqTime = 99999;//apu.earliest_irq(); if (irqTime < time) { time = irqTime; } } return time; } /** * Hook method that can be overridden and called by subclasses * to implement functionality that occurs at the end of an * emulated "frame." The default implementation does nothing. */ public void endTimeFrame() { } /** * Runs this CPU for the given number of cycles. * * @param c The number of cycles to run. * @return The number of cycles that the CPU burned over * <code>cycles</code>. This will be a number * less than <code>1</code>. */ public int execute(int c) { return executeUntil(cycles + c); } protected int executeUntil(int until) { if (halted) { return 0; } while (cycles < until) { endCycles = until; // endCycles = earliestIRQBefore(until); // if (endCycles<=cycles) { // irq(); // endCycles = until; // } execute(); } return cycles; } @SuppressWarnings("checkstyle:MethodLength") protected void execute() { int addr; while (cycles < endCycles) { if (logState) { try { stateLogger.log(); } catch (IOException ioe) { ioe.printStackTrace(); } } int opcode = context.readByte(pc++); //if (org.fife.emu.finnes.Debug.DO_DEBUG) { //if ((debugExecutedInstructionCount%200000)==0) { // if (++debugOutIndex>MIN_DEBUG_OUT_INDEX) { //System.err.println("Yay - " + debugOutIndex); // if (debugOut!=null) // debugOut.close(); // try { // debugOut = new PrintWriter(new BufferedWriter(new FileWriter("n6502" + debugOutIndex + ".txt"))); // } catch (IOException ioe) { System.exit(0); } // } //} //if (debugOut!=null) { // org.fife.emu.finnes.hw.ppu.ppu2c02 ppu = ((org.fife.emu.finnes.hw.nes.NES)this.context).getPpu(); // debugOut.println((pc-1) + " " + sp + " " + opcode + /*" " + cycles + */" | " + // a + " " + x + " " + y + " | " + // getFlagN() + " " + flagV + " " + flagD + " " + flagI + " " + getFlagZ() + " " + flagC + " | " + // ppu.getLatchClean() + " " + ppu.readByteSprRAM(1) + " " + // ppu.getRegisterClean(0x2000) + " " + ppu.getRegisterClean(0x2001) + " " + ppu.getRegisterClean(0x2002) // ); //// if ((executedInstructionCount%80)==0) { // debugOut.flush(); //// } //} //debugExecutedInstructionCount++; //} if (DEBUG_OPCODE_COUNTS) { opcodeCounts[opcode]++; } if (DEBUG_COUNT_EXECUTED_INSTRUCTIONS) { executedInstructionCount++; //if (executedInstructionCount%10000==0) { // System.out.println("executedInstructionCount == " + executedInstructionCount); //} } switch (opcode) { case 0x00: // BRK - Break doBRK(); cycles += 7; break; case 0x01: // ORA ($44,X) - Indirect,X doORA(indexedIndirect_Read()); cycles += 6; break; case 0x02: // * KIL/JAM/HLT case 0x12: case 0x22: case 0x32: case 0x42: case 0x52: case 0x62: case 0x72: case 0x92: case 0xB2: case 0xD2: case 0xF2: doKIL(); break; case 0x03: // * SLO ($44),Y - Indirect,Y doSLOMem(_preIndIndX()); cycles += 8; break; case 0x04: // * DOP/SKB $44 - Zero Page case 0x44: case 0x64: pc++; cycles += 3; break; case 0x05: // ORA $44 - Zero Page doORA(zeroPage_Read()); cycles += 3; break; case 0x06: // ASL $44 - Zero page doASLMem(_zeroPage()); cycles += 5; break; case 0x07: // * SLO - Zero Page doSLOMem(_zeroPage()); cycles += 5; break; case 0x08: // PHP - Immediate (PusH Processor status) context.readByte(pc); // Throw away pushByte(getRegP()); cycles += 3; break; case 0x09: // ORA #$44 - Immediate doORA(context.readByte(pc)); pc++; cycles += 2; break; case 0x0A: // ASL - SHL A a = doASL(a); cycles += 2; break; case 0x0B: throw new UnemulatedInstructionException(opcode); case 0x0C: // * TOP/NOP/SKW - Absolute absolute_Read(); cycles += 4; break; case 0x0D: // ORA $4400 - Absolute doORA(absolute_Read()); cycles += 4; break; case 0x0E: // ASL $4400 - Absolute doASLMem(context.readWord(pc)); pc += 2; cycles += 6; break; case 0x0F: // * SLO - Absolute doSLOMem(context.readWord(pc)); pc += 2; cycles += 6; break; case 0x10: // BPL - Branch on PLus doBranch(getFlagN() == 0); break; case 0x11: // ORA ($44),Y - Indirect,Y doORA(indirectIndexed_Read()); // cycles-- if page boundary crossed. cycles += 5; break; // 0x12 handled previously case 0x13: // * SLO ($44),Y - Indirect,Y doSLOMem(_postIndIndY()); cycles += 8; break; case 0x14: // * DOP/SKB $44,X - Zero Page,X case 0x34: case 0x54: case 0x74: case 0xD4: case 0xF4: pc++; cycles += 4; break; case 0x15: // ORA $44,X - Zero Page,X doORA(zeroPageIndexed_Read(x)); cycles += 4; break; case 0x16: // ASL $44,X - Zero Page,X doASLMem(_zeroPageIndexed(x)); cycles += 6; break; case 0x17: // * SLO - Zero Page,X doSLOMem(_zeroPageIndexed(x)); cycles += 6; break; case 0x18: // CLC - CLear Carry flag flagC = 0; cycles += 2; break; case 0x19: // ORA $4400,Y - Absolute,Y doORA(absoluteIndex_Read(y)); // cycles-- if page boundary crossed. cycles += 4; break; case 0x1A: // * NOP - Implied case 0x3A: case 0x5A: case 0x7A: case 0xDA: case 0xEA: case 0xFA: cycles += 2; break; case 0x1B: // * SLO - Absolute,Y doSLOMem(_absIndexed(y)); cycles += 7; break; case 0x1C: // * TOP/NOP/SKW - Absolute,X case 0x3C: case 0x5C: case 0x7C: case 0xDC: case 0xFC: // NOTE: Nestopia does not add 1 cycles for page boundaries... absoluteIndex_Read(x); // cycles-- if page boundary crossed. cycles += 4; break; case 0x1D: // ORA $4400,X - Absolute,X doORA(absoluteIndex_Read(x)); // cycles-- if page boundary crossed. cycles += 4; break; case 0x1E: // ASL $4400,X - Absolute,X doASLMem(_absIndexed(x)); cycles += 7; break; case 0x1F: // * SLO - Absolute,X doSLOMem(_absIndexed(x)); cycles += 7; break; case 0x20: // JSR - Jump to SubRoutine, Absolute pushWord(pc + 1); pc = context.readWord(pc); cycles += 6; break; case 0x21: // AND ($44,X) - Indirect,X doAND(indexedIndirect_Read()); cycles += 6; break; // 0x22 handled previously case 0x23: throw new UnemulatedInstructionException(opcode); case 0x24: // BIT $44 - Zero Page doBIT(zeroPage_Read()); cycles += 3; break; case 0x25: // AND $44 - Zero page doAND(zeroPage_Read()); cycles += 3; break; case 0x26: // ROL $44 - Zero Page doROLMem(_zeroPage()); cycles += 5; break; case 0x27: throw new UnemulatedInstructionException(opcode); case 0x28: // PLP - Immediate (PuLl Processor status) context.readByte(pc); // Throw away setRegP(popByte()); cycles += 4; break; case 0x29: // AND #$44 - immediate doAND(context.readByte(pc)); pc++; cycles += 2; break; case 0x2A: // ROL A - Accumulator a = doROL(a); cycles += 2; break; case 0x2B: throw new UnemulatedInstructionException(opcode); case 0x2C: // BIT $4400 - Absolute doBIT(absolute_Read()); cycles += 4; break; case 0x2D: // AND $4400 - Absolute doAND(absolute_Read()); cycles += 4; break; case 0x2E: // ROL $4400 - Absolute doROLMem(context.readWord(pc)); pc += 2; cycles += 6; break; case 0x2F: throw new UnemulatedInstructionException(opcode); case 0x30: // BMI - Branch on MInus doBranch(getFlagN() > 0); break; case 0x31: // AND ($44),Y - Indirect,Y doAND(indirectIndexed_Read()); // cycles-- if page boundary crossed. cycles += 5; break; // 0x32 handled previously case 0x33: throw new UnemulatedInstructionException(opcode); // 0x34 handled previously case 0x35: // AND $44,x - Zero Page,X doAND(zeroPageIndexed_Read(x)); cycles += 4; break; case 0x36: // ROL $44,X - Zero Page,X doROLMem(_zeroPageIndexed(x)); cycles += 6; break; case 0x37: throw new UnemulatedInstructionException(opcode); case 0x38: // SEC - SEt Carry flag) flagC = 1; cycles += 2; break; case 0x39: // AND $4400,Y - Absolute,Y doAND(absoluteIndex_Read(y)); // cycles-- if page boundary crossed. cycles += 4; break; // 0x3A handled previously case 0x3B: throw new UnemulatedInstructionException(opcode); // 0x3C handled previously case 0x3D: // AND $4400,X - Absolute,X doAND(absoluteIndex_Read(x)); // cycles-- if page boundary crossed. cycles += 4; break; case 0x3E: // ROL $4400 - Absolute,X doROLMem(_absIndexed(x)); cycles += 7; break; case 0x3F: throw new UnemulatedInstructionException(opcode); case 0x40: // RTI - Implied doRTI(); cycles += 6; break; case 0x41: // EOR ($44,X) - Indirect,X doEOR(indexedIndirect_Read()); cycles += 6; break; // 0x42 handled previously case 0x43: throw new UnemulatedInstructionException(opcode); // 0x44 handled previously case 0x45: // EOR $44 - Zero Page doEOR(zeroPage_Read()); cycles += 3; break; case 0x46: // LSR $44 - Zero Page doLSRMem(_zeroPage()); cycles += 5; break; case 0x47: throw new UnemulatedInstructionException(opcode); case 0x48: // PHA - Immediate (PusH Accumulator) context.readByte(pc); // Throw away pushByte(a); cycles += 3; break; case 0x49: // EOR #$44 - Immediate doEOR(context.readByte(pc)); pc++; cycles += 2; break; case 0x4A: // LSR A - Accumulator a = doLSR(a); cycles += 2; break; case 0x4B: throw new UnemulatedInstructionException(opcode); case 0x4C: // JMP $5597 - Absolute pc = context.readWord(pc); cycles += 3; break; case 0x4D: // EOR $4400 - Absolute doEOR(absolute_Read()); cycles += 4; break; case 0x4E: // LSR $4400 - Absolute doLSRMem(context.readWord(pc)); pc += 2; cycles += 6; break; case 0x4F: throw new UnemulatedInstructionException(opcode); case 0x50: // BVC - Branch on oVerflow Clear doBranch(flagV == 0); break; case 0x51: // EOR ($44),Y - Indirect,Y doEOR(indirectIndexed_Read()); // cycles-- if page boundary crossed. cycles += 5; break; // 0x52 handled previously case 0x53: throw new UnemulatedInstructionException(opcode); // 0x54 handled previously case 0x55: // EOR $44,X - Zero Page,X doEOR(zeroPageIndexed_Read(x)); cycles += 4; break; case 0x56: // LSR $44,X - Zero Page,X doLSRMem(_zeroPageIndexed(x)); cycles += 6; break; case 0x57: throw new UnemulatedInstructionException(opcode); case 0x58: // CLI - CLear Interrupt flag flagI = 0; cycles += 2; return; // Stop CPU immediately. case 0x59: // EOR $4400,Y - Absolute,Y doEOR(absoluteIndex_Read(y)); // cycles-- if page boundary crossed. cycles += 4; break; // 0x5A handled previously case 0x5B: throw new UnemulatedInstructionException(opcode); // 0x5C handled previously case 0x5D: // EOR $4400,X - Absolute,X doEOR(absoluteIndex_Read(x)); // cycles-- if page boundary crossed. cycles += 4; break; case 0x5E: // LSR $4400,X - Absolute,X doLSRMem(_absIndexed(x)); cycles += 7; break; case 0x5F: throw new UnemulatedInstructionException(opcode); case 0x60: // RTS - Implied context.readByte(pc); // Throw away pc = popWord() + 1; cycles += 6; break; case 0x61: // ADC ($44,X) - Indirect,X doADC(indexedIndirect_Read()); cycles += 6; break; // 0x62 handled previously case 0x63: throw new UnemulatedInstructionException(opcode); // 0x64 handled previously case 0x65: // ADC $44 - Zero page doADC(zeroPage_Read()); cycles += 3; break; case 0x66: // ROR $44 - Zero Page doRORMem(_zeroPage()); cycles += 5; break; case 0x67: throw new UnemulatedInstructionException(opcode); case 0x68: // PLA - Immediate (puLl Accumulator) context.readByte(pc); // Throw away flagNZ = a = popByte(); cycles += 4; break; case 0x69: // ADC #$44 - immediate doADC(context.readByte(pc)); pc++; cycles += 2; break; case 0x6A: // ROR A - Accumulator a = doROR(a); cycles += 2; break; case 0x6B: throw new UnemulatedInstructionException(opcode); case 0x6C: // JMP ($5597) - Indirect addr = context.readWord(pc); if ((addr & 0xff) == 0xff) { pc = context.readByte(addr) | (context.readByte(addr & 0xff00) << 8); } else { pc = context.readWord(addr); } cycles += 5; break; case 0x6D: // ADC $4400 - Absolute doADC(absolute_Read()); cycles += 4; break; case 0x6E: // ROR $4400 - Absolute doRORMem(context.readWord(pc)); pc += 2; cycles += 6; break; case 0x6F: throw new UnemulatedInstructionException(opcode); case 0x70: // BVS - Branch on oVerflow Set doBranch(flagV > 0); break; case 0x71: // ADC ($44),Y - Indirect,Y doADC(indirectIndexed_Read()); // cycles-- if page boundary crossed. cycles += 5; break; // 0x72 handled previously case 0x73: throw new UnemulatedInstructionException(opcode); // 0x74 handled previously case 0x75: // ADC $44,X - Zero page, X doADC(zeroPageIndexed_Read(x)); cycles += 4; break; case 0x76: // ROR $44,X - Zero Page,X doRORMem(_zeroPageIndexed(x)); cycles += 6; break; case 0x77: throw new UnemulatedInstructionException(opcode); case 0x78: // SEI - SEt Interrupt flag flagI = 1; cycles += 2; break; case 0x79: // ADC $4400,Y - Absolute,Y doADC(absoluteIndex_Read(y)); // cycles-- if page boundary crossed. cycles += 4; break; // 0x7A handled previously case 0x7B: throw new UnemulatedInstructionException(opcode); // 0x7C handled previously case 0x7D: // ADC $4400,X - Absolute, X doADC(absoluteIndex_Read(x)); cycles += 4; break; case 0x7E: // ROR $4400,X - Absolute,X doRORMem(_absIndexed(x)); cycles += 7; break; case 0x7F: throw new UnemulatedInstructionException(opcode); case 0x80: // * DOP/SKB #$44 - Immediate case 0x82: case 0x89: case 0xC2: case 0xE2: pc++; cycles += 2; break; case 0x81: // STA ($44,X) - Indirect,X indexedIndirect_Write(a); cycles += 6; break; // 0x82 handled previously case 0x83: throw new UnemulatedInstructionException(opcode); case 0x84: // STY $44 - Zero Page zeroPage_Write(y); cycles += 3; break; case 0x85: // STA $44 - Zero Page zeroPage_Write(a); cycles += 3; break; case 0x86: // STX $44 - Zero Page zeroPage_Write(x); cycles += 3; break; case 0x87: throw new UnemulatedInstructionException(opcode); case 0x88: // DEY - Immediate flagNZ = y = (y - 1) & 0xff; cycles += 2; break; // 0x89 handled previously case 0x8A: // TXA - Immediate flagNZ = a = x; cycles += 2; break; case 0x8B: throw new UnemulatedInstructionException(opcode); case 0x8C: // STY $4400 - Absolute absolute_Write(y); cycles += 4; break; case 0x8D: // STA $4400 - Absolute absolute_Write(a); cycles += 4; break; case 0x8E: // STX $4400 - Absolute absolute_Write(x); cycles += 4; break; case 0x8F: throw new UnemulatedInstructionException(opcode); case 0x90: // BCC - Branch on Carry Clear doBranch(flagC == 0); break; case 0x91: // STA ($44),Y - Indirect,Y indirectIndexed_Write(a); cycles += 6; break; // 0x92 handled previously case 0x93: throw new UnemulatedInstructionException(opcode); case 0x94: // STY $44,X - Zero Page,X zeroPageIndexed_Write(x, y); cycles += 4; break; case 0x95: // STA $44,X - Zero Page,X zeroPageIndexed_Write(x, a); cycles += 4; break; case 0x96: // STX $44,Y - Zero Page,Y zeroPageIndexed_Write(y, x); cycles += 4; break; case 0x97: throw new UnemulatedInstructionException(opcode); case 0x98: // TYA - Immediate flagNZ = a = y; cycles += 2; break; case 0x99: // STA $4400,Y - Absolute,Y absoluteIndex_Write(y, a); cycles += 5; break; case 0x9A: // TXS - Implied sp = x; cycles += 2; break; case 0x9B: throw new UnemulatedInstructionException(opcode); case 0x9C: throw new UnemulatedInstructionException(opcode); case 0x9D: // STA $4400,X - Absolute,X absoluteIndex_Write(x, a); cycles += 5; break; case 0x9E: throw new UnemulatedInstructionException(opcode); case 0x9F: throw new UnemulatedInstructionException(opcode); case 0xA0: // LDY #$44 - Immediate doLDY(context.readByte(pc)); pc++; cycles += 2; break; case 0xA1: // LDA ($44,X) - Indirect,X doLDA(indexedIndirect_Read()); cycles += 6; break; case 0xA2: // LDX #$44 - Immediate doLDX(context.readByte(pc)); pc++; cycles += 2; break; case 0xA3: // * LAX ($44,X) - Indirect,X doLAX(indexedIndirect_Read()); cycles += 6; break; case 0xA4: // LDY $44 - Zero Page doLDY(zeroPage_Read()); cycles += 3; break; case 0xA5: // LDA $44 - Zero Page doLDA(zeroPage_Read()); cycles += 3; break; case 0xA6: // LDX $44 - Zero Page doLDX(zeroPage_Read()); cycles += 3; break; case 0xA7: // * LAX $44 - Zero Page doLAX(zeroPage_Read()); cycles += 3; break; case 0xA8: // TAY - Immediate flagNZ = y = a; cycles += 2; break; case 0xA9: // LDA #$44 - Immediate doLDA(context.readByte(pc)); pc++; cycles += 2; break; case 0xAA: // TAX - Immediate flagNZ = x = a; cycles += 2; break; case 0xAB: throw new UnemulatedInstructionException(opcode); case 0xAC: // LDY $4400 - Absolute doLDY(absolute_Read()); cycles += 4; break; case 0xAD: // LDA $4400 - Absolute doLDA(absolute_Read()); cycles += 4; break; case 0xAE: // LDX $4400 - Absolute doLDX(absolute_Read()); cycles += 4; break; case 0xAF: // * LAX $4400 - Absolute doLAX(absolute_Read()); cycles += 4; break; case 0xB0: // BCS - Branch on Carry Set doBranch(flagC > 0); break; case 0xB1: // LDA ($44),Y - Indirect,Y doLDA(indirectIndexed_Read()); // cycles-- if page boundary crossed. cycles += 5; break; // 0xB2 handled previously case 0xB3: // * LAX ($44),Y - Indirect,Y doLAX(indirectIndexed_Read()); // cycles-- if page boundary crossed. cycles += 5; break; case 0xB4: // LDY $44,X - Zero Page,X doLDY(zeroPageIndexed_Read(x)); cycles += 4; break; case 0xB5: // LDA $44,X - Zero Page,X doLDA(zeroPageIndexed_Read(x)); cycles += 4; break; case 0xB6: // LDX $44,Y - Zero Page,Y doLDX(zeroPageIndexed_Read(y)); cycles += 4; break; case 0xB7: // * LAX $44 - Zero Page,Y doLAX(zeroPageIndexed_Read(y)); cycles += 4; break; case 0xB8: // CLV - CLear oVerflow flag flagV = 0; cycles += 2; break; case 0xB9: // LDA $4400,Y - Absolute,Y doLDA(absoluteIndex_Read(y)); // cycles-- if page boundary crossed. cycles += 4; break; case 0xBA: // TSX flagNZ = x = sp; cycles += 2; break; case 0xBB: // * LAR/LAE/LAS arg,Y - Absolute,Y flagNZ = x = sp = a = absoluteIndex_Read(y) & sp; cycles += 4; break; case 0xBC: // LDY $4400,X - Absolute,X doLDY(absoluteIndex_Read(x)); // cycles-- if page boundary crossed. cycles += 4; break; case 0xBD: // LDA $4400,X - Absolute,X doLDA(absoluteIndex_Read(x)); // cycles-- if page boundary crossed. cycles += 4; break; case 0xBE: // LDX $4400,Y - Absolute,Y doLDX(absoluteIndex_Read(y)); // cycles-- if page boundary crossed. cycles += 4; break; case 0xBF: // * LAX $4400 - Absolute,Y doLAX(absoluteIndex_Read(y)); // cycles-- if page boundary crossed. cycles += 4; break; case 0xC0: // CPY #$44 - Immediate doCMP(y, context.readByte(pc)); pc++; cycles += 2; break; case 0xC1: // CMP ($44,X) - Indirect,X doCMP(a, indexedIndirect_Read()); cycles += 6; break; // 0xC2 handled previously case 0xC3: throw new UnemulatedInstructionException(opcode); case 0xC4: // CPY $44 - Zero Page doCMP(y, zeroPage_Read()); cycles += 3; break; case 0xC5: // CMP $44 - Zero Page doCMP(a, zeroPage_Read()); cycles += 3; break; case 0xC6: // DEC $44 - Zero Page doDECMem(_zeroPage()); cycles += 5; break; case 0xC7: throw new UnemulatedInstructionException(opcode); case 0xC8: // INY - Immediate flagNZ = y = (y + 1) & 0xff; cycles += 2; break; case 0xC9: // CMP #$44 - Compare immediate doCMP(a, context.readByte(pc)); pc++; cycles += 2; break; case 0xCA: // DEX - Immediate flagNZ = x = (x - 1) & 0xff; cycles += 2; break; case 0xCB: throw new UnemulatedInstructionException(opcode); case 0xCC: // CPY $4400 - Absolute doCMP(y, absolute_Read()); cycles += 4; break; case 0xCD: // CMP $4400 - Absolute doCMP(a, absolute_Read()); cycles += 4; break; case 0xCE: // DEC $4400 - Absolute doDECMem(context.readWord(pc)); pc += 2; cycles += 6; break; case 0xCF: throw new UnemulatedInstructionException(opcode); case 0xD0: // BNE - Branch on Not Equal doBranch(getFlagZ() == 0); break; case 0xD1: // CMP ($44),Y - Indirect,Y doCMP(a, indirectIndexed_Read()); // cycles-- if page boundary crossed. cycles += 5; break; // 0xD2 handled previously case 0xD3: throw new UnemulatedInstructionException(opcode); // 0xD4 handled previously case 0xD5: // CMP $44,X - Zero Page,X doCMP(a, zeroPageIndexed_Read(x)); cycles += 4; break; case 0xD6: // DEC $44,X - Zero Page,X doDECMem(_zeroPageIndexed(x)); cycles += 6; break; case 0xD7: throw new UnemulatedInstructionException(opcode); case 0xD8: // CLD - CLear Decimal flag flagD = 0; cycles += 2; break; case 0xD9: // CMP $4400,Y - Absolute,Y doCMP(a, absoluteIndex_Read(y)); // cycles-- if page boundary crossed. cycles += 4; break; // 0xDA handled previously case 0xDB: throw new UnemulatedInstructionException(opcode); // 0xDC handled previously case 0xDD: // CMP $4400,X - Absolute,X doCMP(a, absoluteIndex_Read(x)); // cycles-- if page boundary crossed. cycles += 4; break; case 0xDE: // DEC $4400,X - Absolute,X doDECMem(_absIndexed(x)); cycles += 7; break; case 0xDF: throw new UnemulatedInstructionException(opcode); case 0xE0: // CPX #$44 - Immediate doCMP(x, context.readByte(pc)); pc++; cycles += 2; break; case 0xE1: // SBC ($44,X) - Indirect,X doSBC(indexedIndirect_Read()); cycles += 6; break; // 0xE2 handled previously case 0xE3: // * ISC ($44,X) - Indirect,X doISCMem(_preIndIndX()); cycles += 8; break; case 0xE4: // CPX $44 - Zero Page doCMP(x, zeroPage_Read()); cycles += 3; break; case 0xE5: // SBC $44 - Zero Page doSBC(zeroPage_Read()); cycles += 3; break; case 0xE6: // INC $44 - Zero Page doINCMem(_zeroPage()); cycles += 5; break; case 0xE7: // * ISC $44 - Zero Page doISCMem(_zeroPage()); cycles += 5; break; case 0xE8: // INX - Immediate flagNZ = x = (x + 1) & 0xff; cycles += 2; break; case 0xE9: // SBC #$44 - Immediate doSBC(context.readByte(pc)); pc++; cycles += 2; break; // 0xEA handled previously case 0xEB: // * SBC #$44 - Immediate doSBC(context.readByte(pc)); pc++; cycles += 2; break; case 0xEC: // CPX $4400 - Absolute doCMP(x, absolute_Read()); cycles += 4; break; case 0xED: // SBC $4400 - Absolute doSBC(absolute_Read()); cycles += 4; break; case 0xEE: // INC $4400 - Absolute doINCMem(context.readWord(pc)); pc += 2; cycles += 6; break; case 0xEF: // * ISC $4400 - Absolute doISCMem(context.readWord(pc)); pc += 2; cycles += 6; break; case 0xF0: // BEQ - Branch on EQual doBranch(getFlagZ() > 0); break; case 0xF1: // SBC ($44),Y - Indirect,Y doSBC(indirectIndexed_Read()); // cycles-- if page boundary crossed. cycles += 5; break; // 0xF2 handled previously case 0xF3: // * ISC ($44),Y - Indirect,Y doISCMem(_postIndIndY()); cycles += 8; break; // 0xF4 handled previously case 0xF5: // SBC $44,X - Zero Page,X doSBC(zeroPageIndexed_Read(x)); cycles += 4; break; case 0xF6: // INC $44,X - Zero Page,X doINCMem(_zeroPageIndexed(x)); cycles += 6; break; case 0xF7: // * ISC $44,X - Zero Page,X doISCMem(_zeroPageIndexed(x)); cycles += 6; break; case 0xF8: // SED - SEt Decimal flag flagD = 1; cycles += 2; break; case 0xF9: // SBC $4400,Y - Absolute,Y doSBC(absoluteIndex_Read(y)); // cycles-- if page boundary crossed. cycles += 4; break; // 0xFA handled previously case 0xFB: // * ISC $4400,Y - Absolute,Y doISCMem(_absIndexed(y)); cycles += 7; break; // 0xFC handled previously case 0xFD: // SBC $4400,X - Absolute,X doSBC(absoluteIndex_Read(x)); // cycles-- if page boundary crossed. cycles += 4; break; case 0xFE: // INC $4400,X - Absolute,X doINCMem(_absIndexed(x)); cycles += 7; break; case 0xFF: // * ISC $4400,X - Absolute,X doISCMem(_absIndexed(x)); cycles += 7; break; } } } /** * Returns the B flag. * * @return The B flag. */ public int getFlagB() { return flagB; } /** * Returns the C flag. * * @return The C flag. */ public int getFlagC() { return flagC; } /** * Returns the D flag. * * @return The D flag. */ public int getFlagD() { return flagD; } /** * Returns the I flag. * * @return The I flag. */ public int getFlagI() { return flagI; } /** * Returns the N flag. * * @return The N flag. */ public int getFlagN() { // Sometimes bit 8 of flagNZ gets set as a side-effect of // operations, and that is what we must check for the sign // bit. So we OR bits 7 and 8 together and just check both. return ((flagNZ | (flagNZ >> 1)) & N_BIT) >> 7; } /** * Returns the V flag. * * @return The V flag. */ public int getFlagV() { return flagV; } /** * Returns the Z flag. * * @return The Z flag. */ public int getFlagZ() { // We use flagNZ "opposite" of a Z flag, e.g., if // flagNZ==0 => Z flag is set, // flagNZ!=0 => flagZ is clear. // The first 8 bits of flagNZ are in essence a copy of // the results of the last operation done. We must mask // to a byte as we use bit 8 of flagNZ in checking for the // sign bit, as sometimes our operations sets that bit. return (flagNZ & 0xff) == 0 ? 1 : 0; } /** * Returns the value of the A register. * * @return The value of the A register. * @see #getRegX() * @see #getRegY() */ public int getRegA() { return a; } /** * Returns the value of the P (processor status flags) * register. * * @return The value of the P register. * @see #setRegP(int) */ public int getRegP() { // NOTE: Flag Z is stored "opposite" as we use flaNZ the "opposite" // way of having a Z flag (e.g., it being "0" => Z flag is "set," // it being "!= 0" => Z flag "clear." return flagC | /*getFlagZ()>0?0x02:0x00*/((flagNZ & 0xff) > 0 ? 0x00 : 0x02) | (flagI << 2) | (flagD << 3) | (flagB << 4) | (flagV << 6) | /*getFlagN()<<7;*/((flagNZ | (flagNZ >> 1)) & N_BIT); } /** * Returns the value of the X register. * * @return The value of the X register. * @see #getRegA() * @see #getRegY() */ public int getRegX() { return x; } /** * Returns the value of the Y register. * * @return The value of the Y register. * @see #getRegA() * @see #getRegX() */ public int getRegY() { return y; } public int getStatusFlag(int flag) { if (flag == 0) { return getFlagC(); } if (flag == 1) { return getFlagZ(); } if (flag == 2) { return getFlagI(); } if (flag == 3) { return getFlagD(); } if (flag == 4) { return getFlagB(); } if (flag == 5) { return 0; } if (flag == 6) { return getFlagV(); } if (flag == 7) { return getFlagN(); } throw new IllegalArgumentException("Invalid flag value: " + flag); } /** * Performs an indexed-indirect-addressed read * (LDA, ORA, EOR, AND, ADC, CMP, SBC, LAX). * * @return The byte read. */ private int indexedIndirect_Read() { return context.readByte(_preIndIndX()); } /** * Performs an indexed-indirect-addressed write * (STA, SAX). * * @param b The byte to write. */ private void indexedIndirect_Write(int b) { context.writeByte(_preIndIndX(), b); } /** * Performs an indirect-indexed-addressed read * (LDA, EOR, AND, ORA, ADC, SBC, CMP). * * @return The byte read. */ private int indirectIndexed_Read() { return context.readByte(_postIndIndY()); } /** * Performs an indirect-indexed-addressed write * (STA, SHA). * * @param b The byte to write. */ private void indirectIndexed_Write(int b) { context.writeByte(_postIndIndY(), b); } /** * Performs an IRQ (maskable interrupt), if the * interrupt disable flag is not set. * * @see #nmi() */ public void irq() { if (flagI == 0) { pushWord(pc); pushByte(getRegP()); flagI = 1; pc = context.readWord(0xfffe); cycles += 7; } } /** * Performs an NMI (non-maskable interrupt). * * @see #irq() */ public void nmi() { pushWord(pc); pushByte(getRegP()); flagI = 1; pc = context.readWord(0xfffa); cycles += 7; } /** * Returns the next byte that would be popped from the stack, without * modifying the stack pointer. Useful for debugging. * * @param offs The offset into the stack, &gt;= 0. * @return The byte. * @see #popByte() */ public int peekByte(int offs) { offs = (sp + offs + 1) & 0xff; return context.readByteSafely(STACK_BOTTOM | offs); } /** * Pops a byte off of the stack (addresses * <code>0x100 - 0x1FF</code> in memory). * * @see #pushByte(int) * @see #popWord() */ private int popByte() { sp = (sp + 1) & 0xff; return context.readByte(STACK_BOTTOM | sp); } /** * Pops a word off of the stack (addresses * <code>0x100 - 0x1FF</code> in memory). * * @see #pushWord(int) * @see #popByte() */ private int popWord() { // TODO: This is always on the stack so we should be // able to directly access context.ram if we want to // cheat. sp = (sp + 1) & 0xff; int word = context.readByte(STACK_BOTTOM | sp); sp = (sp + 1) & 0xff; word |= (context.readByte(STACK_BOTTOM | sp) << 8); return word; } /** * Pushes a byte onto the stack (addresses * <code>0x100 - 0x1FF</code> in memory). * * @param b The byte to push. * @see #popByte() * @see #pushWord(int) */ private void pushByte(int b) { context.writeByte(STACK_BOTTOM + sp, b); sp = (sp - 1) & 0xff; } /** * Pushes a word onto the stack (addresses * <code>0x100 - 0x1FF</code> in memory). * * @param word The word to push. * @see #popWord() * @see #pushByte(int) */ private void pushWord(int word) { context.writeByte(STACK_BOTTOM + sp, (word >> 8) & 0xff); sp = (sp - 1) & 0xff; context.writeByte(STACK_BOTTOM + sp, word & 0xff); sp = (sp - 1) & 0xff; } /** * Performs a reset. */ public void reset() { totCycles = 0; cycles = 0; // ??? a = x = y = 0; flagI = 1; flagB = flagC = flagD = flagNZ = flagV = 0; pc = context.readWord(0xfffc); sp = 0xfd;//0xff; // "Stack" starts at 0x1ff and goes down to 0x100. } public void setLogState(boolean logState) { this.logState = logState; stateLogger.setLog(Paths.get(new java.io.File("output_oldfinnes.log").toURI())); } /** * Sets the value of the P (processor status) register. * * @param p The new value for the register. * @see #getRegP() */ public void setRegP(int p) { flagNZ = ((p & N_BIT) << 1) | (~p & 0x02);//((p&0x02)>>1); flagV = (p & 0x40) >> 6; flagB = (p & 0x10) >> 4; flagD = (p & 0x08) >> 3; flagI = (p & 0x04) >> 2; flagC = p & 0x01; } /** * Stops this CPU. */ public void stop() { if (debugOut != null) { debugOut.close(); } } /** * Performs a zero-page-addressed read (LDA, LDX, LDY, * EOR, AND, ORA, ADC, SBC, CMP, BIT, LAX, NOP). * * @return The byte read. */ private int zeroPage_Read() { return context.readByte(_zeroPage()); } /** * Performs a zero-page-addressed write (STA, STX, STY, SAX). * * @param b The byte to write. */ private void zeroPage_Write(int b) { context.writeByte(_zeroPage(), b); } /** * Performs a zero-page-indexed-addressed read (LDA, LDX, LDY, * EOR, AND, ORA, ADC, SBC, CMP, BIT, LAX, NOP). * * @param index The index. * @return The byte read. */ private int zeroPageIndexed_Read(int index) { return context.readByte(_zeroPageIndexed(index)); } /** * Performs a zero-page-indexed-addressed write * (STA, STX, STY, SAX). * * @param index The index. * @param b The byte to write. */ private void zeroPageIndexed_Write(int index, int b) { context.writeByte(_zeroPageIndexed(index), b); } }
[ "robert.e.futrell@gmail.com" ]
robert.e.futrell@gmail.com
5ecbe567e04188bf4bab96f5bb3eae7ec2363ce7
6d2d4af76f82e154b3aa06531adc248e3201c09b
/src/main/java/com/robertx22/mine_and_slash/database/spells/synergies/base/OnHealedSynergy.java
7a063b44d3d941fd45f2c59fe9536cb3513fd316
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
AzureDoom/Mine-and-Slash
4bd16494be00bde5a038bcc01dd66fb45209fe7f
a772326882824039eee814dcff4af321923a5736
refs/heads/AzureBranch
2021-07-10T03:32:16.672923
2020-08-16T03:59:14
2020-08-16T03:59:14
188,708,742
1
3
NOASSERTION
2020-02-24T09:12:49
2019-05-26T16:48:17
Java
UTF-8
Java
false
false
267
java
package com.robertx22.mine_and_slash.database.spells.synergies.base; import com.robertx22.mine_and_slash.uncommon.effectdatas.SpellHealEffect; public abstract class OnHealedSynergy extends Synergy { public abstract void tryActivate(SpellHealEffect effect); }
[ "treborx555@gmail.com" ]
treborx555@gmail.com
266c801d9a4d2628d8d466e760eafec0d5ac35f4
1c31804e076828585d5df1695e308ace5382cbf1
/jodd-petite/src/test/java/jodd/petite/mix/Big2.java
7903d46aa52bf0c8b6d7fe04deedd8bb39d53aa1
[]
no_license
zipu888/jodd
bb07bb97b41a3cb7a4765677dc7a5c7d93efac43
3f70308ab43de8eb82343b5db86935a3f506a7b2
refs/heads/master
2021-01-15T18:50:31.015230
2013-07-15T02:07:47
2013-07-15T02:07:47
8,326,913
1
0
null
null
null
null
UTF-8
Java
false
false
308
java
// Copyright (c) 2003-2013, Jodd Team (jodd.org). All Rights Reserved. package jodd.petite.mix; import jodd.petite.meta.PetiteInject; public class Big2 { private Small small; public Small getSmall() { return small; } @PetiteInject public void setSmall(Small small) { this.small = small; } }
[ "igor@jodd.org" ]
igor@jodd.org
ef051bbd1b59bae672ec3825791038cdc15944e4
ef05fac57df51aef658abc7a7681cf82be4690f7
/src/test/java/com/esuper/tbsas/IntegrationTests.java
dbcf4f27aa0fe26371faa272c86c45b07d23412d
[]
no_license
tasfe/tbsas
93a2ce43013986dd8daf8bd11dee43d50c76ba11
5761c62a8d8d54f7c7aeb34dbe5851b0cf41e992
refs/heads/master
2020-04-26T10:51:19.945108
2013-07-18T14:12:07
2013-07-18T14:12:07
32,250,509
0
0
null
null
null
null
UTF-8
Java
false
false
1,367
java
/* * Copyright 2012-2015 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 com.esuper.tbsas; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; /** * TODO * * @author liaozhicheng.cn@gmail.com * @date 2013-4-12 */ @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration("classpath:beans.xml") public class IntegrationTests { @PersistenceContext(name = "mysql.persistence") private EntityManager entityManager; @Test public void springJapIntegrationTest() { Assert.assertNotNull(entityManager); } }
[ "liaozhicheng.cn@gmail.com@3ea0afcf-321d-d6d0-534d-9c499d4c2502" ]
liaozhicheng.cn@gmail.com@3ea0afcf-321d-d6d0-534d-9c499d4c2502
26f741101099f239bbadeef3f31578b726e4e8ce
9b9c3236cc1d970ba92e4a2a49f77efcea3a7ea5
/L2J_Mobius_5.0_Salvation/dist/game/data/scripts/quests/not_done/Q10597_EscapeToTheShadowOfTheMotherTree.java
ed9be95c756bc6ee193d141aa1d558f5127feb2e
[]
no_license
BETAJIb/ikol
73018f8b7c3e1262266b6f7d0a7f6bbdf284621d
f3709ea10be2d155b0bf1dee487f53c723f570cf
refs/heads/master
2021-01-05T10:37:17.831153
2019-12-24T22:23:02
2019-12-24T22:23:02
240,993,482
0
0
null
null
null
null
UTF-8
Java
false
false
1,147
java
/* * This file is part of the L2J Mobius project. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package quests.not_done; import org.l2jmobius.Config; import org.l2jmobius.gameserver.model.quest.Quest; /** * @author Mobius */ public class Q10597_EscapeToTheShadowOfTheMotherTree extends Quest { private static final int START_NPC = 34411; public Q10597_EscapeToTheShadowOfTheMotherTree() { super(10597); addStartNpc(START_NPC); addTalkId(START_NPC); addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null)); } }
[ "mobius@cyber-wizard.com" ]
mobius@cyber-wizard.com
e30d6f79609a7a690c2f3855af3a9c1b51036493
f60d91838cc2471bcad3784a56be2aeece101f71
/spring-framework-4.3.15.RELEASE/spring-core/src/main/java/org/springframework/core/Conventions.java
e325561e8d4431239b272092d49951fe264312c3
[ "Apache-2.0" ]
permissive
fisher123456/spring-boot-1.5.11.RELEASE
b3af74913eb1a753a20c3dedecea090de82035dc
d3c27f632101e8be27ea2baeb4b546b5cae69607
refs/heads/master
2023-01-07T04:12:02.625478
2019-01-26T17:44:05
2019-01-26T17:44:05
167,649,054
0
0
Apache-2.0
2022-12-27T14:50:58
2019-01-26T04:21:05
Java
UTF-8
Java
false
false
10,769
java
/* * Copyright 2002-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.core; import java.io.Externalizable; import java.io.Serializable; import java.lang.reflect.Method; import java.lang.reflect.Proxy; import java.util.Arrays; import java.util.Collection; import java.util.Collections; import java.util.HashSet; import java.util.Iterator; import java.util.Set; import org.springframework.util.Assert; import org.springframework.util.ClassUtils; /** * Provides methods to support various naming and other conventions used * throughout the framework. Mainly for internal use within the framework. * * @author Rob Harrop * @author Juergen Hoeller * @since 2.0 */ public abstract class Conventions { /** * Suffix added to names when using arrays. */ private static final String PLURAL_SUFFIX = "List"; /** * Set of interfaces that are supposed to be ignored * when searching for the 'primary' interface of a proxy. */ private static final Set<Class<?>> IGNORED_INTERFACES; static { IGNORED_INTERFACES = Collections.unmodifiableSet(new HashSet<Class<?>>( Arrays.<Class<?>>asList(Serializable.class, Externalizable.class, Cloneable.class, Comparable.class))); } /** * Determine the conventional variable name for the supplied * {@code Object} based on its concrete type. The convention * used is to return the uncapitalized short name of the {@code Class}, * according to JavaBeans property naming rules: So, * {@code com.myapp.Product} becomes {@code product}; * {@code com.myapp.MyProduct} becomes {@code myProduct}; * {@code com.myapp.UKProduct} becomes {@code UKProduct}. * <p>For arrays, we use the pluralized version of the array component type. * For {@code Collection}s we attempt to 'peek ahead' in the * {@code Collection} to determine the component type and * return the pluralized version of that component type. * @param value the value to generate a variable name for * @return the generated variable name */ public static String getVariableName(Object value) { Assert.notNull(value, "Value must not be null"); Class<?> valueClass; boolean pluralize = false; if (value.getClass().isArray()) { valueClass = value.getClass().getComponentType(); pluralize = true; } else if (value instanceof Collection) { Collection<?> collection = (Collection<?>) value; if (collection.isEmpty()) { throw new IllegalArgumentException("Cannot generate variable name for an empty Collection"); } Object valueToCheck = peekAhead(collection); valueClass = getClassForValue(valueToCheck); pluralize = true; } else { valueClass = getClassForValue(value); } String name = ClassUtils.getShortNameAsProperty(valueClass); return (pluralize ? pluralize(name) : name); } /** * Determine the conventional variable name for the supplied parameter, * taking the generic collection type (if any) into account. * @param parameter the method or constructor parameter to generate a variable name for * @return the generated variable name */ public static String getVariableNameForParameter(MethodParameter parameter) { Assert.notNull(parameter, "MethodParameter must not be null"); Class<?> valueClass; boolean pluralize = false; if (parameter.getParameterType().isArray()) { valueClass = parameter.getParameterType().getComponentType(); pluralize = true; } else if (Collection.class.isAssignableFrom(parameter.getParameterType())) { valueClass = ResolvableType.forMethodParameter(parameter).asCollection().resolveGeneric(); if (valueClass == null) { throw new IllegalArgumentException( "Cannot generate variable name for non-typed Collection parameter type"); } pluralize = true; } else { valueClass = parameter.getParameterType(); } String name = ClassUtils.getShortNameAsProperty(valueClass); return (pluralize ? pluralize(name) : name); } /** * Determine the conventional variable name for the return type of the supplied method, * taking the generic collection type (if any) into account. * @param method the method to generate a variable name for * @return the generated variable name */ public static String getVariableNameForReturnType(Method method) { return getVariableNameForReturnType(method, method.getReturnType(), null); } /** * Determine the conventional variable name for the return type of the supplied method, * taking the generic collection type (if any) into account, falling back to the * given return value if the method declaration is not specific enough (i.e. in case of * the return type being declared as {@code Object} or as untyped collection). * @param method the method to generate a variable name for * @param value the return value (may be {@code null} if not available) * @return the generated variable name */ public static String getVariableNameForReturnType(Method method, Object value) { return getVariableNameForReturnType(method, method.getReturnType(), value); } /** * Determine the conventional variable name for the return type of the supplied method, * taking the generic collection type (if any) into account, falling back to the * given return value if the method declaration is not specific enough (i.e. in case of * the return type being declared as {@code Object} or as untyped collection). * @param method the method to generate a variable name for * @param resolvedType the resolved return type of the method * @param value the return value (may be {@code null} if not available) * @return the generated variable name */ public static String getVariableNameForReturnType(Method method, Class<?> resolvedType, Object value) { Assert.notNull(method, "Method must not be null"); if (Object.class == resolvedType) { if (value == null) { throw new IllegalArgumentException("Cannot generate variable name for an Object return type with null value"); } return getVariableName(value); } Class<?> valueClass; boolean pluralize = false; if (resolvedType.isArray()) { valueClass = resolvedType.getComponentType(); pluralize = true; } else if (Collection.class.isAssignableFrom(resolvedType)) { valueClass = ResolvableType.forMethodReturnType(method).asCollection().resolveGeneric(); if (valueClass == null) { if (!(value instanceof Collection)) { throw new IllegalArgumentException( "Cannot generate variable name for non-typed Collection return type and a non-Collection value"); } Collection<?> collection = (Collection<?>) value; if (collection.isEmpty()) { throw new IllegalArgumentException( "Cannot generate variable name for non-typed Collection return type and an empty Collection value"); } Object valueToCheck = peekAhead(collection); valueClass = getClassForValue(valueToCheck); } pluralize = true; } else { valueClass = resolvedType; } String name = ClassUtils.getShortNameAsProperty(valueClass); return (pluralize ? pluralize(name) : name); } /** * Convert {@code String}s in attribute name format (lowercase, hyphens separating words) * into property name format (camel-cased). For example, {@code transaction-manager} is * converted into {@code transactionManager}. */ public static String attributeNameToPropertyName(String attributeName) { Assert.notNull(attributeName, "'attributeName' must not be null"); if (!attributeName.contains("-")) { return attributeName; } char[] chars = attributeName.toCharArray(); char[] result = new char[chars.length -1]; // not completely accurate but good guess int currPos = 0; boolean upperCaseNext = false; for (char c : chars) { if (c == '-') { upperCaseNext = true; } else if (upperCaseNext) { result[currPos++] = Character.toUpperCase(c); upperCaseNext = false; } else { result[currPos++] = c; } } return new String(result, 0, currPos); } /** * Return an attribute name qualified by the supplied enclosing {@link Class}. For example, * the attribute name '{@code foo}' qualified by {@link Class} '{@code com.myapp.SomeClass}' * would be '{@code com.myapp.SomeClass.foo}' */ public static String getQualifiedAttributeName(Class<?> enclosingClass, String attributeName) { Assert.notNull(enclosingClass, "'enclosingClass' must not be null"); Assert.notNull(attributeName, "'attributeName' must not be null"); return enclosingClass.getName() + '.' + attributeName; } /** * Determines the class to use for naming a variable that contains * the given value. * <p>Will return the class of the given value, except when * encountering a JDK proxy, in which case it will determine * the 'primary' interface implemented by that proxy. * @param value the value to check * @return the class to use for naming a variable */ private static Class<?> getClassForValue(Object value) { Class<?> valueClass = value.getClass(); if (Proxy.isProxyClass(valueClass)) { Class<?>[] ifcs = valueClass.getInterfaces(); for (Class<?> ifc : ifcs) { if (!IGNORED_INTERFACES.contains(ifc)) { return ifc; } } } else if (valueClass.getName().lastIndexOf('$') != -1 && valueClass.getDeclaringClass() == null) { // '$' in the class name but no inner class - // assuming it's a special subclass (e.g. by OpenJPA) valueClass = valueClass.getSuperclass(); } return valueClass; } /** * Pluralize the given name. */ private static String pluralize(String name) { return name + PLURAL_SUFFIX; } /** * Retrieves the {@code Class} of an element in the {@code Collection}. * The exact element for which the {@code Class} is retrieved will depend * on the concrete {@code Collection} implementation. */ private static <E> E peekAhead(Collection<E> collection) { Iterator<E> it = collection.iterator(); if (!it.hasNext()) { throw new IllegalStateException( "Unable to peek ahead in non-empty collection - no element found"); } E value = it.next(); if (value == null) { throw new IllegalStateException( "Unable to peek ahead in non-empty collection - only null element found"); } return value; } }
[ "171509086@qq.com" ]
171509086@qq.com
35bb3ab4adbff52c60bbdd8595bde4fa467c7040
178c62c51203f666bf5c95a6353e85a60369e5da
/src/net/request/RequestStats.java
1f039a7233c440b2c97763846364bb94c8286e7e
[]
no_license
hunvil/WoB_Server_ATNEngine
6e90e58269f8ce5c3a1f9e1b3066ead6bdee741f
dea2e58b6d4d56361af16225db5bf0c8776cb8ca
refs/heads/master
2021-01-10T10:12:08.860949
2015-11-21T05:16:37
2015-11-21T05:16:37
43,923,937
1
2
null
null
null
null
UTF-8
Java
false
false
980
java
package net.request; // Java Imports import java.io.DataInputStream; import java.io.IOException; // Other Imports import db.StatsDAO; import net.response.ResponseStats; import util.DataReader; public class RequestStats extends GameRequest { private short month_start; private short month_end; @Override public void parse(DataInputStream dataInput) throws IOException { month_start = DataReader.readShort(dataInput); month_end = DataReader.readShort(dataInput); } @Override public void process() throws Exception { if (client.getPlayer().getWorld() != null) { int player_id = client.getAccount().getID(); int eco_id = client.getPlayer().getEcosystem().getID(); ResponseStats response = new ResponseStats(); response.setStats(StatsDAO.getStats(month_start, month_end, player_id, eco_id)); client.add(response); } } }
[ "hunvilr@yahoo.com" ]
hunvilr@yahoo.com
17ca96eabcba503e32aaa3a109f8521731a9733d
b3fe326f0e099cd6cf26502e34978bff6c852570
/app/src/test/java/com/example/sporttogether/BCryptTest.java
7755653636f70b448278b0656267efce062e9315
[]
no_license
AlvaroGG0/Proyecto-Program-III
674a391636a9d97fef841a21548f2c028d04af0d
45f13be7b44285ee70006bb8eb511f4a44f11af7
refs/heads/master
2023-02-18T21:18:48.378643
2021-01-15T18:01:44
2021-01-15T18:01:44
302,108,332
0
0
null
null
null
null
UTF-8
Java
false
false
6,419
java
package com.example.sporttogether; import com.example.sporttogether.utils.BCrypt.BCrypt; // Copyright (c) 2006 Damien Miller <djm@mindrot.org> // // Permission to use, copy, modify, and distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice appear in all copies. // // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR // ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. import junit.framework.TestCase; /** * JUnit unit tests for BCrypt routines * @author Damien Miller * @version 0.2 */ public class BCryptTest extends TestCase { String[][] test_vectors = { { "", "$2a$06$DCq7YPn5Rq63x1Lad4cll.", "$2a$06$DCq7YPn5Rq63x1Lad4cll.TV4S6ytwfsfvkgY8jIucDrjc8deX1s." }, { "", "$2a$08$HqWuK6/Ng6sg9gQzbLrgb.", "$2a$08$HqWuK6/Ng6sg9gQzbLrgb.Tl.ZHfXLhvt/SgVyWhQqgqcZ7ZuUtye" }, { "", "$2a$10$k1wbIrmNyFAPwPVPSVa/ze", "$2a$10$k1wbIrmNyFAPwPVPSVa/zecw2BCEnBwVS2GbrmgzxFUOqW9dk4TCW" }, { "", "$2a$12$k42ZFHFWqBp3vWli.nIn8u", "$2a$12$k42ZFHFWqBp3vWli.nIn8uYyIkbvYRvodzbfbK18SSsY.CsIQPlxO" }, { "a", "$2a$06$m0CrhHm10qJ3lXRY.5zDGO", "$2a$06$m0CrhHm10qJ3lXRY.5zDGO3rS2KdeeWLuGmsfGlMfOxih58VYVfxe" }, { "a", "$2a$08$cfcvVd2aQ8CMvoMpP2EBfe", "$2a$08$cfcvVd2aQ8CMvoMpP2EBfeodLEkkFJ9umNEfPD18.hUF62qqlC/V." }, { "a", "$2a$10$k87L/MF28Q673VKh8/cPi.", "$2a$10$k87L/MF28Q673VKh8/cPi.SUl7MU/rWuSiIDDFayrKk/1tBsSQu4u" }, { "a", "$2a$12$8NJH3LsPrANStV6XtBakCe", "$2a$12$8NJH3LsPrANStV6XtBakCez0cKHXVxmvxIlcz785vxAIZrihHZpeS" }, { "abc", "$2a$06$If6bvum7DFjUnE9p2uDeDu", "$2a$06$If6bvum7DFjUnE9p2uDeDu0YHzrHM6tf.iqN8.yx.jNN1ILEf7h0i" }, { "abc", "$2a$08$Ro0CUfOqk6cXEKf3dyaM7O", "$2a$08$Ro0CUfOqk6cXEKf3dyaM7OhSCvnwM9s4wIX9JeLapehKK5YdLxKcm" }, { "abc", "$2a$10$WvvTPHKwdBJ3uk0Z37EMR.", "$2a$10$WvvTPHKwdBJ3uk0Z37EMR.hLA2W6N9AEBhEgrAOljy2Ae5MtaSIUi" }, { "abc", "$2a$12$EXRkfkdmXn2gzds2SSitu.", "$2a$12$EXRkfkdmXn2gzds2SSitu.MW9.gAVqa9eLS1//RYtYCmB1eLHg.9q" }, { "abcdefghijklmnopqrstuvwxyz", "$2a$06$.rCVZVOThsIa97pEDOxvGu", "$2a$06$.rCVZVOThsIa97pEDOxvGuRRgzG64bvtJ0938xuqzv18d3ZpQhstC" }, { "abcdefghijklmnopqrstuvwxyz", "$2a$08$aTsUwsyowQuzRrDqFflhge", "$2a$08$aTsUwsyowQuzRrDqFflhgekJ8d9/7Z3GV3UcgvzQW3J5zMyrTvlz." }, { "abcdefghijklmnopqrstuvwxyz", "$2a$10$fVH8e28OQRj9tqiDXs1e1u", "$2a$10$fVH8e28OQRj9tqiDXs1e1uxpsjN0c7II7YPKXua2NAKYvM6iQk7dq" }, { "abcdefghijklmnopqrstuvwxyz", "$2a$12$D4G5f18o7aMMfwasBL7Gpu", "$2a$12$D4G5f18o7aMMfwasBL7GpuQWuP3pkrZrOAnqP.bmezbMng.QwJ/pG" }, { "~!@#$%^&*() ~!@#$%^&*()PNBFRD", "$2a$06$fPIsBO8qRqkjj273rfaOI.", "$2a$06$fPIsBO8qRqkjj273rfaOI.HtSV9jLDpTbZn782DC6/t7qT67P6FfO" }, { "~!@#$%^&*() ~!@#$%^&*()PNBFRD", "$2a$08$Eq2r4G/76Wv39MzSX262hu", "$2a$08$Eq2r4G/76Wv39MzSX262huzPz612MZiYHVUJe/OcOql2jo4.9UxTW" }, { "~!@#$%^&*() ~!@#$%^&*()PNBFRD", "$2a$10$LgfYWkbzEvQ4JakH7rOvHe", "$2a$10$LgfYWkbzEvQ4JakH7rOvHe0y8pHKF9OaFgwUZ2q7W2FFZmZzJYlfS" }, { "~!@#$%^&*() ~!@#$%^&*()PNBFRD", "$2a$12$WApznUOJfkEGSmYRfnkrPO", "$2a$12$WApznUOJfkEGSmYRfnkrPOr466oFDCaj4b6HY3EXGvfxm43seyhgC" }, }; /** * Test method for 'BCrypt.hashpw(String, String)' */ public void testHashpw() { System.out.print("BCrypt.hashpw(): "); for (String[] test_vector : test_vectors) { String plain = test_vector[0]; String salt = test_vector[1]; String expected = test_vector[2]; String hashed = BCrypt.hashpw(plain, salt); assertEquals(hashed, expected); System.out.print("."); } System.out.println(); } /** * Test method for 'BCrypt.gensalt(int)' */ public void testGensaltInt() { System.out.print("BCrypt.gensalt(log_rounds):"); for (int i = 4; i <= 12; i++) { System.out.print(" " + i + ":"); for (int j = 0; j < test_vectors.length; j += 4) { String plain = test_vectors[j][0]; String salt = BCrypt.gensalt(i); String hashed1 = BCrypt.hashpw(plain, salt); String hashed2 = BCrypt.hashpw(plain, hashed1); assertEquals(hashed1, hashed2); System.out.print("."); } } System.out.println(); } /** * Test method for 'BCrypt.gensalt()' */ public void testGensalt() { System.out.print("BCrypt.gensalt(): "); for (int i = 0; i < test_vectors.length; i += 4) { String plain = test_vectors[i][0]; String salt = BCrypt.gensalt(); String hashed1 = BCrypt.hashpw(plain, salt); String hashed2 = BCrypt.hashpw(plain, hashed1); assertEquals(hashed1, hashed2); System.out.print("."); } System.out.println(); } /** * Test method for 'BCrypt.checkpw(String, String)' * expecting success */ public void testCheckpw_success() { System.out.print("BCrypt.checkpw w/ good passwords: "); for (String[] test_vector : test_vectors) { String plain = test_vector[0]; String expected = test_vector[2]; assertTrue(BCrypt.checkpw(plain, expected)); System.out.print("."); } System.out.println(); } /** * Test method for 'BCrypt.checkpw(String, String)' * expecting failure */ public void testCheckpw_failure() { System.out.print("BCrypt.checkpw w/ bad passwords: "); for (int i = 0; i < test_vectors.length; i++) { int broken_index = (i + 4) % test_vectors.length; String plain = test_vectors[i][0]; String expected = test_vectors[broken_index][2]; assertFalse(BCrypt.checkpw(plain, expected)); System.out.print("."); } System.out.println(); } /** * Test for correct hashing of non-US-ASCII passwords */ public void testInternationalChars() { System.out.print("BCrypt.hashpw w/ international chars: "); String pw1 = "\u2605\u2605\u2605\u2605\u2605\u2605\u2605\u2605"; String pw2 = "????????"; String h1 = BCrypt.hashpw(pw1, BCrypt.gensalt()); assertFalse(BCrypt.checkpw(pw2, h1)); System.out.print("."); String h2 = BCrypt.hashpw(pw2, BCrypt.gensalt()); assertFalse(BCrypt.checkpw(pw1, h2)); System.out.print("."); System.out.println(); } }
[ "alvaro3639@gmail.com" ]
alvaro3639@gmail.com
9e27a590ba444a4b124dfbd3a0872b81e60fe99e
8bdd4795dd0e54d5db2163dc2a7f967331de128e
/src/main/java/personal/service/PersonService.java
0406a4e86832ec1695f5f3f7f63508105858bf68
[]
no_license
yefengmengluo/mybatis
465656ea2ed2cd8599c103fd76a48681aacbdecd
f13b1375be66f225df1a8ac01399cd330be90482
refs/heads/master
2021-01-10T01:14:32.630826
2016-02-16T10:10:20
2016-02-16T10:10:20
51,724,611
1
0
null
null
null
null
UTF-8
Java
false
false
215
java
package personal.service; import personal.entity.Person; import personal.util.Page; public interface PersonService { public Page<Person> getList(Page<Person> page); public Person getById(Integer id); }
[ "yefengmengluo@163.com" ]
yefengmengluo@163.com
65ba08c7acc7974c1e71de175819c48837d15068
fe798aaa3821361887df34952837b78113e60d96
/WITS_JSPWiki_src/org/wits/cloud/OvercastParser.java
67dfeb9b180fd33a27eecba2e872cab72e2a7b51
[]
no_license
fermatjen/wits-parser
e5a1a9e2ffd3dbd8d6df2279fbdd5e15f039ff6d
97036ac9bd6c07e60c1bc537cb7a9a0cc359189c
refs/heads/master
2020-12-30T10:36:43.167879
2009-04-15T17:02:47
2009-04-15T17:02:47
33,661,621
1
0
null
null
null
null
UTF-8
Java
false
false
13,350
java
/****************************************************************************** * * * WITS - Wiki to Structured Markup Converter. * * Copyright (C) 2009 by Frank Jennings (fermatjen@yahoo.com). * * Permission to use, copy, modify, and distribute this software and its * documentation under the terms of the GNU General Public License is hereby * granted. No representations are made about the suitability of this software * for any purpose. It is provided "as is" without express or implied warranty. * See the GNU General Public License for more details. * * Documents produced by WITS converter are derivative works derived from the * input used in their production; they are not affected by this license. * */ package org.wits.cloud; import java.util.HashMap; import org.wits.debugger.WITSDebugger; import org.wits.patterns.StringHandler; /** * * @author FJ */ public class OvercastParser { private String uncleanSGML = null; private HashMap <String, String> overcastMap = null; private int overcastID = 1; private WITSDebugger debugger = null; /** * * @param debugger */ public void setDebugger(WITSDebugger debugger) { this.debugger = debugger; } /** * */ public OvercastParser() { } private String cleanLBs(String content){ //System.out.println("To clean:"+ content); StringHandler handler = new StringHandler(); handler.setDebugger(debugger); content = handler.replace(content, "&lt;LB>\r\n&lt;LB>\r\n", "&lt;LB>\r\n", 0); //System.out.println("Clean:"+ content); return content; } /** * * @param uncleanSGML * @return */ public String getOvercastContent(String uncleanSGML) { int offset = 0; StringBuilder _handle = new StringBuilder(); while (true) { int l_loc = uncleanSGML.indexOf("<noparse>", offset); int r_loc = uncleanSGML.indexOf("</noparse>", l_loc); if (l_loc == -1 || r_loc == -1) { _handle.append(uncleanSGML.substring(offset, uncleanSGML.length())); break; } //System.out.println("NP:" + l_loc + ":" + r_loc); //System.out.println("CONTRO STRING:"+uncleanSGML.substring(l_loc, r_loc)); String noparseID = uncleanSGML.substring(l_loc + 9, r_loc); //System.out.println("NOPARSEID:" + noparseID); String overcastText = (String) overcastMap.get(noparseID); //System.out.println("NOPARSETEXT:" + overcastText); if (overcastText.endsWith("<LB>")) { overcastText = overcastText.substring(0, overcastText.length() - 4); } //auto detect literal and screen. There could be single line snippet //if (overcastText.indexOf("<LB>") == -1) { //maybe literal // _handle.append(uncleanSGML.substring(offset, l_loc)); // _handle.append("<literal>"); // _handle.append(overcastText); // _handle.append("</literal>"); // } else { _handle.append(uncleanSGML.substring(offset, l_loc)); //We need to clean the overcast text to remove < StringHandler handler = new StringHandler(); handler.setDebugger(debugger); debugger.showDebugMessage("PostProcessor", uncleanSGML.length(), "Removing Special Chars in Code."); overcastText = handler.replace(overcastText, "<", "&lt;", 0); _handle.append("<screen>"); overcastText = cleanLBs(overcastText); _handle.append(overcastText); _handle.append("</screen>"); //} offset = r_loc + 10; } uncleanSGML = _handle.toString(); offset = 0; _handle = new StringBuilder(); while (true) { int l_loc = uncleanSGML.indexOf("<noparsi>", offset); int r_loc = uncleanSGML.indexOf("</noparsi>", l_loc); if (l_loc == -1 || r_loc == -1) { _handle.append(uncleanSGML.substring(offset, uncleanSGML.length())); break; } //System.out.println("NP:" + l_loc + ":" + r_loc); //System.out.println("CONTRO STRING:"+uncleanSGML.substring(l_loc, r_loc)); String noparseID = uncleanSGML.substring(l_loc + 9, r_loc); //System.out.println("NOPARSEID:" + noparseID); String overcastText = (String) overcastMap.get(noparseID); //System.out.println("NOPARSETEXT:" + overcastText); if (overcastText.endsWith("<LB>")) { overcastText = overcastText.substring(0, overcastText.length() - 4); } _handle.append(uncleanSGML.substring(offset, l_loc)); //We need to clean the overcast text to remove < StringHandler handler = new StringHandler(); handler.setDebugger(debugger); debugger.showDebugMessage("PostProcessor", uncleanSGML.length(), "Removing Special Chars in Code."); overcastText = handler.replace(overcastText, "<", "&lt;", 0); //if (overcastText.indexOf("&lt;LB>\r\n") != -1) { //maybe screen? //_handle.append("<screen>"); //overcastText = cleanLBs(overcastText); //_handle.append(overcastText); //_handle.append("</screen>"); //} else { _handle.append("<literal>"); overcastText = cleanLBs(overcastText); _handle.append(overcastText); _handle.append("</literal>"); //} offset = r_loc + 10; } uncleanSGML = _handle.toString(); uncleanSGML = getNoParseTextForLink(uncleanSGML); return uncleanSGML; } /** * * @return */ public HashMap getOvercastMap() { return overcastMap; } /** * * @param overCastMap */ public void setOvercastMap(HashMap <String, String> overCastMap) { this.overcastMap = overCastMap; } /** * * @param uncleanSGML */ public OvercastParser(String uncleanSGML) { this.uncleanSGML = uncleanSGML; } /** * * @return */ public String getProcessedText() { debugger.addLineBreak(); debugger.showDebugMessage("OvercastIC", 0, "OvercastIC Invoked."); //Initialize overcast map overcastMap = new HashMap <String, String>(); StringBuilder _handle = new StringBuilder(); int offset = 0; while (true) { //check for code occurence int l_loc = uncleanSGML.indexOf("{{{", offset); int r_loc = uncleanSGML.indexOf("}}}", l_loc + 3); //System.out.println(l_loc + ":" + r_loc); if (l_loc == -1 || r_loc == -1) { _handle.append(uncleanSGML.substring(offset, uncleanSGML.length())); break; } //code present debugger.showDebugMessage("OvercastIC", l_loc, "Marking {CODE} text for 'NOPARSE."); //int l_loc_dup = uncleanSGML.indexOf("}", l_loc); String overcastText = uncleanSGML.substring(l_loc + 3, r_loc); //System.out.println("Overcast:" + overcastText); String noparseID = "```" + overcastID + " "; overcastMap.put(noparseID, overcastText); //System.out.println("------------------```"+ overcastID+"-"+overcastText); //check if literal or plain code char _c1 = uncleanSGML.charAt(l_loc - 1); char _c2 = uncleanSGML.charAt(l_loc - 2); if (_c1 != '\n' && _c2 != '\r') { //literal text _handle.append(uncleanSGML.substring(offset, l_loc)); _handle.append("<noparse>```" + overcastID + " "); _handle.append("</noparse>"); overcastID++; } else { //could be a block? _handle.append(uncleanSGML.substring(offset, l_loc)); _handle.append("<noparse>```" + overcastID + " "); _handle.append("</noparse>"); overcastID++; } offset = r_loc + 3; } uncleanSGML = _handle.toString(); _handle = new StringBuilder(); offset = 0; /* while (true) { //check for code occurence int l_loc = uncleanSGML.indexOf("{noformat", offset + 1); int r_loc = uncleanSGML.indexOf("{noformat}", l_loc + 9); //System.out.println(l_loc + ":" + r_loc); if (l_loc == -1 || r_loc == -1) { _handle.append(uncleanSGML.substring(offset, uncleanSGML.length())); break; } //code present debugger.showDebugMessage("OvercastIC", l_loc, "Marking {NOFORMAT} text for 'NOPARSE."); int l_loc_dup = uncleanSGML.indexOf("}", l_loc); String overcastText = uncleanSGML.substring(l_loc_dup + 1, r_loc); //System.out.println("Overcast:" + overcastText); String noparseID = "```" + overcastID+" "; overcastMap.put(noparseID, overcastText); _handle.append(uncleanSGML.substring(offset, l_loc)); _handle.append("<noparse>```" + overcastID+" "); _handle.append("</noparse>"); overcastID++; offset = r_loc + 10; } uncleanSGML = _handle.toString(); */ _handle = new StringBuilder(); offset = 0; //handle literal here. Disable literal parser. while (true) { //check for code occurence int l_loc = uncleanSGML.indexOf("{{", offset + 1); int r_loc = uncleanSGML.indexOf("}}", l_loc + 1); //System.out.println(l_loc + ":" + r_loc); if (l_loc == -1 || r_loc == -1) { _handle.append(uncleanSGML.substring(offset, uncleanSGML.length())); break; } //code present debugger.showDebugMessage("OvercastIC", l_loc, "Marking {NOFORMAT} text for 'Literal Block."); // int l_loc_dup = uncleanSGML.indexOf("}<LB>", l_loc); String overcastText = uncleanSGML.substring(l_loc + 2, r_loc); //System.out.println("Overcast:" + overcastText); String noparseID = "```" + overcastID + " "; overcastMap.put(noparseID, overcastText); //System.out.println("------------------```"+ overcastID+"-"+overcastText); //check if literal or plain code char _c1 = uncleanSGML.charAt(l_loc - 1); char _c2 = uncleanSGML.charAt(l_loc - 2); if (_c1 != '\n' && _c2 != '\r') { //literal text _handle.append(uncleanSGML.substring(offset, l_loc)); _handle.append("<noparsi>```" + overcastID + " "); _handle.append("</noparsi>"); overcastID++; } else { //could be a block? _handle.append(uncleanSGML.substring(offset, l_loc)); _handle.append("<noparsi>```" + overcastID + " "); _handle.append("</noparsi>"); overcastID++; } offset = r_loc + 2; } uncleanSGML = _handle.toString(); return uncleanSGML; } private String getNoParseTextForLink(String textBlock) { int offset = 0; StringBuilder _handle = new StringBuilder(); while (true) { int l_loc = textBlock.indexOf("```", offset); int r_loc = textBlock.indexOf(" ", l_loc); int r_loc_dup = textBlock.indexOf("</", l_loc); //whichever is earlier if (r_loc_dup != -1) { if (r_loc_dup < r_loc && r_loc_dup > l_loc) { r_loc = r_loc_dup; } } if (l_loc == -1 || r_loc == -1) { _handle.append(textBlock.substring(offset, textBlock.length())); break; } String noParseID = textBlock.substring(l_loc, r_loc + 1); //System.out.println("NOPARSETEXT--:" + noParseID); String overcastText = (String) overcastMap.get(noParseID); if (overcastText != null) { if (overcastText.endsWith("<LB>")) { overcastText = overcastText.substring(0, overcastText.length() - 4); } } else{ overcastText =""; } _handle.append(textBlock.substring(offset, l_loc)); _handle.append(overcastText); offset = r_loc; } return _handle.toString(); } }
[ "frank.jennings@3bf8f6c8-daf2-11dd-a297-4fb579711a53" ]
frank.jennings@3bf8f6c8-daf2-11dd-a297-4fb579711a53
0cf92e268117b6de964e4c90729a0936522f6c21
97bdad1d3541c2c9b614fca2a15f080a86e9399c
/Yondr_Finance.Android/obj/Release/90/android/src/com/companyname/yondr_finance/R.java
73cc1328da9b50c9e0acef806ca18530aa37c18f
[]
no_license
divyaeficaz/DatePicker_scroll
7eb65199b6deb30ea0d4b66beb718d8161898df5
66f294b1070bda7bb04b8adf52cfe1c7a4eaeebe
refs/heads/main
2023-01-27T14:28:01.100172
2020-12-11T03:46:28
2020-12-11T03:46:28
312,294,599
1
1
null
2021-05-04T05:16:18
2020-11-12T14:04:24
C++
UTF-8
Java
false
false
876,990
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.companyname.yondr_finance; public final class R { public static final class anim { public static final int abc_fade_in=0x7f010000; public static final int abc_fade_out=0x7f010001; public static final int abc_grow_fade_in_from_bottom=0x7f010002; public static final int abc_popup_enter=0x7f010003; public static final int abc_popup_exit=0x7f010004; public static final int abc_shrink_fade_out_from_bottom=0x7f010005; public static final int abc_slide_in_bottom=0x7f010006; public static final int abc_slide_in_top=0x7f010007; public static final int abc_slide_out_bottom=0x7f010008; public static final int abc_slide_out_top=0x7f010009; public static final int abc_tooltip_enter=0x7f01000a; public static final int abc_tooltip_exit=0x7f01000b; public static final int btn_checkbox_indeterminate_to_checked_box_inner_merged_animation=0x7f01000c; public static final int btn_checkbox_indeterminate_to_checked_box_outer_merged_animation=0x7f01000d; public static final int btn_checkbox_indeterminate_to_checked_icon_null_animation=0x7f01000e; public static final int btn_checkbox_to_checked_box_inner_merged_animation=0x7f01000f; public static final int btn_checkbox_to_checked_box_outer_merged_animation=0x7f010010; public static final int btn_checkbox_to_checked_icon_null_animation=0x7f010011; public static final int btn_checkbox_to_indeterminate_from_checked_box_inner_merged_animation=0x7f010012; public static final int btn_checkbox_to_indeterminate_from_checked_icon_null_animation=0x7f010013; public static final int btn_checkbox_to_indeterminate_from_unchecked_box_inner_merged_animation=0x7f010014; public static final int btn_checkbox_to_indeterminate_from_unchecked_box_outer_merged_animation=0x7f010015; public static final int btn_checkbox_to_indeterminate_from_unchecked_icon_null_animation=0x7f010016; public static final int btn_checkbox_to_unchecked_box_inner_merged_animation=0x7f010017; public static final int btn_checkbox_to_unchecked_check_path_merged_animation=0x7f010018; public static final int btn_checkbox_to_unchecked_from_indeterminate_box_inner_merged_animation=0x7f010019; public static final int btn_checkbox_to_unchecked_from_indeterminate_check_path_merged_animation=0x7f01001a; public static final int btn_checkbox_to_unchecked_from_indeterminate_icon_null_animation=0x7f01001b; public static final int btn_checkbox_to_unchecked_icon_null_animation=0x7f01001c; public static final int design_bottom_sheet_slide_in=0x7f01001d; public static final int design_bottom_sheet_slide_out=0x7f01001e; public static final int design_snackbar_in=0x7f01001f; public static final int design_snackbar_out=0x7f010020; public static final int enterfromleft=0x7f010021; public static final int enterfromright=0x7f010022; public static final int exittoleft=0x7f010023; public static final int exittoright=0x7f010024; } public static final class animator { public static final int design_appbar_state_list_animator=0x7f020000; public static final int design_fab_hide_motion_spec=0x7f020001; public static final int design_fab_show_motion_spec=0x7f020002; public static final int mtrl_btn_state_list_anim=0x7f020003; public static final int mtrl_btn_unelevated_state_list_anim=0x7f020004; public static final int mtrl_chip_state_list_anim=0x7f020005; public static final int mtrl_fab_hide_motion_spec=0x7f020006; public static final int mtrl_fab_show_motion_spec=0x7f020007; public static final int mtrl_fab_transformation_sheet_collapse_spec=0x7f020008; public static final int mtrl_fab_transformation_sheet_expand_spec=0x7f020009; } public static final class attr { /** * Custom divider drawable to use for elements in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarDivider=0x7f030000; /** * Custom item state list drawable background for action bar items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f030001; /** * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f030002; /** * Size of the Action Bar, including the contextual * bar used to present Action Modes. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap_content</td><td>0</td><td></td></tr> * </table> */ public static final int actionBarSize=0x7f030003; /** * Reference to a style for the split Action Bar. This style * controls the split component that holds the menu/action * buttons. actionBarStyle is still used for the primary * bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f030004; /** * Reference to a style for the Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarStyle=0x7f030005; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f030006; /** * Default style for tabs within an action bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f030007; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f030008; /** * Reference to a theme that should be used to inflate the * action bar. This will be inherited by any widget inflated * into the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTheme=0x7f030009; /** * Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar. Most of the time * this will be a reference to the current theme, but when * the action bar has a significantly different contrast * profile than the rest of the activity the difference * can become important. If this is set to @null the current * theme will be used. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f03000a; /** * Default action button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionButtonStyle=0x7f03000b; /** * Default ActionBar dropdown style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f03000c; /** * An optional layout to be used as an action view. * See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionLayout=0x7f03000d; /** * TextAppearance style that will be applied to text that * appears within action menu items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f03000e; /** * Color for text that appears within action menu items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int actionMenuTextColor=0x7f03000f; /** * Background drawable to use for action mode UI * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeBackground=0x7f030010; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f030011; /** * Drawable to use for the close action mode button * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f030012; /** * Drawable to use for the Copy action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f030013; /** * Drawable to use for the Cut action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f030014; /** * Drawable to use for the Find action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f030015; /** * Drawable to use for the Paste action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f030016; /** * PopupWindow style to use for action modes when showing as a window overlay. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f030017; /** * Drawable to use for the Select all action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f030018; /** * Drawable to use for the Share action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeShareDrawable=0x7f030019; /** * Background drawable to use for action mode UI in the lower split bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f03001a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeStyle=0x7f03001b; /** * Drawable to use for the Web Search action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f03001c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f03001d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f03001e; /** * The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item. * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} * for more info. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionProviderClass=0x7f03001f; /** * The name of an optional View class to instantiate and use as an * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionViewClass=0x7f030020; /** * Default ActivityChooserView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f030021; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f030022; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int alertDialogCenterButtons=0x7f030023; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogStyle=0x7f030024; /** * Theme to use for alert dialogs spawned from this theme. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogTheme=0x7f030025; /** * Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int allowStacking=0x7f030026; /** * Alpha multiplier applied to the base color. * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int alpha=0x7f030027; /** * The alphabetic modifier key. This is the modifier when using a keyboard * with alphabetic keys. The values should be kept in sync with KeyEvent * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int alphabeticModifiers=0x7f030028; /** * The length of the arrow head when formed to make an arrow * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int arrowHeadLength=0x7f030029; /** * The length of the shaft when formed to make an arrow * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int arrowShaftLength=0x7f03002a; /** * Default AutoCompleteTextView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f03002b; /** * The maximum text size constraint to be used when auto-sizing text. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeMaxTextSize=0x7f03002c; /** * The minimum text size constraint to be used when auto-sizing text. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeMinTextSize=0x7f03002d; /** * Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides * <code>autoSizeStepGranularity</code> if set. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoSizePresetSizes=0x7f03002e; /** * Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>. The default is 1px. Overwrites * <code>autoSizePresetSizes</code> if set. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeStepGranularity=0x7f03002f; /** * Specify the type of auto-size. Note that this feature is not supported by EditText, * works only for TextView. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td>No auto-sizing (default).</td></tr> * <tr><td>uniform</td><td>1</td><td>Uniform horizontal and vertical text size scaling to fit within the * container.</td></tr> * </table> */ public static final int autoSizeTextType=0x7f030030; /** * Specifies a background drawable for the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int background=0x7f030031; /** * Specifies a background drawable for the bottom component of a split action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f030032; /** * Specifies a background drawable for a second stacked row of the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f030033; /** * Tint to apply to the background. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundTint=0x7f030034; /** * Blending mode used to apply the background tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int backgroundTintMode=0x7f030035; /** * The length of the bars when they are parallel to each other * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int barLength=0x7f030036; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_autoHide=0x7f030037; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_fitToContents=0x7f030038; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_hideable=0x7f030039; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int behavior_overlapTop=0x7f03003a; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>ffffffff</td><td></td></tr> * </table> */ public static final int behavior_peekHeight=0x7f03003b; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int behavior_skipCollapsed=0x7f03003c; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int borderWidth=0x7f03003d; /** * Style for buttons without an explicit border, often used in groups. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f03003e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomAppBarStyle=0x7f03003f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomNavigationStyle=0x7f030040; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomSheetDialogTheme=0x7f030041; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int bottomSheetStyle=0x7f030042; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int boxBackgroundColor=0x7f030043; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>filled</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>outline</td><td>2</td><td></td></tr> * </table> */ public static final int boxBackgroundMode=0x7f030044; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxCollapsedPaddingTop=0x7f030045; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxCornerRadiusBottomEnd=0x7f030046; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxCornerRadiusBottomStart=0x7f030047; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxCornerRadiusTopEnd=0x7f030048; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxCornerRadiusTopStart=0x7f030049; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int boxStrokeColor=0x7f03004a; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int boxStrokeWidth=0x7f03004b; /** * Style for buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f03004c; /** * Style for the "negative" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f03004d; /** * Style for the "neutral" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f03004e; /** * Style for the "positive" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f03004f; /** * Style for button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarStyle=0x7f030050; /** * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> */ public static final int buttonGravity=0x7f030051; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int buttonIconDimen=0x7f030052; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f030053; /** * Normal Button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyle=0x7f030054; /** * Small Button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f030055; /** * Tint to apply to the button drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int buttonTint=0x7f030056; /** * Blending mode used to apply the button tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int buttonTintMode=0x7f030057; /** * Background color for CardView. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int cardBackgroundColor=0x7f030058; /** * Corner radius for CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int cardCornerRadius=0x7f030059; /** * Elevation for CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int cardElevation=0x7f03005a; /** * Maximum Elevation for CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int cardMaxElevation=0x7f03005b; /** * Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int cardPreventCornerOverlap=0x7f03005c; /** * Add padding in API v21+ as well to have the same measurements with previous versions. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int cardUseCompatPadding=0x7f03005d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int cardViewStyle=0x7f03005e; /** * Default Checkbox style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkboxStyle=0x7f03005f; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>checked</td><td>2</td><td></td></tr> * <tr><td>indeterminate</td><td>1</td><td></td></tr> * <tr><td>unchecked</td><td>0</td><td></td></tr> * </table> */ public static final int checked=0x7f030060; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedChip=0x7f030061; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedIcon=0x7f030062; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int checkedIconEnabled=0x7f030063; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int checkedIconVisible=0x7f030064; /** * Default CheckedTextView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f030065; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int chipBackgroundColor=0x7f030066; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipCornerRadius=0x7f030067; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipEndPadding=0x7f030068; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipGroupStyle=0x7f030069; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipIcon=0x7f03006a; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int chipIconEnabled=0x7f03006b; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipIconSize=0x7f03006c; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int chipIconTint=0x7f03006d; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int chipIconVisible=0x7f03006e; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipMinHeight=0x7f03006f; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipSpacing=0x7f030070; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipSpacingHorizontal=0x7f030071; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipSpacingVertical=0x7f030072; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipStandaloneStyle=0x7f030073; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipStartPadding=0x7f030074; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int chipStrokeColor=0x7f030075; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int chipStrokeWidth=0x7f030076; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int chipStyle=0x7f030077; /** * Close button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeIcon=0x7f030078; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int closeIconEnabled=0x7f030079; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int closeIconEndPadding=0x7f03007a; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int closeIconSize=0x7f03007b; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int closeIconStartPadding=0x7f03007c; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int closeIconTint=0x7f03007d; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int closeIconVisible=0x7f03007e; /** * Specifies a layout to use for the "close" item at the starting edge. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeItemLayout=0x7f03007f; /** * Text to set as the content description for the collapse button. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int collapseContentDescription=0x7f030080; /** * Icon drawable to use for the collapse button. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int collapseIcon=0x7f030081; /** * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int collapsedTitleGravity=0x7f030082; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int collapsedTitleTextAppearance=0x7f030083; /** * The drawing color for the bars * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int color=0x7f030084; /** * Bright complement to the primary branding color. By default, this is the color applied * to framework controls (via colorControlActivated). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorAccent=0x7f030085; /** * Default color of background imagery for floating components, ex. dialogs, popups, and cards. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorBackgroundFloating=0x7f030086; /** * The color applied to framework buttons in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorButtonNormal=0x7f030087; /** * The color applied to framework controls in their activated (ex. checked) state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlActivated=0x7f030088; /** * The color applied to framework control highlights (ex. ripples, list selectors). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlHighlight=0x7f030089; /** * The color applied to framework controls in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlNormal=0x7f03008a; /** * Color used for error states and things that need to be drawn to * the user's attention. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorError=0x7f03008b; /** * The primary branding color for the app. By default, this is the color applied to the * action bar background. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorPrimary=0x7f03008c; /** * Dark variant of the primary branding color. By default, this is the color applied to * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorPrimaryDark=0x7f03008d; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorSecondary=0x7f03008e; /** * The color applied to framework switch thumbs in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorSwitchThumbNormal=0x7f03008f; /** * Commit icon shown in the query suggestion row * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int commitIcon=0x7f030090; /** * The content description associated with the item. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int contentDescription=0x7f030091; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetEnd=0x7f030092; /** * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetEndWithActions=0x7f030093; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetLeft=0x7f030094; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetRight=0x7f030095; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetStart=0x7f030096; /** * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetStartWithNavigation=0x7f030097; /** * Inner padding between the edges of the Card and children of the CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentPadding=0x7f030098; /** * Inner padding between the bottom edge of the Card and children of the CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentPaddingBottom=0x7f030099; /** * Inner padding between the left edge of the Card and children of the CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentPaddingLeft=0x7f03009a; /** * Inner padding between the right edge of the Card and children of the CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentPaddingRight=0x7f03009b; /** * Inner padding between the top edge of the Card and children of the CardView. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentPaddingTop=0x7f03009c; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int contentScrim=0x7f03009d; /** * The background used by framework controls. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int controlBackground=0x7f03009e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int coordinatorLayoutStyle=0x7f03009f; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int cornerRadius=0x7f0300a0; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int cornerradius=0x7f0300a1; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int counterEnabled=0x7f0300a2; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int counterMaxLength=0x7f0300a3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int counterOverflowTextAppearance=0x7f0300a4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int counterTextAppearance=0x7f0300a5; /** * Specifies a layout for custom navigation. Overrides navigationMode. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int customNavigationLayout=0x7f0300a6; /** * Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int defaultQueryHint=0x7f0300a7; /** * Preferred corner radius of dialogs. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dialogCornerRadius=0x7f0300a8; /** * Preferred padding for dialog content. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dialogPreferredPadding=0x7f0300a9; /** * Theme to use for dialogs spawned from this theme. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dialogTheme=0x7f0300aa; /** * Options affecting how the action bar is displayed. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> */ public static final int displayOptions=0x7f0300ab; /** * Specifies the drawable used for item dividers. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int divider=0x7f0300ac; /** * A drawable that may be used as a horizontal divider between visual elements. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerHorizontal=0x7f0300ad; /** * Size of padding on either end of a divider. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dividerPadding=0x7f0300ae; /** * A drawable that may be used as a vertical divider between visual elements. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerVertical=0x7f0300af; /** * The total size of the drawable * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int drawableSize=0x7f0300b0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0300b1; /** * ListPopupWindow compatibility * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f0300b2; /** * The preferred item height for dropdown lists. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dropdownListPreferredItemHeight=0x7f0300b3; /** * EditText background drawable. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextBackground=0x7f0300b4; /** * EditText text foreground color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int editTextColor=0x7f0300b5; /** * Default EditText style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextStyle=0x7f0300b6; /** * Elevation for the action bar itself * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int elevation=0x7f0300b7; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int enforceMaterialTheme=0x7f0300b8; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int enforceTextAppearance=0x7f0300b9; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int errorEnabled=0x7f0300ba; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int errorTextAppearance=0x7f0300bb; /** * The drawable to show in the button for expanding the activities overflow popup. * <strong>Note:</strong> Clients would like to set this drawable * as a clue about the action the chosen activity will perform. For * example, if share activity is to be chosen the drawable should * give a clue that sharing is to be performed. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f0300bc; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int expanded=0x7f0300bd; /** * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> */ public static final int expandedTitleGravity=0x7f0300be; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int expandedTitleMargin=0x7f0300bf; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int expandedTitleMarginBottom=0x7f0300c0; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int expandedTitleMarginEnd=0x7f0300c1; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int expandedTitleMarginStart=0x7f0300c2; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int expandedTitleMarginTop=0x7f0300c3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int expandedTitleTextAppearance=0x7f0300c4; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>center</td><td>0</td><td></td></tr> * <tr><td>end</td><td>1</td><td></td></tr> * </table> */ public static final int fabAlignmentMode=0x7f0300c5; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int fabCradleMargin=0x7f0300c6; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int fabCradleRoundedCornerRadius=0x7f0300c7; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int fabCradleVerticalOffset=0x7f0300c8; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int fabCustomSize=0x7f0300c9; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>mini</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> */ public static final int fabSize=0x7f0300ca; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int fastScrollEnabled=0x7f0300cb; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollHorizontalThumbDrawable=0x7f0300cc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollHorizontalTrackDrawable=0x7f0300cd; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollVerticalThumbDrawable=0x7f0300ce; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fastScrollVerticalTrackDrawable=0x7f0300cf; /** * Distance from the top of the TextView to the first text baseline. If set, this * overrides the value set for paddingTop. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int firstBaselineToTopHeight=0x7f0300d0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * <p>May be an integer value, such as "<code>100</code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int floatingActionButtonStyle=0x7f0300d1; /** * The reference to the font file to be used. This should be a file in the res/font folder * and should therefore have an R reference value. E.g. @font/myfont * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int font=0x7f0300d2; /** * The attribute for the font family. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontFamily=0x7f0300d3; /** * The authority of the Font Provider to be used for the request. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderAuthority=0x7f0300d4; /** * The sets of hashes for the certificates the provider should be signed with. This is * used to verify the identity of the provider, and is only required if the provider is not * part of the system image. This value may point to one list or a list of lists, where each * individual list represents one collection of signature hashes. Refer to your font provider's * documentation for these values. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fontProviderCerts=0x7f0300d5; /** * The strategy to be used when fetching font data from a font provider in XML layouts. * This attribute is ignored when the resource is loaded from code, as it is equivalent to the * choice of API between {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and * {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} * (async). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>async</td><td>1</td><td>The async font fetch works as follows. * First, check the local cache, then if the requeted font is not cached, trigger a * request the font and continue with layout inflation. Once the font fetch succeeds, the * target text view will be refreshed with the downloaded font data. The * fontProviderFetchTimeout will be ignored if async loading is specified.</td></tr> * <tr><td>blocking</td><td>0</td><td>The blocking font fetch works as follows. * First, check the local cache, then if the requested font is not cached, request the * font from the provider and wait until it is finished. You can change the length of * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the * default typeface will be used instead.</td></tr> * </table> */ public static final int fontProviderFetchStrategy=0x7f0300d6; /** * The length of the timeout during fetching. * <p>May be an integer value, such as "<code>100</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>forever</td><td>ffffffff</td><td>A special value for the timeout. In this case, the blocking font fetching will not * timeout and wait until a reply is received from the font provider.</td></tr> * </table> */ public static final int fontProviderFetchTimeout=0x7f0300d7; /** * The package for the Font Provider to be used for the request. This is used to verify * the identity of the provider. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderPackage=0x7f0300d8; /** * The query to be sent over to the provider. Refer to your font provider's documentation * on the format of this string. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderQuery=0x7f0300d9; /** * The style of the given font file. This will be used when the font is being loaded into * the font stack and will override any style information in the font's header tables. If * unspecified, the value in the font's header tables will be used. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> */ public static final int fontStyle=0x7f0300da; /** * The variation settings to be applied to the font. The string should be in the following * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be * used, or the font used does not support variation settings, this attribute needs not be * specified. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontVariationSettings=0x7f0300db; /** * The weight of the given font file. This will be used when the font is being loaded into * the font stack and will override any weight information in the font's header tables. Must * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value * in the font's header tables will be used. * <p>May be an integer value, such as "<code>100</code>". */ public static final int fontWeight=0x7f0300dc; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int foregroundInsidePadding=0x7f0300dd; /** * The max gap between the bars when they are parallel to each other * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int gapBetweenBars=0x7f0300de; /** * Go button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int goIcon=0x7f0300df; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int headerLayout=0x7f0300e0; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f0300e1; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int helperText=0x7f0300e2; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int helperTextEnabled=0x7f0300e3; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int helperTextTextAppearance=0x7f0300e4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int hideMotionSpec=0x7f0300e5; /** * Set true to hide the action bar on a vertical nested scroll of content. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hideOnContentScroll=0x7f0300e6; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hideOnScroll=0x7f0300e7; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hintAnimationEnabled=0x7f0300e8; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hintEnabled=0x7f0300e9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int hintTextAppearance=0x7f0300ea; /** * Specifies a drawable to use for the 'home as up' indicator. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f0300eb; /** * Specifies a layout to use for the "home" section of the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeLayout=0x7f0300ec; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int hoveredFocusedTranslationZ=0x7f0300ed; /** * Specifies the drawable used for the application icon. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int icon=0x7f0300ee; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int iconEndPadding=0x7f0300ef; /** * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>start</td><td>1</td><td></td></tr> * <tr><td>textStart</td><td>2</td><td></td></tr> * </table> */ public static final int iconGravity=0x7f0300f0; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int iconPadding=0x7f0300f1; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int iconSize=0x7f0300f2; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int iconStartPadding=0x7f0300f3; /** * Tint to apply to the icon. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int iconTint=0x7f0300f4; /** * Blending mode used to apply the icon tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the icon’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The icon’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int iconTintMode=0x7f0300f5; /** * The default state of the SearchView. If true, it will be iconified when not in * use and expanded when clicked. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int iconifiedByDefault=0x7f0300f6; /** * ImageButton background drawable. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int imageButtonStyle=0x7f0300f7; /** * Specifies a style resource to use for an indeterminate progress spinner. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f0300f8; /** * The maximal number of items initially shown in the activity list. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int initialActivityCount=0x7f0300f9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int insetForeground=0x7f0300fa; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int isLightTheme=0x7f0300fb; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int isthreestate=0x7f0300fc; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemBackground=0x7f0300fd; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemHorizontalPadding=0x7f0300fe; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int itemHorizontalTranslationEnabled=0x7f0300ff; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemIconPadding=0x7f030100; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemIconSize=0x7f030101; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int itemIconTint=0x7f030102; /** * Specifies padding that should be applied to the left and right sides of * system-provided items in the bar. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemPadding=0x7f030103; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemSpacing=0x7f030104; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemTextAppearance=0x7f030105; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemTextAppearanceActive=0x7f030106; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int itemTextAppearanceInactive=0x7f030107; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int itemTextColor=0x7f030108; /** * A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge. * Child views can refer to these keylines for alignment using * layout_keyline="index" where index is a 0-based index into * this array. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int keylines=0x7f030109; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>labeled</td><td>1</td><td></td></tr> * <tr><td>selected</td><td>0</td><td></td></tr> * <tr><td>unlabeled</td><td>2</td><td></td></tr> * </table> */ public static final int labelVisibilityMode=0x7f03010a; /** * Distance from the bottom of the TextView to the last text baseline. If set, this * overrides the value set for paddingBottom. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int lastBaselineToBottomHeight=0x7f03010b; /** * The layout to use for the search view. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout=0x7f03010c; /** * Class name of the Layout Manager to be used. * <p/> * The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager * and have either a default constructor or constructor with the signature * (android.content.Context, android.util.AttributeSet, int, int). * <p/> * If the name starts with a '.', application package is prefixed. * Else, if the name contains a '.', the classname is assumed to be a full class name. * Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layoutManager=0x7f03010d; /** * The id of an anchor view that this view should position relative to. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_anchor=0x7f03010e; /** * Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>center</td><td>11</td><td>Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.</td></tr> * <tr><td>center_horizontal</td><td>1</td><td>Place object in the horizontal center of its container, not changing its size.</td></tr> * <tr><td>center_vertical</td><td>10</td><td>Place object in the vertical center of its container, not changing its size.</td></tr> * <tr><td>clip_horizontal</td><td>8</td><td>Additional option that can be set to have the left and/or right edges of * the child clipped to its container's bounds. * The clip will be based on the horizontal gravity: a left gravity will clip the right * edge, a right gravity will clip the left edge, and neither will clip both edges.</td></tr> * <tr><td>clip_vertical</td><td>80</td><td>Additional option that can be set to have the top and/or bottom edges of * the child clipped to its container's bounds. * The clip will be based on the vertical gravity: a top gravity will clip the bottom * edge, a bottom gravity will clip the top edge, and neither will clip both edges.</td></tr> * <tr><td>end</td><td>800005</td><td>Push object to the end of its container, not changing its size.</td></tr> * <tr><td>fill</td><td>77</td><td>Grow the horizontal and vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_horizontal</td><td>7</td><td>Grow the horizontal size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_vertical</td><td>70</td><td>Grow the vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>left</td><td>3</td><td>Push object to the left of its container, not changing its size.</td></tr> * <tr><td>right</td><td>5</td><td>Push object to the right of its container, not changing its size.</td></tr> * <tr><td>start</td><td>800003</td><td>Push object to the beginning of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> */ public static final int layout_anchorGravity=0x7f03010f; /** * The class name of a Behavior class defining special runtime behavior * for this child view. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layout_behavior=0x7f030110; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>parallax</td><td>2</td><td></td></tr> * <tr><td>pin</td><td>1</td><td></td></tr> * </table> */ public static final int layout_collapseMode=0x7f030111; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_collapseParallaxMultiplier=0x7f030112; /** * Specifies how this view dodges the inset edges of the CoordinatorLayout. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>77</td><td>Dodge all the inset edges.</td></tr> * <tr><td>bottom</td><td>50</td><td>Dodge the bottom inset edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Dodge the end inset edge.</td></tr> * <tr><td>left</td><td>3</td><td>Dodge the left inset edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't dodge any edges</td></tr> * <tr><td>right</td><td>5</td><td>Dodge the right inset edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Dodge the start inset edge.</td></tr> * <tr><td>top</td><td>30</td><td>Dodge the top inset edge.</td></tr> * </table> */ public static final int layout_dodgeInsetEdges=0x7f030113; /** * Specifies how this view insets the CoordinatorLayout and make some other views * dodge it. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Inset the bottom edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Inset the end edge.</td></tr> * <tr><td>left</td><td>3</td><td>Inset the left edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't inset.</td></tr> * <tr><td>right</td><td>5</td><td>Inset the right edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Inset the start edge.</td></tr> * <tr><td>top</td><td>30</td><td>Inset the top edge.</td></tr> * </table> */ public static final int layout_insetEdge=0x7f030114; /** * The index of a keyline this view should position relative to. * android:layout_gravity will affect how the view aligns to the * specified keyline. * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_keyline=0x7f030115; /** * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>enterAlways</td><td>4</td><td></td></tr> * <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr> * <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr> * <tr><td>scroll</td><td>1</td><td></td></tr> * <tr><td>snap</td><td>10</td><td></td></tr> * <tr><td>snapMargins</td><td>20</td><td></td></tr> * </table> */ public static final int layout_scrollFlags=0x7f030116; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_scrollInterpolator=0x7f030117; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int liftOnScroll=0x7f030118; /** * Explicit height between lines of text. If set, this will override the values set * for lineSpacingExtra and lineSpacingMultiplier. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int lineHeight=0x7f030119; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int lineSpacing=0x7f03011a; /** * Drawable used as a background for selected list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f03011b; /** * The list divider used in alert dialogs. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f03011c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listItemLayout=0x7f03011d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f03011e; /** * Default menu-style ListView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f03011f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f030120; /** * The preferred list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeight=0x7f030121; /** * A larger, more robust list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeightLarge=0x7f030122; /** * A smaller, sleeker list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeightSmall=0x7f030123; /** * The preferred padding along the left edge of list items. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemPaddingLeft=0x7f030124; /** * The preferred padding along the right edge of list items. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemPaddingRight=0x7f030125; /** * Specifies the drawable used for the application logo. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int logo=0x7f030126; /** * A content description string to describe the appearance of the * associated logo image. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int logoDescription=0x7f030127; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int materialButtonStyle=0x7f030128; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int materialCardViewStyle=0x7f030129; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int maxActionInlineWidth=0x7f03012a; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.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=0x7f03012b; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int maxImageSize=0x7f03012c; /** * When set to true, all children with a weight will be considered having * the minimum size of the largest child. If false, all children are * measured normally. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int measureWithLargestChild=0x7f03012d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int menu=0x7f03012e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f03012f; /** * Text to set as the content description for the navigation button * located at the start of the toolbar. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int navigationContentDescription=0x7f030130; /** * Icon drawable to use for the navigation button located at * the start of the toolbar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int navigationIcon=0x7f030131; /** * The type of navigation to use. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>listMode</td><td>1</td><td>The action bar will use a selection list for navigation.</td></tr> * <tr><td>normal</td><td>0</td><td>Normal static title text</td></tr> * <tr><td>tabMode</td><td>2</td><td>The action bar will use a series of horizontal tabs for navigation.</td></tr> * </table> */ public static final int navigationMode=0x7f030132; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int navigationViewStyle=0x7f030133; /** * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) * keyboard. The values should be kept in sync with KeyEvent * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int numericModifiers=0x7f030134; /** * Whether the popup window should overlap its anchor view. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int overlapAnchor=0x7f030135; /** * Bottom padding to use when no buttons are present. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingBottomNoButtons=0x7f030136; /** * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingEnd=0x7f030137; /** * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingStart=0x7f030138; /** * Top padding to use when no title is present. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingTopNoTitle=0x7f030139; /** * The background of a panel when it is inset from the left and right edges of the screen. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelBackground=0x7f03013a; /** * Default Panel Menu style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f03013b; /** * Default Panel Menu width. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int panelMenuListWidth=0x7f03013c; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int passwordToggleContentDescription=0x7f03013d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int passwordToggleDrawable=0x7f03013e; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int passwordToggleEnabled=0x7f03013f; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int passwordToggleTint=0x7f030140; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int passwordToggleTintMode=0x7f030141; /** * Default PopupMenu style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupMenuStyle=0x7f030142; /** * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupTheme=0x7f030143; /** * Default PopupWindow style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupWindowStyle=0x7f030144; /** * Whether space should be reserved in layout when an icon is missing. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int preserveIconSpacing=0x7f030145; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int pressedTranslationZ=0x7f030146; /** * Specifies the horizontal padding on either end for an embedded progress bar. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int progressBarPadding=0x7f030147; /** * Specifies a style resource to use for an embedded progress bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int progressBarStyle=0x7f030148; /** * Background for the section containing the search query * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int queryBackground=0x7f030149; /** * An optional user-defined query hint string to be displayed in the empty query field. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int queryHint=0x7f03014a; /** * Default RadioButton style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int radioButtonStyle=0x7f03014b; /** * Default RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyle=0x7f03014c; /** * Indicator RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f03014d; /** * Small indicator RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f03014e; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int reverseLayout=0x7f03014f; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int rippleColor=0x7f030150; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int scrimAnimationDuration=0x7f030151; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int scrimBackground=0x7f030152; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int scrimVisibleHeightTrigger=0x7f030153; /** * Search icon displayed as a text field hint * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchHintIcon=0x7f030154; /** * Search icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchIcon=0x7f030155; /** * Style for the search query widget. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchViewStyle=0x7f030156; /** * Default SeekBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int seekBarStyle=0x7f030157; /** * The backcolor of SfSegmentCondrol * <p>May be a color value, in 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 segmentBackColor=0x7f030158; /** * The border color of SfSegmentCondrol * <p>May be a color value, in 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 segmentBorderColor=0x7f030159; /** * The border thickness of SfSegmentCondrol * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int segmentBorderThickness=0x7f03015a; /** * The color of SfSegmentCondrol * <p>May be a color value, in 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 segmentColor=0x7f03015b; /** * The corner radius of SfSegmentCondrol * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int segmentCornerRadius=0x7f03015c; /** * The displaymode of SfSegmentCondrol * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>image</td><td>0</td><td></td></tr> * <tr><td>imagewithtext</td><td>2</td><td></td></tr> * <tr><td>text</td><td>1</td><td></td></tr> * </table> */ public static final int segmentDisplayMode=0x7f03015d; /** * The position of SfSegmentCondrol * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>border</td><td>3</td><td></td></tr> * <tr><td>bottom</td><td>1</td><td></td></tr> * <tr><td>fill</td><td>2</td><td></td></tr> * <tr><td>top</td><td>0</td><td></td></tr> * </table> */ public static final int segmentPosition=0x7f03015e; /** * The selected index of SfSegmentCondrol * <p>May be an integer value, such as "<code>100</code>". */ public static final int segmentSelectedIndex=0x7f03015f; /** * The stroke thickness of SfSegmentCondrol * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int segmentStrokeThickness=0x7f030160; /** * The segment height of SfSegmentCondrol * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int segmentedHeight=0x7f030161; /** * The segment padding of SfSegmentCondrol * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int segmentedPadding=0x7f030162; /** * The segment width of SfSegmentCondrol * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int segmentedWidth=0x7f030163; /** * A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackground=0x7f030164; /** * Background drawable for borderless standalone items that need focus/pressed states. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f030165; /** * How this item should display in the Action Bar, if present. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>always</td><td>2</td><td>Always show this item in an actionbar, even if it would override * the system's limits of how much stuff to put there. This may make * your action bar look bad on some screens. In most cases you should * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".</td></tr> * <tr><td>collapseActionView</td><td>8</td><td>This item's action view collapses to a normal menu * item. When expanded, the action view takes over a * larger segment of its container.</td></tr> * <tr><td>ifRoom</td><td>1</td><td>Show this item in an action bar if there is room for it as determined * by the system. Favor this option over "always" where possible. * Mutually exclusive with "never" and "always".</td></tr> * <tr><td>never</td><td>0</td><td>Never show this item in an action bar, show it in the overflow menu instead. * Mutually exclusive with "ifRoom" and "always".</td></tr> * <tr><td>withText</td><td>4</td><td>When this item is shown as an action in the action bar, show a text * label with it even if it has an icon representation.</td></tr> * </table> */ public static final int showAsAction=0x7f030166; /** * Setting for which dividers to show. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> */ public static final int showDividers=0x7f030167; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int showMotionSpec=0x7f030168; /** * Whether to draw on/off text. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showText=0x7f030169; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showTitle=0x7f03016a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f03016b; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int singleLine=0x7f03016c; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int singleSelection=0x7f03016d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int snackbarButtonStyle=0x7f03016e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int snackbarStyle=0x7f03016f; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int spanCount=0x7f030170; /** * Whether bars should rotate or not during transition * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int spinBars=0x7f030171; /** * Default Spinner style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f030172; /** * Default Spinner style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerStyle=0x7f030173; /** * Whether to split the track and leave a gap for the thumb drawable. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int splitTrack=0x7f030174; /** * Sets a drawable as the content of this ImageView. Allows the use of vector drawable * when running on older versions of the platform. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int srcCompat=0x7f030175; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int stackFromEnd=0x7f030176; /** * State identifier indicating the popup will be above the anchor. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_above_anchor=0x7f030177; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_collapsed=0x7f030178; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_collapsible=0x7f030179; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_indeterminate=0x7f03017a; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_liftable=0x7f03017b; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_lifted=0x7f03017c; /** * Drawable to display behind the status bar when the view is set to draw behind it. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int statusBarBackground=0x7f03017d; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int statusBarScrim=0x7f03017e; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int strokeColor=0x7f03017f; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int strokeWidth=0x7f030180; /** * Drawable for the arrow icon indicating a particular item is a submenu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subMenuArrow=0x7f030181; /** * Background for the section containing the action (e.g. voice search) * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int submitBackground=0x7f030182; /** * Specifies subtitle text used for navigationMode="normal" * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int subtitle=0x7f030183; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f030184; /** * A color to apply to the subtitle string. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int subtitleTextColor=0x7f030185; /** * Specifies a style to use for subtitle text. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f030186; /** * Layout for query suggestion rows * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f030187; /** * Minimum width for the switch component * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int switchMinWidth=0x7f030188; /** * Minimum space between the switch and caption text * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int switchPadding=0x7f030189; /** * Default style for the Switch widget. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchStyle=0x7f03018a; /** * TextAppearance style for text displayed on the switch thumb. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchTextAppearance=0x7f03018b; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabBackground=0x7f03018c; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabContentStart=0x7f03018d; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>center</td><td>1</td><td></td></tr> * <tr><td>fill</td><td>0</td><td></td></tr> * </table> */ public static final int tabGravity=0x7f03018e; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tabIconTint=0x7f03018f; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> */ public static final int tabIconTintMode=0x7f030190; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabIndicator=0x7f030191; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int tabIndicatorAnimationDuration=0x7f030192; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tabIndicatorColor=0x7f030193; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int tabIndicatorFullWidth=0x7f030194; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>0</td><td></td></tr> * <tr><td>center</td><td>1</td><td></td></tr> * <tr><td>stretch</td><td>3</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> */ public static final int tabIndicatorGravity=0x7f030195; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabIndicatorHeight=0x7f030196; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int tabInlineLabel=0x7f030197; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabMaxWidth=0x7f030198; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabMinWidth=0x7f030199; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fixed</td><td>1</td><td></td></tr> * <tr><td>scrollable</td><td>0</td><td></td></tr> * </table> */ public static final int tabMode=0x7f03019a; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabPadding=0x7f03019b; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabPaddingBottom=0x7f03019c; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabPaddingEnd=0x7f03019d; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabPaddingStart=0x7f03019e; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int tabPaddingTop=0x7f03019f; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tabRippleColor=0x7f0301a0; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tabSelectedTextColor=0x7f0301a1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabStyle=0x7f0301a2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tabTextAppearance=0x7f0301a3; /** * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tabTextColor=0x7f0301a4; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int tabUnboundedRipple=0x7f0301a5; /** * Present the text in ALL CAPS. This may use a small-caps form when available. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int textAllCaps=0x7f0301a6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceBody1=0x7f0301a7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceBody2=0x7f0301a8; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceButton=0x7f0301a9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceCaption=0x7f0301aa; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline1=0x7f0301ab; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline2=0x7f0301ac; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline3=0x7f0301ad; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline4=0x7f0301ae; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline5=0x7f0301af; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceHeadline6=0x7f0301b0; /** * Text color, typeface, size, and style for the text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f0301b1; /** * The preferred TextAppearance for the primary text of list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f0301b2; /** * The preferred TextAppearance for the secondary text of list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSecondary=0x7f0301b3; /** * The preferred TextAppearance for the primary text of small list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f0301b4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceOverline=0x7f0301b5; /** * Text color, typeface, size, and style for header text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=0x7f0301b6; /** * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f0301b7; /** * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f0301b8; /** * Text color, typeface, size, and style for small text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f0301b9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSubtitle1=0x7f0301ba; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSubtitle2=0x7f0301bb; /** * Color of list item text in alert dialogs. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int textColorAlertDialogListItem=0x7f0301bc; /** * Text color for urls in search suggestions, used by things like global search * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int textColorSearchUrl=0x7f0301bd; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int textEndPadding=0x7f0301be; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textInputStyle=0x7f0301bf; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int textStartPadding=0x7f0301c0; /** * Deprecated. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int theme=0x7f0301c1; /** * The thickness (stroke size) for the bar paint * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int thickness=0x7f0301c2; /** * Amount of padding on either side of text within the switch thumb. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int thumbTextPadding=0x7f0301c3; /** * Tint to apply to the thumb drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int thumbTint=0x7f0301c4; /** * Blending mode used to apply the thumb tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int thumbTintMode=0x7f0301c5; /** * Drawable displayed at each progress position on a seekbar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tickMark=0x7f0301c6; /** * Tint to apply to the tick mark drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tickMarkTint=0x7f0301c7; /** * Blending mode used to apply the tick mark tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int tickMarkTintMode=0x7f0301c8; /** * Tint to apply to the image source. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tint=0x7f0301c9; /** * Blending mode used to apply the image source tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int tintMode=0x7f0301ca; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int title=0x7f0301cb; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int titleEnabled=0x7f0301cc; /** * Specifies extra space on the left, start, right and end sides * of the toolbar's title. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMargin=0x7f0301cd; /** * Specifies extra space on the bottom side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginBottom=0x7f0301ce; /** * Specifies extra space on the end side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginEnd=0x7f0301cf; /** * Specifies extra space on the start side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginStart=0x7f0301d0; /** * Specifies extra space on the top side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginTop=0x7f0301d1; /** * {@deprecated Use titleMargin} * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ @Deprecated public static final int titleMargins=0x7f0301d2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</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=0x7f0301d3; /** * A color to apply to the title string. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int titleTextColor=0x7f0301d4; /** * Specifies a style to use for title text. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int titleTextStyle=0x7f0301d5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarId=0x7f0301d6; /** * Default Toolar NavigationButtonStyle * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f0301d7; /** * Default Toolbar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarStyle=0x7f0301d8; /** * Foreground color to use for tooltips * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tooltipForegroundColor=0x7f0301d9; /** * Background to use for tooltips * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tooltipFrameBackground=0x7f0301da; /** * The tooltip text associated with the item. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int tooltipText=0x7f0301db; /** * Drawable to use as the "track" that the switch thumb slides within. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int track=0x7f0301dc; /** * Tint to apply to the track. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int trackTint=0x7f0301dd; /** * Blending mode used to apply the track tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int trackTintMode=0x7f0301de; /** * The index of the font in the tcc font file. If the font file referenced is not in the * tcc format, this attribute needs not be specified. * <p>May be an integer value, such as "<code>100</code>". */ public static final int ttcIndex=0x7f0301df; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int useCompatPadding=0x7f0301e0; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int viewInflaterClass=0x7f0301e1; /** * Voice button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int voiceIcon=0x7f0301e2; /** * Flag indicating whether this window should have an Action Bar * in place of the usual title bar. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBar=0x7f0301e3; /** * Flag indicating whether this window's Action Bar should overlay * application content. Does nothing if the window would not * have an Action Bar. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBarOverlay=0x7f0301e4; /** * Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar). * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionModeOverlay=0x7f0301e5; /** * A fixed height for the window along the major axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedHeightMajor=0x7f0301e6; /** * A fixed height for the window along the minor axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedHeightMinor=0x7f0301e7; /** * A fixed width for the window along the major axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedWidthMajor=0x7f0301e8; /** * A fixed width for the window along the minor axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedWidthMinor=0x7f0301e9; /** * The minimum width the window is allowed to be, along the major * axis of the screen. That is, when in landscape. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowMinWidthMajor=0x7f0301ea; /** * The minimum width the window is allowed to be, along the minor * axis of the screen. That is, when in portrait. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowMinWidthMinor=0x7f0301eb; /** * Flag indicating whether there should be no title on this window. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowNoTitle=0x7f0301ec; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f040000; public static final int abc_allow_stacked_button_bar=0x7f040001; public static final int abc_config_actionMenuItemAllCaps=0x7f040002; public static final int mtrl_btn_textappearance_all_caps=0x7f040003; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f050000; public static final int abc_background_cache_hint_selector_material_light=0x7f050001; public static final int abc_btn_colored_borderless_text_material=0x7f050002; public static final int abc_btn_colored_text_material=0x7f050003; public static final int abc_color_highlight_material=0x7f050004; public static final int abc_hint_foreground_material_dark=0x7f050005; public static final int abc_hint_foreground_material_light=0x7f050006; public static final int abc_input_method_navigation_guard=0x7f050007; public static final int abc_primary_text_disable_only_material_dark=0x7f050008; public static final int abc_primary_text_disable_only_material_light=0x7f050009; public static final int abc_primary_text_material_dark=0x7f05000a; public static final int abc_primary_text_material_light=0x7f05000b; public static final int abc_search_url_text=0x7f05000c; public static final int abc_search_url_text_normal=0x7f05000d; public static final int abc_search_url_text_pressed=0x7f05000e; public static final int abc_search_url_text_selected=0x7f05000f; public static final int abc_secondary_text_material_dark=0x7f050010; public static final int abc_secondary_text_material_light=0x7f050011; public static final int abc_tint_btn_checkable=0x7f050012; public static final int abc_tint_default=0x7f050013; public static final int abc_tint_edittext=0x7f050014; public static final int abc_tint_seek_thumb=0x7f050015; public static final int abc_tint_spinner=0x7f050016; public static final int abc_tint_switch_track=0x7f050017; public static final int accent_material_dark=0x7f050018; public static final int accent_material_light=0x7f050019; public static final int background_floating_material_dark=0x7f05001a; public static final int background_floating_material_light=0x7f05001b; public static final int background_material_dark=0x7f05001c; public static final int background_material_light=0x7f05001d; public static final int bright_foreground_disabled_material_dark=0x7f05001e; public static final int bright_foreground_disabled_material_light=0x7f05001f; public static final int bright_foreground_inverse_material_dark=0x7f050020; public static final int bright_foreground_inverse_material_light=0x7f050021; public static final int bright_foreground_material_dark=0x7f050022; public static final int bright_foreground_material_light=0x7f050023; public static final int browser_actions_bg_grey=0x7f050024; public static final int browser_actions_divider_color=0x7f050025; public static final int browser_actions_text_color=0x7f050026; public static final int browser_actions_title_color=0x7f050027; public static final int button_material_dark=0x7f050028; public static final int button_material_light=0x7f050029; public static final int cardview_dark_background=0x7f05002a; public static final int cardview_light_background=0x7f05002b; public static final int cardview_shadow_end_color=0x7f05002c; public static final int cardview_shadow_start_color=0x7f05002d; public static final int colorAccent=0x7f05002e; public static final int colorPrimary=0x7f05002f; public static final int colorPrimaryDark=0x7f050030; public static final int control_checkable_material=0x7f050031; public static final int cursorcolor=0x7f050032; public static final int design_bottom_navigation_shadow_color=0x7f050033; public static final int design_default_color_primary=0x7f050034; public static final int design_default_color_primary_dark=0x7f050035; public static final int design_error=0x7f050036; public static final int design_fab_shadow_end_color=0x7f050037; public static final int design_fab_shadow_mid_color=0x7f050038; public static final int design_fab_shadow_start_color=0x7f050039; public static final int design_fab_stroke_end_inner_color=0x7f05003a; public static final int design_fab_stroke_end_outer_color=0x7f05003b; public static final int design_fab_stroke_top_inner_color=0x7f05003c; public static final int design_fab_stroke_top_outer_color=0x7f05003d; public static final int design_snackbar_background_color=0x7f05003e; public static final int design_tint_password_toggle=0x7f05003f; public static final int dim_foreground_disabled_material_dark=0x7f050040; public static final int dim_foreground_disabled_material_light=0x7f050041; public static final int dim_foreground_material_dark=0x7f050042; public static final int dim_foreground_material_light=0x7f050043; public static final int error_color_material_dark=0x7f050044; public static final int error_color_material_light=0x7f050045; public static final int foreground_material_dark=0x7f050046; public static final int foreground_material_light=0x7f050047; public static final int highlighted_text_material_dark=0x7f050048; public static final int highlighted_text_material_light=0x7f050049; public static final int launcher_background=0x7f05004a; public static final int material_blue_grey_800=0x7f05004b; public static final int material_blue_grey_900=0x7f05004c; public static final int material_blue_grey_950=0x7f05004d; public static final int material_deep_teal_200=0x7f05004e; public static final int material_deep_teal_500=0x7f05004f; public static final int material_grey_100=0x7f050050; public static final int material_grey_300=0x7f050051; public static final int material_grey_50=0x7f050052; public static final int material_grey_600=0x7f050053; public static final int material_grey_800=0x7f050054; public static final int material_grey_850=0x7f050055; public static final int material_grey_900=0x7f050056; public static final int mtrl_bottom_nav_colored_item_tint=0x7f050057; public static final int mtrl_bottom_nav_item_tint=0x7f050058; public static final int mtrl_btn_bg_color_disabled=0x7f050059; public static final int mtrl_btn_bg_color_selector=0x7f05005a; public static final int mtrl_btn_ripple_color=0x7f05005b; public static final int mtrl_btn_stroke_color_selector=0x7f05005c; public static final int mtrl_btn_text_btn_ripple_color=0x7f05005d; public static final int mtrl_btn_text_color_disabled=0x7f05005e; public static final int mtrl_btn_text_color_selector=0x7f05005f; public static final int mtrl_btn_transparent_bg_color=0x7f050060; public static final int mtrl_chip_background_color=0x7f050061; public static final int mtrl_chip_close_icon_tint=0x7f050062; public static final int mtrl_chip_ripple_color=0x7f050063; public static final int mtrl_chip_text_color=0x7f050064; public static final int mtrl_fab_ripple_color=0x7f050065; public static final int mtrl_scrim_color=0x7f050066; public static final int mtrl_tabs_colored_ripple_color=0x7f050067; public static final int mtrl_tabs_icon_color_selector=0x7f050068; public static final int mtrl_tabs_icon_color_selector_colored=0x7f050069; public static final int mtrl_tabs_legacy_text_color_selector=0x7f05006a; public static final int mtrl_tabs_ripple_color=0x7f05006b; public static final int mtrl_text_btn_text_color_selector=0x7f05006c; public static final int mtrl_textinput_default_box_stroke_color=0x7f05006d; public static final int mtrl_textinput_disabled_color=0x7f05006e; public static final int mtrl_textinput_filled_box_default_background_color=0x7f05006f; public static final int mtrl_textinput_hovered_box_stroke_color=0x7f050070; public static final int notification_action_color_filter=0x7f050071; public static final int notification_icon_bg_color=0x7f050072; public static final int notification_material_background_media_default_color=0x7f050073; public static final int primary_dark_material_dark=0x7f050074; public static final int primary_dark_material_light=0x7f050075; public static final int primary_material_dark=0x7f050076; public static final int primary_material_light=0x7f050077; public static final int primary_text_default_material_dark=0x7f050078; public static final int primary_text_default_material_light=0x7f050079; public static final int primary_text_disabled_material_dark=0x7f05007a; public static final int primary_text_disabled_material_light=0x7f05007b; public static final int ripple_material_dark=0x7f05007c; public static final int ripple_material_light=0x7f05007d; public static final int secondary_text_default_material_dark=0x7f05007e; public static final int secondary_text_default_material_light=0x7f05007f; public static final int secondary_text_disabled_material_dark=0x7f050080; public static final int secondary_text_disabled_material_light=0x7f050081; public static final int switch_thumb_disabled_material_dark=0x7f050082; public static final int switch_thumb_disabled_material_light=0x7f050083; public static final int switch_thumb_material_dark=0x7f050084; public static final int switch_thumb_material_light=0x7f050085; public static final int switch_thumb_normal_material_dark=0x7f050086; public static final int switch_thumb_normal_material_light=0x7f050087; public static final int tooltip_background_dark=0x7f050088; public static final int tooltip_background_light=0x7f050089; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f060000; public static final int abc_action_bar_content_inset_with_nav=0x7f060001; public static final int abc_action_bar_default_height_material=0x7f060002; public static final int abc_action_bar_default_padding_end_material=0x7f060003; public static final int abc_action_bar_default_padding_start_material=0x7f060004; public static final int abc_action_bar_elevation_material=0x7f060005; public static final int abc_action_bar_icon_vertical_padding_material=0x7f060006; public static final int abc_action_bar_overflow_padding_end_material=0x7f060007; public static final int abc_action_bar_overflow_padding_start_material=0x7f060008; public static final int abc_action_bar_stacked_max_height=0x7f060009; public static final int abc_action_bar_stacked_tab_max_width=0x7f06000a; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f06000b; public static final int abc_action_bar_subtitle_top_margin_material=0x7f06000c; public static final int abc_action_button_min_height_material=0x7f06000d; public static final int abc_action_button_min_width_material=0x7f06000e; public static final int abc_action_button_min_width_overflow_material=0x7f06000f; public static final int abc_alert_dialog_button_bar_height=0x7f060010; public static final int abc_alert_dialog_button_dimen=0x7f060011; public static final int abc_button_inset_horizontal_material=0x7f060012; public static final int abc_button_inset_vertical_material=0x7f060013; public static final int abc_button_padding_horizontal_material=0x7f060014; public static final int abc_button_padding_vertical_material=0x7f060015; public static final int abc_cascading_menus_min_smallest_width=0x7f060016; public static final int abc_config_prefDialogWidth=0x7f060017; public static final int abc_control_corner_material=0x7f060018; public static final int abc_control_inset_material=0x7f060019; public static final int abc_control_padding_material=0x7f06001a; public static final int abc_dialog_corner_radius_material=0x7f06001b; public static final int abc_dialog_fixed_height_major=0x7f06001c; public static final int abc_dialog_fixed_height_minor=0x7f06001d; public static final int abc_dialog_fixed_width_major=0x7f06001e; public static final int abc_dialog_fixed_width_minor=0x7f06001f; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f060020; public static final int abc_dialog_list_padding_top_no_title=0x7f060021; public static final int abc_dialog_min_width_major=0x7f060022; public static final int abc_dialog_min_width_minor=0x7f060023; public static final int abc_dialog_padding_material=0x7f060024; public static final int abc_dialog_padding_top_material=0x7f060025; public static final int abc_dialog_title_divider_material=0x7f060026; public static final int abc_disabled_alpha_material_dark=0x7f060027; public static final int abc_disabled_alpha_material_light=0x7f060028; public static final int abc_dropdownitem_icon_width=0x7f060029; public static final int abc_dropdownitem_text_padding_left=0x7f06002a; public static final int abc_dropdownitem_text_padding_right=0x7f06002b; public static final int abc_edit_text_inset_bottom_material=0x7f06002c; public static final int abc_edit_text_inset_horizontal_material=0x7f06002d; public static final int abc_edit_text_inset_top_material=0x7f06002e; public static final int abc_floating_window_z=0x7f06002f; public static final int abc_list_item_padding_horizontal_material=0x7f060030; public static final int abc_panel_menu_list_width=0x7f060031; public static final int abc_progress_bar_height_material=0x7f060032; public static final int abc_search_view_preferred_height=0x7f060033; public static final int abc_search_view_preferred_width=0x7f060034; public static final int abc_seekbar_track_background_height_material=0x7f060035; public static final int abc_seekbar_track_progress_height_material=0x7f060036; public static final int abc_select_dialog_padding_start_material=0x7f060037; public static final int abc_switch_padding=0x7f060038; public static final int abc_text_size_body_1_material=0x7f060039; public static final int abc_text_size_body_2_material=0x7f06003a; public static final int abc_text_size_button_material=0x7f06003b; public static final int abc_text_size_caption_material=0x7f06003c; public static final int abc_text_size_display_1_material=0x7f06003d; public static final int abc_text_size_display_2_material=0x7f06003e; public static final int abc_text_size_display_3_material=0x7f06003f; public static final int abc_text_size_display_4_material=0x7f060040; public static final int abc_text_size_headline_material=0x7f060041; public static final int abc_text_size_large_material=0x7f060042; public static final int abc_text_size_medium_material=0x7f060043; public static final int abc_text_size_menu_header_material=0x7f060044; public static final int abc_text_size_menu_material=0x7f060045; public static final int abc_text_size_small_material=0x7f060046; public static final int abc_text_size_subhead_material=0x7f060047; public static final int abc_text_size_subtitle_material_toolbar=0x7f060048; public static final int abc_text_size_title_material=0x7f060049; public static final int abc_text_size_title_material_toolbar=0x7f06004a; public static final int browser_actions_context_menu_max_width=0x7f06004b; public static final int browser_actions_context_menu_min_padding=0x7f06004c; public static final int cardview_compat_inset_shadow=0x7f06004d; public static final int cardview_default_elevation=0x7f06004e; public static final int cardview_default_radius=0x7f06004f; public static final int compat_button_inset_horizontal_material=0x7f060050; public static final int compat_button_inset_vertical_material=0x7f060051; public static final int compat_button_padding_horizontal_material=0x7f060052; public static final int compat_button_padding_vertical_material=0x7f060053; public static final int compat_control_corner_material=0x7f060054; public static final int compat_notification_large_icon_max_height=0x7f060055; public static final int compat_notification_large_icon_max_width=0x7f060056; public static final int design_appbar_elevation=0x7f060057; public static final int design_bottom_navigation_active_item_max_width=0x7f060058; public static final int design_bottom_navigation_active_item_min_width=0x7f060059; public static final int design_bottom_navigation_active_text_size=0x7f06005a; public static final int design_bottom_navigation_elevation=0x7f06005b; public static final int design_bottom_navigation_height=0x7f06005c; public static final int design_bottom_navigation_icon_size=0x7f06005d; public static final int design_bottom_navigation_item_max_width=0x7f06005e; public static final int design_bottom_navigation_item_min_width=0x7f06005f; public static final int design_bottom_navigation_margin=0x7f060060; public static final int design_bottom_navigation_shadow_height=0x7f060061; public static final int design_bottom_navigation_text_size=0x7f060062; public static final int design_bottom_sheet_modal_elevation=0x7f060063; public static final int design_bottom_sheet_peek_height_min=0x7f060064; public static final int design_fab_border_width=0x7f060065; public static final int design_fab_elevation=0x7f060066; public static final int design_fab_image_size=0x7f060067; public static final int design_fab_size_mini=0x7f060068; public static final int design_fab_size_normal=0x7f060069; public static final int design_fab_translation_z_hovered_focused=0x7f06006a; public static final int design_fab_translation_z_pressed=0x7f06006b; public static final int design_navigation_elevation=0x7f06006c; public static final int design_navigation_icon_padding=0x7f06006d; public static final int design_navigation_icon_size=0x7f06006e; public static final int design_navigation_item_horizontal_padding=0x7f06006f; public static final int design_navigation_item_icon_padding=0x7f060070; public static final int design_navigation_max_width=0x7f060071; public static final int design_navigation_padding_bottom=0x7f060072; public static final int design_navigation_separator_vertical_padding=0x7f060073; public static final int design_snackbar_action_inline_max_width=0x7f060074; public static final int design_snackbar_background_corner_radius=0x7f060075; public static final int design_snackbar_elevation=0x7f060076; public static final int design_snackbar_extra_spacing_horizontal=0x7f060077; public static final int design_snackbar_max_width=0x7f060078; public static final int design_snackbar_min_width=0x7f060079; public static final int design_snackbar_padding_horizontal=0x7f06007a; public static final int design_snackbar_padding_vertical=0x7f06007b; public static final int design_snackbar_padding_vertical_2lines=0x7f06007c; public static final int design_snackbar_text_size=0x7f06007d; public static final int design_tab_max_width=0x7f06007e; public static final int design_tab_scrollable_min_width=0x7f06007f; public static final int design_tab_text_size=0x7f060080; public static final int design_tab_text_size_2line=0x7f060081; public static final int design_textinput_caption_translate_y=0x7f060082; public static final int disabledAlpha=0x7f060083; public static final int disabled_alpha_material_dark=0x7f060084; public static final int disabled_alpha_material_light=0x7f060085; public static final int fastscroll_default_thickness=0x7f060086; public static final int fastscroll_margin=0x7f060087; public static final int fastscroll_minimum_range=0x7f060088; public static final int highlight_alpha_material_colored=0x7f060089; public static final int highlight_alpha_material_dark=0x7f06008a; public static final int highlight_alpha_material_light=0x7f06008b; public static final int hint_alpha_material_dark=0x7f06008c; public static final int hint_alpha_material_light=0x7f06008d; public static final int hint_pressed_alpha_material_dark=0x7f06008e; public static final int hint_pressed_alpha_material_light=0x7f06008f; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f060090; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f060091; public static final int item_touch_helper_swipe_escape_velocity=0x7f060092; public static final int mtrl_bottomappbar_fabOffsetEndMode=0x7f060093; public static final int mtrl_bottomappbar_fab_cradle_margin=0x7f060094; public static final int mtrl_bottomappbar_fab_cradle_rounded_corner_radius=0x7f060095; public static final int mtrl_bottomappbar_fab_cradle_vertical_offset=0x7f060096; public static final int mtrl_bottomappbar_height=0x7f060097; public static final int mtrl_btn_corner_radius=0x7f060098; public static final int mtrl_btn_dialog_btn_min_width=0x7f060099; public static final int mtrl_btn_disabled_elevation=0x7f06009a; public static final int mtrl_btn_disabled_z=0x7f06009b; public static final int mtrl_btn_elevation=0x7f06009c; public static final int mtrl_btn_focused_z=0x7f06009d; public static final int mtrl_btn_hovered_z=0x7f06009e; public static final int mtrl_btn_icon_btn_padding_left=0x7f06009f; public static final int mtrl_btn_icon_padding=0x7f0600a0; public static final int mtrl_btn_inset=0x7f0600a1; public static final int mtrl_btn_letter_spacing=0x7f0600a2; public static final int mtrl_btn_padding_bottom=0x7f0600a3; public static final int mtrl_btn_padding_left=0x7f0600a4; public static final int mtrl_btn_padding_right=0x7f0600a5; public static final int mtrl_btn_padding_top=0x7f0600a6; public static final int mtrl_btn_pressed_z=0x7f0600a7; public static final int mtrl_btn_stroke_size=0x7f0600a8; public static final int mtrl_btn_text_btn_icon_padding=0x7f0600a9; public static final int mtrl_btn_text_btn_padding_left=0x7f0600aa; public static final int mtrl_btn_text_btn_padding_right=0x7f0600ab; public static final int mtrl_btn_text_size=0x7f0600ac; public static final int mtrl_btn_z=0x7f0600ad; public static final int mtrl_card_elevation=0x7f0600ae; public static final int mtrl_card_spacing=0x7f0600af; public static final int mtrl_chip_pressed_translation_z=0x7f0600b0; public static final int mtrl_chip_text_size=0x7f0600b1; public static final int mtrl_fab_elevation=0x7f0600b2; public static final int mtrl_fab_translation_z_hovered_focused=0x7f0600b3; public static final int mtrl_fab_translation_z_pressed=0x7f0600b4; public static final int mtrl_navigation_elevation=0x7f0600b5; public static final int mtrl_navigation_item_horizontal_padding=0x7f0600b6; public static final int mtrl_navigation_item_icon_padding=0x7f0600b7; public static final int mtrl_snackbar_background_corner_radius=0x7f0600b8; public static final int mtrl_snackbar_margin=0x7f0600b9; public static final int mtrl_textinput_box_bottom_offset=0x7f0600ba; public static final int mtrl_textinput_box_corner_radius_medium=0x7f0600bb; public static final int mtrl_textinput_box_corner_radius_small=0x7f0600bc; public static final int mtrl_textinput_box_label_cutout_padding=0x7f0600bd; public static final int mtrl_textinput_box_padding_end=0x7f0600be; public static final int mtrl_textinput_box_stroke_width_default=0x7f0600bf; public static final int mtrl_textinput_box_stroke_width_focused=0x7f0600c0; public static final int mtrl_textinput_outline_box_expanded_padding=0x7f0600c1; public static final int mtrl_toolbar_default_height=0x7f0600c2; public static final int notification_action_icon_size=0x7f0600c3; public static final int notification_action_text_size=0x7f0600c4; public static final int notification_big_circle_margin=0x7f0600c5; public static final int notification_content_margin_start=0x7f0600c6; public static final int notification_large_icon_height=0x7f0600c7; public static final int notification_large_icon_width=0x7f0600c8; public static final int notification_main_column_padding_top=0x7f0600c9; public static final int notification_media_narrow_margin=0x7f0600ca; public static final int notification_right_icon_size=0x7f0600cb; public static final int notification_right_side_padding_top=0x7f0600cc; public static final int notification_small_icon_background_padding=0x7f0600cd; public static final int notification_small_icon_size_as_large=0x7f0600ce; public static final int notification_subtext_size=0x7f0600cf; public static final int notification_top_pad=0x7f0600d0; public static final int notification_top_pad_large_text=0x7f0600d1; public static final int subtitle_corner_radius=0x7f0600d2; public static final int subtitle_outline_width=0x7f0600d3; public static final int subtitle_shadow_offset=0x7f0600d4; public static final int subtitle_shadow_radius=0x7f0600d5; public static final int tooltip_corner_radius=0x7f0600d6; public static final int tooltip_horizontal_padding=0x7f0600d7; public static final int tooltip_margin=0x7f0600d8; public static final int tooltip_precise_anchor_extra_offset=0x7f0600d9; public static final int tooltip_precise_anchor_threshold=0x7f0600da; public static final int tooltip_vertical_padding=0x7f0600db; public static final int tooltip_y_offset_non_touch=0x7f0600dc; public static final int tooltip_y_offset_touch=0x7f0600dd; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f070006; public static final int abc_action_bar_item_background_material=0x7f070007; public static final int abc_btn_borderless_material=0x7f070008; public static final int abc_btn_check_material=0x7f070009; public static final int abc_btn_check_to_on_mtrl_000=0x7f07000a; public static final int abc_btn_check_to_on_mtrl_015=0x7f07000b; public static final int abc_btn_colored_material=0x7f07000c; public static final int abc_btn_default_mtrl_shape=0x7f07000d; public static final int abc_btn_radio_material=0x7f07000e; public static final int abc_btn_radio_to_on_mtrl_000=0x7f07000f; public static final int abc_btn_radio_to_on_mtrl_015=0x7f070010; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f070011; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f070012; public static final int abc_cab_background_internal_bg=0x7f070013; public static final int abc_cab_background_top_material=0x7f070014; public static final int abc_cab_background_top_mtrl_alpha=0x7f070015; public static final int abc_control_background_material=0x7f070016; public static final int abc_dialog_material_background=0x7f070017; public static final int abc_edit_text_material=0x7f070018; public static final int abc_ic_ab_back_material=0x7f070019; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f07001a; public static final int abc_ic_clear_material=0x7f07001b; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f07001c; public static final int abc_ic_go_search_api_material=0x7f07001d; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f07001e; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f07001f; public static final int abc_ic_menu_overflow_material=0x7f070020; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f070021; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f070022; public static final int abc_ic_menu_share_mtrl_alpha=0x7f070023; public static final int abc_ic_search_api_material=0x7f070024; public static final int abc_ic_star_black_16dp=0x7f070025; public static final int abc_ic_star_black_36dp=0x7f070026; public static final int abc_ic_star_black_48dp=0x7f070027; public static final int abc_ic_star_half_black_16dp=0x7f070028; public static final int abc_ic_star_half_black_36dp=0x7f070029; public static final int abc_ic_star_half_black_48dp=0x7f07002a; public static final int abc_ic_voice_search_api_material=0x7f07002b; public static final int abc_item_background_holo_dark=0x7f07002c; public static final int abc_item_background_holo_light=0x7f07002d; public static final int abc_list_divider_material=0x7f07002e; public static final int abc_list_divider_mtrl_alpha=0x7f07002f; public static final int abc_list_focused_holo=0x7f070030; public static final int abc_list_longpressed_holo=0x7f070031; public static final int abc_list_pressed_holo_dark=0x7f070032; public static final int abc_list_pressed_holo_light=0x7f070033; public static final int abc_list_selector_background_transition_holo_dark=0x7f070034; public static final int abc_list_selector_background_transition_holo_light=0x7f070035; public static final int abc_list_selector_disabled_holo_dark=0x7f070036; public static final int abc_list_selector_disabled_holo_light=0x7f070037; public static final int abc_list_selector_holo_dark=0x7f070038; public static final int abc_list_selector_holo_light=0x7f070039; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f07003a; public static final int abc_popup_background_mtrl_mult=0x7f07003b; public static final int abc_ratingbar_indicator_material=0x7f07003c; public static final int abc_ratingbar_material=0x7f07003d; public static final int abc_ratingbar_small_material=0x7f07003e; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f07003f; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f070040; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f070041; public static final int abc_scrubber_primary_mtrl_alpha=0x7f070042; public static final int abc_scrubber_track_mtrl_alpha=0x7f070043; public static final int abc_seekbar_thumb_material=0x7f070044; public static final int abc_seekbar_tick_mark_material=0x7f070045; public static final int abc_seekbar_track_material=0x7f070046; public static final int abc_spinner_mtrl_am_alpha=0x7f070047; public static final int abc_spinner_textfield_background_material=0x7f070048; public static final int abc_switch_thumb_material=0x7f070049; public static final int abc_switch_track_mtrl_alpha=0x7f07004a; public static final int abc_tab_indicator_material=0x7f07004b; public static final int abc_tab_indicator_mtrl_alpha=0x7f07004c; public static final int abc_text_cursor_material=0x7f07004d; public static final int abc_text_select_handle_left_mtrl_dark=0x7f07004e; public static final int abc_text_select_handle_left_mtrl_light=0x7f07004f; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f070050; public static final int abc_text_select_handle_middle_mtrl_light=0x7f070051; public static final int abc_text_select_handle_right_mtrl_dark=0x7f070052; public static final int abc_text_select_handle_right_mtrl_light=0x7f070053; public static final int abc_textfield_activated_mtrl_alpha=0x7f070054; public static final int abc_textfield_default_mtrl_alpha=0x7f070055; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f070056; public static final int abc_textfield_search_default_mtrl_alpha=0x7f070057; public static final int abc_textfield_search_material=0x7f070058; public static final int abc_vector_test=0x7f070059; public static final int animation_logo=0x7f07005a; public static final int animation_logo_2=0x7f07005b; public static final int arrow_left=0x7f07005c; public static final int arrow_right=0x7f07005d; public static final int avatar1=0x7f07005e; public static final int avatar10=0x7f07005f; public static final int avatar11=0x7f070060; public static final int avatar12=0x7f070061; public static final int avatar13=0x7f070062; public static final int avatar14=0x7f070063; public static final int avatar15=0x7f070064; public static final int avatar16=0x7f070065; public static final int avatar17=0x7f070066; public static final int avatar18=0x7f070067; public static final int avatar19=0x7f070068; public static final int avatar2=0x7f070069; public static final int avatar20=0x7f07006a; public static final int avatar21=0x7f07006b; public static final int avatar22=0x7f07006c; public static final int avatar23=0x7f07006d; public static final int avatar24=0x7f07006e; public static final int avatar25=0x7f07006f; public static final int avatar26=0x7f070070; public static final int avatar27=0x7f070071; public static final int avatar28=0x7f070072; public static final int avatar29=0x7f070073; public static final int avatar3=0x7f070074; public static final int avatar30=0x7f070075; public static final int avatar4=0x7f070076; public static final int avatar5=0x7f070077; public static final int avatar6=0x7f070078; public static final int avatar7=0x7f070079; public static final int avatar8=0x7f07007a; public static final int avatar9=0x7f07007b; public static final int avd_hide_password=0x7f07007c; public static final int avd_show_password=0x7f07007d; public static final int btn_checkbox=0x7f07007e; public static final int btn_checkbox_checked=0x7f07007f; public static final int btn_checkbox_checked_to_indeterminate_animation=0x7f070080; public static final int btn_checkbox_checked_to_unchecked_animation=0x7f070081; public static final int btn_checkbox_indeterminate=0x7f070082; public static final int btn_checkbox_indeterminate_to_checked_animation=0x7f070083; public static final int btn_checkbox_indeterminate_to_unchecked_animation=0x7f070084; public static final int btn_checkbox_unchecked=0x7f070085; public static final int btn_checkbox_unchecked_to_checked_animation=0x7f070086; public static final int btn_checkbox_unchecked_to_indeterminate_animation=0x7f070087; public static final int clear_button_icon=0x7f070088; public static final int close=0x7f070089; public static final int design_bottom_navigation_item_background=0x7f07008a; public static final int design_fab_background=0x7f07008b; public static final int design_ic_visibility=0x7f07008c; public static final int design_ic_visibility_off=0x7f07008d; public static final int design_password_eye=0x7f07008e; public static final int design_snackbar_background=0x7f07008f; public static final int driving_licence=0x7f070090; public static final int ic_arrow_left=0x7f070091; public static final int ic_arrow_right=0x7f070092; public static final int ic_calendar=0x7f070093; public static final int ic_close_btn=0x7f070094; public static final int ic_congrats_icon=0x7f070095; public static final int ic_driving_licence=0x7f070096; public static final int ic_edit_button=0x7f070097; public static final int ic_error_message=0x7f070098; public static final int ic_launcher_background=0x7f070099; public static final int ic_loader=0x7f07009a; public static final int ic_logo_black=0x7f07009b; public static final int ic_logo_lavendr=0x7f07009c; public static final int ic_medi_card=0x7f07009d; public static final int ic_mismatch_icon=0x7f07009e; public static final int ic_mtrl_chip_checked_black=0x7f07009f; public static final int ic_mtrl_chip_checked_circle=0x7f0700a0; public static final int ic_mtrl_chip_close_circle=0x7f0700a1; public static final int ic_not_verify_icon=0x7f0700a2; public static final int ic_passport=0x7f0700a3; public static final int ic_submitting_document=0x7f0700a4; public static final int ic_tick_black=0x7f0700a5; public static final int ic_tick_secure=0x7f0700a6; public static final int ic_upload_icon=0x7f0700a7; public static final int ic_upload_plus=0x7f0700a8; public static final int input_layout_drop_down_icon=0x7f0700a9; public static final int inputlayout_togglecollapseicon=0x7f0700aa; public static final int inputlayout_togglevisibleicon=0x7f0700ab; public static final int loader1=0x7f0700ac; public static final int loader4=0x7f0700ad; public static final int loder2=0x7f0700ae; public static final int loder3=0x7f0700af; public static final int logo=0x7f0700b0; public static final int medi_card=0x7f0700b1; public static final int mtrl_snackbar_background=0x7f0700b2; public static final int mtrl_tabs_default_indicator=0x7f0700b3; public static final int my_cursor=0x7f0700b4; public static final int navigation_empty_icon=0x7f0700b5; public static final int notification_action_background=0x7f0700b6; public static final int notification_bg=0x7f0700b7; public static final int notification_bg_low=0x7f0700b8; public static final int notification_bg_low_normal=0x7f0700b9; public static final int notification_bg_low_pressed=0x7f0700ba; public static final int notification_bg_normal=0x7f0700bb; public static final int notification_bg_normal_pressed=0x7f0700bc; public static final int notification_icon_background=0x7f0700bd; public static final int notification_template_icon_bg=0x7f0700be; public static final int notification_template_icon_low_bg=0x7f0700bf; public static final int notification_tile_bg=0x7f0700c0; public static final int notify_panel_notification_icon_bg=0x7f0700c1; public static final int passport=0x7f0700c2; public static final int sfprogressbar_determinate_linear=0x7f0700c3; public static final int sfprogressbar_indeterminate_circular=0x7f0700c4; public static final int sfprogressbar_indeterminate_linear=0x7f0700c5; public static final int tick_gif=0x7f0700c6; public static final int tick_gif_2=0x7f0700c7; public static final int tooltip_frame_dark=0x7f0700c8; public static final int tooltip_frame_light=0x7f0700c9; public static final int yondr_logo=0x7f0700ca; public static final int yondr_logo_black=0x7f0700cb; } public static final class id { public static final int ALT=0x7f080000; public static final int CTRL=0x7f080001; public static final int FUNCTION=0x7f080002; public static final int META=0x7f080003; public static final int SHIFT=0x7f080004; public static final int SYM=0x7f080005; public static final int action0=0x7f080006; public static final int action_bar=0x7f080007; public static final int action_bar_activity_content=0x7f080008; public static final int action_bar_container=0x7f080009; public static final int action_bar_root=0x7f08000a; public static final int action_bar_spinner=0x7f08000b; public static final int action_bar_subtitle=0x7f08000c; public static final int action_bar_title=0x7f08000d; public static final int action_container=0x7f08000e; public static final int action_context_bar=0x7f08000f; public static final int action_divider=0x7f080010; public static final int action_image=0x7f080011; public static final int action_menu_divider=0x7f080012; public static final int action_menu_presenter=0x7f080013; public static final int action_mode_bar=0x7f080014; public static final int action_mode_bar_stub=0x7f080015; public static final int action_mode_close_button=0x7f080016; public static final int action_text=0x7f080017; public static final int actions=0x7f080018; public static final int activity_chooser_view_content=0x7f080019; public static final int add=0x7f08001a; public static final int alertTitle=0x7f08001b; public static final int all=0x7f08001c; public static final int always=0x7f08001d; public static final int async=0x7f08001e; public static final int auto=0x7f08001f; public static final int beginning=0x7f080020; public static final int blocking=0x7f080021; public static final int border=0x7f080022; public static final int bottom=0x7f080023; public static final int bottomtab_navarea=0x7f080024; public static final int bottomtab_tabbar=0x7f080025; public static final int browser_actions_header_text=0x7f080026; public static final int browser_actions_menu_item_icon=0x7f080027; public static final int browser_actions_menu_item_text=0x7f080028; public static final int browser_actions_menu_items=0x7f080029; public static final int browser_actions_menu_view=0x7f08002a; public static final int buttonPanel=0x7f08002b; public static final int cancel_action=0x7f08002c; public static final int center=0x7f08002d; public static final int center_horizontal=0x7f08002e; public static final int center_vertical=0x7f08002f; public static final int checkbox=0x7f080030; public static final int checked=0x7f080031; public static final int chronometer=0x7f080032; public static final int clip_horizontal=0x7f080033; public static final int clip_vertical=0x7f080034; public static final int collapseActionView=0x7f080035; public static final int container=0x7f080036; public static final int content=0x7f080037; public static final int contentPanel=0x7f080038; public static final int coordinator=0x7f080039; public static final int custom=0x7f08003a; public static final int customPanel=0x7f08003b; public static final int decor_content_parent=0x7f08003c; public static final int default_activity_button=0x7f08003d; public static final int design_bottom_sheet=0x7f08003e; public static final int design_menu_item_action_area=0x7f08003f; public static final int design_menu_item_action_area_stub=0x7f080040; public static final int design_menu_item_text=0x7f080041; public static final int design_navigation_view=0x7f080042; public static final int disableHome=0x7f080043; public static final int edit_query=0x7f080044; public static final int end=0x7f080045; public static final int end_padder=0x7f080046; public static final int enterAlways=0x7f080047; public static final int enterAlwaysCollapsed=0x7f080048; public static final int exitUntilCollapsed=0x7f080049; public static final int expand_activities_button=0x7f08004a; public static final int expanded_menu=0x7f08004b; public static final int fill=0x7f08004c; public static final int fill_horizontal=0x7f08004d; public static final int fill_vertical=0x7f08004e; public static final int filled=0x7f08004f; public static final int fixed=0x7f080050; public static final int flyoutcontent_appbar=0x7f080051; public static final int flyoutcontent_recycler=0x7f080052; public static final int forever=0x7f080053; public static final int ghost_view=0x7f080054; public static final int group_divider=0x7f080055; public static final int home=0x7f080056; public static final int homeAsUp=0x7f080057; public static final int icon=0x7f080058; public static final int icon_group=0x7f080059; public static final int ifRoom=0x7f08005a; public static final int image=0x7f08005b; public static final int imagewithtext=0x7f08005c; public static final int indeterminate=0x7f08005d; public static final int info=0x7f08005e; public static final int italic=0x7f08005f; public static final int item_touch_helper_previous_elevation=0x7f080060; public static final int labeled=0x7f080061; public static final int largeLabel=0x7f080062; public static final int left=0x7f080063; public static final int line1=0x7f080064; public static final int line3=0x7f080065; public static final int listMode=0x7f080066; public static final int list_item=0x7f080067; public static final int main_appbar=0x7f080068; public static final int main_tablayout=0x7f080069; public static final int main_toolbar=0x7f08006a; public static final int main_viewpager=0x7f08006b; public static final int masked=0x7f08006c; public static final int media_actions=0x7f08006d; public static final int message=0x7f08006e; public static final int middle=0x7f08006f; public static final int mini=0x7f080070; public static final int mtrl_child_content_container=0x7f080071; public static final int mtrl_internal_children_alpha_tag=0x7f080072; public static final int multiply=0x7f080073; public static final int navigation_header_container=0x7f080074; public static final int never=0x7f080075; public static final int none=0x7f080076; public static final int normal=0x7f080077; public static final int notification_background=0x7f080078; public static final int notification_main_column=0x7f080079; public static final int notification_main_column_container=0x7f08007a; public static final int outline=0x7f08007b; public static final int parallax=0x7f08007c; public static final int parentPanel=0x7f08007d; public static final int parent_matrix=0x7f08007e; public static final int pin=0x7f08007f; public static final int progress_circular=0x7f080080; public static final int progress_horizontal=0x7f080081; public static final int radio=0x7f080082; public static final int right=0x7f080083; public static final int right_icon=0x7f080084; public static final int right_side=0x7f080085; public static final int save_image_matrix=0x7f080086; public static final int save_non_transition_alpha=0x7f080087; public static final int save_scale_type=0x7f080088; public static final int screen=0x7f080089; public static final int scroll=0x7f08008a; public static final int scrollIndicatorDown=0x7f08008b; public static final int scrollIndicatorUp=0x7f08008c; public static final int scrollView=0x7f08008d; public static final int scrollable=0x7f08008e; public static final int search_badge=0x7f08008f; public static final int search_bar=0x7f080090; public static final int search_button=0x7f080091; public static final int search_close_btn=0x7f080092; public static final int search_edit_frame=0x7f080093; public static final int search_go_btn=0x7f080094; public static final int search_mag_icon=0x7f080095; public static final int search_plate=0x7f080096; public static final int search_src_text=0x7f080097; public static final int search_voice_btn=0x7f080098; public static final int select_dialog_listview=0x7f080099; public static final int selected=0x7f08009a; public static final int sfprogressbar_progress=0x7f08009b; public static final int sfprogressbar_secondary_progress=0x7f08009c; public static final int sfprogressbar_track=0x7f08009d; public static final int shellcontent_appbar=0x7f08009e; public static final int shellcontent_toolbar=0x7f08009f; public static final int shortcut=0x7f0800a0; public static final int showCustom=0x7f0800a1; public static final int showHome=0x7f0800a2; public static final int showTitle=0x7f0800a3; public static final int sliding_tabs=0x7f0800a4; public static final int smallLabel=0x7f0800a5; public static final int snackbar_action=0x7f0800a6; public static final int snackbar_text=0x7f0800a7; public static final int snap=0x7f0800a8; public static final int snapMargins=0x7f0800a9; public static final int spacer=0x7f0800aa; public static final int split_action_bar=0x7f0800ab; public static final int src_atop=0x7f0800ac; public static final int src_in=0x7f0800ad; public static final int src_over=0x7f0800ae; public static final int start=0x7f0800af; public static final int status_bar_latest_event_content=0x7f0800b0; public static final int stretch=0x7f0800b1; public static final int submenuarrow=0x7f0800b2; public static final int submit_area=0x7f0800b3; public static final int tabMode=0x7f0800b4; public static final int tag_transition_group=0x7f0800b5; public static final int tag_unhandled_key_event_manager=0x7f0800b6; public static final int tag_unhandled_key_listeners=0x7f0800b7; public static final int text=0x7f0800b8; public static final int text2=0x7f0800b9; public static final int textSpacerNoButtons=0x7f0800ba; public static final int textSpacerNoTitle=0x7f0800bb; public static final int textStart=0x7f0800bc; public static final int text_input_password_toggle=0x7f0800bd; public static final int textinput_counter=0x7f0800be; public static final int textinput_error=0x7f0800bf; public static final int textinput_helper_text=0x7f0800c0; public static final int time=0x7f0800c1; public static final int title=0x7f0800c2; public static final int titleDividerNoCustom=0x7f0800c3; public static final int title_template=0x7f0800c4; public static final int toolbar=0x7f0800c5; public static final int top=0x7f0800c6; public static final int topPanel=0x7f0800c7; public static final int touch_outside=0x7f0800c8; public static final int transition_current_scene=0x7f0800c9; public static final int transition_layout_save=0x7f0800ca; public static final int transition_position=0x7f0800cb; public static final int transition_scene_layoutid_cache=0x7f0800cc; public static final int transition_transform=0x7f0800cd; public static final int unchecked=0x7f0800ce; public static final int uniform=0x7f0800cf; public static final int unlabeled=0x7f0800d0; public static final int up=0x7f0800d1; public static final int useLogo=0x7f0800d2; public static final int view_offset_helper=0x7f0800d3; public static final int visible=0x7f0800d4; public static final int withText=0x7f0800d5; public static final int wrap_content=0x7f0800d6; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f090000; public static final int abc_config_activityShortDur=0x7f090001; public static final int app_bar_elevation_anim_duration=0x7f090002; public static final int bottom_sheet_slide_duration=0x7f090003; public static final int cancel_button_image_alpha=0x7f090004; public static final int config_tooltipAnimTime=0x7f090005; public static final int design_snackbar_text_max_lines=0x7f090006; public static final int design_tab_indicator_anim_duration_ms=0x7f090007; public static final int hide_password_duration=0x7f090008; public static final int mtrl_btn_anim_delay_ms=0x7f090009; public static final int mtrl_btn_anim_duration_ms=0x7f09000a; public static final int mtrl_chip_anim_duration=0x7f09000b; public static final int mtrl_tab_indicator_anim_duration_ms=0x7f09000c; public static final int show_password_duration=0x7f09000d; public static final int status_bar_notification_info_maxnum=0x7f09000e; } public static final class interpolator { public static final int btn_checkbox_checked_animation_interpolator_0=0x7f0a0000; public static final int btn_checkbox_checked_animation_interpolator_1=0x7f0a0001; public static final int btn_checkbox_indeterminate_animation_interpolator_1=0x7f0a0002; public static final int btn_checkbox_unchecked_animation_interpolator_0=0x7f0a0003; public static final int btn_checkbox_unchecked_animation_interpolator_1=0x7f0a0004; public static final int mtrl_fast_out_linear_in=0x7f0a0005; public static final int mtrl_fast_out_slow_in=0x7f0a0006; public static final int mtrl_linear=0x7f0a0007; public static final int mtrl_linear_out_slow_in=0x7f0a0008; } public static final class layout { public static final int abc_action_bar_title_item=0x7f0b0000; public static final int abc_action_bar_up_container=0x7f0b0001; public static final int abc_action_menu_item_layout=0x7f0b0002; public static final int abc_action_menu_layout=0x7f0b0003; public static final int abc_action_mode_bar=0x7f0b0004; public static final int abc_action_mode_close_item_material=0x7f0b0005; public static final int abc_activity_chooser_view=0x7f0b0006; public static final int abc_activity_chooser_view_list_item=0x7f0b0007; public static final int abc_alert_dialog_button_bar_material=0x7f0b0008; public static final int abc_alert_dialog_material=0x7f0b0009; public static final int abc_alert_dialog_title_material=0x7f0b000a; public static final int abc_cascading_menu_item_layout=0x7f0b000b; public static final int abc_dialog_title_material=0x7f0b000c; public static final int abc_expanded_menu_layout=0x7f0b000d; public static final int abc_list_menu_item_checkbox=0x7f0b000e; public static final int abc_list_menu_item_icon=0x7f0b000f; public static final int abc_list_menu_item_layout=0x7f0b0010; public static final int abc_list_menu_item_radio=0x7f0b0011; public static final int abc_popup_menu_header_item_layout=0x7f0b0012; public static final int abc_popup_menu_item_layout=0x7f0b0013; public static final int abc_screen_content_include=0x7f0b0014; public static final int abc_screen_simple=0x7f0b0015; public static final int abc_screen_simple_overlay_action_mode=0x7f0b0016; public static final int abc_screen_toolbar=0x7f0b0017; public static final int abc_search_dropdown_item_icons_2line=0x7f0b0018; public static final int abc_search_view=0x7f0b0019; public static final int abc_select_dialog_material=0x7f0b001a; public static final int abc_tooltip=0x7f0b001b; public static final int bottomtablayout=0x7f0b001c; public static final int browser_actions_context_menu_page=0x7f0b001d; public static final int browser_actions_context_menu_row=0x7f0b001e; public static final int design_bottom_navigation_item=0x7f0b001f; public static final int design_bottom_sheet_dialog=0x7f0b0020; public static final int design_layout_snackbar=0x7f0b0021; public static final int design_layout_snackbar_include=0x7f0b0022; public static final int design_layout_tab_icon=0x7f0b0023; public static final int design_layout_tab_text=0x7f0b0024; public static final int design_menu_item_action_area=0x7f0b0025; public static final int design_navigation_item=0x7f0b0026; public static final int design_navigation_item_header=0x7f0b0027; public static final int design_navigation_item_separator=0x7f0b0028; public static final int design_navigation_item_subheader=0x7f0b0029; public static final int design_navigation_menu=0x7f0b002a; public static final int design_navigation_menu_item=0x7f0b002b; public static final int design_text_input_password_icon=0x7f0b002c; public static final int flyoutcontent=0x7f0b002d; public static final int mtrl_layout_snackbar=0x7f0b002e; public static final int mtrl_layout_snackbar_include=0x7f0b002f; public static final int notification_action=0x7f0b0030; public static final int notification_action_tombstone=0x7f0b0031; public static final int notification_media_action=0x7f0b0032; public static final int notification_media_cancel_action=0x7f0b0033; public static final int notification_template_big_media=0x7f0b0034; public static final int notification_template_big_media_custom=0x7f0b0035; public static final int notification_template_big_media_narrow=0x7f0b0036; public static final int notification_template_big_media_narrow_custom=0x7f0b0037; public static final int notification_template_custom_big=0x7f0b0038; public static final int notification_template_icon_group=0x7f0b0039; public static final int notification_template_lines_media=0x7f0b003a; public static final int notification_template_media=0x7f0b003b; public static final int notification_template_media_custom=0x7f0b003c; public static final int notification_template_part_chronometer=0x7f0b003d; public static final int notification_template_part_time=0x7f0b003e; public static final int rootlayout=0x7f0b003f; public static final int select_dialog_item_material=0x7f0b0040; public static final int select_dialog_multichoice_material=0x7f0b0041; public static final int select_dialog_singlechoice_material=0x7f0b0042; public static final int shellcontent=0x7f0b0043; public static final int support_simple_spinner_dropdown_item=0x7f0b0044; public static final int tabbar=0x7f0b0045; public static final int toolbar=0x7f0b0046; } public static final class mipmap { public static final int icon=0x7f0c0000; public static final int icon_round=0x7f0c0001; public static final int launcher_foreground=0x7f0c0002; } public static final class string { public static final int abc_action_bar_home_description=0x7f0d0000; public static final int abc_action_bar_up_description=0x7f0d0001; public static final int abc_action_menu_overflow_description=0x7f0d0002; public static final int abc_action_mode_done=0x7f0d0003; public static final int abc_activity_chooser_view_see_all=0x7f0d0004; public static final int abc_activitychooserview_choose_application=0x7f0d0005; public static final int abc_capital_off=0x7f0d0006; public static final int abc_capital_on=0x7f0d0007; public static final int abc_font_family_body_1_material=0x7f0d0008; public static final int abc_font_family_body_2_material=0x7f0d0009; public static final int abc_font_family_button_material=0x7f0d000a; public static final int abc_font_family_caption_material=0x7f0d000b; public static final int abc_font_family_display_1_material=0x7f0d000c; public static final int abc_font_family_display_2_material=0x7f0d000d; public static final int abc_font_family_display_3_material=0x7f0d000e; public static final int abc_font_family_display_4_material=0x7f0d000f; public static final int abc_font_family_headline_material=0x7f0d0010; public static final int abc_font_family_menu_material=0x7f0d0011; public static final int abc_font_family_subhead_material=0x7f0d0012; public static final int abc_font_family_title_material=0x7f0d0013; public static final int abc_menu_alt_shortcut_label=0x7f0d0014; public static final int abc_menu_ctrl_shortcut_label=0x7f0d0015; public static final int abc_menu_delete_shortcut_label=0x7f0d0016; public static final int abc_menu_enter_shortcut_label=0x7f0d0017; public static final int abc_menu_function_shortcut_label=0x7f0d0018; public static final int abc_menu_meta_shortcut_label=0x7f0d0019; public static final int abc_menu_shift_shortcut_label=0x7f0d001a; public static final int abc_menu_space_shortcut_label=0x7f0d001b; public static final int abc_menu_sym_shortcut_label=0x7f0d001c; public static final int abc_prepend_shortcut_label=0x7f0d001d; public static final int abc_search_hint=0x7f0d001e; public static final int abc_searchview_description_clear=0x7f0d001f; public static final int abc_searchview_description_query=0x7f0d0020; public static final int abc_searchview_description_search=0x7f0d0021; public static final int abc_searchview_description_submit=0x7f0d0022; public static final int abc_searchview_description_voice=0x7f0d0023; public static final int abc_shareactionprovider_share_with=0x7f0d0024; public static final int abc_shareactionprovider_share_with_application=0x7f0d0025; public static final int abc_toolbar_collapse_description=0x7f0d0026; public static final int appbar_scrolling_view_behavior=0x7f0d0027; public static final int bottom_sheet_behavior=0x7f0d0028; public static final int character_counter_content_description=0x7f0d0029; public static final int character_counter_pattern=0x7f0d002a; public static final int fab_transformation_scrim_behavior=0x7f0d002b; public static final int fab_transformation_sheet_behavior=0x7f0d002c; public static final int hide_bottom_view_on_scroll_behavior=0x7f0d002d; public static final int library_name=0x7f0d002e; public static final int mtrl_chip_close_icon_content_description=0x7f0d002f; public static final int password_toggle_content_description=0x7f0d0030; public static final int path_password_eye=0x7f0d0031; public static final int path_password_eye_mask_strike_through=0x7f0d0032; public static final int path_password_eye_mask_visible=0x7f0d0033; public static final int path_password_strike_through=0x7f0d0034; public static final int search_menu_title=0x7f0d0035; public static final int status_bar_notification_info_overflow=0x7f0d0036; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0e0000; public static final int AlertDialog_AppCompat_Light=0x7f0e0001; public static final int Animation_AppCompat_Dialog=0x7f0e0002; public static final int Animation_AppCompat_DropDownUp=0x7f0e0003; public static final int Animation_AppCompat_Tooltip=0x7f0e0004; public static final int Animation_Design_BottomSheetDialog=0x7f0e0005; public static final int AppCompatDialogStyle=0x7f0e0006; public static final int Base_AlertDialog_AppCompat=0x7f0e0007; public static final int Base_AlertDialog_AppCompat_Light=0x7f0e0008; public static final int Base_Animation_AppCompat_Dialog=0x7f0e0009; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0e000a; public static final int Base_Animation_AppCompat_Tooltip=0x7f0e000b; public static final int Base_CardView=0x7f0e000c; public static final int Base_DialogWindowTitle_AppCompat=0x7f0e000d; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0e000e; public static final int Base_TextAppearance_AppCompat=0x7f0e000f; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0e0010; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0e0011; public static final int Base_TextAppearance_AppCompat_Button=0x7f0e0012; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0e0013; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0e0014; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0e0015; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0e0016; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0e0017; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0e0018; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0e0019; public static final int Base_TextAppearance_AppCompat_Large=0x7f0e001a; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0e001b; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e001c; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e001d; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0e001e; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0e001f; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0e0020; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0e0021; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e0022; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0e0023; public static final int Base_TextAppearance_AppCompat_Small=0x7f0e0024; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0e0025; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0e0026; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0e0027; public static final int Base_TextAppearance_AppCompat_Title=0x7f0e0028; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0e0029; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0e002a; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e002b; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e002c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e002d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e002e; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e002f; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e0030; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e0031; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0e0032; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e0033; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e0034; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e0035; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e0036; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e0037; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e0038; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e0039; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0e003a; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e003b; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e003c; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e003d; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e003e; public static final int Base_Theme_AppCompat=0x7f0e003f; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0e0040; public static final int Base_Theme_AppCompat_Dialog=0x7f0e0041; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0e0042; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0e0043; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0e0044; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0e0045; public static final int Base_Theme_AppCompat_Light=0x7f0e0046; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0e0047; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0e0048; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0e0049; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0e004a; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e004b; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0e004c; public static final int Base_Theme_MaterialComponents=0x7f0e004d; public static final int Base_Theme_MaterialComponents_Bridge=0x7f0e004e; public static final int Base_Theme_MaterialComponents_CompactMenu=0x7f0e004f; public static final int Base_Theme_MaterialComponents_Dialog=0x7f0e0050; public static final int Base_Theme_MaterialComponents_Dialog_Alert=0x7f0e0051; public static final int Base_Theme_MaterialComponents_Dialog_FixedSize=0x7f0e0052; public static final int Base_Theme_MaterialComponents_Dialog_MinWidth=0x7f0e0053; public static final int Base_Theme_MaterialComponents_DialogWhenLarge=0x7f0e0054; public static final int Base_Theme_MaterialComponents_Light=0x7f0e0055; public static final int Base_Theme_MaterialComponents_Light_Bridge=0x7f0e0056; public static final int Base_Theme_MaterialComponents_Light_DarkActionBar=0x7f0e0057; public static final int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e0058; public static final int Base_Theme_MaterialComponents_Light_Dialog=0x7f0e0059; public static final int Base_Theme_MaterialComponents_Light_Dialog_Alert=0x7f0e005a; public static final int Base_Theme_MaterialComponents_Light_Dialog_FixedSize=0x7f0e005b; public static final int Base_Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0e005c; public static final int Base_Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0e005d; public static final int Base_ThemeOverlay_AppCompat=0x7f0e005e; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0e005f; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0e0060; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e0061; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0e0062; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e0063; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0e0064; public static final int Base_ThemeOverlay_MaterialComponents_Dialog=0x7f0e0065; public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e0066; public static final int Base_V14_Theme_MaterialComponents=0x7f0e0067; public static final int Base_V14_Theme_MaterialComponents_Bridge=0x7f0e0068; public static final int Base_V14_Theme_MaterialComponents_Dialog=0x7f0e0069; public static final int Base_V14_Theme_MaterialComponents_Light=0x7f0e006a; public static final int Base_V14_Theme_MaterialComponents_Light_Bridge=0x7f0e006b; public static final int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e006c; public static final int Base_V14_Theme_MaterialComponents_Light_Dialog=0x7f0e006d; public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog=0x7f0e006e; public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e006f; public static final int Base_V21_Theme_AppCompat=0x7f0e0070; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0e0071; public static final int Base_V21_Theme_AppCompat_Light=0x7f0e0072; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0e0073; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0e0074; public static final int Base_V22_Theme_AppCompat=0x7f0e0075; public static final int Base_V22_Theme_AppCompat_Light=0x7f0e0076; public static final int Base_V23_Theme_AppCompat=0x7f0e0077; public static final int Base_V23_Theme_AppCompat_Light=0x7f0e0078; public static final int Base_V26_Theme_AppCompat=0x7f0e0079; public static final int Base_V26_Theme_AppCompat_Light=0x7f0e007a; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0e007b; public static final int Base_V28_Theme_AppCompat=0x7f0e007c; public static final int Base_V28_Theme_AppCompat_Light=0x7f0e007d; public static final int Base_V7_Theme_AppCompat=0x7f0e007e; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0e007f; public static final int Base_V7_Theme_AppCompat_Light=0x7f0e0080; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0e0081; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0e0082; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0e0083; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0e0084; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0e0085; public static final int Base_Widget_AppCompat_ActionBar=0x7f0e0086; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0e0087; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0e0088; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0e0089; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0e008a; public static final int Base_Widget_AppCompat_ActionButton=0x7f0e008b; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0e008c; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0e008d; public static final int Base_Widget_AppCompat_ActionMode=0x7f0e008e; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0e008f; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0e0090; public static final int Base_Widget_AppCompat_Button=0x7f0e0091; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0e0092; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0e0093; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e0094; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0e0095; public static final int Base_Widget_AppCompat_Button_Small=0x7f0e0096; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0e0097; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e0098; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0e0099; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0e009a; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0e009b; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0e009c; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0e009d; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0e009e; public static final int Base_Widget_AppCompat_EditText=0x7f0e009f; public static final int Base_Widget_AppCompat_ImageButton=0x7f0e00a0; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0e00a1; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0e00a2; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e00a3; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0e00a4; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e00a5; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0e00a6; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0e00a7; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e00a8; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0e00a9; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0e00aa; public static final int Base_Widget_AppCompat_ListView=0x7f0e00ab; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0e00ac; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0e00ad; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0e00ae; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0e00af; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0e00b0; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0e00b1; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0e00b2; public static final int Base_Widget_AppCompat_RatingBar=0x7f0e00b3; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0e00b4; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0e00b5; public static final int Base_Widget_AppCompat_SearchView=0x7f0e00b6; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0e00b7; public static final int Base_Widget_AppCompat_SeekBar=0x7f0e00b8; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0e00b9; public static final int Base_Widget_AppCompat_Spinner=0x7f0e00ba; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0e00bb; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0e00bc; public static final int Base_Widget_AppCompat_Toolbar=0x7f0e00bd; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e00be; public static final int Base_Widget_Design_TabLayout=0x7f0e00bf; public static final int Base_Widget_MaterialComponents_Chip=0x7f0e00c0; public static final int Base_Widget_MaterialComponents_TextInputEditText=0x7f0e00c1; public static final int Base_Widget_MaterialComponents_TextInputLayout=0x7f0e00c2; public static final int CardView=0x7f0e00c3; public static final int CardView_Dark=0x7f0e00c4; public static final int CardView_Light=0x7f0e00c5; public static final int MainTheme=0x7f0e00c6; /** * Base theme applied no matter what API */ public static final int MainTheme_Base=0x7f0e00c7; public static final int Platform_AppCompat=0x7f0e00c8; public static final int Platform_AppCompat_Light=0x7f0e00c9; public static final int Platform_MaterialComponents=0x7f0e00ca; public static final int Platform_MaterialComponents_Dialog=0x7f0e00cb; public static final int Platform_MaterialComponents_Light=0x7f0e00cc; public static final int Platform_MaterialComponents_Light_Dialog=0x7f0e00cd; public static final int Platform_ThemeOverlay_AppCompat=0x7f0e00ce; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0e00cf; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0e00d0; public static final int Platform_V21_AppCompat=0x7f0e00d1; public static final int Platform_V21_AppCompat_Light=0x7f0e00d2; public static final int Platform_V25_AppCompat=0x7f0e00d3; public static final int Platform_V25_AppCompat_Light=0x7f0e00d4; public static final int Platform_Widget_AppCompat_Spinner=0x7f0e00d5; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0e00d6; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0e00d7; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0e00d8; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0e00d9; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0e00da; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut=0x7f0e00db; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow=0x7f0e00dc; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0e00dd; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title=0x7f0e00de; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0e00df; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0e00e0; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0e00e1; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0e00e2; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0e00e3; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0e00e4; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0e00e5; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0e00e6; public static final int TextAppearance_AppCompat=0x7f0e00e7; public static final int TextAppearance_AppCompat_Body1=0x7f0e00e8; public static final int TextAppearance_AppCompat_Body2=0x7f0e00e9; public static final int TextAppearance_AppCompat_Button=0x7f0e00ea; public static final int TextAppearance_AppCompat_Caption=0x7f0e00eb; public static final int TextAppearance_AppCompat_Display1=0x7f0e00ec; public static final int TextAppearance_AppCompat_Display2=0x7f0e00ed; public static final int TextAppearance_AppCompat_Display3=0x7f0e00ee; public static final int TextAppearance_AppCompat_Display4=0x7f0e00ef; public static final int TextAppearance_AppCompat_Headline=0x7f0e00f0; public static final int TextAppearance_AppCompat_Inverse=0x7f0e00f1; public static final int TextAppearance_AppCompat_Large=0x7f0e00f2; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0e00f3; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0e00f4; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0e00f5; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e00f6; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e00f7; public static final int TextAppearance_AppCompat_Medium=0x7f0e00f8; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0e00f9; public static final int TextAppearance_AppCompat_Menu=0x7f0e00fa; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e00fb; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0e00fc; public static final int TextAppearance_AppCompat_Small=0x7f0e00fd; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0e00fe; public static final int TextAppearance_AppCompat_Subhead=0x7f0e00ff; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0e0100; public static final int TextAppearance_AppCompat_Title=0x7f0e0101; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0e0102; public static final int TextAppearance_AppCompat_Tooltip=0x7f0e0103; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e0104; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e0105; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e0106; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e0107; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e0108; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e0109; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0e010a; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e010b; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0e010c; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0e010d; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e010e; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e010f; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e0110; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e0111; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e0112; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e0113; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e0114; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0e0115; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e0116; public static final int TextAppearance_Compat_Notification=0x7f0e0117; public static final int TextAppearance_Compat_Notification_Info=0x7f0e0118; public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0e0119; public static final int TextAppearance_Compat_Notification_Line2=0x7f0e011a; public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0e011b; public static final int TextAppearance_Compat_Notification_Media=0x7f0e011c; public static final int TextAppearance_Compat_Notification_Time=0x7f0e011d; public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0e011e; public static final int TextAppearance_Compat_Notification_Title=0x7f0e011f; public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0e0120; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0e0121; public static final int TextAppearance_Design_Counter=0x7f0e0122; public static final int TextAppearance_Design_Counter_Overflow=0x7f0e0123; public static final int TextAppearance_Design_Error=0x7f0e0124; public static final int TextAppearance_Design_HelperText=0x7f0e0125; public static final int TextAppearance_Design_Hint=0x7f0e0126; public static final int TextAppearance_Design_Snackbar_Message=0x7f0e0127; public static final int TextAppearance_Design_Tab=0x7f0e0128; public static final int TextAppearance_MaterialComponents_Body1=0x7f0e0129; public static final int TextAppearance_MaterialComponents_Body2=0x7f0e012a; public static final int TextAppearance_MaterialComponents_Button=0x7f0e012b; public static final int TextAppearance_MaterialComponents_Caption=0x7f0e012c; public static final int TextAppearance_MaterialComponents_Chip=0x7f0e012d; public static final int TextAppearance_MaterialComponents_Headline1=0x7f0e012e; public static final int TextAppearance_MaterialComponents_Headline2=0x7f0e012f; public static final int TextAppearance_MaterialComponents_Headline3=0x7f0e0130; public static final int TextAppearance_MaterialComponents_Headline4=0x7f0e0131; public static final int TextAppearance_MaterialComponents_Headline5=0x7f0e0132; public static final int TextAppearance_MaterialComponents_Headline6=0x7f0e0133; public static final int TextAppearance_MaterialComponents_Overline=0x7f0e0134; public static final int TextAppearance_MaterialComponents_Subtitle1=0x7f0e0135; public static final int TextAppearance_MaterialComponents_Subtitle2=0x7f0e0136; public static final int TextAppearance_MaterialComponents_Tab=0x7f0e0137; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e0138; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e0139; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e013a; public static final int Theme_AppCompat=0x7f0e013b; public static final int Theme_AppCompat_CompactMenu=0x7f0e013c; public static final int Theme_AppCompat_DayNight=0x7f0e013d; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0e013e; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0e013f; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0e0140; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0e0141; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0e0142; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0e0143; public static final int Theme_AppCompat_Dialog=0x7f0e0144; public static final int Theme_AppCompat_Dialog_Alert=0x7f0e0145; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0e0146; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0e0147; public static final int Theme_AppCompat_Light=0x7f0e0148; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0e0149; public static final int Theme_AppCompat_Light_Dialog=0x7f0e014a; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0e014b; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e014c; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0e014d; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0e014e; public static final int Theme_AppCompat_NoActionBar=0x7f0e014f; public static final int Theme_Design=0x7f0e0150; public static final int Theme_Design_BottomSheetDialog=0x7f0e0151; public static final int Theme_Design_Light=0x7f0e0152; public static final int Theme_Design_Light_BottomSheetDialog=0x7f0e0153; public static final int Theme_Design_Light_NoActionBar=0x7f0e0154; public static final int Theme_Design_NoActionBar=0x7f0e0155; public static final int Theme_MaterialComponents=0x7f0e0156; public static final int Theme_MaterialComponents_BottomSheetDialog=0x7f0e0157; public static final int Theme_MaterialComponents_Bridge=0x7f0e0158; public static final int Theme_MaterialComponents_CompactMenu=0x7f0e0159; public static final int Theme_MaterialComponents_Dialog=0x7f0e015a; public static final int Theme_MaterialComponents_Dialog_Alert=0x7f0e015b; public static final int Theme_MaterialComponents_Dialog_MinWidth=0x7f0e015c; public static final int Theme_MaterialComponents_DialogWhenLarge=0x7f0e015d; public static final int Theme_MaterialComponents_Light=0x7f0e015e; public static final int Theme_MaterialComponents_Light_BottomSheetDialog=0x7f0e015f; public static final int Theme_MaterialComponents_Light_Bridge=0x7f0e0160; public static final int Theme_MaterialComponents_Light_DarkActionBar=0x7f0e0161; public static final int Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0e0162; public static final int Theme_MaterialComponents_Light_Dialog=0x7f0e0163; public static final int Theme_MaterialComponents_Light_Dialog_Alert=0x7f0e0164; public static final int Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0e0165; public static final int Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0e0166; public static final int Theme_MaterialComponents_Light_NoActionBar=0x7f0e0167; public static final int Theme_MaterialComponents_Light_NoActionBar_Bridge=0x7f0e0168; public static final int Theme_MaterialComponents_NoActionBar=0x7f0e0169; public static final int Theme_MaterialComponents_NoActionBar_Bridge=0x7f0e016a; public static final int ThemeOverlay_AppCompat=0x7f0e016b; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0e016c; public static final int ThemeOverlay_AppCompat_Dark=0x7f0e016d; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e016e; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0e016f; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e0170; public static final int ThemeOverlay_AppCompat_Light=0x7f0e0171; public static final int ThemeOverlay_MaterialComponents=0x7f0e0172; public static final int ThemeOverlay_MaterialComponents_ActionBar=0x7f0e0173; public static final int ThemeOverlay_MaterialComponents_Dark=0x7f0e0174; public static final int ThemeOverlay_MaterialComponents_Dark_ActionBar=0x7f0e0175; public static final int ThemeOverlay_MaterialComponents_Dialog=0x7f0e0176; public static final int ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0e0177; public static final int ThemeOverlay_MaterialComponents_Light=0x7f0e0178; public static final int ThemeOverlay_MaterialComponents_TextInputEditText=0x7f0e0179; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox=0x7f0e017a; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0e017b; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0e017c; public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0e017d; public static final int Widget_AppCompat_ActionBar=0x7f0e017e; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0e017f; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0e0180; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0e0181; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0e0182; public static final int Widget_AppCompat_ActionButton=0x7f0e0183; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0e0184; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0e0185; public static final int Widget_AppCompat_ActionMode=0x7f0e0186; public static final int Widget_AppCompat_ActivityChooserView=0x7f0e0187; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0e0188; public static final int Widget_AppCompat_Button=0x7f0e0189; public static final int Widget_AppCompat_Button_Borderless=0x7f0e018a; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0e018b; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e018c; public static final int Widget_AppCompat_Button_Colored=0x7f0e018d; public static final int Widget_AppCompat_Button_Small=0x7f0e018e; public static final int Widget_AppCompat_ButtonBar=0x7f0e018f; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e0190; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0e0191; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0e0192; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0e0193; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0e0194; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0e0195; public static final int Widget_AppCompat_EditText=0x7f0e0196; public static final int Widget_AppCompat_ImageButton=0x7f0e0197; public static final int Widget_AppCompat_Light_ActionBar=0x7f0e0198; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0e0199; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0e019a; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e019b; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0e019c; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0e019d; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e019e; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0e019f; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0e01a0; public static final int Widget_AppCompat_Light_ActionButton=0x7f0e01a1; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0e01a2; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0e01a3; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0e01a4; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0e01a5; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0e01a6; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0e01a7; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0e01a8; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0e01a9; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0e01aa; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e01ab; public static final int Widget_AppCompat_Light_SearchView=0x7f0e01ac; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0e01ad; public static final int Widget_AppCompat_ListMenuView=0x7f0e01ae; public static final int Widget_AppCompat_ListPopupWindow=0x7f0e01af; public static final int Widget_AppCompat_ListView=0x7f0e01b0; public static final int Widget_AppCompat_ListView_DropDown=0x7f0e01b1; public static final int Widget_AppCompat_ListView_Menu=0x7f0e01b2; public static final int Widget_AppCompat_PopupMenu=0x7f0e01b3; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0e01b4; public static final int Widget_AppCompat_PopupWindow=0x7f0e01b5; public static final int Widget_AppCompat_ProgressBar=0x7f0e01b6; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0e01b7; public static final int Widget_AppCompat_RatingBar=0x7f0e01b8; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0e01b9; public static final int Widget_AppCompat_RatingBar_Small=0x7f0e01ba; public static final int Widget_AppCompat_SearchView=0x7f0e01bb; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0e01bc; public static final int Widget_AppCompat_SeekBar=0x7f0e01bd; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0e01be; public static final int Widget_AppCompat_Spinner=0x7f0e01bf; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0e01c0; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0e01c1; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0e01c2; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0e01c3; public static final int Widget_AppCompat_Toolbar=0x7f0e01c4; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e01c5; public static final int Widget_Compat_NotificationActionContainer=0x7f0e01c6; public static final int Widget_Compat_NotificationActionText=0x7f0e01c7; public static final int Widget_Design_AppBarLayout=0x7f0e01c8; public static final int Widget_Design_BottomNavigationView=0x7f0e01c9; public static final int Widget_Design_BottomSheet_Modal=0x7f0e01ca; public static final int Widget_Design_CollapsingToolbar=0x7f0e01cb; public static final int Widget_Design_FloatingActionButton=0x7f0e01cc; public static final int Widget_Design_NavigationView=0x7f0e01cd; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0e01ce; public static final int Widget_Design_Snackbar=0x7f0e01cf; public static final int Widget_Design_TabLayout=0x7f0e01d0; public static final int Widget_Design_TextInputLayout=0x7f0e01d1; public static final int Widget_MaterialComponents_BottomAppBar=0x7f0e01d2; public static final int Widget_MaterialComponents_BottomAppBar_Colored=0x7f0e01d3; public static final int Widget_MaterialComponents_BottomNavigationView=0x7f0e01d4; public static final int Widget_MaterialComponents_BottomNavigationView_Colored=0x7f0e01d5; public static final int Widget_MaterialComponents_BottomSheet_Modal=0x7f0e01d6; public static final int Widget_MaterialComponents_Button=0x7f0e01d7; public static final int Widget_MaterialComponents_Button_Icon=0x7f0e01d8; public static final int Widget_MaterialComponents_Button_OutlinedButton=0x7f0e01d9; public static final int Widget_MaterialComponents_Button_OutlinedButton_Icon=0x7f0e01da; public static final int Widget_MaterialComponents_Button_TextButton=0x7f0e01db; public static final int Widget_MaterialComponents_Button_TextButton_Dialog=0x7f0e01dc; public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Icon=0x7f0e01dd; public static final int Widget_MaterialComponents_Button_TextButton_Icon=0x7f0e01de; public static final int Widget_MaterialComponents_Button_UnelevatedButton=0x7f0e01df; public static final int Widget_MaterialComponents_Button_UnelevatedButton_Icon=0x7f0e01e0; public static final int Widget_MaterialComponents_CardView=0x7f0e01e1; public static final int Widget_MaterialComponents_Chip_Action=0x7f0e01e2; public static final int Widget_MaterialComponents_Chip_Choice=0x7f0e01e3; public static final int Widget_MaterialComponents_Chip_Entry=0x7f0e01e4; public static final int Widget_MaterialComponents_Chip_Filter=0x7f0e01e5; public static final int Widget_MaterialComponents_ChipGroup=0x7f0e01e6; public static final int Widget_MaterialComponents_FloatingActionButton=0x7f0e01e7; public static final int Widget_MaterialComponents_NavigationView=0x7f0e01e8; public static final int Widget_MaterialComponents_Snackbar=0x7f0e01e9; public static final int Widget_MaterialComponents_Snackbar_FullWidth=0x7f0e01ea; public static final int Widget_MaterialComponents_TabLayout=0x7f0e01eb; public static final int Widget_MaterialComponents_TabLayout_Colored=0x7f0e01ec; public static final int Widget_MaterialComponents_TextInputEditText_FilledBox=0x7f0e01ed; public static final int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0e01ee; public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0e01ef; public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0e01f0; public static final int Widget_MaterialComponents_TextInputLayout_FilledBox=0x7f0e01f1; public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense=0x7f0e01f2; public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox=0x7f0e01f3; public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense=0x7f0e01f4; public static final int Widget_MaterialComponents_Toolbar=0x7f0e01f5; public static final int Widget_Support_CoordinatorLayout=0x7f0e01f6; public static final int collectionViewStyle=0x7f0e01f7; } public static final class styleable { /** * Attributes that can be used with a ActionBar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionBar_background com.companyname.yondr_finance:background}</code></td><td>Specifies a background drawable for the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_backgroundSplit com.companyname.yondr_finance:backgroundSplit}</code></td><td>Specifies a background drawable for the bottom component of a split action bar.</td></tr> * <tr><td><code>{@link #ActionBar_backgroundStacked com.companyname.yondr_finance:backgroundStacked}</code></td><td>Specifies a background drawable for a second stacked row of the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEnd com.companyname.yondr_finance:contentInsetEnd}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.companyname.yondr_finance:contentInsetEndWithActions}</code></td><td>Minimum inset for content views within a bar when actions from a menu * are present.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetLeft com.companyname.yondr_finance:contentInsetLeft}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetRight com.companyname.yondr_finance:contentInsetRight}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStart com.companyname.yondr_finance:contentInsetStart}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.companyname.yondr_finance:contentInsetStartWithNavigation}</code></td><td>Minimum inset for content views within a bar when a navigation button * is present, such as the Up button.</td></tr> * <tr><td><code>{@link #ActionBar_customNavigationLayout com.companyname.yondr_finance:customNavigationLayout}</code></td><td>Specifies a layout for custom navigation.</td></tr> * <tr><td><code>{@link #ActionBar_displayOptions com.companyname.yondr_finance:displayOptions}</code></td><td>Options affecting how the action bar is displayed.</td></tr> * <tr><td><code>{@link #ActionBar_divider com.companyname.yondr_finance:divider}</code></td><td>Specifies the drawable used for item dividers.</td></tr> * <tr><td><code>{@link #ActionBar_elevation com.companyname.yondr_finance:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #ActionBar_height com.companyname.yondr_finance:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_hideOnContentScroll com.companyname.yondr_finance:hideOnContentScroll}</code></td><td>Set true to hide the action bar on a vertical nested scroll of content.</td></tr> * <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.companyname.yondr_finance:homeAsUpIndicator}</code></td><td>Specifies a drawable to use for the 'home as up' indicator.</td></tr> * <tr><td><code>{@link #ActionBar_homeLayout com.companyname.yondr_finance:homeLayout}</code></td><td>Specifies a layout to use for the "home" section of the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_icon com.companyname.yondr_finance:icon}</code></td><td>Specifies the drawable used for the application icon.</td></tr> * <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.companyname.yondr_finance:indeterminateProgressStyle}</code></td><td>Specifies a style resource to use for an indeterminate progress spinner.</td></tr> * <tr><td><code>{@link #ActionBar_itemPadding com.companyname.yondr_finance:itemPadding}</code></td><td>Specifies padding that should be applied to the left and right sides of * system-provided items in the bar.</td></tr> * <tr><td><code>{@link #ActionBar_logo com.companyname.yondr_finance:logo}</code></td><td>Specifies the drawable used for the application logo.</td></tr> * <tr><td><code>{@link #ActionBar_navigationMode com.companyname.yondr_finance:navigationMode}</code></td><td>The type of navigation to use.</td></tr> * <tr><td><code>{@link #ActionBar_popupTheme com.companyname.yondr_finance:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_progressBarPadding com.companyname.yondr_finance:progressBarPadding}</code></td><td>Specifies the horizontal padding on either end for an embedded progress bar.</td></tr> * <tr><td><code>{@link #ActionBar_progressBarStyle com.companyname.yondr_finance:progressBarStyle}</code></td><td>Specifies a style resource to use for an embedded progress bar.</td></tr> * <tr><td><code>{@link #ActionBar_subtitle com.companyname.yondr_finance:subtitle}</code></td><td>Specifies subtitle text used for navigationMode="normal"</td></tr> * <tr><td><code>{@link #ActionBar_subtitleTextStyle com.companyname.yondr_finance:subtitleTextStyle}</code></td><td>Specifies a style to use for subtitle text.</td></tr> * <tr><td><code>{@link #ActionBar_title com.companyname.yondr_finance:title}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_titleTextStyle com.companyname.yondr_finance:titleTextStyle}</code></td><td>Specifies a style to use for title text.</td></tr> * </table> * @see #ActionBar_background * @see #ActionBar_backgroundSplit * @see #ActionBar_backgroundStacked * @see #ActionBar_contentInsetEnd * @see #ActionBar_contentInsetEndWithActions * @see #ActionBar_contentInsetLeft * @see #ActionBar_contentInsetRight * @see #ActionBar_contentInsetStart * @see #ActionBar_contentInsetStartWithNavigation * @see #ActionBar_customNavigationLayout * @see #ActionBar_displayOptions * @see #ActionBar_divider * @see #ActionBar_elevation * @see #ActionBar_height * @see #ActionBar_hideOnContentScroll * @see #ActionBar_homeAsUpIndicator * @see #ActionBar_homeLayout * @see #ActionBar_icon * @see #ActionBar_indeterminateProgressStyle * @see #ActionBar_itemPadding * @see #ActionBar_logo * @see #ActionBar_navigationMode * @see #ActionBar_popupTheme * @see #ActionBar_progressBarPadding * @see #ActionBar_progressBarStyle * @see #ActionBar_subtitle * @see #ActionBar_subtitleTextStyle * @see #ActionBar_title * @see #ActionBar_titleTextStyle */ public static final int[] ActionBar={ 0x7f030031, 0x7f030032, 0x7f030033, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030097, 0x7f0300a6, 0x7f0300ab, 0x7f0300ac, 0x7f0300b7, 0x7f0300e1, 0x7f0300e6, 0x7f0300eb, 0x7f0300ec, 0x7f0300ee, 0x7f0300f8, 0x7f030103, 0x7f030126, 0x7f030132, 0x7f030143, 0x7f030147, 0x7f030148, 0x7f030183, 0x7f030186, 0x7f0301cb, 0x7f0301d5 }; /** * <p> * @attr description * Specifies a background drawable for the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:background */ public static final int ActionBar_background=0; /** * <p> * @attr description * Specifies a background drawable for the bottom component of a split action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:backgroundSplit */ public static final int ActionBar_backgroundSplit=1; /** * <p> * @attr description * Specifies a background drawable for a second stacked row of the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:backgroundStacked */ public static final int ActionBar_backgroundStacked=2; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetEnd */ public static final int ActionBar_contentInsetEnd=3; /** * <p> * @attr description * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions=4; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetLeft */ public static final int ActionBar_contentInsetLeft=5; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetRight */ public static final int ActionBar_contentInsetRight=6; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetStart */ public static final int ActionBar_contentInsetStart=7; /** * <p> * @attr description * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation=8; /** * <p> * @attr description * Specifies a layout for custom navigation. Overrides navigationMode. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:customNavigationLayout */ public static final int ActionBar_customNavigationLayout=9; /** * <p> * @attr description * Options affecting how the action bar is displayed. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:displayOptions */ public static final int ActionBar_displayOptions=10; /** * <p> * @attr description * Specifies the drawable used for item dividers. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:divider */ public static final int ActionBar_divider=11; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:elevation */ public static final int ActionBar_elevation=12; /** * <p> * @attr description * Specifies a fixed height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:height */ public static final int ActionBar_height=13; /** * <p> * @attr description * Set true to hide the action bar on a vertical nested scroll of content. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll=14; /** * <p> * @attr description * Up navigation glyph * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator=15; /** * <p> * @attr description * Specifies a layout to use for the "home" section of the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:homeLayout */ public static final int ActionBar_homeLayout=16; /** * <p> * @attr description * Specifies the drawable used for the application icon. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:icon */ public static final int ActionBar_icon=17; /** * <p> * @attr description * Specifies a style resource to use for an indeterminate progress spinner. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle=18; /** * <p> * @attr description * Specifies padding that should be applied to the left and right sides of * system-provided items in the bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:itemPadding */ public static final int ActionBar_itemPadding=19; /** * <p> * @attr description * Specifies the drawable used for the application logo. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:logo */ public static final int ActionBar_logo=20; /** * <p> * @attr description * The type of navigation to use. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>listMode</td><td>1</td><td>The action bar will use a selection list for navigation.</td></tr> * <tr><td>normal</td><td>0</td><td>Normal static title text</td></tr> * <tr><td>tabMode</td><td>2</td><td>The action bar will use a series of horizontal tabs for navigation.</td></tr> * </table> * * @attr name com.companyname.yondr_finance:navigationMode */ public static final int ActionBar_navigationMode=21; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:popupTheme */ public static final int ActionBar_popupTheme=22; /** * <p> * @attr description * Specifies the horizontal padding on either end for an embedded progress bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:progressBarPadding */ public static final int ActionBar_progressBarPadding=23; /** * <p> * @attr description * Specifies a style resource to use for an embedded progress bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:progressBarStyle */ public static final int ActionBar_progressBarStyle=24; /** * <p> * @attr description * Specifies subtitle text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:subtitle */ public static final int ActionBar_subtitle=25; /** * <p> * @attr description * Specifies a style to use for subtitle text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle=26; /** * <p> * @attr description * Specifies title text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:title */ public static final int ActionBar_title=27; /** * <p> * @attr description * Specifies a style to use for title text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:titleTextStyle */ public static final int ActionBar_titleTextStyle=28; /** * Attributes that can be used with a ActionBarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> * </table> * @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout={ 0x010100b3 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #ActionBarLayout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity=0; /** * Attributes that can be used with a ActionMenuItemView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> * </table> * @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView={ 0x0101013f }; /** * <p>This symbol is the offset where the {@link android.R.attr#minWidth} * attribute's value can be found in the {@link #ActionMenuItemView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth=0; public static final int[] ActionMenuView={ }; /** * Attributes that can be used with a ActionMode. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionMode_background com.companyname.yondr_finance:background}</code></td><td>Specifies a background drawable for the action bar.</td></tr> * <tr><td><code>{@link #ActionMode_backgroundSplit com.companyname.yondr_finance:backgroundSplit}</code></td><td>Specifies a background drawable for the bottom component of a split action bar.</td></tr> * <tr><td><code>{@link #ActionMode_closeItemLayout com.companyname.yondr_finance:closeItemLayout}</code></td><td>Specifies a layout to use for the "close" item at the starting edge.</td></tr> * <tr><td><code>{@link #ActionMode_height com.companyname.yondr_finance:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_subtitleTextStyle com.companyname.yondr_finance:subtitleTextStyle}</code></td><td>Specifies a style to use for subtitle text.</td></tr> * <tr><td><code>{@link #ActionMode_titleTextStyle com.companyname.yondr_finance:titleTextStyle}</code></td><td>Specifies a style to use for title text.</td></tr> * </table> * @see #ActionMode_background * @see #ActionMode_backgroundSplit * @see #ActionMode_closeItemLayout * @see #ActionMode_height * @see #ActionMode_subtitleTextStyle * @see #ActionMode_titleTextStyle */ public static final int[] ActionMode={ 0x7f030031, 0x7f030032, 0x7f03007f, 0x7f0300e1, 0x7f030186, 0x7f0301d5 }; /** * <p> * @attr description * Specifies a background for the action mode bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:background */ public static final int ActionMode_background=0; /** * <p> * @attr description * Specifies a background for the split action mode bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:backgroundSplit */ public static final int ActionMode_backgroundSplit=1; /** * <p> * @attr description * Specifies a layout to use for the "close" item at the starting edge. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:closeItemLayout */ public static final int ActionMode_closeItemLayout=2; /** * <p> * @attr description * Specifies a fixed height for the action mode bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:height */ public static final int ActionMode_height=3; /** * <p> * @attr description * Specifies a style to use for subtitle text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle=4; /** * <p> * @attr description * Specifies a style to use for title text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:titleTextStyle */ public static final int ActionMode_titleTextStyle=5; /** * Attributes that can be used with a ActivityChooserView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.companyname.yondr_finance:expandActivityOverflowButtonDrawable}</code></td><td>The drawable to show in the button for expanding the activities overflow popup.</td></tr> * <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.companyname.yondr_finance:initialActivityCount}</code></td><td>The maximal number of items initially shown in the activity list.</td></tr> * </table> * @see #ActivityChooserView_expandActivityOverflowButtonDrawable * @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView={ 0x7f0300bc, 0x7f0300f9 }; /** * <p> * @attr description * The drawable to show in the button for expanding the activities overflow popup. * <strong>Note:</strong> Clients would like to set this drawable * as a clue about the action the chosen activity will perform. For * example, if share activity is to be chosen the drawable should * give a clue that sharing is to be performed. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; /** * <p> * @attr description * The maximal number of items initially shown in the activity list. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount=1; /** * Attributes that can be used with a AlertDialog. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_buttonIconDimen com.companyname.yondr_finance:buttonIconDimen}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.companyname.yondr_finance:buttonPanelSideLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listItemLayout com.companyname.yondr_finance:listItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listLayout com.companyname.yondr_finance:listLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.companyname.yondr_finance:multiChoiceItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_showTitle com.companyname.yondr_finance:showTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.companyname.yondr_finance:singleChoiceItemLayout}</code></td><td></td></tr> * </table> * @see #AlertDialog_android_layout * @see #AlertDialog_buttonIconDimen * @see #AlertDialog_buttonPanelSideLayout * @see #AlertDialog_listItemLayout * @see #AlertDialog_listLayout * @see #AlertDialog_multiChoiceItemLayout * @see #AlertDialog_showTitle * @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog={ 0x010100f2, 0x7f030052, 0x7f030053, 0x7f03011d, 0x7f03011e, 0x7f03012f, 0x7f03016a, 0x7f03016b }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int AlertDialog_android_layout=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#buttonIconDimen} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:buttonIconDimen */ public static final int AlertDialog_buttonIconDimen=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#buttonPanelSideLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout=2; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#listItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:listItemLayout */ public static final int AlertDialog_listItemLayout=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#listLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:listLayout */ public static final int AlertDialog_listLayout=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#multiChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout=5; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#showTitle} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:showTitle */ public static final int AlertDialog_showTitle=6; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#singleChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout=7; /** * Attributes that can be used with a AnimatedStateListDrawableCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_dither android:dither}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_variablePadding android:variablePadding}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_constantSize android:constantSize}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableCompat_android_dither * @see #AnimatedStateListDrawableCompat_android_visible * @see #AnimatedStateListDrawableCompat_android_variablePadding * @see #AnimatedStateListDrawableCompat_android_constantSize * @see #AnimatedStateListDrawableCompat_android_enterFadeDuration * @see #AnimatedStateListDrawableCompat_android_exitFadeDuration */ public static final int[] AnimatedStateListDrawableCompat={ 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** * <p> * @attr description * Enables or disables dithering of the bitmap if the bitmap does not have the * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with * an RGB 565 screen). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:dither */ public static final int AnimatedStateListDrawableCompat_android_dither=0; /** * <p> * @attr description * Indicates whether the drawable should be initially visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int AnimatedStateListDrawableCompat_android_visible=1; /** * <p> * @attr description * If true, allows the drawable's padding to change based on the * current state that is selected. If false, the padding will * stay the same (based on the maximum padding of all the states). * Enabling this feature requires that the owner of the drawable * deal with performing layout when the state changes, which is * often not supported. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:variablePadding */ public static final int AnimatedStateListDrawableCompat_android_variablePadding=2; /** * <p> * @attr description * If true, the drawable's reported internal size will remain * constant as the state changes; the size is the maximum of all * of the states. If false, the size will vary based on the * current state. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:constantSize */ public static final int AnimatedStateListDrawableCompat_android_constantSize=3; /** * <p> * @attr description * Amount of time (in milliseconds) to fade in a new state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:enterFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration=4; /** * <p> * @attr description * Amount of time (in milliseconds) to fade out an old state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:exitFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration=5; /** * Attributes that can be used with a AnimatedStateListDrawableItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableItem_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableItem_android_id * @see #AnimatedStateListDrawableItem_android_drawable */ public static final int[] AnimatedStateListDrawableItem={ 0x010100d0, 0x01010199 }; /** * <p> * @attr description * Keyframe identifier for use in specifying transitions. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int AnimatedStateListDrawableItem_android_id=0; /** * <p> * @attr description * Reference to a drawable resource to use for the frame. If not * given, the drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int AnimatedStateListDrawableItem_android_drawable=1; /** * Attributes that can be used with a AnimatedStateListDrawableTransition. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_drawable android:drawable}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_toId android:toId}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_fromId android:fromId}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_reversible android:reversible}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableTransition_android_drawable * @see #AnimatedStateListDrawableTransition_android_toId * @see #AnimatedStateListDrawableTransition_android_fromId * @see #AnimatedStateListDrawableTransition_android_reversible */ public static final int[] AnimatedStateListDrawableTransition={ 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }; /** * <p> * @attr description * Reference to a animation drawable resource to use for the frame. If not * given, the animation drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int AnimatedStateListDrawableTransition_android_drawable=0; /** * <p> * @attr description * Keyframe identifier for the ending state. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:toId */ public static final int AnimatedStateListDrawableTransition_android_toId=1; /** * <p> * @attr description * Keyframe identifier for the starting state. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:fromId */ public static final int AnimatedStateListDrawableTransition_android_fromId=2; /** * <p> * @attr description * Whether this transition is reversible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:reversible */ public static final int AnimatedStateListDrawableTransition_android_reversible=3; /** * Attributes that can be used with a AppBarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_elevation com.companyname.yondr_finance:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #AppBarLayout_expanded com.companyname.yondr_finance:expanded}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_liftOnScroll com.companyname.yondr_finance:liftOnScroll}</code></td><td></td></tr> * </table> * @see #AppBarLayout_android_background * @see #AppBarLayout_android_touchscreenBlocksFocus * @see #AppBarLayout_android_keyboardNavigationCluster * @see #AppBarLayout_elevation * @see #AppBarLayout_expanded * @see #AppBarLayout_liftOnScroll */ public static final int[] AppBarLayout={ 0x010100d4, 0x0101048f, 0x01010540, 0x7f0300b7, 0x7f0300bd, 0x7f030118 }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:background */ public static final int AppBarLayout_android_background=0; /** * <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:touchscreenBlocksFocus */ public static final int AppBarLayout_android_touchscreenBlocksFocus=1; /** * <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:keyboardNavigationCluster */ public static final int AppBarLayout_android_keyboardNavigationCluster=2; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:elevation */ public static final int AppBarLayout_elevation=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#expanded} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:expanded */ public static final int AppBarLayout_expanded=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#liftOnScroll} * attribute's value can be found in the {@link #AppBarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:liftOnScroll */ public static final int AppBarLayout_liftOnScroll=5; /** * Attributes that can be used with a AppBarLayoutStates. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.companyname.yondr_finance:state_collapsed}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.companyname.yondr_finance:state_collapsible}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_liftable com.companyname.yondr_finance:state_liftable}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayoutStates_state_lifted com.companyname.yondr_finance:state_lifted}</code></td><td></td></tr> * </table> * @see #AppBarLayoutStates_state_collapsed * @see #AppBarLayoutStates_state_collapsible * @see #AppBarLayoutStates_state_liftable * @see #AppBarLayoutStates_state_lifted */ public static final int[] AppBarLayoutStates={ 0x7f030178, 0x7f030179, 0x7f03017b, 0x7f03017c }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#state_collapsed} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#state_collapsible} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:state_collapsible */ public static final int AppBarLayoutStates_state_collapsible=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#state_liftable} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:state_liftable */ public static final int AppBarLayoutStates_state_liftable=2; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#state_lifted} * attribute's value can be found in the {@link #AppBarLayoutStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:state_lifted */ public static final int AppBarLayoutStates_state_lifted=3; /** * Attributes that can be used with a AppBarLayout_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags com.companyname.yondr_finance:layout_scrollFlags}</code></td><td></td></tr> * <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.companyname.yondr_finance:layout_scrollInterpolator}</code></td><td></td></tr> * </table> * @see #AppBarLayout_Layout_layout_scrollFlags * @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout={ 0x7f030116, 0x7f030117 }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#layout_scrollFlags} * attribute's value can be found in the {@link #AppBarLayout_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>enterAlways</td><td>4</td><td></td></tr> * <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr> * <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr> * <tr><td>scroll</td><td>1</td><td></td></tr> * <tr><td>snap</td><td>10</td><td></td></tr> * <tr><td>snapMargins</td><td>20</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#layout_scrollInterpolator} * attribute's value can be found in the {@link #AppBarLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:layout_scrollInterpolator */ public static final int AppBarLayout_Layout_layout_scrollInterpolator=1; /** * Attributes that can be used with a AppCompatImageView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatImageView_srcCompat com.companyname.yondr_finance:srcCompat}</code></td><td>Sets a drawable as the content of this ImageView.</td></tr> * <tr><td><code>{@link #AppCompatImageView_tint com.companyname.yondr_finance:tint}</code></td><td>Tint to apply to the image source.</td></tr> * <tr><td><code>{@link #AppCompatImageView_tintMode com.companyname.yondr_finance:tintMode}</code></td><td>Blending mode used to apply the image source tint.</td></tr> * </table> * @see #AppCompatImageView_android_src * @see #AppCompatImageView_srcCompat * @see #AppCompatImageView_tint * @see #AppCompatImageView_tintMode */ public static final int[] AppCompatImageView={ 0x01010119, 0x7f030175, 0x7f0301c9, 0x7f0301ca }; /** * <p>This symbol is the offset where the {@link android.R.attr#src} * attribute's value can be found in the {@link #AppCompatImageView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:src */ public static final int AppCompatImageView_android_src=0; /** * <p> * @attr description * Sets a drawable as the content of this ImageView. Allows the use of vector drawable * when running on older versions of the platform. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:srcCompat */ public static final int AppCompatImageView_srcCompat=1; /** * <p> * @attr description * Tint to apply to the image source. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:tint */ public static final int AppCompatImageView_tint=2; /** * <p> * @attr description * Blending mode used to apply the image source tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.yondr_finance:tintMode */ public static final int AppCompatImageView_tintMode=3; /** * Attributes that can be used with a AppCompatSeekBar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMark com.companyname.yondr_finance:tickMark}</code></td><td>Drawable displayed at each progress position on a seekbar.</td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.companyname.yondr_finance:tickMarkTint}</code></td><td>Tint to apply to the tick mark drawable.</td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.companyname.yondr_finance:tickMarkTintMode}</code></td><td>Blending mode used to apply the tick mark tint.</td></tr> * </table> * @see #AppCompatSeekBar_android_thumb * @see #AppCompatSeekBar_tickMark * @see #AppCompatSeekBar_tickMarkTint * @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar={ 0x01010142, 0x7f0301c6, 0x7f0301c7, 0x7f0301c8 }; /** * <p>This symbol is the offset where the {@link android.R.attr#thumb} * attribute's value can be found in the {@link #AppCompatSeekBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb=0; /** * <p> * @attr description * Drawable displayed at each progress position on a seekbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:tickMark */ public static final int AppCompatSeekBar_tickMark=1; /** * <p> * @attr description * Tint to apply to the tick mark drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint=2; /** * <p> * @attr description * Blending mode used to apply the tick mark tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.yondr_finance:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode=3; /** * Attributes that can be used with a AppCompatTextHelper. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> * </table> * @see #AppCompatTextHelper_android_textAppearance * @see #AppCompatTextHelper_android_drawableTop * @see #AppCompatTextHelper_android_drawableBottom * @see #AppCompatTextHelper_android_drawableLeft * @see #AppCompatTextHelper_android_drawableRight * @see #AppCompatTextHelper_android_drawableStart * @see #AppCompatTextHelper_android_drawableEnd */ public static final int[] AppCompatTextHelper={ 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableTop} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop=1; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom=2; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft=3; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableRight} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight=4; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableStart} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart=5; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd=6; /** * Attributes that can be used with a AppCompatTextView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize com.companyname.yondr_finance:autoSizeMaxTextSize}</code></td><td>The maximum text size constraint to be used when auto-sizing text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.companyname.yondr_finance:autoSizeMinTextSize}</code></td><td>The minimum text size constraint to be used when auto-sizing text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.companyname.yondr_finance:autoSizePresetSizes}</code></td><td>Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.companyname.yondr_finance:autoSizeStepGranularity}</code></td><td>Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.companyname.yondr_finance:autoSizeTextType}</code></td><td>Specify the type of auto-size.</td></tr> * <tr><td><code>{@link #AppCompatTextView_firstBaselineToTopHeight com.companyname.yondr_finance:firstBaselineToTopHeight}</code></td><td>Distance from the top of the TextView to the first text baseline.</td></tr> * <tr><td><code>{@link #AppCompatTextView_fontFamily com.companyname.yondr_finance:fontFamily}</code></td><td>The attribute for the font family.</td></tr> * <tr><td><code>{@link #AppCompatTextView_lastBaselineToBottomHeight com.companyname.yondr_finance:lastBaselineToBottomHeight}</code></td><td>Distance from the bottom of the TextView to the last text baseline.</td></tr> * <tr><td><code>{@link #AppCompatTextView_lineHeight com.companyname.yondr_finance:lineHeight}</code></td><td>Explicit height between lines of text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_textAllCaps com.companyname.yondr_finance:textAllCaps}</code></td><td>Present the text in ALL CAPS.</td></tr> * </table> * @see #AppCompatTextView_android_textAppearance * @see #AppCompatTextView_autoSizeMaxTextSize * @see #AppCompatTextView_autoSizeMinTextSize * @see #AppCompatTextView_autoSizePresetSizes * @see #AppCompatTextView_autoSizeStepGranularity * @see #AppCompatTextView_autoSizeTextType * @see #AppCompatTextView_firstBaselineToTopHeight * @see #AppCompatTextView_fontFamily * @see #AppCompatTextView_lastBaselineToBottomHeight * @see #AppCompatTextView_lineHeight * @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView={ 0x01010034, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x7f030030, 0x7f0300d0, 0x7f0300d3, 0x7f03010b, 0x7f030119, 0x7f0301a6 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #AppCompatTextView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance=0; /** * <p> * @attr description * The maximum text size constraint to be used when auto-sizing text. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize=1; /** * <p> * @attr description * The minimum text size constraint to be used when auto-sizing text. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize=2; /** * <p> * @attr description * Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides * <code>autoSizeStepGranularity</code> if set. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes=3; /** * <p> * @attr description * Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>. The default is 1px. Overwrites * <code>autoSizePresetSizes</code> if set. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity=4; /** * <p> * @attr description * Specify the type of auto-size. Note that this feature is not supported by EditText, * works only for TextView. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td>No auto-sizing (default).</td></tr> * <tr><td>uniform</td><td>1</td><td>Uniform horizontal and vertical text size scaling to fit within the * container.</td></tr> * </table> * * @attr name com.companyname.yondr_finance:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType=5; /** * <p> * @attr description * Distance from the top of the TextView to the first text baseline. If set, this * overrides the value set for paddingTop. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:firstBaselineToTopHeight */ public static final int AppCompatTextView_firstBaselineToTopHeight=6; /** * <p> * @attr description * The attribute for the font family. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:fontFamily */ public static final int AppCompatTextView_fontFamily=7; /** * <p> * @attr description * Distance from the bottom of the TextView to the last text baseline. If set, this * overrides the value set for paddingBottom. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:lastBaselineToBottomHeight */ public static final int AppCompatTextView_lastBaselineToBottomHeight=8; /** * <p> * @attr description * Explicit height between lines of text. If set, this will override the values set * for lineSpacingExtra and lineSpacingMultiplier. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:lineHeight */ public static final int AppCompatTextView_lineHeight=9; /** * <p> * @attr description * Present the text in ALL CAPS. This may use a small-caps form when available. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:textAllCaps */ public static final int AppCompatTextView_textAllCaps=10; /** * Attributes that can be used with a AppCompatTheme. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.companyname.yondr_finance:actionBarDivider}</code></td><td>Custom divider drawable to use for elements in the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.companyname.yondr_finance:actionBarItemBackground}</code></td><td>Custom item state list drawable background for action bar items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.companyname.yondr_finance:actionBarPopupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSize com.companyname.yondr_finance:actionBarSize}</code></td><td>Size of the Action Bar, including the contextual * bar used to present Action Modes.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.companyname.yondr_finance:actionBarSplitStyle}</code></td><td>Reference to a style for the split Action Bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.companyname.yondr_finance:actionBarStyle}</code></td><td>Reference to a style for the Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.yondr_finance:actionBarTabBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.companyname.yondr_finance:actionBarTabStyle}</code></td><td>Default style for tabs within an action bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.yondr_finance:actionBarTabTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.companyname.yondr_finance:actionBarTheme}</code></td><td>Reference to a theme that should be used to inflate the * action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.yondr_finance:actionBarWidgetTheme}</code></td><td>Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.companyname.yondr_finance:actionButtonStyle}</code></td><td>Default action button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.companyname.yondr_finance:actionDropDownStyle}</code></td><td>Default ActionBar dropdown style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.yondr_finance:actionMenuTextAppearance}</code></td><td>TextAppearance style that will be applied to text that * appears within action menu items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.companyname.yondr_finance:actionMenuTextColor}</code></td><td>Color for text that appears within action menu items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.companyname.yondr_finance:actionModeBackground}</code></td><td>Background drawable to use for action mode UI</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.yondr_finance:actionModeCloseButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.yondr_finance:actionModeCloseDrawable}</code></td><td>Drawable to use for the close action mode button</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.yondr_finance:actionModeCopyDrawable}</code></td><td>Drawable to use for the Copy action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.companyname.yondr_finance:actionModeCutDrawable}</code></td><td>Drawable to use for the Cut action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.companyname.yondr_finance:actionModeFindDrawable}</code></td><td>Drawable to use for the Find action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.companyname.yondr_finance:actionModePasteDrawable}</code></td><td>Drawable to use for the Paste action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.yondr_finance:actionModePopupWindowStyle}</code></td><td>PopupWindow style to use for action modes when showing as a window overlay.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.yondr_finance:actionModeSelectAllDrawable}</code></td><td>Drawable to use for the Select all action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.companyname.yondr_finance:actionModeShareDrawable}</code></td><td>Drawable to use for the Share action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.companyname.yondr_finance:actionModeSplitBackground}</code></td><td>Background drawable to use for action mode UI in the lower split bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.companyname.yondr_finance:actionModeStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.yondr_finance:actionModeWebSearchDrawable}</code></td><td>Drawable to use for the Web Search action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.yondr_finance:actionOverflowButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.yondr_finance:actionOverflowMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.companyname.yondr_finance:activityChooserViewStyle}</code></td><td>Default ActivityChooserView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.yondr_finance:alertDialogButtonGroupStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.yondr_finance:alertDialogCenterButtons}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.companyname.yondr_finance:alertDialogStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.companyname.yondr_finance:alertDialogTheme}</code></td><td>Theme to use for alert dialogs spawned from this theme.</td></tr> * <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.companyname.yondr_finance:autoCompleteTextViewStyle}</code></td><td>Default AutoCompleteTextView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.companyname.yondr_finance:borderlessButtonStyle}</code></td><td>Style for buttons without an explicit border, often used in groups.</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.yondr_finance:buttonBarButtonStyle}</code></td><td>Style for buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.yondr_finance:buttonBarNegativeButtonStyle}</code></td><td>Style for the "negative" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.yondr_finance:buttonBarNeutralButtonStyle}</code></td><td>Style for the "neutral" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.yondr_finance:buttonBarPositiveButtonStyle}</code></td><td>Style for the "positive" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.companyname.yondr_finance:buttonBarStyle}</code></td><td>Style for button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyle com.companyname.yondr_finance:buttonStyle}</code></td><td>Normal Button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.companyname.yondr_finance:buttonStyleSmall}</code></td><td>Small Button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.companyname.yondr_finance:checkboxStyle}</code></td><td>Default Checkbox style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.companyname.yondr_finance:checkedTextViewStyle}</code></td><td>Default CheckedTextView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorAccent com.companyname.yondr_finance:colorAccent}</code></td><td>Bright complement to the primary branding color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.companyname.yondr_finance:colorBackgroundFloating}</code></td><td>Default color of background imagery for floating components, ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.companyname.yondr_finance:colorButtonNormal}</code></td><td>The color applied to framework buttons in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.companyname.yondr_finance:colorControlActivated}</code></td><td>The color applied to framework controls in their activated (ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.companyname.yondr_finance:colorControlHighlight}</code></td><td>The color applied to framework control highlights (ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.companyname.yondr_finance:colorControlNormal}</code></td><td>The color applied to framework controls in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorError com.companyname.yondr_finance:colorError}</code></td><td>Color used for error states and things that need to be drawn to * the user's attention.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimary com.companyname.yondr_finance:colorPrimary}</code></td><td>The primary branding color for the app.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.companyname.yondr_finance:colorPrimaryDark}</code></td><td>Dark variant of the primary branding color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.yondr_finance:colorSwitchThumbNormal}</code></td><td>The color applied to framework switch thumbs in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_controlBackground com.companyname.yondr_finance:controlBackground}</code></td><td>The background used by framework controls.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogCornerRadius com.companyname.yondr_finance:dialogCornerRadius}</code></td><td>Preferred corner radius of dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.companyname.yondr_finance:dialogPreferredPadding}</code></td><td>Preferred padding for dialog content.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogTheme com.companyname.yondr_finance:dialogTheme}</code></td><td>Theme to use for dialogs spawned from this theme.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.companyname.yondr_finance:dividerHorizontal}</code></td><td>A drawable that may be used as a horizontal divider between visual elements.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerVertical com.companyname.yondr_finance:dividerVertical}</code></td><td>A drawable that may be used as a vertical divider between visual elements.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.companyname.yondr_finance:dropDownListViewStyle}</code></td><td>ListPopupWindow compatibility</td></tr> * <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.yondr_finance:dropdownListPreferredItemHeight}</code></td><td>The preferred item height for dropdown lists.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextBackground com.companyname.yondr_finance:editTextBackground}</code></td><td>EditText background drawable.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextColor com.companyname.yondr_finance:editTextColor}</code></td><td>EditText text foreground color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextStyle com.companyname.yondr_finance:editTextStyle}</code></td><td>Default EditText style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.companyname.yondr_finance:homeAsUpIndicator}</code></td><td>Specifies a drawable to use for the 'home as up' indicator.</td></tr> * <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.companyname.yondr_finance:imageButtonStyle}</code></td><td>ImageButton background drawable.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.yondr_finance:listChoiceBackgroundIndicator}</code></td><td>Drawable used as a background for selected list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.companyname.yondr_finance:listDividerAlertDialog}</code></td><td>The list divider used in alert dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.companyname.yondr_finance:listMenuViewStyle}</code></td><td>Default menu-style ListView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.companyname.yondr_finance:listPopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.companyname.yondr_finance:listPreferredItemHeight}</code></td><td>The preferred list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.yondr_finance:listPreferredItemHeightLarge}</code></td><td>A larger, more robust list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.yondr_finance:listPreferredItemHeightSmall}</code></td><td>A smaller, sleeker list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.yondr_finance:listPreferredItemPaddingLeft}</code></td><td>The preferred padding along the left edge of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.yondr_finance:listPreferredItemPaddingRight}</code></td><td>The preferred padding along the right edge of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelBackground com.companyname.yondr_finance:panelBackground}</code></td><td>The background of a panel when it is inset from the left and right edges of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.companyname.yondr_finance:panelMenuListTheme}</code></td><td>Default Panel Menu style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.companyname.yondr_finance:panelMenuListWidth}</code></td><td>Default Panel Menu width.</td></tr> * <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.companyname.yondr_finance:popupMenuStyle}</code></td><td>Default PopupMenu style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.companyname.yondr_finance:popupWindowStyle}</code></td><td>Default PopupWindow style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.companyname.yondr_finance:radioButtonStyle}</code></td><td>Default RadioButton style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.companyname.yondr_finance:ratingBarStyle}</code></td><td>Default RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.yondr_finance:ratingBarStyleIndicator}</code></td><td>Indicator RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.yondr_finance:ratingBarStyleSmall}</code></td><td>Small indicator RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.companyname.yondr_finance:searchViewStyle}</code></td><td>Style for the search query widget.</td></tr> * <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.companyname.yondr_finance:seekBarStyle}</code></td><td>Default SeekBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.companyname.yondr_finance:selectableItemBackground}</code></td><td>A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges.</td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.yondr_finance:selectableItemBackgroundBorderless}</code></td><td>Background drawable for borderless standalone items that need focus/pressed states.</td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.yondr_finance:spinnerDropDownItemStyle}</code></td><td>Default Spinner style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.companyname.yondr_finance:spinnerStyle}</code></td><td>Default Spinner style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_switchStyle com.companyname.yondr_finance:switchStyle}</code></td><td>Default style for the Switch widget.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.yondr_finance:textAppearanceLargePopupMenu}</code></td><td>Text color, typeface, size, and style for the text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.companyname.yondr_finance:textAppearanceListItem}</code></td><td>The preferred TextAppearance for the primary text of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.companyname.yondr_finance:textAppearanceListItemSecondary}</code></td><td>The preferred TextAppearance for the secondary text of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.yondr_finance:textAppearanceListItemSmall}</code></td><td>The preferred TextAppearance for the primary text of small list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.companyname.yondr_finance:textAppearancePopupMenuHeader}</code></td><td>Text color, typeface, size, and style for header text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.yondr_finance:textAppearanceSearchResultSubtitle}</code></td><td>Text color, typeface, size, and style for system search result subtitle.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.yondr_finance:textAppearanceSearchResultTitle}</code></td><td>Text color, typeface, size, and style for system search result title.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.yondr_finance:textAppearanceSmallPopupMenu}</code></td><td>Text color, typeface, size, and style for small text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.yondr_finance:textColorAlertDialogListItem}</code></td><td>Color of list item text in alert dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.companyname.yondr_finance:textColorSearchUrl}</code></td><td>Text color for urls in search suggestions, used by things like global search</td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.yondr_finance:toolbarNavigationButtonStyle}</code></td><td>Default Toolar NavigationButtonStyle</td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.companyname.yondr_finance:toolbarStyle}</code></td><td>Default Toolbar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.companyname.yondr_finance:tooltipForegroundColor}</code></td><td>Foreground color to use for tooltips</td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.companyname.yondr_finance:tooltipFrameBackground}</code></td><td>Background to use for tooltips</td></tr> * <tr><td><code>{@link #AppCompatTheme_viewInflaterClass com.companyname.yondr_finance:viewInflaterClass}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBar com.companyname.yondr_finance:windowActionBar}</code></td><td>Flag indicating whether this window should have an Action Bar * in place of the usual title bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.companyname.yondr_finance:windowActionBarOverlay}</code></td><td>Flag indicating whether this window's Action Bar should overlay * application content.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.companyname.yondr_finance:windowActionModeOverlay}</code></td><td>Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar).</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.yondr_finance:windowFixedHeightMajor}</code></td><td>A fixed height for the window along the major axis of the screen, * that is, when in portrait.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.yondr_finance:windowFixedHeightMinor}</code></td><td>A fixed height for the window along the minor axis of the screen, * that is, when in landscape.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.yondr_finance:windowFixedWidthMajor}</code></td><td>A fixed width for the window along the major axis of the screen, * that is, when in landscape.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.yondr_finance:windowFixedWidthMinor}</code></td><td>A fixed width for the window along the minor axis of the screen, * that is, when in portrait.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.companyname.yondr_finance:windowMinWidthMajor}</code></td><td>The minimum width the window is allowed to be, along the major * axis of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.companyname.yondr_finance:windowMinWidthMinor}</code></td><td>The minimum width the window is allowed to be, along the minor * axis of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.companyname.yondr_finance:windowNoTitle}</code></td><td>Flag indicating whether there should be no title on this window.</td></tr> * </table> * @see #AppCompatTheme_android_windowIsFloating * @see #AppCompatTheme_android_windowAnimationStyle * @see #AppCompatTheme_actionBarDivider * @see #AppCompatTheme_actionBarItemBackground * @see #AppCompatTheme_actionBarPopupTheme * @see #AppCompatTheme_actionBarSize * @see #AppCompatTheme_actionBarSplitStyle * @see #AppCompatTheme_actionBarStyle * @see #AppCompatTheme_actionBarTabBarStyle * @see #AppCompatTheme_actionBarTabStyle * @see #AppCompatTheme_actionBarTabTextStyle * @see #AppCompatTheme_actionBarTheme * @see #AppCompatTheme_actionBarWidgetTheme * @see #AppCompatTheme_actionButtonStyle * @see #AppCompatTheme_actionDropDownStyle * @see #AppCompatTheme_actionMenuTextAppearance * @see #AppCompatTheme_actionMenuTextColor * @see #AppCompatTheme_actionModeBackground * @see #AppCompatTheme_actionModeCloseButtonStyle * @see #AppCompatTheme_actionModeCloseDrawable * @see #AppCompatTheme_actionModeCopyDrawable * @see #AppCompatTheme_actionModeCutDrawable * @see #AppCompatTheme_actionModeFindDrawable * @see #AppCompatTheme_actionModePasteDrawable * @see #AppCompatTheme_actionModePopupWindowStyle * @see #AppCompatTheme_actionModeSelectAllDrawable * @see #AppCompatTheme_actionModeShareDrawable * @see #AppCompatTheme_actionModeSplitBackground * @see #AppCompatTheme_actionModeStyle * @see #AppCompatTheme_actionModeWebSearchDrawable * @see #AppCompatTheme_actionOverflowButtonStyle * @see #AppCompatTheme_actionOverflowMenuStyle * @see #AppCompatTheme_activityChooserViewStyle * @see #AppCompatTheme_alertDialogButtonGroupStyle * @see #AppCompatTheme_alertDialogCenterButtons * @see #AppCompatTheme_alertDialogStyle * @see #AppCompatTheme_alertDialogTheme * @see #AppCompatTheme_autoCompleteTextViewStyle * @see #AppCompatTheme_borderlessButtonStyle * @see #AppCompatTheme_buttonBarButtonStyle * @see #AppCompatTheme_buttonBarNegativeButtonStyle * @see #AppCompatTheme_buttonBarNeutralButtonStyle * @see #AppCompatTheme_buttonBarPositiveButtonStyle * @see #AppCompatTheme_buttonBarStyle * @see #AppCompatTheme_buttonStyle * @see #AppCompatTheme_buttonStyleSmall * @see #AppCompatTheme_checkboxStyle * @see #AppCompatTheme_checkedTextViewStyle * @see #AppCompatTheme_colorAccent * @see #AppCompatTheme_colorBackgroundFloating * @see #AppCompatTheme_colorButtonNormal * @see #AppCompatTheme_colorControlActivated * @see #AppCompatTheme_colorControlHighlight * @see #AppCompatTheme_colorControlNormal * @see #AppCompatTheme_colorError * @see #AppCompatTheme_colorPrimary * @see #AppCompatTheme_colorPrimaryDark * @see #AppCompatTheme_colorSwitchThumbNormal * @see #AppCompatTheme_controlBackground * @see #AppCompatTheme_dialogCornerRadius * @see #AppCompatTheme_dialogPreferredPadding * @see #AppCompatTheme_dialogTheme * @see #AppCompatTheme_dividerHorizontal * @see #AppCompatTheme_dividerVertical * @see #AppCompatTheme_dropDownListViewStyle * @see #AppCompatTheme_dropdownListPreferredItemHeight * @see #AppCompatTheme_editTextBackground * @see #AppCompatTheme_editTextColor * @see #AppCompatTheme_editTextStyle * @see #AppCompatTheme_homeAsUpIndicator * @see #AppCompatTheme_imageButtonStyle * @see #AppCompatTheme_listChoiceBackgroundIndicator * @see #AppCompatTheme_listDividerAlertDialog * @see #AppCompatTheme_listMenuViewStyle * @see #AppCompatTheme_listPopupWindowStyle * @see #AppCompatTheme_listPreferredItemHeight * @see #AppCompatTheme_listPreferredItemHeightLarge * @see #AppCompatTheme_listPreferredItemHeightSmall * @see #AppCompatTheme_listPreferredItemPaddingLeft * @see #AppCompatTheme_listPreferredItemPaddingRight * @see #AppCompatTheme_panelBackground * @see #AppCompatTheme_panelMenuListTheme * @see #AppCompatTheme_panelMenuListWidth * @see #AppCompatTheme_popupMenuStyle * @see #AppCompatTheme_popupWindowStyle * @see #AppCompatTheme_radioButtonStyle * @see #AppCompatTheme_ratingBarStyle * @see #AppCompatTheme_ratingBarStyleIndicator * @see #AppCompatTheme_ratingBarStyleSmall * @see #AppCompatTheme_searchViewStyle * @see #AppCompatTheme_seekBarStyle * @see #AppCompatTheme_selectableItemBackground * @see #AppCompatTheme_selectableItemBackgroundBorderless * @see #AppCompatTheme_spinnerDropDownItemStyle * @see #AppCompatTheme_spinnerStyle * @see #AppCompatTheme_switchStyle * @see #AppCompatTheme_textAppearanceLargePopupMenu * @see #AppCompatTheme_textAppearanceListItem * @see #AppCompatTheme_textAppearanceListItemSecondary * @see #AppCompatTheme_textAppearanceListItemSmall * @see #AppCompatTheme_textAppearancePopupMenuHeader * @see #AppCompatTheme_textAppearanceSearchResultSubtitle * @see #AppCompatTheme_textAppearanceSearchResultTitle * @see #AppCompatTheme_textAppearanceSmallPopupMenu * @see #AppCompatTheme_textColorAlertDialogListItem * @see #AppCompatTheme_textColorSearchUrl * @see #AppCompatTheme_toolbarNavigationButtonStyle * @see #AppCompatTheme_toolbarStyle * @see #AppCompatTheme_tooltipForegroundColor * @see #AppCompatTheme_tooltipFrameBackground * @see #AppCompatTheme_viewInflaterClass * @see #AppCompatTheme_windowActionBar * @see #AppCompatTheme_windowActionBarOverlay * @see #AppCompatTheme_windowActionModeOverlay * @see #AppCompatTheme_windowFixedHeightMajor * @see #AppCompatTheme_windowFixedHeightMinor * @see #AppCompatTheme_windowFixedWidthMajor * @see #AppCompatTheme_windowFixedWidthMinor * @see #AppCompatTheme_windowMinWidthMajor * @see #AppCompatTheme_windowMinWidthMinor * @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme={ 0x01010057, 0x010100ae, 0x7f030000, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024, 0x7f030025, 0x7f03002b, 0x7f03003e, 0x7f03004c, 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030054, 0x7f030055, 0x7f03005f, 0x7f030065, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03008c, 0x7f03008d, 0x7f03008f, 0x7f03009e, 0x7f0300a8, 0x7f0300a9, 0x7f0300aa, 0x7f0300ad, 0x7f0300af, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300b5, 0x7f0300b6, 0x7f0300eb, 0x7f0300f7, 0x7f03011b, 0x7f03011c, 0x7f03011f, 0x7f030120, 0x7f030121, 0x7f030122, 0x7f030123, 0x7f030124, 0x7f030125, 0x7f03013a, 0x7f03013b, 0x7f03013c, 0x7f030142, 0x7f030144, 0x7f03014b, 0x7f03014c, 0x7f03014d, 0x7f03014e, 0x7f030156, 0x7f030157, 0x7f030164, 0x7f030165, 0x7f030172, 0x7f030173, 0x7f03018a, 0x7f0301b1, 0x7f0301b2, 0x7f0301b3, 0x7f0301b4, 0x7f0301b6, 0x7f0301b7, 0x7f0301b8, 0x7f0301b9, 0x7f0301bc, 0x7f0301bd, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f0301e1, 0x7f0301e3, 0x7f0301e4, 0x7f0301e5, 0x7f0301e6, 0x7f0301e7, 0x7f0301e8, 0x7f0301e9, 0x7f0301ea, 0x7f0301eb, 0x7f0301ec }; /** * <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating=0; /** * <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle=1; /** * <p> * @attr description * Custom divider drawable to use for elements in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider=2; /** * <p> * @attr description * Custom item state list drawable background for action bar items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground=3; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme=4; /** * <p> * @attr description * Size of the Action Bar, including the contextual * bar used to present Action Modes. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap_content</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:actionBarSize */ public static final int AppCompatTheme_actionBarSize=5; /** * <p> * @attr description * Reference to a style for the split Action Bar. This style * controls the split component that holds the menu/action * buttons. actionBarStyle is still used for the primary * bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle=6; /** * <p> * @attr description * Reference to a style for the Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle=7; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#actionBarTabBarStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle=8; /** * <p> * @attr description * Default style for tabs within an action bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle=9; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#actionBarTabTextStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle=10; /** * <p> * @attr description * Reference to a theme that should be used to inflate the * action bar. This will be inherited by any widget inflated * into the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme=11; /** * <p> * @attr description * Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar. Most of the time * this will be a reference to the current theme, but when * the action bar has a significantly different contrast * profile than the rest of the activity the difference * can become important. If this is set to @null the current * theme will be used. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme=12; /** * <p> * @attr description * Default action button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle=13; /** * <p> * @attr description * Default ActionBar dropdown style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle=14; /** * <p> * @attr description * TextAppearance style that will be applied to text that * appears within action menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance=15; /** * <p> * @attr description * Color for text that appears within action menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor=16; /** * <p> * @attr description * Background drawable to use for action mode UI * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground=17; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#actionModeCloseButtonStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle=18; /** * <p> * @attr description * Drawable to use for the close action mode button * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable=19; /** * <p> * @attr description * Drawable to use for the Copy action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable=20; /** * <p> * @attr description * Drawable to use for the Cut action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable=21; /** * <p> * @attr description * Drawable to use for the Find action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable=22; /** * <p> * @attr description * Drawable to use for the Paste action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable=23; /** * <p> * @attr description * PopupWindow style to use for action modes when showing as a window overlay. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle=24; /** * <p> * @attr description * Drawable to use for the Select all action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable=25; /** * <p> * @attr description * Drawable to use for the Share action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable=26; /** * <p> * @attr description * Background drawable to use for action mode UI in the lower split bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground=27; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#actionModeStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle=28; /** * <p> * @attr description * Drawable to use for the Web Search action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable=29; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#actionOverflowButtonStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle=30; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#actionOverflowMenuStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle=31; /** * <p> * @attr description * Default ActivityChooserView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle=32; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#alertDialogButtonGroupStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#alertDialogCenterButtons} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons=34; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#alertDialogStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle=35; /** * <p> * @attr description * Theme to use for alert dialogs spawned from this theme. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme=36; /** * <p> * @attr description * Default AutoCompleteTextView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle=37; /** * <p> * @attr description * Style for buttons without an explicit border, often used in groups. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle=38; /** * <p> * @attr description * Style for buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle=39; /** * <p> * @attr description * Style for the "negative" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; /** * <p> * @attr description * Style for the "neutral" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; /** * <p> * @attr description * Style for the "positive" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; /** * <p> * @attr description * Style for button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle=43; /** * <p> * @attr description * Normal Button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:buttonStyle */ public static final int AppCompatTheme_buttonStyle=44; /** * <p> * @attr description * Small Button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall=45; /** * <p> * @attr description * Default Checkbox style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle=46; /** * <p> * @attr description * Default CheckedTextView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle=47; /** * <p> * @attr description * Bright complement to the primary branding color. By default, this is the color applied * to framework controls (via colorControlActivated). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorAccent */ public static final int AppCompatTheme_colorAccent=48; /** * <p> * @attr description * Default color of background imagery for floating components, ex. dialogs, popups, and cards. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating=49; /** * <p> * @attr description * The color applied to framework buttons in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal=50; /** * <p> * @attr description * The color applied to framework controls in their activated (ex. checked) state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated=51; /** * <p> * @attr description * The color applied to framework control highlights (ex. ripples, list selectors). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight=52; /** * <p> * @attr description * The color applied to framework controls in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal=53; /** * <p> * @attr description * Color used for error states and things that need to be drawn to * the user's attention. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorError */ public static final int AppCompatTheme_colorError=54; /** * <p> * @attr description * The primary branding color for the app. By default, this is the color applied to the * action bar background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorPrimary */ public static final int AppCompatTheme_colorPrimary=55; /** * <p> * @attr description * Dark variant of the primary branding color. By default, this is the color applied to * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark=56; /** * <p> * @attr description * The color applied to framework switch thumbs in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal=57; /** * <p> * @attr description * The background used by framework controls. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:controlBackground */ public static final int AppCompatTheme_controlBackground=58; /** * <p> * @attr description * Preferred corner radius of dialogs. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:dialogCornerRadius */ public static final int AppCompatTheme_dialogCornerRadius=59; /** * <p> * @attr description * Preferred padding for dialog content. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding=60; /** * <p> * @attr description * Theme to use for dialogs spawned from this theme. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:dialogTheme */ public static final int AppCompatTheme_dialogTheme=61; /** * <p> * @attr description * A drawable that may be used as a horizontal divider between visual elements. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal=62; /** * <p> * @attr description * A drawable that may be used as a vertical divider between visual elements. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:dividerVertical */ public static final int AppCompatTheme_dividerVertical=63; /** * <p> * @attr description * ListPopupWindow compatibility * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle=64; /** * <p> * @attr description * The preferred item height for dropdown lists. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight=65; /** * <p> * @attr description * EditText background drawable. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:editTextBackground */ public static final int AppCompatTheme_editTextBackground=66; /** * <p> * @attr description * EditText text foreground color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:editTextColor */ public static final int AppCompatTheme_editTextColor=67; /** * <p> * @attr description * Default EditText style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:editTextStyle */ public static final int AppCompatTheme_editTextStyle=68; /** * <p> * @attr description * Specifies a drawable to use for the 'home as up' indicator. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator=69; /** * <p> * @attr description * ImageButton background drawable. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle=70; /** * <p> * @attr description * Drawable used as a background for selected list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator=71; /** * <p> * @attr description * The list divider used in alert dialogs. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog=72; /** * <p> * @attr description * Default menu-style ListView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle=73; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#listPopupWindowStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle=74; /** * <p> * @attr description * The preferred list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight=75; /** * <p> * @attr description * A larger, more robust list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge=76; /** * <p> * @attr description * A smaller, sleeker list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall=77; /** * <p> * @attr description * The preferred padding along the left edge of list items. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft=78; /** * <p> * @attr description * The preferred padding along the right edge of list items. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight=79; /** * <p> * @attr description * The background of a panel when it is inset from the left and right edges of the screen. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:panelBackground */ public static final int AppCompatTheme_panelBackground=80; /** * <p> * @attr description * Default Panel Menu style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme=81; /** * <p> * @attr description * Default Panel Menu width. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth=82; /** * <p> * @attr description * Default PopupMenu style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle=83; /** * <p> * @attr description * Default PopupWindow style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle=84; /** * <p> * @attr description * Default RadioButton style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle=85; /** * <p> * @attr description * Default RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle=86; /** * <p> * @attr description * Indicator RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator=87; /** * <p> * @attr description * Small indicator RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall=88; /** * <p> * @attr description * Style for the search query widget. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle=89; /** * <p> * @attr description * Default SeekBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle=90; /** * <p> * @attr description * A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground=91; /** * <p> * @attr description * Background drawable for borderless standalone items that need focus/pressed states. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless=92; /** * <p> * @attr description * Default Spinner style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle=93; /** * <p> * @attr description * Default Spinner style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle=94; /** * <p> * @attr description * Default style for the Switch widget. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:switchStyle */ public static final int AppCompatTheme_switchStyle=95; /** * <p> * @attr description * Text color, typeface, size, and style for the text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu=96; /** * <p> * @attr description * The preferred TextAppearance for the primary text of list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem=97; /** * <p> * @attr description * The preferred TextAppearance for the secondary text of list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary=98; /** * <p> * @attr description * The preferred TextAppearance for the primary text of small list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall=99; /** * <p> * @attr description * Text color, typeface, size, and style for header text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader=100; /** * <p> * @attr description * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=101; /** * <p> * @attr description * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle=102; /** * <p> * @attr description * Text color, typeface, size, and style for small text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu=103; /** * <p> * @attr description * Color of list item text in alert dialogs. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem=104; /** * <p> * @attr description * Text color for urls in search suggestions, used by things like global search * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl=105; /** * <p> * @attr description * Default Toolar NavigationButtonStyle * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle=106; /** * <p> * @attr description * Default Toolbar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle=107; /** * <p> * @attr description * Foreground color to use for tooltips * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor=108; /** * <p> * @attr description * Background to use for tooltips * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground=109; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#viewInflaterClass} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:viewInflaterClass */ public static final int AppCompatTheme_viewInflaterClass=110; /** * <p> * @attr description * Flag indicating whether this window should have an Action Bar * in place of the usual title bar. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:windowActionBar */ public static final int AppCompatTheme_windowActionBar=111; /** * <p> * @attr description * Flag indicating whether this window's Action Bar should overlay * application content. Does nothing if the window would not * have an Action Bar. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay=112; /** * <p> * @attr description * Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay=113; /** * <p> * @attr description * A fixed height for the window along the major axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.yondr_finance:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor=114; /** * <p> * @attr description * A fixed height for the window along the minor axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.yondr_finance:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor=115; /** * <p> * @attr description * A fixed width for the window along the major axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.yondr_finance:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor=116; /** * <p> * @attr description * A fixed width for the window along the minor axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.yondr_finance:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor=117; /** * <p> * @attr description * The minimum width the window is allowed to be, along the major * axis of the screen. That is, when in landscape. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.yondr_finance:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor=118; /** * <p> * @attr description * The minimum width the window is allowed to be, along the minor * axis of the screen. That is, when in portrait. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.yondr_finance:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor=119; /** * <p> * @attr description * Flag indicating whether there should be no title on this window. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle=120; /** * Attributes that can be used with a BottomAppBar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #BottomAppBar_backgroundTint com.companyname.yondr_finance:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr> * <tr><td><code>{@link #BottomAppBar_fabAlignmentMode com.companyname.yondr_finance:fabAlignmentMode}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_fabCradleMargin com.companyname.yondr_finance:fabCradleMargin}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_fabCradleRoundedCornerRadius com.companyname.yondr_finance:fabCradleRoundedCornerRadius}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_fabCradleVerticalOffset com.companyname.yondr_finance:fabCradleVerticalOffset}</code></td><td></td></tr> * <tr><td><code>{@link #BottomAppBar_hideOnScroll com.companyname.yondr_finance:hideOnScroll}</code></td><td></td></tr> * </table> * @see #BottomAppBar_backgroundTint * @see #BottomAppBar_fabAlignmentMode * @see #BottomAppBar_fabCradleMargin * @see #BottomAppBar_fabCradleRoundedCornerRadius * @see #BottomAppBar_fabCradleVerticalOffset * @see #BottomAppBar_hideOnScroll */ public static final int[] BottomAppBar={ 0x7f030034, 0x7f0300c5, 0x7f0300c6, 0x7f0300c7, 0x7f0300c8, 0x7f0300e7 }; /** * <p> * @attr description * Tint to apply to the background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:backgroundTint */ public static final int BottomAppBar_backgroundTint=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#fabAlignmentMode} * attribute's value can be found in the {@link #BottomAppBar} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>center</td><td>0</td><td></td></tr> * <tr><td>end</td><td>1</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:fabAlignmentMode */ public static final int BottomAppBar_fabAlignmentMode=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#fabCradleMargin} * attribute's value can be found in the {@link #BottomAppBar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:fabCradleMargin */ public static final int BottomAppBar_fabCradleMargin=2; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#fabCradleRoundedCornerRadius} * attribute's value can be found in the {@link #BottomAppBar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:fabCradleRoundedCornerRadius */ public static final int BottomAppBar_fabCradleRoundedCornerRadius=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#fabCradleVerticalOffset} * attribute's value can be found in the {@link #BottomAppBar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:fabCradleVerticalOffset */ public static final int BottomAppBar_fabCradleVerticalOffset=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#hideOnScroll} * attribute's value can be found in the {@link #BottomAppBar} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:hideOnScroll */ public static final int BottomAppBar_hideOnScroll=5; /** * Attributes that can be used with a BottomNavigationView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #BottomNavigationView_elevation com.companyname.yondr_finance:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #BottomNavigationView_itemBackground com.companyname.yondr_finance:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemHorizontalTranslationEnabled com.companyname.yondr_finance:itemHorizontalTranslationEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemIconSize com.companyname.yondr_finance:itemIconSize}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemIconTint com.companyname.yondr_finance:itemIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemTextAppearanceActive com.companyname.yondr_finance:itemTextAppearanceActive}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemTextAppearanceInactive com.companyname.yondr_finance:itemTextAppearanceInactive}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_itemTextColor com.companyname.yondr_finance:itemTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_labelVisibilityMode com.companyname.yondr_finance:labelVisibilityMode}</code></td><td></td></tr> * <tr><td><code>{@link #BottomNavigationView_menu com.companyname.yondr_finance:menu}</code></td><td></td></tr> * </table> * @see #BottomNavigationView_elevation * @see #BottomNavigationView_itemBackground * @see #BottomNavigationView_itemHorizontalTranslationEnabled * @see #BottomNavigationView_itemIconSize * @see #BottomNavigationView_itemIconTint * @see #BottomNavigationView_itemTextAppearanceActive * @see #BottomNavigationView_itemTextAppearanceInactive * @see #BottomNavigationView_itemTextColor * @see #BottomNavigationView_labelVisibilityMode * @see #BottomNavigationView_menu */ public static final int[] BottomNavigationView={ 0x7f0300b7, 0x7f0300fd, 0x7f0300ff, 0x7f030101, 0x7f030102, 0x7f030106, 0x7f030107, 0x7f030108, 0x7f03010a, 0x7f03012e }; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:elevation */ public static final int BottomNavigationView_elevation=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemBackground} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:itemBackground */ public static final int BottomNavigationView_itemBackground=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemHorizontalTranslationEnabled} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:itemHorizontalTranslationEnabled */ public static final int BottomNavigationView_itemHorizontalTranslationEnabled=2; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemIconSize} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:itemIconSize */ public static final int BottomNavigationView_itemIconSize=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemIconTint} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:itemIconTint */ public static final int BottomNavigationView_itemIconTint=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemTextAppearanceActive} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:itemTextAppearanceActive */ public static final int BottomNavigationView_itemTextAppearanceActive=5; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemTextAppearanceInactive} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:itemTextAppearanceInactive */ public static final int BottomNavigationView_itemTextAppearanceInactive=6; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemTextColor} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:itemTextColor */ public static final int BottomNavigationView_itemTextColor=7; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#labelVisibilityMode} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>labeled</td><td>1</td><td></td></tr> * <tr><td>selected</td><td>0</td><td></td></tr> * <tr><td>unlabeled</td><td>2</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:labelVisibilityMode */ public static final int BottomNavigationView_labelVisibilityMode=8; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#menu} * attribute's value can be found in the {@link #BottomNavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:menu */ public static final int BottomNavigationView_menu=9; /** * Attributes that can be used with a BottomSheetBehavior_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_fitToContents com.companyname.yondr_finance:behavior_fitToContents}</code></td><td></td></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.companyname.yondr_finance:behavior_hideable}</code></td><td></td></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.companyname.yondr_finance:behavior_peekHeight}</code></td><td></td></tr> * <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.companyname.yondr_finance:behavior_skipCollapsed}</code></td><td></td></tr> * </table> * @see #BottomSheetBehavior_Layout_behavior_fitToContents * @see #BottomSheetBehavior_Layout_behavior_hideable * @see #BottomSheetBehavior_Layout_behavior_peekHeight * @see #BottomSheetBehavior_Layout_behavior_skipCollapsed */ public static final int[] BottomSheetBehavior_Layout={ 0x7f030038, 0x7f030039, 0x7f03003b, 0x7f03003c }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#behavior_fitToContents} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:behavior_fitToContents */ public static final int BottomSheetBehavior_Layout_behavior_fitToContents=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#behavior_hideable} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#behavior_peekHeight} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>ffffffff</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight=2; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#behavior_skipCollapsed} * attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:behavior_skipCollapsed */ public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed=3; /** * Attributes that can be used with a ButtonBarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ButtonBarLayout_allowStacking com.companyname.yondr_finance:allowStacking}</code></td><td>Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side.</td></tr> * </table> * @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout={ 0x7f030026 }; /** * <p> * @attr description * Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:allowStacking */ public static final int ButtonBarLayout_allowStacking=0; /** * Attributes that can be used with a CardView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #CardView_cardBackgroundColor com.companyname.yondr_finance:cardBackgroundColor}</code></td><td>Background color for CardView.</td></tr> * <tr><td><code>{@link #CardView_cardCornerRadius com.companyname.yondr_finance:cardCornerRadius}</code></td><td>Corner radius for CardView.</td></tr> * <tr><td><code>{@link #CardView_cardElevation com.companyname.yondr_finance:cardElevation}</code></td><td>Elevation for CardView.</td></tr> * <tr><td><code>{@link #CardView_cardMaxElevation com.companyname.yondr_finance:cardMaxElevation}</code></td><td>Maximum Elevation for CardView.</td></tr> * <tr><td><code>{@link #CardView_cardPreventCornerOverlap com.companyname.yondr_finance:cardPreventCornerOverlap}</code></td><td>Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners.</td></tr> * <tr><td><code>{@link #CardView_cardUseCompatPadding com.companyname.yondr_finance:cardUseCompatPadding}</code></td><td>Add padding in API v21+ as well to have the same measurements with previous versions.</td></tr> * <tr><td><code>{@link #CardView_contentPadding com.companyname.yondr_finance:contentPadding}</code></td><td>Inner padding between the edges of the Card and children of the CardView.</td></tr> * <tr><td><code>{@link #CardView_contentPaddingBottom com.companyname.yondr_finance:contentPaddingBottom}</code></td><td>Inner padding between the bottom edge of the Card and children of the CardView.</td></tr> * <tr><td><code>{@link #CardView_contentPaddingLeft com.companyname.yondr_finance:contentPaddingLeft}</code></td><td>Inner padding between the left edge of the Card and children of the CardView.</td></tr> * <tr><td><code>{@link #CardView_contentPaddingRight com.companyname.yondr_finance:contentPaddingRight}</code></td><td>Inner padding between the right edge of the Card and children of the CardView.</td></tr> * <tr><td><code>{@link #CardView_contentPaddingTop com.companyname.yondr_finance:contentPaddingTop}</code></td><td>Inner padding between the top edge of the Card and children of the CardView.</td></tr> * </table> * @see #CardView_android_minWidth * @see #CardView_android_minHeight * @see #CardView_cardBackgroundColor * @see #CardView_cardCornerRadius * @see #CardView_cardElevation * @see #CardView_cardMaxElevation * @see #CardView_cardPreventCornerOverlap * @see #CardView_cardUseCompatPadding * @see #CardView_contentPadding * @see #CardView_contentPaddingBottom * @see #CardView_contentPaddingLeft * @see #CardView_contentPaddingRight * @see #CardView_contentPaddingTop */ public static final int[] CardView={ 0x0101013f, 0x01010140, 0x7f030058, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b, 0x7f03009c }; /** * <p> * @attr description * Workaround to read user defined minimum width * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minWidth */ public static final int CardView_android_minWidth=0; /** * <p> * @attr description * Workaround to read user defined minimum height * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minHeight */ public static final int CardView_android_minHeight=1; /** * <p> * @attr description * Background color for CardView. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:cardBackgroundColor */ public static final int CardView_cardBackgroundColor=2; /** * <p> * @attr description * Corner radius for CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:cardCornerRadius */ public static final int CardView_cardCornerRadius=3; /** * <p> * @attr description * Elevation for CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:cardElevation */ public static final int CardView_cardElevation=4; /** * <p> * @attr description * Maximum Elevation for CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:cardMaxElevation */ public static final int CardView_cardMaxElevation=5; /** * <p> * @attr description * Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:cardPreventCornerOverlap */ public static final int CardView_cardPreventCornerOverlap=6; /** * <p> * @attr description * Add padding in API v21+ as well to have the same measurements with previous versions. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:cardUseCompatPadding */ public static final int CardView_cardUseCompatPadding=7; /** * <p> * @attr description * Inner padding between the edges of the Card and children of the CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentPadding */ public static final int CardView_contentPadding=8; /** * <p> * @attr description * Inner padding between the bottom edge of the Card and children of the CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentPaddingBottom */ public static final int CardView_contentPaddingBottom=9; /** * <p> * @attr description * Inner padding between the left edge of the Card and children of the CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentPaddingLeft */ public static final int CardView_contentPaddingLeft=10; /** * <p> * @attr description * Inner padding between the right edge of the Card and children of the CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentPaddingRight */ public static final int CardView_contentPaddingRight=11; /** * <p> * @attr description * Inner padding between the top edge of the Card and children of the CardView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentPaddingTop */ public static final int CardView_contentPaddingTop=12; /** * Attributes that can be used with a Chip. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #Chip_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_ellipsize android:ellipsize}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_text android:text}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_android_checkable android:checkable}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_checkedIcon com.companyname.yondr_finance:checkedIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_checkedIconEnabled com.companyname.yondr_finance:checkedIconEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_checkedIconVisible com.companyname.yondr_finance:checkedIconVisible}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipBackgroundColor com.companyname.yondr_finance:chipBackgroundColor}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipCornerRadius com.companyname.yondr_finance:chipCornerRadius}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipEndPadding com.companyname.yondr_finance:chipEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIcon com.companyname.yondr_finance:chipIcon}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconEnabled com.companyname.yondr_finance:chipIconEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconSize com.companyname.yondr_finance:chipIconSize}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconTint com.companyname.yondr_finance:chipIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipIconVisible com.companyname.yondr_finance:chipIconVisible}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipMinHeight com.companyname.yondr_finance:chipMinHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipStartPadding com.companyname.yondr_finance:chipStartPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipStrokeColor com.companyname.yondr_finance:chipStrokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_chipStrokeWidth com.companyname.yondr_finance:chipStrokeWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIcon com.companyname.yondr_finance:closeIcon}</code></td><td>Close button icon</td></tr> * <tr><td><code>{@link #Chip_closeIconEnabled com.companyname.yondr_finance:closeIconEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconEndPadding com.companyname.yondr_finance:closeIconEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconSize com.companyname.yondr_finance:closeIconSize}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconStartPadding com.companyname.yondr_finance:closeIconStartPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconTint com.companyname.yondr_finance:closeIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_closeIconVisible com.companyname.yondr_finance:closeIconVisible}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_hideMotionSpec com.companyname.yondr_finance:hideMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_iconEndPadding com.companyname.yondr_finance:iconEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_iconStartPadding com.companyname.yondr_finance:iconStartPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_rippleColor com.companyname.yondr_finance:rippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_showMotionSpec com.companyname.yondr_finance:showMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_textEndPadding com.companyname.yondr_finance:textEndPadding}</code></td><td></td></tr> * <tr><td><code>{@link #Chip_textStartPadding com.companyname.yondr_finance:textStartPadding}</code></td><td></td></tr> * </table> * @see #Chip_android_textAppearance * @see #Chip_android_ellipsize * @see #Chip_android_maxWidth * @see #Chip_android_text * @see #Chip_android_checkable * @see #Chip_checkedIcon * @see #Chip_checkedIconEnabled * @see #Chip_checkedIconVisible * @see #Chip_chipBackgroundColor * @see #Chip_chipCornerRadius * @see #Chip_chipEndPadding * @see #Chip_chipIcon * @see #Chip_chipIconEnabled * @see #Chip_chipIconSize * @see #Chip_chipIconTint * @see #Chip_chipIconVisible * @see #Chip_chipMinHeight * @see #Chip_chipStartPadding * @see #Chip_chipStrokeColor * @see #Chip_chipStrokeWidth * @see #Chip_closeIcon * @see #Chip_closeIconEnabled * @see #Chip_closeIconEndPadding * @see #Chip_closeIconSize * @see #Chip_closeIconStartPadding * @see #Chip_closeIconTint * @see #Chip_closeIconVisible * @see #Chip_hideMotionSpec * @see #Chip_iconEndPadding * @see #Chip_iconStartPadding * @see #Chip_rippleColor * @see #Chip_showMotionSpec * @see #Chip_textEndPadding * @see #Chip_textStartPadding */ public static final int[] Chip={ 0x01010034, 0x010100ab, 0x0101011f, 0x0101014f, 0x010101e5, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f03006d, 0x7f03006e, 0x7f03006f, 0x7f030074, 0x7f030075, 0x7f030076, 0x7f030078, 0x7f030079, 0x7f03007a, 0x7f03007b, 0x7f03007c, 0x7f03007d, 0x7f03007e, 0x7f0300e5, 0x7f0300ef, 0x7f0300f3, 0x7f030150, 0x7f030168, 0x7f0301be, 0x7f0301c0 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int Chip_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link android.R.attr#ellipsize} * attribute's value can be found in the {@link #Chip} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>end</td><td>3</td><td></td></tr> * <tr><td>marquee</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>start</td><td>1</td><td></td></tr> * </table> * * @attr name android:ellipsize */ public static final int Chip_android_ellipsize=1; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int Chip_android_maxWidth=2; /** * <p>This symbol is the offset where the {@link android.R.attr#text} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:text */ public static final int Chip_android_text=3; /** * <p>This symbol is the offset where the {@link android.R.attr#checkable} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checkable */ public static final int Chip_android_checkable=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#checkedIcon} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:checkedIcon */ public static final int Chip_checkedIcon=5; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#checkedIconEnabled} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:checkedIconEnabled */ public static final int Chip_checkedIconEnabled=6; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#checkedIconVisible} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:checkedIconVisible */ public static final int Chip_checkedIconVisible=7; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipBackgroundColor} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:chipBackgroundColor */ public static final int Chip_chipBackgroundColor=8; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipCornerRadius} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:chipCornerRadius */ public static final int Chip_chipCornerRadius=9; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipEndPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:chipEndPadding */ public static final int Chip_chipEndPadding=10; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipIcon} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:chipIcon */ public static final int Chip_chipIcon=11; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipIconEnabled} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:chipIconEnabled */ public static final int Chip_chipIconEnabled=12; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipIconSize} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:chipIconSize */ public static final int Chip_chipIconSize=13; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipIconTint} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:chipIconTint */ public static final int Chip_chipIconTint=14; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipIconVisible} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:chipIconVisible */ public static final int Chip_chipIconVisible=15; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipMinHeight} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:chipMinHeight */ public static final int Chip_chipMinHeight=16; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipStartPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:chipStartPadding */ public static final int Chip_chipStartPadding=17; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipStrokeColor} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:chipStrokeColor */ public static final int Chip_chipStrokeColor=18; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipStrokeWidth} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:chipStrokeWidth */ public static final int Chip_chipStrokeWidth=19; /** * <p> * @attr description * Close button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:closeIcon */ public static final int Chip_closeIcon=20; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#closeIconEnabled} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:closeIconEnabled */ public static final int Chip_closeIconEnabled=21; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#closeIconEndPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:closeIconEndPadding */ public static final int Chip_closeIconEndPadding=22; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#closeIconSize} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:closeIconSize */ public static final int Chip_closeIconSize=23; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#closeIconStartPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:closeIconStartPadding */ public static final int Chip_closeIconStartPadding=24; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#closeIconTint} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:closeIconTint */ public static final int Chip_closeIconTint=25; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#closeIconVisible} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:closeIconVisible */ public static final int Chip_closeIconVisible=26; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#hideMotionSpec} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:hideMotionSpec */ public static final int Chip_hideMotionSpec=27; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#iconEndPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:iconEndPadding */ public static final int Chip_iconEndPadding=28; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#iconStartPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:iconStartPadding */ public static final int Chip_iconStartPadding=29; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#rippleColor} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:rippleColor */ public static final int Chip_rippleColor=30; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#showMotionSpec} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:showMotionSpec */ public static final int Chip_showMotionSpec=31; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textEndPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:textEndPadding */ public static final int Chip_textEndPadding=32; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textStartPadding} * attribute's value can be found in the {@link #Chip} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:textStartPadding */ public static final int Chip_textStartPadding=33; /** * Attributes that can be used with a ChipGroup. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ChipGroup_checkedChip com.companyname.yondr_finance:checkedChip}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_chipSpacing com.companyname.yondr_finance:chipSpacing}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_chipSpacingHorizontal com.companyname.yondr_finance:chipSpacingHorizontal}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_chipSpacingVertical com.companyname.yondr_finance:chipSpacingVertical}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_singleLine com.companyname.yondr_finance:singleLine}</code></td><td></td></tr> * <tr><td><code>{@link #ChipGroup_singleSelection com.companyname.yondr_finance:singleSelection}</code></td><td></td></tr> * </table> * @see #ChipGroup_checkedChip * @see #ChipGroup_chipSpacing * @see #ChipGroup_chipSpacingHorizontal * @see #ChipGroup_chipSpacingVertical * @see #ChipGroup_singleLine * @see #ChipGroup_singleSelection */ public static final int[] ChipGroup={ 0x7f030061, 0x7f030070, 0x7f030071, 0x7f030072, 0x7f03016c, 0x7f03016d }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#checkedChip} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:checkedChip */ public static final int ChipGroup_checkedChip=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipSpacing} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:chipSpacing */ public static final int ChipGroup_chipSpacing=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipSpacingHorizontal} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:chipSpacingHorizontal */ public static final int ChipGroup_chipSpacingHorizontal=2; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipSpacingVertical} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:chipSpacingVertical */ public static final int ChipGroup_chipSpacingVertical=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#singleLine} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:singleLine */ public static final int ChipGroup_singleLine=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#singleSelection} * attribute's value can be found in the {@link #ChipGroup} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:singleSelection */ public static final int ChipGroup_singleSelection=5; /** * Attributes that can be used with a CollapsingToolbarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.companyname.yondr_finance:collapsedTitleGravity}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.yondr_finance:collapsedTitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.companyname.yondr_finance:contentScrim}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.yondr_finance:expandedTitleGravity}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.yondr_finance:expandedTitleMargin}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.yondr_finance:expandedTitleMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.yondr_finance:expandedTitleMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.yondr_finance:expandedTitleMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.yondr_finance:expandedTitleMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.yondr_finance:expandedTitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.companyname.yondr_finance:scrimAnimationDuration}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.companyname.yondr_finance:scrimVisibleHeightTrigger}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.yondr_finance:statusBarScrim}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_title com.companyname.yondr_finance:title}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.companyname.yondr_finance:titleEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.companyname.yondr_finance:toolbarId}</code></td><td></td></tr> * </table> * @see #CollapsingToolbarLayout_collapsedTitleGravity * @see #CollapsingToolbarLayout_collapsedTitleTextAppearance * @see #CollapsingToolbarLayout_contentScrim * @see #CollapsingToolbarLayout_expandedTitleGravity * @see #CollapsingToolbarLayout_expandedTitleMargin * @see #CollapsingToolbarLayout_expandedTitleMarginBottom * @see #CollapsingToolbarLayout_expandedTitleMarginEnd * @see #CollapsingToolbarLayout_expandedTitleMarginStart * @see #CollapsingToolbarLayout_expandedTitleMarginTop * @see #CollapsingToolbarLayout_expandedTitleTextAppearance * @see #CollapsingToolbarLayout_scrimAnimationDuration * @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger * @see #CollapsingToolbarLayout_statusBarScrim * @see #CollapsingToolbarLayout_title * @see #CollapsingToolbarLayout_titleEnabled * @see #CollapsingToolbarLayout_toolbarId */ public static final int[] CollapsingToolbarLayout={ 0x7f030082, 0x7f030083, 0x7f03009d, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f0300c3, 0x7f0300c4, 0x7f030151, 0x7f030153, 0x7f03017e, 0x7f0301cb, 0x7f0301cc, 0x7f0301d6 }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#collapsedTitleGravity} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#collapsedTitleTextAppearance} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#contentScrim} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim=2; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#expandedTitleGravity} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#expandedTitleMargin} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#expandedTitleMarginBottom} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom=5; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#expandedTitleMarginEnd} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd=6; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#expandedTitleMarginStart} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart=7; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#expandedTitleMarginTop} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop=8; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#expandedTitleTextAppearance} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance=9; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#scrimAnimationDuration} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.yondr_finance:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration=10; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#scrimVisibleHeightTrigger} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger=11; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#statusBarScrim} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim=12; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#title} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:title */ public static final int CollapsingToolbarLayout_title=13; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#titleEnabled} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled=14; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#toolbarId} * attribute's value can be found in the {@link #CollapsingToolbarLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:toolbarId */ public static final int CollapsingToolbarLayout_toolbarId=15; /** * Attributes that can be used with a CollapsingToolbarLayout_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.companyname.yondr_finance:layout_collapseMode}</code></td><td></td></tr> * <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.companyname.yondr_finance:layout_collapseParallaxMultiplier}</code></td><td></td></tr> * </table> * @see #CollapsingToolbarLayout_Layout_layout_collapseMode * @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout={ 0x7f030111, 0x7f030112 }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#layout_collapseMode} * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>parallax</td><td>2</td><td></td></tr> * <tr><td>pin</td><td>1</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#layout_collapseParallaxMultiplier} * attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.companyname.yondr_finance:layout_collapseParallaxMultiplier */ public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier=1; /** * Attributes that can be used with a ColorStateListItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_alpha com.companyname.yondr_finance:alpha}</code></td><td>Alpha multiplier applied to the base color.</td></tr> * </table> * @see #ColorStateListItem_android_color * @see #ColorStateListItem_android_alpha * @see #ColorStateListItem_alpha */ public static final int[] ColorStateListItem={ 0x010101a5, 0x0101031f, 0x7f030027 }; /** * <p> * @attr description * Base color for this state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:color */ public static final int ColorStateListItem_android_color=0; /** * <p>This symbol is the offset where the {@link android.R.attr#alpha} * attribute's value can be found in the {@link #ColorStateListItem} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:alpha */ public static final int ColorStateListItem_android_alpha=1; /** * <p> * @attr description * Alpha multiplier applied to the base color. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.companyname.yondr_finance:alpha */ public static final int ColorStateListItem_alpha=2; /** * Attributes that can be used with a CompoundButton. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> * <tr><td><code>{@link #CompoundButton_buttonTint com.companyname.yondr_finance:buttonTint}</code></td><td>Tint to apply to the button drawable.</td></tr> * <tr><td><code>{@link #CompoundButton_buttonTintMode com.companyname.yondr_finance:buttonTintMode}</code></td><td>Blending mode used to apply the button tint.</td></tr> * </table> * @see #CompoundButton_android_button * @see #CompoundButton_buttonTint * @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton={ 0x01010107, 0x7f030056, 0x7f030057 }; /** * <p>This symbol is the offset where the {@link android.R.attr#button} * attribute's value can be found in the {@link #CompoundButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:button */ public static final int CompoundButton_android_button=0; /** * <p> * @attr description * Tint to apply to the button drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:buttonTint */ public static final int CompoundButton_buttonTint=1; /** * <p> * @attr description * Blending mode used to apply the button tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.yondr_finance:buttonTintMode */ public static final int CompoundButton_buttonTintMode=2; /** * Attributes that can be used with a CoordinatorLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CoordinatorLayout_keylines com.companyname.yondr_finance:keylines}</code></td><td>A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.companyname.yondr_finance:statusBarBackground}</code></td><td>Drawable to display behind the status bar when the view is set to draw behind it.</td></tr> * </table> * @see #CoordinatorLayout_keylines * @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout={ 0x7f030109, 0x7f03017d }; /** * <p> * @attr description * A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge. * Child views can refer to these keylines for alignment using * layout_keyline="index" where index is a 0-based index into * this array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:keylines */ public static final int CoordinatorLayout_keylines=0; /** * <p> * @attr description * Drawable to display behind the status bar when the view is set to draw behind it. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:statusBarBackground */ public static final int CoordinatorLayout_statusBarBackground=1; /** * Attributes that can be used with a CoordinatorLayout_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.companyname.yondr_finance:layout_anchor}</code></td><td>The id of an anchor view that this view should position relative to.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.companyname.yondr_finance:layout_anchorGravity}</code></td><td>Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.companyname.yondr_finance:layout_behavior}</code></td><td>The class name of a Behavior class defining special runtime behavior * for this child view.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.companyname.yondr_finance:layout_dodgeInsetEdges}</code></td><td>Specifies how this view dodges the inset edges of the CoordinatorLayout.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.companyname.yondr_finance:layout_insetEdge}</code></td><td>Specifies how this view insets the CoordinatorLayout and make some other views * dodge it.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.companyname.yondr_finance:layout_keyline}</code></td><td>The index of a keyline this view should position relative to.</td></tr> * </table> * @see #CoordinatorLayout_Layout_android_layout_gravity * @see #CoordinatorLayout_Layout_layout_anchor * @see #CoordinatorLayout_Layout_layout_anchorGravity * @see #CoordinatorLayout_Layout_layout_behavior * @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges * @see #CoordinatorLayout_Layout_layout_insetEdge * @see #CoordinatorLayout_Layout_layout_keyline */ public static final int[] CoordinatorLayout_Layout={ 0x010100b3, 0x7f03010e, 0x7f03010f, 0x7f030110, 0x7f030113, 0x7f030114, 0x7f030115 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int CoordinatorLayout_Layout_android_layout_gravity=0; /** * <p> * @attr description * The id of an anchor view that this view should position relative to. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor=1; /** * <p> * @attr description * Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>center</td><td>11</td><td>Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.</td></tr> * <tr><td>center_horizontal</td><td>1</td><td>Place object in the horizontal center of its container, not changing its size.</td></tr> * <tr><td>center_vertical</td><td>10</td><td>Place object in the vertical center of its container, not changing its size.</td></tr> * <tr><td>clip_horizontal</td><td>8</td><td>Additional option that can be set to have the left and/or right edges of * the child clipped to its container's bounds. * The clip will be based on the horizontal gravity: a left gravity will clip the right * edge, a right gravity will clip the left edge, and neither will clip both edges.</td></tr> * <tr><td>clip_vertical</td><td>80</td><td>Additional option that can be set to have the top and/or bottom edges of * the child clipped to its container's bounds. * The clip will be based on the vertical gravity: a top gravity will clip the bottom * edge, a bottom gravity will clip the top edge, and neither will clip both edges.</td></tr> * <tr><td>end</td><td>800005</td><td>Push object to the end of its container, not changing its size.</td></tr> * <tr><td>fill</td><td>77</td><td>Grow the horizontal and vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_horizontal</td><td>7</td><td>Grow the horizontal size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_vertical</td><td>70</td><td>Grow the vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>left</td><td>3</td><td>Push object to the left of its container, not changing its size.</td></tr> * <tr><td>right</td><td>5</td><td>Push object to the right of its container, not changing its size.</td></tr> * <tr><td>start</td><td>800003</td><td>Push object to the beginning of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> * * @attr name com.companyname.yondr_finance:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity=2; /** * <p> * @attr description * The class name of a Behavior class defining special runtime behavior * for this child view. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior=3; /** * <p> * @attr description * Specifies how this view dodges the inset edges of the CoordinatorLayout. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>77</td><td>Dodge all the inset edges.</td></tr> * <tr><td>bottom</td><td>50</td><td>Dodge the bottom inset edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Dodge the end inset edge.</td></tr> * <tr><td>left</td><td>3</td><td>Dodge the left inset edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't dodge any edges</td></tr> * <tr><td>right</td><td>5</td><td>Dodge the right inset edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Dodge the start inset edge.</td></tr> * <tr><td>top</td><td>30</td><td>Dodge the top inset edge.</td></tr> * </table> * * @attr name com.companyname.yondr_finance:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4; /** * <p> * @attr description * Specifies how this view insets the CoordinatorLayout and make some other views * dodge it. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Inset the bottom edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Inset the end edge.</td></tr> * <tr><td>left</td><td>3</td><td>Inset the left edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't inset.</td></tr> * <tr><td>right</td><td>5</td><td>Inset the right edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Inset the start edge.</td></tr> * <tr><td>top</td><td>30</td><td>Inset the top edge.</td></tr> * </table> * * @attr name com.companyname.yondr_finance:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge=5; /** * <p> * @attr description * The index of a keyline this view should position relative to. * android:layout_gravity will affect how the view aligns to the * specified keyline. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.yondr_finance:layout_keyline */ public static final int CoordinatorLayout_Layout_layout_keyline=6; /** * Attributes that can be used with a DesignTheme. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.companyname.yondr_finance:bottomSheetDialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #DesignTheme_bottomSheetStyle com.companyname.yondr_finance:bottomSheetStyle}</code></td><td></td></tr> * </table> * @see #DesignTheme_bottomSheetDialogTheme * @see #DesignTheme_bottomSheetStyle */ public static final int[] DesignTheme={ 0x7f030041, 0x7f030042 }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#bottomSheetDialogTheme} * attribute's value can be found in the {@link #DesignTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#bottomSheetStyle} * attribute's value can be found in the {@link #DesignTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle=1; /** * Attributes that can be used with a DrawableStates. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #DrawableStates_state_indeterminate com.companyname.yondr_finance:state_indeterminate}</code></td><td></td></tr> * </table> * @see #DrawableStates_state_indeterminate */ public static final int[] DrawableStates={ 0x7f03017a }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#state_indeterminate} * attribute's value can be found in the {@link #DrawableStates} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:state_indeterminate */ public static final int DrawableStates_state_indeterminate=0; /** * Attributes that can be used with a DrawerArrowToggle. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.companyname.yondr_finance:arrowHeadLength}</code></td><td>The length of the arrow head when formed to make an arrow</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.companyname.yondr_finance:arrowShaftLength}</code></td><td>The length of the shaft when formed to make an arrow</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_barLength com.companyname.yondr_finance:barLength}</code></td><td>The length of the bars when they are parallel to each other</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_color com.companyname.yondr_finance:color}</code></td><td>The drawing color for the bars</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.companyname.yondr_finance:drawableSize}</code></td><td>The total size of the drawable</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.companyname.yondr_finance:gapBetweenBars}</code></td><td>The max gap between the bars when they are parallel to each other</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_spinBars com.companyname.yondr_finance:spinBars}</code></td><td>Whether bars should rotate or not during transition</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_thickness com.companyname.yondr_finance:thickness}</code></td><td>The thickness (stroke size) for the bar paint</td></tr> * </table> * @see #DrawerArrowToggle_arrowHeadLength * @see #DrawerArrowToggle_arrowShaftLength * @see #DrawerArrowToggle_barLength * @see #DrawerArrowToggle_color * @see #DrawerArrowToggle_drawableSize * @see #DrawerArrowToggle_gapBetweenBars * @see #DrawerArrowToggle_spinBars * @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle={ 0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030084, 0x7f0300b0, 0x7f0300de, 0x7f030171, 0x7f0301c2 }; /** * <p> * @attr description * The length of the arrow head when formed to make an arrow * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength=0; /** * <p> * @attr description * The length of the shaft when formed to make an arrow * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength=1; /** * <p> * @attr description * The length of the bars when they are parallel to each other * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:barLength */ public static final int DrawerArrowToggle_barLength=2; /** * <p> * @attr description * The drawing color for the bars * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:color */ public static final int DrawerArrowToggle_color=3; /** * <p> * @attr description * The total size of the drawable * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:drawableSize */ public static final int DrawerArrowToggle_drawableSize=4; /** * <p> * @attr description * The max gap between the bars when they are parallel to each other * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars=5; /** * <p> * @attr description * Whether bars should rotate or not during transition * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:spinBars */ public static final int DrawerArrowToggle_spinBars=6; /** * <p> * @attr description * The thickness (stroke size) for the bar paint * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:thickness */ public static final int DrawerArrowToggle_thickness=7; /** * Attributes that can be used with a FloatingActionButton. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FloatingActionButton_backgroundTint com.companyname.yondr_finance:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr> * <tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.companyname.yondr_finance:backgroundTintMode}</code></td><td>Blending mode used to apply the background tint.</td></tr> * <tr><td><code>{@link #FloatingActionButton_borderWidth com.companyname.yondr_finance:borderWidth}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_elevation com.companyname.yondr_finance:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #FloatingActionButton_fabCustomSize com.companyname.yondr_finance:fabCustomSize}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_fabSize com.companyname.yondr_finance:fabSize}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_hideMotionSpec com.companyname.yondr_finance:hideMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_hoveredFocusedTranslationZ com.companyname.yondr_finance:hoveredFocusedTranslationZ}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_maxImageSize com.companyname.yondr_finance:maxImageSize}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.companyname.yondr_finance:pressedTranslationZ}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_rippleColor com.companyname.yondr_finance:rippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_showMotionSpec com.companyname.yondr_finance:showMotionSpec}</code></td><td></td></tr> * <tr><td><code>{@link #FloatingActionButton_useCompatPadding com.companyname.yondr_finance:useCompatPadding}</code></td><td></td></tr> * </table> * @see #FloatingActionButton_backgroundTint * @see #FloatingActionButton_backgroundTintMode * @see #FloatingActionButton_borderWidth * @see #FloatingActionButton_elevation * @see #FloatingActionButton_fabCustomSize * @see #FloatingActionButton_fabSize * @see #FloatingActionButton_hideMotionSpec * @see #FloatingActionButton_hoveredFocusedTranslationZ * @see #FloatingActionButton_maxImageSize * @see #FloatingActionButton_pressedTranslationZ * @see #FloatingActionButton_rippleColor * @see #FloatingActionButton_showMotionSpec * @see #FloatingActionButton_useCompatPadding */ public static final int[] FloatingActionButton={ 0x7f030034, 0x7f030035, 0x7f03003d, 0x7f0300b7, 0x7f0300c9, 0x7f0300ca, 0x7f0300e5, 0x7f0300ed, 0x7f03012c, 0x7f030146, 0x7f030150, 0x7f030168, 0x7f0301e0 }; /** * <p> * @attr description * Tint to apply to the background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:backgroundTint */ public static final int FloatingActionButton_backgroundTint=0; /** * <p> * @attr description * Blending mode used to apply the background tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.yondr_finance:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#borderWidth} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:borderWidth */ public static final int FloatingActionButton_borderWidth=2; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:elevation */ public static final int FloatingActionButton_elevation=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#fabCustomSize} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:fabCustomSize */ public static final int FloatingActionButton_fabCustomSize=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#fabSize} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>ffffffff</td><td></td></tr> * <tr><td>mini</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:fabSize */ public static final int FloatingActionButton_fabSize=5; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#hideMotionSpec} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:hideMotionSpec */ public static final int FloatingActionButton_hideMotionSpec=6; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#hoveredFocusedTranslationZ} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:hoveredFocusedTranslationZ */ public static final int FloatingActionButton_hoveredFocusedTranslationZ=7; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#maxImageSize} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:maxImageSize */ public static final int FloatingActionButton_maxImageSize=8; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#pressedTranslationZ} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ=9; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#rippleColor} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:rippleColor */ public static final int FloatingActionButton_rippleColor=10; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#showMotionSpec} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:showMotionSpec */ public static final int FloatingActionButton_showMotionSpec=11; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#useCompatPadding} * attribute's value can be found in the {@link #FloatingActionButton} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding=12; /** * Attributes that can be used with a FloatingActionButton_Behavior_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.companyname.yondr_finance:behavior_autoHide}</code></td><td></td></tr> * </table> * @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout={ 0x7f030037 }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#behavior_autoHide} * attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:behavior_autoHide */ public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide=0; /** * Attributes that can be used with a FlowLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FlowLayout_itemSpacing com.companyname.yondr_finance:itemSpacing}</code></td><td></td></tr> * <tr><td><code>{@link #FlowLayout_lineSpacing com.companyname.yondr_finance:lineSpacing}</code></td><td></td></tr> * </table> * @see #FlowLayout_itemSpacing * @see #FlowLayout_lineSpacing */ public static final int[] FlowLayout={ 0x7f030104, 0x7f03011a }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemSpacing} * attribute's value can be found in the {@link #FlowLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:itemSpacing */ public static final int FlowLayout_itemSpacing=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#lineSpacing} * attribute's value can be found in the {@link #FlowLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:lineSpacing */ public static final int FlowLayout_lineSpacing=1; /** * Attributes that can be used with a FontFamily. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FontFamily_fontProviderAuthority com.companyname.yondr_finance:fontProviderAuthority}</code></td><td>The authority of the Font Provider to be used for the request.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderCerts com.companyname.yondr_finance:fontProviderCerts}</code></td><td>The sets of hashes for the certificates the provider should be signed with.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.companyname.yondr_finance:fontProviderFetchStrategy}</code></td><td>The strategy to be used when fetching font data from a font provider in XML layouts.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.companyname.yondr_finance:fontProviderFetchTimeout}</code></td><td>The length of the timeout during fetching.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderPackage com.companyname.yondr_finance:fontProviderPackage}</code></td><td>The package for the Font Provider to be used for the request.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderQuery com.companyname.yondr_finance:fontProviderQuery}</code></td><td>The query to be sent over to the provider.</td></tr> * </table> * @see #FontFamily_fontProviderAuthority * @see #FontFamily_fontProviderCerts * @see #FontFamily_fontProviderFetchStrategy * @see #FontFamily_fontProviderFetchTimeout * @see #FontFamily_fontProviderPackage * @see #FontFamily_fontProviderQuery */ public static final int[] FontFamily={ 0x7f0300d4, 0x7f0300d5, 0x7f0300d6, 0x7f0300d7, 0x7f0300d8, 0x7f0300d9 }; /** * <p> * @attr description * The authority of the Font Provider to be used for the request. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority=0; /** * <p> * @attr description * The sets of hashes for the certificates the provider should be signed with. This is * used to verify the identity of the provider, and is only required if the provider is not * part of the system image. This value may point to one list or a list of lists, where each * individual list represents one collection of signature hashes. Refer to your font provider's * documentation for these values. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:fontProviderCerts */ public static final int FontFamily_fontProviderCerts=1; /** * <p> * @attr description * The strategy to be used when fetching font data from a font provider in XML layouts. * This attribute is ignored when the resource is loaded from code, as it is equivalent to the * choice of API between {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and * {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} * (async). * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>async</td><td>1</td><td>The async font fetch works as follows. * First, check the local cache, then if the requeted font is not cached, trigger a * request the font and continue with layout inflation. Once the font fetch succeeds, the * target text view will be refreshed with the downloaded font data. The * fontProviderFetchTimeout will be ignored if async loading is specified.</td></tr> * <tr><td>blocking</td><td>0</td><td>The blocking font fetch works as follows. * First, check the local cache, then if the requested font is not cached, request the * font from the provider and wait until it is finished. You can change the length of * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the * default typeface will be used instead.</td></tr> * </table> * * @attr name com.companyname.yondr_finance:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy=2; /** * <p> * @attr description * The length of the timeout during fetching. * * <p>May be an integer value, such as "<code>100</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>forever</td><td>ffffffff</td><td>A special value for the timeout. In this case, the blocking font fetching will not * timeout and wait until a reply is received from the font provider.</td></tr> * </table> * * @attr name com.companyname.yondr_finance:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout=3; /** * <p> * @attr description * The package for the Font Provider to be used for the request. This is used to verify * the identity of the provider. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:fontProviderPackage */ public static final int FontFamily_fontProviderPackage=4; /** * <p> * @attr description * The query to be sent over to the provider. Refer to your font provider's documentation * on the format of this string. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:fontProviderQuery */ public static final int FontFamily_fontProviderQuery=5; /** * Attributes that can be used with a FontFamilyFont. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_font com.companyname.yondr_finance:font}</code></td><td>The reference to the font file to be used.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontStyle com.companyname.yondr_finance:fontStyle}</code></td><td>The style of the given font file.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontVariationSettings com.companyname.yondr_finance:fontVariationSettings}</code></td><td>The variation settings to be applied to the font.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontWeight com.companyname.yondr_finance:fontWeight}</code></td><td>The weight of the given font file.</td></tr> * <tr><td><code>{@link #FontFamilyFont_ttcIndex com.companyname.yondr_finance:ttcIndex}</code></td><td>The index of the font in the tcc font file.</td></tr> * </table> * @see #FontFamilyFont_android_font * @see #FontFamilyFont_android_fontWeight * @see #FontFamilyFont_android_fontStyle * @see #FontFamilyFont_android_ttcIndex * @see #FontFamilyFont_android_fontVariationSettings * @see #FontFamilyFont_font * @see #FontFamilyFont_fontStyle * @see #FontFamilyFont_fontVariationSettings * @see #FontFamilyFont_fontWeight * @see #FontFamilyFont_ttcIndex */ public static final int[] FontFamilyFont={ 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f0300d2, 0x7f0300da, 0x7f0300db, 0x7f0300dc, 0x7f0301df }; /** * <p>This symbol is the offset where the {@link android.R.attr#font} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:font */ public static final int FontFamilyFont_android_font=0; /** * <p>This symbol is the offset where the {@link android.R.attr#fontWeight} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:fontWeight */ public static final int FontFamilyFont_android_fontWeight=1; /** * <p> * @attr description * References to the framework attrs * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:fontStyle */ public static final int FontFamilyFont_android_fontStyle=2; /** * <p>This symbol is the offset where the {@link android.R.attr#ttcIndex} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:ttcIndex */ public static final int FontFamilyFont_android_ttcIndex=3; /** * <p>This symbol is the offset where the {@link android.R.attr#fontVariationSettings} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:fontVariationSettings */ public static final int FontFamilyFont_android_fontVariationSettings=4; /** * <p> * @attr description * The reference to the font file to be used. This should be a file in the res/font folder * and should therefore have an R reference value. E.g. @font/myfont * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:font */ public static final int FontFamilyFont_font=5; /** * <p> * @attr description * The style of the given font file. This will be used when the font is being loaded into * the font stack and will override any style information in the font's header tables. If * unspecified, the value in the font's header tables will be used. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:fontStyle */ public static final int FontFamilyFont_fontStyle=6; /** * <p> * @attr description * The variation settings to be applied to the font. The string should be in the following * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be * used, or the font used does not support variation settings, this attribute needs not be * specified. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:fontVariationSettings */ public static final int FontFamilyFont_fontVariationSettings=7; /** * <p> * @attr description * The weight of the given font file. This will be used when the font is being loaded into * the font stack and will override any weight information in the font's header tables. Must * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value * in the font's header tables will be used. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.yondr_finance:fontWeight */ public static final int FontFamilyFont_fontWeight=8; /** * <p> * @attr description * The index of the font in the tcc font file. If the font file referenced is not in the * tcc format, this attribute needs not be specified. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.yondr_finance:ttcIndex */ public static final int FontFamilyFont_ttcIndex=9; /** * Attributes that can be used with a ForegroundLinearLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr> * <tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr> * <tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.companyname.yondr_finance:foregroundInsidePadding}</code></td><td></td></tr> * </table> * @see #ForegroundLinearLayout_android_foreground * @see #ForegroundLinearLayout_android_foregroundGravity * @see #ForegroundLinearLayout_foregroundInsidePadding */ public static final int[] ForegroundLinearLayout={ 0x01010109, 0x01010200, 0x7f0300dd }; /** * <p>This symbol is the offset where the {@link android.R.attr#foreground} * attribute's value can be found in the {@link #ForegroundLinearLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:foreground */ public static final int ForegroundLinearLayout_android_foreground=0; /** * <p>This symbol is the offset where the {@link android.R.attr#foregroundGravity} * attribute's value can be found in the {@link #ForegroundLinearLayout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:foregroundGravity */ public static final int ForegroundLinearLayout_android_foregroundGravity=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#foregroundInsidePadding} * attribute's value can be found in the {@link #ForegroundLinearLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding=2; /** * Attributes that can be used with a GradientColor. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #GradientColor_android_startColor android:startColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endColor android:endColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_type android:type}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerX android:centerX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerY android:centerY}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_gradientRadius android:gradientRadius}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_tileMode android:tileMode}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerColor android:centerColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_startX android:startX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_startY android:startY}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endX android:endX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endY android:endY}</code></td><td></td></tr> * </table> * @see #GradientColor_android_startColor * @see #GradientColor_android_endColor * @see #GradientColor_android_type * @see #GradientColor_android_centerX * @see #GradientColor_android_centerY * @see #GradientColor_android_gradientRadius * @see #GradientColor_android_tileMode * @see #GradientColor_android_centerColor * @see #GradientColor_android_startX * @see #GradientColor_android_startY * @see #GradientColor_android_endX * @see #GradientColor_android_endY */ public static final int[] GradientColor={ 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; /** * <p> * @attr description * Start color of the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:startColor */ public static final int GradientColor_android_startColor=0; /** * <p> * @attr description * End color of the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:endColor */ public static final int GradientColor_android_endColor=1; /** * <p> * @attr description * Type of gradient. The default type is linear. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>linear</td><td>0</td><td></td></tr> * <tr><td>radial</td><td>1</td><td></td></tr> * <tr><td>sweep</td><td>2</td><td></td></tr> * </table> * * @attr name android:type */ public static final int GradientColor_android_type=2; /** * <p> * @attr description * X coordinate of the center of the gradient within the path. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:centerX */ public static final int GradientColor_android_centerX=3; /** * <p> * @attr description * Y coordinate of the center of the gradient within the path. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:centerY */ public static final int GradientColor_android_centerY=4; /** * <p> * @attr description * Radius of the gradient, used only with radial gradient. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:gradientRadius */ public static final int GradientColor_android_gradientRadius=5; /** * <p> * @attr description * Defines the tile mode of the gradient. SweepGradient doesn't support tiling. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>clamp</td><td>0</td><td></td></tr> * <tr><td>disabled</td><td>ffffffff</td><td></td></tr> * <tr><td>mirror</td><td>2</td><td></td></tr> * <tr><td>repeat</td><td>1</td><td></td></tr> * </table> * * @attr name android:tileMode */ public static final int GradientColor_android_tileMode=6; /** * <p> * @attr description * Optional center color. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:centerColor */ public static final int GradientColor_android_centerColor=7; /** * <p> * @attr description * X coordinate of the start point origin of the gradient. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:startX */ public static final int GradientColor_android_startX=8; /** * <p> * @attr description * Y coordinate of the start point of the gradient within the shape. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:startY */ public static final int GradientColor_android_startY=9; /** * <p> * @attr description * X coordinate of the end point origin of the gradient. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:endX */ public static final int GradientColor_android_endX=10; /** * <p> * @attr description * Y coordinate of the end point of the gradient within the shape. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:endY */ public static final int GradientColor_android_endY=11; /** * Attributes that can be used with a GradientColorItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #GradientColorItem_android_color android:color}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColorItem_android_offset android:offset}</code></td><td></td></tr> * </table> * @see #GradientColorItem_android_color * @see #GradientColorItem_android_offset */ public static final int[] GradientColorItem={ 0x010101a5, 0x01010514 }; /** * <p> * @attr description * The current color for the offset inside the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:color */ public static final int GradientColorItem_android_color=0; /** * <p> * @attr description * The offset (or ratio) of this current color item inside the gradient. * The value is only meaningful when it is between 0 and 1. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:offset */ public static final int GradientColorItem_android_offset=1; /** * Attributes that can be used with a LinearLayoutCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_divider com.companyname.yondr_finance:divider}</code></td><td>Specifies the drawable used for item dividers.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.companyname.yondr_finance:dividerPadding}</code></td><td>Size of padding on either end of a divider.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.yondr_finance:measureWithLargestChild}</code></td><td>When set to true, all children with a weight will be considered having * the minimum size of the largest child.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_showDividers com.companyname.yondr_finance:showDividers}</code></td><td>Setting for which dividers to show.</td></tr> * </table> * @see #LinearLayoutCompat_android_gravity * @see #LinearLayoutCompat_android_orientation * @see #LinearLayoutCompat_android_baselineAligned * @see #LinearLayoutCompat_android_baselineAlignedChildIndex * @see #LinearLayoutCompat_android_weightSum * @see #LinearLayoutCompat_divider * @see #LinearLayoutCompat_dividerPadding * @see #LinearLayoutCompat_measureWithLargestChild * @see #LinearLayoutCompat_showDividers */ public static final int[] LinearLayoutCompat={ 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f0300ac, 0x7f0300ae, 0x7f03012d, 0x7f030167 }; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity=0; /** * <p> * @attr description * Should the layout be a column or a row? Use "horizontal" * for a row, "vertical" for a column. The default is * horizontal. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation=1; /** * <p> * @attr description * When set to false, prevents the layout from aligning its children's * baselines. This attribute is particularly useful when the children * use different values for gravity. The default value is true. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned=2; /** * <p> * @attr description * When a linear layout is part of another layout that is baseline * aligned, it can specify which of its children to baseline align to * (that is, which child TextView). * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; /** * <p> * @attr description * Defines the maximum weight sum. If unspecified, the sum is computed * by adding the layout_weight of all of the children. This can be * used for instance to give a single child 50% of the total available * space by giving it a layout_weight of 0.5 and setting the weightSum * to 1.0. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum=4; /** * <p> * @attr description * Drawable to use as a vertical divider between buttons. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:divider */ public static final int LinearLayoutCompat_divider=5; /** * <p> * @attr description * Size of padding on either end of a divider. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding=6; /** * <p> * @attr description * When set to true, all children with a weight will be considered having * the minimum size of the largest child. If false, all children are * measured normally. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild=7; /** * <p> * @attr description * Setting for which dividers to show. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:showDividers */ public static final int LinearLayoutCompat_showDividers=8; /** * Attributes that can be used with a LinearLayoutCompat_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> * </table> * @see #LinearLayoutCompat_Layout_android_layout_gravity * @see #LinearLayoutCompat_Layout_android_layout_width * @see #LinearLayoutCompat_Layout_android_layout_height * @see #LinearLayoutCompat_Layout_android_layout_weight */ public static final int[] LinearLayoutCompat_Layout={ 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_width} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width=1; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_height} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height=2; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_weight} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight=3; /** * Attributes that can be used with a ListPopupWindow. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> * <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> * </table> * @see #ListPopupWindow_android_dropDownHorizontalOffset * @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow={ 0x010102ac, 0x010102ad }; /** * <p> * @attr description * Amount of pixels by which the drop down should be offset horizontally. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset=0; /** * <p> * @attr description * Amount of pixels by which the drop down should be offset vertically. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset=1; /** * Attributes that can be used with a MaterialButton. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MaterialButton_android_insetLeft android:insetLeft}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_android_insetRight android:insetRight}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_android_insetTop android:insetTop}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_android_insetBottom android:insetBottom}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_backgroundTint com.companyname.yondr_finance:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr> * <tr><td><code>{@link #MaterialButton_backgroundTintMode com.companyname.yondr_finance:backgroundTintMode}</code></td><td>Blending mode used to apply the background tint.</td></tr> * <tr><td><code>{@link #MaterialButton_cornerRadius com.companyname.yondr_finance:cornerRadius}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_icon com.companyname.yondr_finance:icon}</code></td><td>Specifies the drawable used for the application icon.</td></tr> * <tr><td><code>{@link #MaterialButton_iconGravity com.companyname.yondr_finance:iconGravity}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_iconPadding com.companyname.yondr_finance:iconPadding}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_iconSize com.companyname.yondr_finance:iconSize}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_iconTint com.companyname.yondr_finance:iconTint}</code></td><td>Tint to apply to the icon.</td></tr> * <tr><td><code>{@link #MaterialButton_iconTintMode com.companyname.yondr_finance:iconTintMode}</code></td><td>Blending mode used to apply the icon tint.</td></tr> * <tr><td><code>{@link #MaterialButton_rippleColor com.companyname.yondr_finance:rippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_strokeColor com.companyname.yondr_finance:strokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialButton_strokeWidth com.companyname.yondr_finance:strokeWidth}</code></td><td></td></tr> * </table> * @see #MaterialButton_android_insetLeft * @see #MaterialButton_android_insetRight * @see #MaterialButton_android_insetTop * @see #MaterialButton_android_insetBottom * @see #MaterialButton_backgroundTint * @see #MaterialButton_backgroundTintMode * @see #MaterialButton_cornerRadius * @see #MaterialButton_icon * @see #MaterialButton_iconGravity * @see #MaterialButton_iconPadding * @see #MaterialButton_iconSize * @see #MaterialButton_iconTint * @see #MaterialButton_iconTintMode * @see #MaterialButton_rippleColor * @see #MaterialButton_strokeColor * @see #MaterialButton_strokeWidth */ public static final int[] MaterialButton={ 0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba, 0x7f030034, 0x7f030035, 0x7f0300a0, 0x7f0300ee, 0x7f0300f0, 0x7f0300f1, 0x7f0300f2, 0x7f0300f4, 0x7f0300f5, 0x7f030150, 0x7f03017f, 0x7f030180 }; /** * <p>This symbol is the offset where the {@link android.R.attr#insetLeft} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:insetLeft */ public static final int MaterialButton_android_insetLeft=0; /** * <p>This symbol is the offset where the {@link android.R.attr#insetRight} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:insetRight */ public static final int MaterialButton_android_insetRight=1; /** * <p>This symbol is the offset where the {@link android.R.attr#insetTop} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:insetTop */ public static final int MaterialButton_android_insetTop=2; /** * <p>This symbol is the offset where the {@link android.R.attr#insetBottom} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:insetBottom */ public static final int MaterialButton_android_insetBottom=3; /** * <p> * @attr description * Tint to apply to the background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:backgroundTint */ public static final int MaterialButton_backgroundTint=4; /** * <p> * @attr description * Blending mode used to apply the background tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.yondr_finance:backgroundTintMode */ public static final int MaterialButton_backgroundTintMode=5; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#cornerRadius} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:cornerRadius */ public static final int MaterialButton_cornerRadius=6; /** * <p> * @attr description * Specifies the drawable used for the application icon. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:icon */ public static final int MaterialButton_icon=7; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#iconGravity} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>start</td><td>1</td><td></td></tr> * <tr><td>textStart</td><td>2</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:iconGravity */ public static final int MaterialButton_iconGravity=8; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#iconPadding} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:iconPadding */ public static final int MaterialButton_iconPadding=9; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#iconSize} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:iconSize */ public static final int MaterialButton_iconSize=10; /** * <p> * @attr description * Tint to apply to the icon. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:iconTint */ public static final int MaterialButton_iconTint=11; /** * <p> * @attr description * Blending mode used to apply the icon tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the icon’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The icon’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.yondr_finance:iconTintMode */ public static final int MaterialButton_iconTintMode=12; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#rippleColor} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:rippleColor */ public static final int MaterialButton_rippleColor=13; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#strokeColor} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:strokeColor */ public static final int MaterialButton_strokeColor=14; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#strokeWidth} * attribute's value can be found in the {@link #MaterialButton} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:strokeWidth */ public static final int MaterialButton_strokeWidth=15; /** * Attributes that can be used with a MaterialCardView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MaterialCardView_strokeColor com.companyname.yondr_finance:strokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialCardView_strokeWidth com.companyname.yondr_finance:strokeWidth}</code></td><td></td></tr> * </table> * @see #MaterialCardView_strokeColor * @see #MaterialCardView_strokeWidth */ public static final int[] MaterialCardView={ 0x7f03017f, 0x7f030180 }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#strokeColor} * attribute's value can be found in the {@link #MaterialCardView} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:strokeColor */ public static final int MaterialCardView_strokeColor=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#strokeWidth} * attribute's value can be found in the {@link #MaterialCardView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:strokeWidth */ public static final int MaterialCardView_strokeWidth=1; /** * Attributes that can be used with a MaterialComponentsTheme. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MaterialComponentsTheme_bottomSheetDialogTheme com.companyname.yondr_finance:bottomSheetDialogTheme}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_bottomSheetStyle com.companyname.yondr_finance:bottomSheetStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_chipGroupStyle com.companyname.yondr_finance:chipGroupStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_chipStandaloneStyle com.companyname.yondr_finance:chipStandaloneStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_chipStyle com.companyname.yondr_finance:chipStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorAccent com.companyname.yondr_finance:colorAccent}</code></td><td>Bright complement to the primary branding color.</td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorBackgroundFloating com.companyname.yondr_finance:colorBackgroundFloating}</code></td><td>Default color of background imagery for floating components, ex.</td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorPrimary com.companyname.yondr_finance:colorPrimary}</code></td><td>The primary branding color for the app.</td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorPrimaryDark com.companyname.yondr_finance:colorPrimaryDark}</code></td><td>Dark variant of the primary branding color.</td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_colorSecondary com.companyname.yondr_finance:colorSecondary}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_editTextStyle com.companyname.yondr_finance:editTextStyle}</code></td><td>Default EditText style.</td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_floatingActionButtonStyle com.companyname.yondr_finance:floatingActionButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_materialButtonStyle com.companyname.yondr_finance:materialButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_materialCardViewStyle com.companyname.yondr_finance:materialCardViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_navigationViewStyle com.companyname.yondr_finance:navigationViewStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_scrimBackground com.companyname.yondr_finance:scrimBackground}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_snackbarButtonStyle com.companyname.yondr_finance:snackbarButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_tabStyle com.companyname.yondr_finance:tabStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceBody1 com.companyname.yondr_finance:textAppearanceBody1}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceBody2 com.companyname.yondr_finance:textAppearanceBody2}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceButton com.companyname.yondr_finance:textAppearanceButton}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceCaption com.companyname.yondr_finance:textAppearanceCaption}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline1 com.companyname.yondr_finance:textAppearanceHeadline1}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline2 com.companyname.yondr_finance:textAppearanceHeadline2}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline3 com.companyname.yondr_finance:textAppearanceHeadline3}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline4 com.companyname.yondr_finance:textAppearanceHeadline4}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline5 com.companyname.yondr_finance:textAppearanceHeadline5}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline6 com.companyname.yondr_finance:textAppearanceHeadline6}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceOverline com.companyname.yondr_finance:textAppearanceOverline}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceSubtitle1 com.companyname.yondr_finance:textAppearanceSubtitle1}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceSubtitle2 com.companyname.yondr_finance:textAppearanceSubtitle2}</code></td><td></td></tr> * <tr><td><code>{@link #MaterialComponentsTheme_textInputStyle com.companyname.yondr_finance:textInputStyle}</code></td><td></td></tr> * </table> * @see #MaterialComponentsTheme_bottomSheetDialogTheme * @see #MaterialComponentsTheme_bottomSheetStyle * @see #MaterialComponentsTheme_chipGroupStyle * @see #MaterialComponentsTheme_chipStandaloneStyle * @see #MaterialComponentsTheme_chipStyle * @see #MaterialComponentsTheme_colorAccent * @see #MaterialComponentsTheme_colorBackgroundFloating * @see #MaterialComponentsTheme_colorPrimary * @see #MaterialComponentsTheme_colorPrimaryDark * @see #MaterialComponentsTheme_colorSecondary * @see #MaterialComponentsTheme_editTextStyle * @see #MaterialComponentsTheme_floatingActionButtonStyle * @see #MaterialComponentsTheme_materialButtonStyle * @see #MaterialComponentsTheme_materialCardViewStyle * @see #MaterialComponentsTheme_navigationViewStyle * @see #MaterialComponentsTheme_scrimBackground * @see #MaterialComponentsTheme_snackbarButtonStyle * @see #MaterialComponentsTheme_tabStyle * @see #MaterialComponentsTheme_textAppearanceBody1 * @see #MaterialComponentsTheme_textAppearanceBody2 * @see #MaterialComponentsTheme_textAppearanceButton * @see #MaterialComponentsTheme_textAppearanceCaption * @see #MaterialComponentsTheme_textAppearanceHeadline1 * @see #MaterialComponentsTheme_textAppearanceHeadline2 * @see #MaterialComponentsTheme_textAppearanceHeadline3 * @see #MaterialComponentsTheme_textAppearanceHeadline4 * @see #MaterialComponentsTheme_textAppearanceHeadline5 * @see #MaterialComponentsTheme_textAppearanceHeadline6 * @see #MaterialComponentsTheme_textAppearanceOverline * @see #MaterialComponentsTheme_textAppearanceSubtitle1 * @see #MaterialComponentsTheme_textAppearanceSubtitle2 * @see #MaterialComponentsTheme_textInputStyle */ public static final int[] MaterialComponentsTheme={ 0x7f030041, 0x7f030042, 0x7f030069, 0x7f030073, 0x7f030077, 0x7f030085, 0x7f030086, 0x7f03008c, 0x7f03008d, 0x7f03008e, 0x7f0300b6, 0x7f0300d1, 0x7f030128, 0x7f030129, 0x7f030133, 0x7f030152, 0x7f03016e, 0x7f0301a2, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301aa, 0x7f0301ab, 0x7f0301ac, 0x7f0301ad, 0x7f0301ae, 0x7f0301af, 0x7f0301b0, 0x7f0301b5, 0x7f0301ba, 0x7f0301bb, 0x7f0301bf }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#bottomSheetDialogTheme} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:bottomSheetDialogTheme */ public static final int MaterialComponentsTheme_bottomSheetDialogTheme=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#bottomSheetStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:bottomSheetStyle */ public static final int MaterialComponentsTheme_bottomSheetStyle=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipGroupStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:chipGroupStyle */ public static final int MaterialComponentsTheme_chipGroupStyle=2; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipStandaloneStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:chipStandaloneStyle */ public static final int MaterialComponentsTheme_chipStandaloneStyle=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#chipStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:chipStyle */ public static final int MaterialComponentsTheme_chipStyle=4; /** * <p> * @attr description * Bright complement to the primary branding color. By default, this is the color applied * to framework controls (via colorControlActivated). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorAccent */ public static final int MaterialComponentsTheme_colorAccent=5; /** * <p> * @attr description * Default color of background imagery for floating components, ex. dialogs, popups, and cards. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorBackgroundFloating */ public static final int MaterialComponentsTheme_colorBackgroundFloating=6; /** * <p> * @attr description * The primary branding color for the app. By default, this is the color applied to the * action bar background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorPrimary */ public static final int MaterialComponentsTheme_colorPrimary=7; /** * <p> * @attr description * Dark variant of the primary branding color. By default, this is the color applied to * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorPrimaryDark */ public static final int MaterialComponentsTheme_colorPrimaryDark=8; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#colorSecondary} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:colorSecondary */ public static final int MaterialComponentsTheme_colorSecondary=9; /** * <p> * @attr description * Default EditText style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:editTextStyle */ public static final int MaterialComponentsTheme_editTextStyle=10; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#floatingActionButtonStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * <p>May be an integer value, such as "<code>100</code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name com.companyname.yondr_finance:floatingActionButtonStyle */ public static final int MaterialComponentsTheme_floatingActionButtonStyle=11; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#materialButtonStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:materialButtonStyle */ public static final int MaterialComponentsTheme_materialButtonStyle=12; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#materialCardViewStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:materialCardViewStyle */ public static final int MaterialComponentsTheme_materialCardViewStyle=13; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#navigationViewStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:navigationViewStyle */ public static final int MaterialComponentsTheme_navigationViewStyle=14; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#scrimBackground} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:scrimBackground */ public static final int MaterialComponentsTheme_scrimBackground=15; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#snackbarButtonStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:snackbarButtonStyle */ public static final int MaterialComponentsTheme_snackbarButtonStyle=16; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:tabStyle */ public static final int MaterialComponentsTheme_tabStyle=17; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceBody1} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceBody1 */ public static final int MaterialComponentsTheme_textAppearanceBody1=18; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceBody2} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceBody2 */ public static final int MaterialComponentsTheme_textAppearanceBody2=19; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceButton} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceButton */ public static final int MaterialComponentsTheme_textAppearanceButton=20; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceCaption} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceCaption */ public static final int MaterialComponentsTheme_textAppearanceCaption=21; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceHeadline1} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceHeadline1 */ public static final int MaterialComponentsTheme_textAppearanceHeadline1=22; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceHeadline2} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceHeadline2 */ public static final int MaterialComponentsTheme_textAppearanceHeadline2=23; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceHeadline3} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceHeadline3 */ public static final int MaterialComponentsTheme_textAppearanceHeadline3=24; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceHeadline4} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceHeadline4 */ public static final int MaterialComponentsTheme_textAppearanceHeadline4=25; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceHeadline5} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceHeadline5 */ public static final int MaterialComponentsTheme_textAppearanceHeadline5=26; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceHeadline6} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceHeadline6 */ public static final int MaterialComponentsTheme_textAppearanceHeadline6=27; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceOverline} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceOverline */ public static final int MaterialComponentsTheme_textAppearanceOverline=28; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceSubtitle1} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceSubtitle1 */ public static final int MaterialComponentsTheme_textAppearanceSubtitle1=29; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textAppearanceSubtitle2} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textAppearanceSubtitle2 */ public static final int MaterialComponentsTheme_textAppearanceSubtitle2=30; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#textInputStyle} * attribute's value can be found in the {@link #MaterialComponentsTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:textInputStyle */ public static final int MaterialComponentsTheme_textInputStyle=31; /** * Attributes that can be used with a MenuGroup. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> * </table> * @see #MenuGroup_android_enabled * @see #MenuGroup_android_id * @see #MenuGroup_android_visible * @see #MenuGroup_android_menuCategory * @see #MenuGroup_android_orderInCategory * @see #MenuGroup_android_checkableBehavior */ public static final int[] MenuGroup={ 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** * <p> * @attr description * Whether the items are enabled. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:enabled */ public static final int MenuGroup_android_enabled=0; /** * <p> * @attr description * The ID of the group. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int MenuGroup_android_id=1; /** * <p> * @attr description * Whether the items are shown/visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int MenuGroup_android_visible=2; /** * <p> * @attr description * The category applied to all items within this group. * (This will be or'ed with the orderInCategory attribute.) * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory=3; /** * <p> * @attr description * The order within the category applied to all items within this group. * (This will be or'ed with the category attribute.) * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory=4; /** * <p> * @attr description * Whether the items are capable of displaying a check mark. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>single</td><td>2</td><td></td></tr> * </table> * * @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior=5; /** * Attributes that can be used with a MenuItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionLayout com.companyname.yondr_finance:actionLayout}</code></td><td>An optional layout to be used as an action view.</td></tr> * <tr><td><code>{@link #MenuItem_actionProviderClass com.companyname.yondr_finance:actionProviderClass}</code></td><td>The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item.</td></tr> * <tr><td><code>{@link #MenuItem_actionViewClass com.companyname.yondr_finance:actionViewClass}</code></td><td>The name of an optional View class to instantiate and use as an * action view.</td></tr> * <tr><td><code>{@link #MenuItem_alphabeticModifiers com.companyname.yondr_finance:alphabeticModifiers}</code></td><td>The alphabetic modifier key.</td></tr> * <tr><td><code>{@link #MenuItem_contentDescription com.companyname.yondr_finance:contentDescription}</code></td><td>The content description associated with the item.</td></tr> * <tr><td><code>{@link #MenuItem_iconTint com.companyname.yondr_finance:iconTint}</code></td><td>Tint to apply to the icon.</td></tr> * <tr><td><code>{@link #MenuItem_iconTintMode com.companyname.yondr_finance:iconTintMode}</code></td><td>Blending mode used to apply the icon tint.</td></tr> * <tr><td><code>{@link #MenuItem_numericModifiers com.companyname.yondr_finance:numericModifiers}</code></td><td>The numeric modifier key.</td></tr> * <tr><td><code>{@link #MenuItem_showAsAction com.companyname.yondr_finance:showAsAction}</code></td><td>How this item should display in the Action Bar, if present.</td></tr> * <tr><td><code>{@link #MenuItem_tooltipText com.companyname.yondr_finance:tooltipText}</code></td><td>The tooltip text associated with the item.</td></tr> * </table> * @see #MenuItem_android_icon * @see #MenuItem_android_enabled * @see #MenuItem_android_id * @see #MenuItem_android_checked * @see #MenuItem_android_visible * @see #MenuItem_android_menuCategory * @see #MenuItem_android_orderInCategory * @see #MenuItem_android_title * @see #MenuItem_android_titleCondensed * @see #MenuItem_android_alphabeticShortcut * @see #MenuItem_android_numericShortcut * @see #MenuItem_android_checkable * @see #MenuItem_android_onClick * @see #MenuItem_actionLayout * @see #MenuItem_actionProviderClass * @see #MenuItem_actionViewClass * @see #MenuItem_alphabeticModifiers * @see #MenuItem_contentDescription * @see #MenuItem_iconTint * @see #MenuItem_iconTintMode * @see #MenuItem_numericModifiers * @see #MenuItem_showAsAction * @see #MenuItem_tooltipText */ public static final int[] MenuItem={ 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020, 0x7f030028, 0x7f030091, 0x7f0300f4, 0x7f0300f5, 0x7f030134, 0x7f030166, 0x7f0301db }; /** * <p> * @attr description * The icon associated with this item. This icon will not always be shown, so * the title should be sufficient in describing this item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:icon */ public static final int MenuItem_android_icon=0; /** * <p> * @attr description * Whether the item is enabled. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:enabled */ public static final int MenuItem_android_enabled=1; /** * <p> * @attr description * The ID of the item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int MenuItem_android_id=2; /** * <p> * @attr description * Whether the item is checked. Note that you must first have enabled checking with * the checkable attribute or else the check mark will not appear. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checked */ public static final int MenuItem_android_checked=3; /** * <p> * @attr description * Whether the item is shown/visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int MenuItem_android_visible=4; /** * <p> * @attr description * The category applied to the item. * (This will be or'ed with the orderInCategory attribute.) * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory=5; /** * <p> * @attr description * The order within the category applied to the item. * (This will be or'ed with the category attribute.) * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory=6; /** * <p> * @attr description * The title associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:title */ public static final int MenuItem_android_title=7; /** * <p> * @attr description * The condensed title associated with the item. This is used in situations where the * normal title may be too long to be displayed. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed=8; /** * <p> * @attr description * The alphabetic shortcut key. This is the shortcut when using a keyboard * with alphabetic keys. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut=9; /** * <p> * @attr description * The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) * keyboard. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut=10; /** * <p> * @attr description * Whether the item is capable of displaying a check mark. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checkable */ public static final int MenuItem_android_checkable=11; /** * <p> * @attr description * Name of a method on the Context used to inflate the menu that will be * called when the item is clicked. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:onClick */ public static final int MenuItem_android_onClick=12; /** * <p> * @attr description * An optional layout to be used as an action view. * See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:actionLayout */ public static final int MenuItem_actionLayout=13; /** * <p> * @attr description * The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item. * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} * for more info. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:actionProviderClass */ public static final int MenuItem_actionProviderClass=14; /** * <p> * @attr description * The name of an optional View class to instantiate and use as an * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:actionViewClass */ public static final int MenuItem_actionViewClass=15; /** * <p> * @attr description * The alphabetic modifier key. This is the modifier when using a keyboard * with alphabetic keys. The values should be kept in sync with KeyEvent * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:alphabeticModifiers */ public static final int MenuItem_alphabeticModifiers=16; /** * <p> * @attr description * The content description associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:contentDescription */ public static final int MenuItem_contentDescription=17; /** * <p> * @attr description * Tint to apply to the icon. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:iconTint */ public static final int MenuItem_iconTint=18; /** * <p> * @attr description * Blending mode used to apply the icon tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the icon’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The icon’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.yondr_finance:iconTintMode */ public static final int MenuItem_iconTintMode=19; /** * <p> * @attr description * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) * keyboard. The values should be kept in sync with KeyEvent * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:numericModifiers */ public static final int MenuItem_numericModifiers=20; /** * <p> * @attr description * How this item should display in the Action Bar, if present. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>always</td><td>2</td><td>Always show this item in an actionbar, even if it would override * the system's limits of how much stuff to put there. This may make * your action bar look bad on some screens. In most cases you should * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".</td></tr> * <tr><td>collapseActionView</td><td>8</td><td>This item's action view collapses to a normal menu * item. When expanded, the action view takes over a * larger segment of its container.</td></tr> * <tr><td>ifRoom</td><td>1</td><td>Show this item in an action bar if there is room for it as determined * by the system. Favor this option over "always" where possible. * Mutually exclusive with "never" and "always".</td></tr> * <tr><td>never</td><td>0</td><td>Never show this item in an action bar, show it in the overflow menu instead. * Mutually exclusive with "ifRoom" and "always".</td></tr> * <tr><td>withText</td><td>4</td><td>When this item is shown as an action in the action bar, show a text * label with it even if it has an icon representation.</td></tr> * </table> * * @attr name com.companyname.yondr_finance:showAsAction */ public static final int MenuItem_showAsAction=21; /** * <p> * @attr description * The tooltip text associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:tooltipText */ public static final int MenuItem_tooltipText=22; /** * Attributes that can be used with a MenuView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_preserveIconSpacing com.companyname.yondr_finance:preserveIconSpacing}</code></td><td>Whether space should be reserved in layout when an icon is missing.</td></tr> * <tr><td><code>{@link #MenuView_subMenuArrow com.companyname.yondr_finance:subMenuArrow}</code></td><td>Drawable for the arrow icon indicating a particular item is a submenu.</td></tr> * </table> * @see #MenuView_android_windowAnimationStyle * @see #MenuView_android_itemTextAppearance * @see #MenuView_android_horizontalDivider * @see #MenuView_android_verticalDivider * @see #MenuView_android_headerBackground * @see #MenuView_android_itemBackground * @see #MenuView_android_itemIconDisabledAlpha * @see #MenuView_preserveIconSpacing * @see #MenuView_subMenuArrow */ public static final int[] MenuView={ 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f030145, 0x7f030181 }; /** * <p> * @attr description * Default animations for the menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle=0; /** * <p> * @attr description * Default appearance of menu item text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance=1; /** * <p> * @attr description * Default horizontal divider between rows of menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider=2; /** * <p> * @attr description * Default vertical divider between menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider=3; /** * <p> * @attr description * Default background for the menu header. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:headerBackground */ public static final int MenuView_android_headerBackground=4; /** * <p> * @attr description * Default background for each menu item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:itemBackground */ public static final int MenuView_android_itemBackground=5; /** * <p> * @attr description * Default disabled icon alpha for each menu item that shows an icon. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha=6; /** * <p> * @attr description * Whether space should be reserved in layout when an icon is missing. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing=7; /** * <p> * @attr description * Drawable for the arrow icon indicating a particular item is a submenu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:subMenuArrow */ public static final int MenuView_subMenuArrow=8; /** * Attributes that can be used with a NavigationView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_elevation com.companyname.yondr_finance:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #NavigationView_headerLayout com.companyname.yondr_finance:headerLayout}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemBackground com.companyname.yondr_finance:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemHorizontalPadding com.companyname.yondr_finance:itemHorizontalPadding}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemIconPadding com.companyname.yondr_finance:itemIconPadding}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemIconTint com.companyname.yondr_finance:itemIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemTextAppearance com.companyname.yondr_finance:itemTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_itemTextColor com.companyname.yondr_finance:itemTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #NavigationView_menu com.companyname.yondr_finance:menu}</code></td><td></td></tr> * </table> * @see #NavigationView_android_background * @see #NavigationView_android_fitsSystemWindows * @see #NavigationView_android_maxWidth * @see #NavigationView_elevation * @see #NavigationView_headerLayout * @see #NavigationView_itemBackground * @see #NavigationView_itemHorizontalPadding * @see #NavigationView_itemIconPadding * @see #NavigationView_itemIconTint * @see #NavigationView_itemTextAppearance * @see #NavigationView_itemTextColor * @see #NavigationView_menu */ public static final int[] NavigationView={ 0x010100d4, 0x010100dd, 0x0101011f, 0x7f0300b7, 0x7f0300e0, 0x7f0300fd, 0x7f0300fe, 0x7f030100, 0x7f030102, 0x7f030105, 0x7f030108, 0x7f03012e }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:background */ public static final int NavigationView_android_background=0; /** * <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:fitsSystemWindows */ public static final int NavigationView_android_fitsSystemWindows=1; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int NavigationView_android_maxWidth=2; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:elevation */ public static final int NavigationView_elevation=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#headerLayout} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:headerLayout */ public static final int NavigationView_headerLayout=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemBackground} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:itemBackground */ public static final int NavigationView_itemBackground=5; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemHorizontalPadding} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:itemHorizontalPadding */ public static final int NavigationView_itemHorizontalPadding=6; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemIconPadding} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:itemIconPadding */ public static final int NavigationView_itemIconPadding=7; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemIconTint} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:itemIconTint */ public static final int NavigationView_itemIconTint=8; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemTextAppearance} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:itemTextAppearance */ public static final int NavigationView_itemTextAppearance=9; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#itemTextColor} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:itemTextColor */ public static final int NavigationView_itemTextColor=10; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#menu} * attribute's value can be found in the {@link #NavigationView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:menu */ public static final int NavigationView_menu=11; /** * Attributes that can be used with a PopupWindow. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_overlapAnchor com.companyname.yondr_finance:overlapAnchor}</code></td><td>Whether the popup window should overlap its anchor view.</td></tr> * </table> * @see #PopupWindow_android_popupBackground * @see #PopupWindow_android_popupAnimationStyle * @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow={ 0x01010176, 0x010102c9, 0x7f030135 }; /** * <p>This symbol is the offset where the {@link android.R.attr#popupBackground} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground=0; /** * <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle=1; /** * <p> * @attr description * Whether the popup window should overlap its anchor view. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:overlapAnchor */ public static final int PopupWindow_overlapAnchor=2; /** * Attributes that can be used with a PopupWindowBackgroundState. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.companyname.yondr_finance:state_above_anchor}</code></td><td>State identifier indicating the popup will be above the anchor.</td></tr> * </table> * @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState={ 0x7f030177 }; /** * <p> * @attr description * State identifier indicating the popup will be above the anchor. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor=0; /** * Attributes that can be used with a RecycleListView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.companyname.yondr_finance:paddingBottomNoButtons}</code></td><td>Bottom padding to use when no buttons are present.</td></tr> * <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.companyname.yondr_finance:paddingTopNoTitle}</code></td><td>Top padding to use when no title is present.</td></tr> * </table> * @see #RecycleListView_paddingBottomNoButtons * @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView={ 0x7f030136, 0x7f030139 }; /** * <p> * @attr description * Bottom padding to use when no buttons are present. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons=0; /** * <p> * @attr description * Top padding to use when no title is present. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:paddingTopNoTitle */ public static final int RecycleListView_paddingTopNoTitle=1; /** * Attributes that can be used with a RecyclerView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollEnabled com.companyname.yondr_finance:fastScrollEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.companyname.yondr_finance:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.companyname.yondr_finance:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.companyname.yondr_finance:fastScrollVerticalThumbDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.companyname.yondr_finance:fastScrollVerticalTrackDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_layoutManager com.companyname.yondr_finance:layoutManager}</code></td><td>Class name of the Layout Manager to be used.</td></tr> * <tr><td><code>{@link #RecyclerView_reverseLayout com.companyname.yondr_finance:reverseLayout}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_spanCount com.companyname.yondr_finance:spanCount}</code></td><td></td></tr> * <tr><td><code>{@link #RecyclerView_stackFromEnd com.companyname.yondr_finance:stackFromEnd}</code></td><td></td></tr> * </table> * @see #RecyclerView_android_orientation * @see #RecyclerView_android_descendantFocusability * @see #RecyclerView_fastScrollEnabled * @see #RecyclerView_fastScrollHorizontalThumbDrawable * @see #RecyclerView_fastScrollHorizontalTrackDrawable * @see #RecyclerView_fastScrollVerticalThumbDrawable * @see #RecyclerView_fastScrollVerticalTrackDrawable * @see #RecyclerView_layoutManager * @see #RecyclerView_reverseLayout * @see #RecyclerView_spanCount * @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView={ 0x010100c4, 0x010100f1, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0300ce, 0x7f0300cf, 0x7f03010d, 0x7f03014f, 0x7f030170, 0x7f030176 }; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int RecyclerView_android_orientation=0; /** * <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>afterDescendants</td><td>1</td><td></td></tr> * <tr><td>beforeDescendants</td><td>0</td><td></td></tr> * <tr><td>blocksDescendants</td><td>2</td><td></td></tr> * </table> * * @attr name android:descendantFocusability */ public static final int RecyclerView_android_descendantFocusability=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#fastScrollEnabled} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:fastScrollEnabled */ public static final int RecyclerView_fastScrollEnabled=2; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#fastScrollHorizontalThumbDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:fastScrollHorizontalThumbDrawable */ public static final int RecyclerView_fastScrollHorizontalThumbDrawable=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#fastScrollHorizontalTrackDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:fastScrollHorizontalTrackDrawable */ public static final int RecyclerView_fastScrollHorizontalTrackDrawable=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#fastScrollVerticalThumbDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:fastScrollVerticalThumbDrawable */ public static final int RecyclerView_fastScrollVerticalThumbDrawable=5; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#fastScrollVerticalTrackDrawable} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:fastScrollVerticalTrackDrawable */ public static final int RecyclerView_fastScrollVerticalTrackDrawable=6; /** * <p> * @attr description * Class name of the Layout Manager to be used. * <p/> * The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager * and have either a default constructor or constructor with the signature * (android.content.Context, android.util.AttributeSet, int, int). * <p/> * If the name starts with a '.', application package is prefixed. * Else, if the name contains a '.', the classname is assumed to be a full class name. * Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:layoutManager */ public static final int RecyclerView_layoutManager=7; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#reverseLayout} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:reverseLayout */ public static final int RecyclerView_reverseLayout=8; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#spanCount} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.yondr_finance:spanCount */ public static final int RecyclerView_spanCount=9; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#stackFromEnd} * attribute's value can be found in the {@link #RecyclerView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:stackFromEnd */ public static final int RecyclerView_stackFromEnd=10; /** * Attributes that can be used with a ScrimInsetsFrameLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.companyname.yondr_finance:insetForeground}</code></td><td></td></tr> * </table> * @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout={ 0x7f0300fa }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#insetForeground} * attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:insetForeground */ public static final int ScrimInsetsFrameLayout_insetForeground=0; /** * Attributes that can be used with a ScrollingViewBehavior_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.companyname.yondr_finance:behavior_overlapTop}</code></td><td></td></tr> * </table> * @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout={ 0x7f03003a }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#behavior_overlapTop} * attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:behavior_overlapTop */ public static final int ScrollingViewBehavior_Layout_behavior_overlapTop=0; /** * Attributes that can be used with a SearchView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_closeIcon com.companyname.yondr_finance:closeIcon}</code></td><td>Close button icon</td></tr> * <tr><td><code>{@link #SearchView_commitIcon com.companyname.yondr_finance:commitIcon}</code></td><td>Commit icon shown in the query suggestion row</td></tr> * <tr><td><code>{@link #SearchView_defaultQueryHint com.companyname.yondr_finance:defaultQueryHint}</code></td><td>Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint.</td></tr> * <tr><td><code>{@link #SearchView_goIcon com.companyname.yondr_finance:goIcon}</code></td><td>Go button icon</td></tr> * <tr><td><code>{@link #SearchView_iconifiedByDefault com.companyname.yondr_finance:iconifiedByDefault}</code></td><td>The default state of the SearchView.</td></tr> * <tr><td><code>{@link #SearchView_layout com.companyname.yondr_finance:layout}</code></td><td>The layout to use for the search view.</td></tr> * <tr><td><code>{@link #SearchView_queryBackground com.companyname.yondr_finance:queryBackground}</code></td><td>Background for the section containing the search query</td></tr> * <tr><td><code>{@link #SearchView_queryHint com.companyname.yondr_finance:queryHint}</code></td><td>An optional user-defined query hint string to be displayed in the empty query field.</td></tr> * <tr><td><code>{@link #SearchView_searchHintIcon com.companyname.yondr_finance:searchHintIcon}</code></td><td>Search icon displayed as a text field hint</td></tr> * <tr><td><code>{@link #SearchView_searchIcon com.companyname.yondr_finance:searchIcon}</code></td><td>Search icon</td></tr> * <tr><td><code>{@link #SearchView_submitBackground com.companyname.yondr_finance:submitBackground}</code></td><td>Background for the section containing the action (e.g.</td></tr> * <tr><td><code>{@link #SearchView_suggestionRowLayout com.companyname.yondr_finance:suggestionRowLayout}</code></td><td>Layout for query suggestion rows</td></tr> * <tr><td><code>{@link #SearchView_voiceIcon com.companyname.yondr_finance:voiceIcon}</code></td><td>Voice button icon</td></tr> * </table> * @see #SearchView_android_focusable * @see #SearchView_android_maxWidth * @see #SearchView_android_inputType * @see #SearchView_android_imeOptions * @see #SearchView_closeIcon * @see #SearchView_commitIcon * @see #SearchView_defaultQueryHint * @see #SearchView_goIcon * @see #SearchView_iconifiedByDefault * @see #SearchView_layout * @see #SearchView_queryBackground * @see #SearchView_queryHint * @see #SearchView_searchHintIcon * @see #SearchView_searchIcon * @see #SearchView_submitBackground * @see #SearchView_suggestionRowLayout * @see #SearchView_voiceIcon */ public static final int[] SearchView={ 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f030078, 0x7f030090, 0x7f0300a7, 0x7f0300df, 0x7f0300f6, 0x7f03010c, 0x7f030149, 0x7f03014a, 0x7f030154, 0x7f030155, 0x7f030182, 0x7f030187, 0x7f0301e2 }; /** * <p>This symbol is the offset where the {@link android.R.attr#focusable} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>10</td><td></td></tr> * </table> * * @attr name android:focusable */ public static final int SearchView_android_focusable=0; /** * <p> * @attr description * An optional maximum width of the SearchView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int SearchView_android_maxWidth=1; /** * <p> * @attr description * The input type to set on the query text field. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>date</td><td>14</td><td></td></tr> * <tr><td>datetime</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>number</td><td>2</td><td></td></tr> * <tr><td>numberDecimal</td><td>2002</td><td></td></tr> * <tr><td>numberPassword</td><td>12</td><td></td></tr> * <tr><td>numberSigned</td><td>1002</td><td></td></tr> * <tr><td>phone</td><td>3</td><td></td></tr> * <tr><td>text</td><td>1</td><td></td></tr> * <tr><td>textAutoComplete</td><td>10001</td><td></td></tr> * <tr><td>textAutoCorrect</td><td>8001</td><td></td></tr> * <tr><td>textCapCharacters</td><td>1001</td><td></td></tr> * <tr><td>textCapSentences</td><td>4001</td><td></td></tr> * <tr><td>textCapWords</td><td>2001</td><td></td></tr> * <tr><td>textEmailAddress</td><td>21</td><td></td></tr> * <tr><td>textEmailSubject</td><td>31</td><td></td></tr> * <tr><td>textFilter</td><td>b1</td><td></td></tr> * <tr><td>textImeMultiLine</td><td>40001</td><td></td></tr> * <tr><td>textLongMessage</td><td>51</td><td></td></tr> * <tr><td>textMultiLine</td><td>20001</td><td></td></tr> * <tr><td>textNoSuggestions</td><td>80001</td><td></td></tr> * <tr><td>textPassword</td><td>81</td><td></td></tr> * <tr><td>textPersonName</td><td>61</td><td></td></tr> * <tr><td>textPhonetic</td><td>c1</td><td></td></tr> * <tr><td>textPostalAddress</td><td>71</td><td></td></tr> * <tr><td>textShortMessage</td><td>41</td><td></td></tr> * <tr><td>textUri</td><td>11</td><td></td></tr> * <tr><td>textVisiblePassword</td><td>91</td><td></td></tr> * <tr><td>textWebEditText</td><td>a1</td><td></td></tr> * <tr><td>textWebEmailAddress</td><td>d1</td><td></td></tr> * <tr><td>textWebPassword</td><td>e1</td><td></td></tr> * <tr><td>time</td><td>24</td><td></td></tr> * </table> * * @attr name android:inputType */ public static final int SearchView_android_inputType=2; /** * <p> * @attr description * The IME options to set on the query text field. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>actionDone</td><td>6</td><td></td></tr> * <tr><td>actionGo</td><td>2</td><td></td></tr> * <tr><td>actionNext</td><td>5</td><td></td></tr> * <tr><td>actionNone</td><td>1</td><td></td></tr> * <tr><td>actionPrevious</td><td>7</td><td></td></tr> * <tr><td>actionSearch</td><td>3</td><td></td></tr> * <tr><td>actionSend</td><td>4</td><td></td></tr> * <tr><td>actionUnspecified</td><td>0</td><td></td></tr> * <tr><td>flagForceAscii</td><td>80000000</td><td></td></tr> * <tr><td>flagNavigateNext</td><td>8000000</td><td></td></tr> * <tr><td>flagNavigatePrevious</td><td>4000000</td><td></td></tr> * <tr><td>flagNoAccessoryAction</td><td>20000000</td><td></td></tr> * <tr><td>flagNoEnterAction</td><td>40000000</td><td></td></tr> * <tr><td>flagNoExtractUi</td><td>10000000</td><td></td></tr> * <tr><td>flagNoFullscreen</td><td>2000000</td><td></td></tr> * <tr><td>flagNoPersonalizedLearning</td><td>1000000</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:imeOptions */ public static final int SearchView_android_imeOptions=3; /** * <p> * @attr description * Close button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:closeIcon */ public static final int SearchView_closeIcon=4; /** * <p> * @attr description * Commit icon shown in the query suggestion row * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:commitIcon */ public static final int SearchView_commitIcon=5; /** * <p> * @attr description * Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:defaultQueryHint */ public static final int SearchView_defaultQueryHint=6; /** * <p> * @attr description * Go button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:goIcon */ public static final int SearchView_goIcon=7; /** * <p> * @attr description * The default state of the SearchView. If true, it will be iconified when not in * use and expanded when clicked. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault=8; /** * <p> * @attr description * The layout to use for the search view. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:layout */ public static final int SearchView_layout=9; /** * <p> * @attr description * Background for the section containing the search query * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:queryBackground */ public static final int SearchView_queryBackground=10; /** * <p> * @attr description * An optional user-defined query hint string to be displayed in the empty query field. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:queryHint */ public static final int SearchView_queryHint=11; /** * <p> * @attr description * Search icon displayed as a text field hint * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:searchHintIcon */ public static final int SearchView_searchHintIcon=12; /** * <p> * @attr description * Search icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:searchIcon */ public static final int SearchView_searchIcon=13; /** * <p> * @attr description * Background for the section containing the action (e.g. voice search) * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:submitBackground */ public static final int SearchView_submitBackground=14; /** * <p> * @attr description * Layout for query suggestion rows * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout=15; /** * <p> * @attr description * Voice button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:voiceIcon */ public static final int SearchView_voiceIcon=16; /** * Attributes that can be used with a SfCheckBox. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SfCheckBox_checked com.companyname.yondr_finance:checked}</code></td><td></td></tr> * <tr><td><code>{@link #SfCheckBox_cornerradius com.companyname.yondr_finance:cornerradius}</code></td><td></td></tr> * <tr><td><code>{@link #SfCheckBox_isthreestate com.companyname.yondr_finance:isthreestate}</code></td><td></td></tr> * </table> * @see #SfCheckBox_checked * @see #SfCheckBox_cornerradius * @see #SfCheckBox_isthreestate */ public static final int[] SfCheckBox={ 0x7f030060, 0x7f0300a1, 0x7f0300fc }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#checked} * attribute's value can be found in the {@link #SfCheckBox} 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>checked</td><td>2</td><td></td></tr> * <tr><td>indeterminate</td><td>1</td><td></td></tr> * <tr><td>unchecked</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:checked */ public static final int SfCheckBox_checked=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#cornerradius} * attribute's value can be found in the {@link #SfCheckBox} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name com.companyname.yondr_finance:cornerradius */ public static final int SfCheckBox_cornerradius=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#isthreestate} * attribute's value can be found in the {@link #SfCheckBox} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:isthreestate */ public static final int SfCheckBox_isthreestate=2; /** * Attributes that can be used with a SfSegmentedControl. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentBackColor com.companyname.yondr_finance:segmentBackColor}</code></td><td>The backcolor of SfSegmentCondrol</td></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentBorderColor com.companyname.yondr_finance:segmentBorderColor}</code></td><td>The border color of SfSegmentCondrol</td></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentBorderThickness com.companyname.yondr_finance:segmentBorderThickness}</code></td><td>The border thickness of SfSegmentCondrol</td></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentColor com.companyname.yondr_finance:segmentColor}</code></td><td>The color of SfSegmentCondrol</td></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentCornerRadius com.companyname.yondr_finance:segmentCornerRadius}</code></td><td>The corner radius of SfSegmentCondrol</td></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentDisplayMode com.companyname.yondr_finance:segmentDisplayMode}</code></td><td>The displaymode of SfSegmentCondrol</td></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentPosition com.companyname.yondr_finance:segmentPosition}</code></td><td>The position of SfSegmentCondrol</td></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentSelectedIndex com.companyname.yondr_finance:segmentSelectedIndex}</code></td><td>The selected index of SfSegmentCondrol</td></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentStrokeThickness com.companyname.yondr_finance:segmentStrokeThickness}</code></td><td>The stroke thickness of SfSegmentCondrol</td></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentedHeight com.companyname.yondr_finance:segmentedHeight}</code></td><td>The segment height of SfSegmentCondrol</td></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentedPadding com.companyname.yondr_finance:segmentedPadding}</code></td><td>The segment padding of SfSegmentCondrol</td></tr> * <tr><td><code>{@link #SfSegmentedControl_segmentedWidth com.companyname.yondr_finance:segmentedWidth}</code></td><td>The segment width of SfSegmentCondrol</td></tr> * </table> * @see #SfSegmentedControl_segmentBackColor * @see #SfSegmentedControl_segmentBorderColor * @see #SfSegmentedControl_segmentBorderThickness * @see #SfSegmentedControl_segmentColor * @see #SfSegmentedControl_segmentCornerRadius * @see #SfSegmentedControl_segmentDisplayMode * @see #SfSegmentedControl_segmentPosition * @see #SfSegmentedControl_segmentSelectedIndex * @see #SfSegmentedControl_segmentStrokeThickness * @see #SfSegmentedControl_segmentedHeight * @see #SfSegmentedControl_segmentedPadding * @see #SfSegmentedControl_segmentedWidth */ public static final int[] SfSegmentedControl={ 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f030163 }; /** * <p> * @attr description * The backcolor of SfSegmentCondrol * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:segmentBackColor */ public static final int SfSegmentedControl_segmentBackColor=0; /** * <p> * @attr description * The border color of SfSegmentCondrol * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:segmentBorderColor */ public static final int SfSegmentedControl_segmentBorderColor=1; /** * <p> * @attr description * The border thickness of SfSegmentCondrol * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:segmentBorderThickness */ public static final int SfSegmentedControl_segmentBorderThickness=2; /** * <p> * @attr description * The color of SfSegmentCondrol * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:segmentColor */ public static final int SfSegmentedControl_segmentColor=3; /** * <p> * @attr description * The corner radius of SfSegmentCondrol * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:segmentCornerRadius */ public static final int SfSegmentedControl_segmentCornerRadius=4; /** * <p> * @attr description * The displaymode of SfSegmentCondrol * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>image</td><td>0</td><td></td></tr> * <tr><td>imagewithtext</td><td>2</td><td></td></tr> * <tr><td>text</td><td>1</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:segmentDisplayMode */ public static final int SfSegmentedControl_segmentDisplayMode=5; /** * <p> * @attr description * The position of SfSegmentCondrol * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>border</td><td>3</td><td></td></tr> * <tr><td>bottom</td><td>1</td><td></td></tr> * <tr><td>fill</td><td>2</td><td></td></tr> * <tr><td>top</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:segmentPosition */ public static final int SfSegmentedControl_segmentPosition=6; /** * <p> * @attr description * The selected index of SfSegmentCondrol * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.yondr_finance:segmentSelectedIndex */ public static final int SfSegmentedControl_segmentSelectedIndex=7; /** * <p> * @attr description * The stroke thickness of SfSegmentCondrol * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:segmentStrokeThickness */ public static final int SfSegmentedControl_segmentStrokeThickness=8; /** * <p> * @attr description * The segment height of SfSegmentCondrol * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:segmentedHeight */ public static final int SfSegmentedControl_segmentedHeight=9; /** * <p> * @attr description * The segment padding of SfSegmentCondrol * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:segmentedPadding */ public static final int SfSegmentedControl_segmentedPadding=10; /** * <p> * @attr description * The segment width of SfSegmentCondrol * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:segmentedWidth */ public static final int SfSegmentedControl_segmentedWidth=11; /** * Attributes that can be used with a Snackbar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #Snackbar_snackbarButtonStyle com.companyname.yondr_finance:snackbarButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #Snackbar_snackbarStyle com.companyname.yondr_finance:snackbarStyle}</code></td><td></td></tr> * </table> * @see #Snackbar_snackbarButtonStyle * @see #Snackbar_snackbarStyle */ public static final int[] Snackbar={ 0x7f03016e, 0x7f03016f }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#snackbarButtonStyle} * attribute's value can be found in the {@link #Snackbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:snackbarButtonStyle */ public static final int Snackbar_snackbarButtonStyle=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#snackbarStyle} * attribute's value can be found in the {@link #Snackbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:snackbarStyle */ public static final int Snackbar_snackbarStyle=1; /** * Attributes that can be used with a SnackbarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #SnackbarLayout_elevation com.companyname.yondr_finance:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.companyname.yondr_finance:maxActionInlineWidth}</code></td><td></td></tr> * </table> * @see #SnackbarLayout_android_maxWidth * @see #SnackbarLayout_elevation * @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout={ 0x0101011f, 0x7f0300b7, 0x7f03012a }; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #SnackbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int SnackbarLayout_android_maxWidth=0; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:elevation */ public static final int SnackbarLayout_elevation=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#maxActionInlineWidth} * attribute's value can be found in the {@link #SnackbarLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:maxActionInlineWidth */ public static final int SnackbarLayout_maxActionInlineWidth=2; /** * Attributes that can be used with a Spinner. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_popupTheme com.companyname.yondr_finance:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * </table> * @see #Spinner_android_entries * @see #Spinner_android_popupBackground * @see #Spinner_android_prompt * @see #Spinner_android_dropDownWidth * @see #Spinner_popupTheme */ public static final int[] Spinner={ 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f030143 }; /** * <p> * @attr description * Reference to an array resource that will populate the Spinner. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:entries */ public static final int Spinner_android_entries=0; /** * <p> * @attr description * Background drawable to use for the dropdown in spinnerMode="dropdown". * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:popupBackground */ public static final int Spinner_android_popupBackground=1; /** * <p> * @attr description * The prompt to display when the spinner's dialog is shown. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:prompt */ public static final int Spinner_android_prompt=2; /** * <p> * @attr description * Width of the dropdown in spinnerMode="dropdown". * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth=3; /** * <p> * @attr description * Theme to use for the drop-down or dialog popup window. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:popupTheme */ public static final int Spinner_popupTheme=4; /** * Attributes that can be used with a StateListDrawable. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #StateListDrawable_android_dither android:dither}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_variablePadding android:variablePadding}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_constantSize android:constantSize}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr> * </table> * @see #StateListDrawable_android_dither * @see #StateListDrawable_android_visible * @see #StateListDrawable_android_variablePadding * @see #StateListDrawable_android_constantSize * @see #StateListDrawable_android_enterFadeDuration * @see #StateListDrawable_android_exitFadeDuration */ public static final int[] StateListDrawable={ 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** * <p> * @attr description * Enables or disables dithering of the bitmap if the bitmap does not have the * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with * an RGB 565 screen). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:dither */ public static final int StateListDrawable_android_dither=0; /** * <p> * @attr description * Indicates whether the drawable should be initially visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int StateListDrawable_android_visible=1; /** * <p> * @attr description * If true, allows the drawable's padding to change based on the * current state that is selected. If false, the padding will * stay the same (based on the maximum padding of all the states). * Enabling this feature requires that the owner of the drawable * deal with performing layout when the state changes, which is * often not supported. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:variablePadding */ public static final int StateListDrawable_android_variablePadding=2; /** * <p> * @attr description * If true, the drawable's reported internal size will remain * constant as the state changes; the size is the maximum of all * of the states. If false, the size will vary based on the * current state. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:constantSize */ public static final int StateListDrawable_android_constantSize=3; /** * <p> * @attr description * Amount of time (in milliseconds) to fade in a new state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:enterFadeDuration */ public static final int StateListDrawable_android_enterFadeDuration=4; /** * <p> * @attr description * Amount of time (in milliseconds) to fade out an old state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:exitFadeDuration */ public static final int StateListDrawable_android_exitFadeDuration=5; /** * Attributes that can be used with a StateListDrawableItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #StateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr> * </table> * @see #StateListDrawableItem_android_drawable */ public static final int[] StateListDrawableItem={ 0x01010199 }; /** * <p> * @attr description * Reference to a drawable resource to use for the state. If not * given, the drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int StateListDrawableItem_android_drawable=0; /** * Attributes that can be used with a SwitchCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_showText com.companyname.yondr_finance:showText}</code></td><td>Whether to draw on/off text.</td></tr> * <tr><td><code>{@link #SwitchCompat_splitTrack com.companyname.yondr_finance:splitTrack}</code></td><td>Whether to split the track and leave a gap for the thumb drawable.</td></tr> * <tr><td><code>{@link #SwitchCompat_switchMinWidth com.companyname.yondr_finance:switchMinWidth}</code></td><td>Minimum width for the switch component</td></tr> * <tr><td><code>{@link #SwitchCompat_switchPadding com.companyname.yondr_finance:switchPadding}</code></td><td>Minimum space between the switch and caption text</td></tr> * <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.companyname.yondr_finance:switchTextAppearance}</code></td><td>TextAppearance style for text displayed on the switch thumb.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.companyname.yondr_finance:thumbTextPadding}</code></td><td>Amount of padding on either side of text within the switch thumb.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTint com.companyname.yondr_finance:thumbTint}</code></td><td>Tint to apply to the thumb drawable.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTintMode com.companyname.yondr_finance:thumbTintMode}</code></td><td>Blending mode used to apply the thumb tint.</td></tr> * <tr><td><code>{@link #SwitchCompat_track com.companyname.yondr_finance:track}</code></td><td>Drawable to use as the "track" that the switch thumb slides within.</td></tr> * <tr><td><code>{@link #SwitchCompat_trackTint com.companyname.yondr_finance:trackTint}</code></td><td>Tint to apply to the track.</td></tr> * <tr><td><code>{@link #SwitchCompat_trackTintMode com.companyname.yondr_finance:trackTintMode}</code></td><td>Blending mode used to apply the track tint.</td></tr> * </table> * @see #SwitchCompat_android_textOn * @see #SwitchCompat_android_textOff * @see #SwitchCompat_android_thumb * @see #SwitchCompat_showText * @see #SwitchCompat_splitTrack * @see #SwitchCompat_switchMinWidth * @see #SwitchCompat_switchPadding * @see #SwitchCompat_switchTextAppearance * @see #SwitchCompat_thumbTextPadding * @see #SwitchCompat_thumbTint * @see #SwitchCompat_thumbTintMode * @see #SwitchCompat_track * @see #SwitchCompat_trackTint * @see #SwitchCompat_trackTintMode */ public static final int[] SwitchCompat={ 0x01010124, 0x01010125, 0x01010142, 0x7f030169, 0x7f030174, 0x7f030188, 0x7f030189, 0x7f03018b, 0x7f0301c3, 0x7f0301c4, 0x7f0301c5, 0x7f0301dc, 0x7f0301dd, 0x7f0301de }; /** * <p> * @attr description * Text to use when the switch is in the checked/"on" state. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:textOn */ public static final int SwitchCompat_android_textOn=0; /** * <p> * @attr description * Text to use when the switch is in the unchecked/"off" state. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:textOff */ public static final int SwitchCompat_android_textOff=1; /** * <p> * @attr description * Drawable to use as the "thumb" that switches back and forth. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int SwitchCompat_android_thumb=2; /** * <p> * @attr description * Whether to draw on/off text. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:showText */ public static final int SwitchCompat_showText=3; /** * <p> * @attr description * Whether to split the track and leave a gap for the thumb drawable. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:splitTrack */ public static final int SwitchCompat_splitTrack=4; /** * <p> * @attr description * Minimum width for the switch component * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:switchMinWidth */ public static final int SwitchCompat_switchMinWidth=5; /** * <p> * @attr description * Minimum space between the switch and caption text * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:switchPadding */ public static final int SwitchCompat_switchPadding=6; /** * <p> * @attr description * TextAppearance style for text displayed on the switch thumb. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance=7; /** * <p> * @attr description * Amount of padding on either side of text within the switch thumb. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding=8; /** * <p> * @attr description * Tint to apply to the thumb drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:thumbTint */ public static final int SwitchCompat_thumbTint=9; /** * <p> * @attr description * Blending mode used to apply the thumb tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.yondr_finance:thumbTintMode */ public static final int SwitchCompat_thumbTintMode=10; /** * <p> * @attr description * Drawable to use as the "track" that the switch thumb slides within. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:track */ public static final int SwitchCompat_track=11; /** * <p> * @attr description * Tint to apply to the track. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:trackTint */ public static final int SwitchCompat_trackTint=12; /** * <p> * @attr description * Blending mode used to apply the track tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.yondr_finance:trackTintMode */ public static final int SwitchCompat_trackTintMode=13; /** * Attributes that can be used with a TabItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr> * <tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr> * </table> * @see #TabItem_android_icon * @see #TabItem_android_layout * @see #TabItem_android_text */ public static final int[] TabItem={ 0x01010002, 0x010100f2, 0x0101014f }; /** * <p>This symbol is the offset where the {@link android.R.attr#icon} * attribute's value can be found in the {@link #TabItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:icon */ public static final int TabItem_android_icon=0; /** * <p>This symbol is the offset where the {@link android.R.attr#layout} * attribute's value can be found in the {@link #TabItem} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int TabItem_android_layout=1; /** * <p>This symbol is the offset where the {@link android.R.attr#text} * attribute's value can be found in the {@link #TabItem} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:text */ public static final int TabItem_android_text=2; /** * Attributes that can be used with a TabLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #TabLayout_tabBackground com.companyname.yondr_finance:tabBackground}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabContentStart com.companyname.yondr_finance:tabContentStart}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabGravity com.companyname.yondr_finance:tabGravity}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIconTint com.companyname.yondr_finance:tabIconTint}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIconTintMode com.companyname.yondr_finance:tabIconTintMode}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicator com.companyname.yondr_finance:tabIndicator}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorAnimationDuration com.companyname.yondr_finance:tabIndicatorAnimationDuration}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorColor com.companyname.yondr_finance:tabIndicatorColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorFullWidth com.companyname.yondr_finance:tabIndicatorFullWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorGravity com.companyname.yondr_finance:tabIndicatorGravity}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabIndicatorHeight com.companyname.yondr_finance:tabIndicatorHeight}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabInlineLabel com.companyname.yondr_finance:tabInlineLabel}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMaxWidth com.companyname.yondr_finance:tabMaxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMinWidth com.companyname.yondr_finance:tabMinWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabMode com.companyname.yondr_finance:tabMode}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPadding com.companyname.yondr_finance:tabPadding}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingBottom com.companyname.yondr_finance:tabPaddingBottom}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingEnd com.companyname.yondr_finance:tabPaddingEnd}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingStart com.companyname.yondr_finance:tabPaddingStart}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabPaddingTop com.companyname.yondr_finance:tabPaddingTop}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabRippleColor com.companyname.yondr_finance:tabRippleColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabSelectedTextColor com.companyname.yondr_finance:tabSelectedTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabTextAppearance com.companyname.yondr_finance:tabTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabTextColor com.companyname.yondr_finance:tabTextColor}</code></td><td></td></tr> * <tr><td><code>{@link #TabLayout_tabUnboundedRipple com.companyname.yondr_finance:tabUnboundedRipple}</code></td><td></td></tr> * </table> * @see #TabLayout_tabBackground * @see #TabLayout_tabContentStart * @see #TabLayout_tabGravity * @see #TabLayout_tabIconTint * @see #TabLayout_tabIconTintMode * @see #TabLayout_tabIndicator * @see #TabLayout_tabIndicatorAnimationDuration * @see #TabLayout_tabIndicatorColor * @see #TabLayout_tabIndicatorFullWidth * @see #TabLayout_tabIndicatorGravity * @see #TabLayout_tabIndicatorHeight * @see #TabLayout_tabInlineLabel * @see #TabLayout_tabMaxWidth * @see #TabLayout_tabMinWidth * @see #TabLayout_tabMode * @see #TabLayout_tabPadding * @see #TabLayout_tabPaddingBottom * @see #TabLayout_tabPaddingEnd * @see #TabLayout_tabPaddingStart * @see #TabLayout_tabPaddingTop * @see #TabLayout_tabRippleColor * @see #TabLayout_tabSelectedTextColor * @see #TabLayout_tabTextAppearance * @see #TabLayout_tabTextColor * @see #TabLayout_tabUnboundedRipple */ public static final int[] TabLayout={ 0x7f03018c, 0x7f03018d, 0x7f03018e, 0x7f03018f, 0x7f030190, 0x7f030191, 0x7f030192, 0x7f030193, 0x7f030194, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f030199, 0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f03019f, 0x7f0301a0, 0x7f0301a1, 0x7f0301a3, 0x7f0301a4, 0x7f0301a5 }; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabBackground} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:tabBackground */ public static final int TabLayout_tabBackground=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabContentStart} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:tabContentStart */ public static final int TabLayout_tabContentStart=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabGravity} * attribute's value can be found in the {@link #TabLayout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>center</td><td>1</td><td></td></tr> * <tr><td>fill</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:tabGravity */ public static final int TabLayout_tabGravity=2; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabIconTint} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:tabIconTint */ public static final int TabLayout_tabIconTint=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabIconTintMode} * attribute's value can be found in the {@link #TabLayout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td></td></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:tabIconTintMode */ public static final int TabLayout_tabIconTintMode=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabIndicator} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:tabIndicator */ public static final int TabLayout_tabIndicator=5; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabIndicatorAnimationDuration} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.yondr_finance:tabIndicatorAnimationDuration */ public static final int TabLayout_tabIndicatorAnimationDuration=6; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabIndicatorColor} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor=7; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabIndicatorFullWidth} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:tabIndicatorFullWidth */ public static final int TabLayout_tabIndicatorFullWidth=8; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabIndicatorGravity} * attribute's value can be found in the {@link #TabLayout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>0</td><td></td></tr> * <tr><td>center</td><td>1</td><td></td></tr> * <tr><td>stretch</td><td>3</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:tabIndicatorGravity */ public static final int TabLayout_tabIndicatorGravity=9; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabIndicatorHeight} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight=10; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabInlineLabel} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:tabInlineLabel */ public static final int TabLayout_tabInlineLabel=11; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabMaxWidth} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:tabMaxWidth */ public static final int TabLayout_tabMaxWidth=12; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabMinWidth} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:tabMinWidth */ public static final int TabLayout_tabMinWidth=13; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabMode} * attribute's value can be found in the {@link #TabLayout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fixed</td><td>1</td><td></td></tr> * <tr><td>scrollable</td><td>0</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:tabMode */ public static final int TabLayout_tabMode=14; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabPadding} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:tabPadding */ public static final int TabLayout_tabPadding=15; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabPaddingBottom} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom=16; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabPaddingEnd} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd=17; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabPaddingStart} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:tabPaddingStart */ public static final int TabLayout_tabPaddingStart=18; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabPaddingTop} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:tabPaddingTop */ public static final int TabLayout_tabPaddingTop=19; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabRippleColor} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:tabRippleColor */ public static final int TabLayout_tabRippleColor=20; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabSelectedTextColor} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor=21; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabTextAppearance} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:tabTextAppearance */ public static final int TabLayout_tabTextAppearance=22; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabTextColor} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:tabTextColor */ public static final int TabLayout_tabTextColor=23; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#tabUnboundedRipple} * attribute's value can be found in the {@link #TabLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:tabUnboundedRipple */ public static final int TabLayout_tabUnboundedRipple=24; /** * Attributes that can be used with a TextAppearance. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_fontFamily com.companyname.yondr_finance:fontFamily}</code></td><td>The attribute for the font family.</td></tr> * <tr><td><code>{@link #TextAppearance_textAllCaps com.companyname.yondr_finance:textAllCaps}</code></td><td>Present the text in ALL CAPS.</td></tr> * </table> * @see #TextAppearance_android_textSize * @see #TextAppearance_android_typeface * @see #TextAppearance_android_textStyle * @see #TextAppearance_android_textColor * @see #TextAppearance_android_textColorHint * @see #TextAppearance_android_textColorLink * @see #TextAppearance_android_shadowColor * @see #TextAppearance_android_shadowDx * @see #TextAppearance_android_shadowDy * @see #TextAppearance_android_shadowRadius * @see #TextAppearance_android_fontFamily * @see #TextAppearance_fontFamily * @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance={ 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f0300d3, 0x7f0301a6 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textSize} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:textSize */ public static final int TextAppearance_android_textSize=0; /** * <p>This symbol is the offset where the {@link android.R.attr#typeface} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>monospace</td><td>3</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>sans</td><td>1</td><td></td></tr> * <tr><td>serif</td><td>2</td><td></td></tr> * </table> * * @attr name android:typeface */ public static final int TextAppearance_android_typeface=1; /** * <p>This symbol is the offset where the {@link android.R.attr#textStyle} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bold</td><td>1</td><td></td></tr> * <tr><td>italic</td><td>2</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:textStyle */ public static final int TextAppearance_android_textStyle=2; /** * <p>This symbol is the offset where the {@link android.R.attr#textColor} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColor */ public static final int TextAppearance_android_textColor=3; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorHint} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColorHint */ public static final int TextAppearance_android_textColorHint=4; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorLink} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColorLink */ public static final int TextAppearance_android_textColorLink=5; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowColor} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor=6; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowDx} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx=7; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowDy} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy=8; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius=9; /** * <p>This symbol is the offset where the {@link android.R.attr#fontFamily} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:fontFamily */ public static final int TextAppearance_android_fontFamily=10; /** * <p> * @attr description * The attribute for the font family. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:fontFamily */ public static final int TextAppearance_fontFamily=11; /** * <p> * @attr description * Present the text in ALL CAPS. This may use a small-caps form when available. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:textAllCaps */ public static final int TextAppearance_textAllCaps=12; /** * Attributes that can be used with a TextInputLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxBackgroundColor com.companyname.yondr_finance:boxBackgroundColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxBackgroundMode com.companyname.yondr_finance:boxBackgroundMode}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCollapsedPaddingTop com.companyname.yondr_finance:boxCollapsedPaddingTop}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusBottomEnd com.companyname.yondr_finance:boxCornerRadiusBottomEnd}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusBottomStart com.companyname.yondr_finance:boxCornerRadiusBottomStart}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusTopEnd com.companyname.yondr_finance:boxCornerRadiusTopEnd}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxCornerRadiusTopStart com.companyname.yondr_finance:boxCornerRadiusTopStart}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxStrokeColor com.companyname.yondr_finance:boxStrokeColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_boxStrokeWidth com.companyname.yondr_finance:boxStrokeWidth}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterEnabled com.companyname.yondr_finance:counterEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterMaxLength com.companyname.yondr_finance:counterMaxLength}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.yondr_finance:counterOverflowTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_counterTextAppearance com.companyname.yondr_finance:counterTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_errorEnabled com.companyname.yondr_finance:errorEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_errorTextAppearance com.companyname.yondr_finance:errorTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_helperText com.companyname.yondr_finance:helperText}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_helperTextEnabled com.companyname.yondr_finance:helperTextEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_helperTextTextAppearance com.companyname.yondr_finance:helperTextTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.companyname.yondr_finance:hintAnimationEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintEnabled com.companyname.yondr_finance:hintEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_hintTextAppearance com.companyname.yondr_finance:hintTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.companyname.yondr_finance:passwordToggleContentDescription}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.companyname.yondr_finance:passwordToggleDrawable}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.companyname.yondr_finance:passwordToggleEnabled}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleTint com.companyname.yondr_finance:passwordToggleTint}</code></td><td></td></tr> * <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.companyname.yondr_finance:passwordToggleTintMode}</code></td><td></td></tr> * </table> * @see #TextInputLayout_android_textColorHint * @see #TextInputLayout_android_hint * @see #TextInputLayout_boxBackgroundColor * @see #TextInputLayout_boxBackgroundMode * @see #TextInputLayout_boxCollapsedPaddingTop * @see #TextInputLayout_boxCornerRadiusBottomEnd * @see #TextInputLayout_boxCornerRadiusBottomStart * @see #TextInputLayout_boxCornerRadiusTopEnd * @see #TextInputLayout_boxCornerRadiusTopStart * @see #TextInputLayout_boxStrokeColor * @see #TextInputLayout_boxStrokeWidth * @see #TextInputLayout_counterEnabled * @see #TextInputLayout_counterMaxLength * @see #TextInputLayout_counterOverflowTextAppearance * @see #TextInputLayout_counterTextAppearance * @see #TextInputLayout_errorEnabled * @see #TextInputLayout_errorTextAppearance * @see #TextInputLayout_helperText * @see #TextInputLayout_helperTextEnabled * @see #TextInputLayout_helperTextTextAppearance * @see #TextInputLayout_hintAnimationEnabled * @see #TextInputLayout_hintEnabled * @see #TextInputLayout_hintTextAppearance * @see #TextInputLayout_passwordToggleContentDescription * @see #TextInputLayout_passwordToggleDrawable * @see #TextInputLayout_passwordToggleEnabled * @see #TextInputLayout_passwordToggleTint * @see #TextInputLayout_passwordToggleTintMode */ public static final int[] TextInputLayout={ 0x0101009a, 0x01010150, 0x7f030043, 0x7f030044, 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f0300a2, 0x7f0300a3, 0x7f0300a4, 0x7f0300a5, 0x7f0300ba, 0x7f0300bb, 0x7f0300e2, 0x7f0300e3, 0x7f0300e4, 0x7f0300e8, 0x7f0300e9, 0x7f0300ea, 0x7f03013d, 0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorHint} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColorHint */ public static final int TextInputLayout_android_textColorHint=0; /** * <p>This symbol is the offset where the {@link android.R.attr#hint} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:hint */ public static final int TextInputLayout_android_hint=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#boxBackgroundColor} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:boxBackgroundColor */ public static final int TextInputLayout_boxBackgroundColor=2; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#boxBackgroundMode} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>filled</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>outline</td><td>2</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:boxBackgroundMode */ public static final int TextInputLayout_boxBackgroundMode=3; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#boxCollapsedPaddingTop} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:boxCollapsedPaddingTop */ public static final int TextInputLayout_boxCollapsedPaddingTop=4; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#boxCornerRadiusBottomEnd} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:boxCornerRadiusBottomEnd */ public static final int TextInputLayout_boxCornerRadiusBottomEnd=5; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#boxCornerRadiusBottomStart} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:boxCornerRadiusBottomStart */ public static final int TextInputLayout_boxCornerRadiusBottomStart=6; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#boxCornerRadiusTopEnd} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:boxCornerRadiusTopEnd */ public static final int TextInputLayout_boxCornerRadiusTopEnd=7; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#boxCornerRadiusTopStart} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:boxCornerRadiusTopStart */ public static final int TextInputLayout_boxCornerRadiusTopStart=8; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#boxStrokeColor} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:boxStrokeColor */ public static final int TextInputLayout_boxStrokeColor=9; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#boxStrokeWidth} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:boxStrokeWidth */ public static final int TextInputLayout_boxStrokeWidth=10; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#counterEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:counterEnabled */ public static final int TextInputLayout_counterEnabled=11; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#counterMaxLength} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name com.companyname.yondr_finance:counterMaxLength */ public static final int TextInputLayout_counterMaxLength=12; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#counterOverflowTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance=13; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#counterTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance=14; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#errorEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:errorEnabled */ public static final int TextInputLayout_errorEnabled=15; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#errorTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance=16; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#helperText} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:helperText */ public static final int TextInputLayout_helperText=17; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#helperTextEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:helperTextEnabled */ public static final int TextInputLayout_helperTextEnabled=18; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#helperTextTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:helperTextTextAppearance */ public static final int TextInputLayout_helperTextTextAppearance=19; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#hintAnimationEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled=20; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#hintEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:hintEnabled */ public static final int TextInputLayout_hintEnabled=21; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#hintTextAppearance} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance=22; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#passwordToggleContentDescription} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription=23; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#passwordToggleDrawable} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable=24; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#passwordToggleEnabled} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled=25; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#passwordToggleTint} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint=26; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#passwordToggleTintMode} * attribute's value can be found in the {@link #TextInputLayout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>multiply</td><td>e</td><td></td></tr> * <tr><td>screen</td><td>f</td><td></td></tr> * <tr><td>src_atop</td><td>9</td><td></td></tr> * <tr><td>src_in</td><td>5</td><td></td></tr> * <tr><td>src_over</td><td>3</td><td></td></tr> * </table> * * @attr name com.companyname.yondr_finance:passwordToggleTintMode */ public static final int TextInputLayout_passwordToggleTintMode=27; /** * Attributes that can be used with a ThemeEnforcement. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ThemeEnforcement_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #ThemeEnforcement_enforceMaterialTheme com.companyname.yondr_finance:enforceMaterialTheme}</code></td><td></td></tr> * <tr><td><code>{@link #ThemeEnforcement_enforceTextAppearance com.companyname.yondr_finance:enforceTextAppearance}</code></td><td></td></tr> * </table> * @see #ThemeEnforcement_android_textAppearance * @see #ThemeEnforcement_enforceMaterialTheme * @see #ThemeEnforcement_enforceTextAppearance */ public static final int[] ThemeEnforcement={ 0x01010034, 0x7f0300b8, 0x7f0300b9 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #ThemeEnforcement} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int ThemeEnforcement_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#enforceMaterialTheme} * attribute's value can be found in the {@link #ThemeEnforcement} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:enforceMaterialTheme */ public static final int ThemeEnforcement_enforceMaterialTheme=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#enforceTextAppearance} * attribute's value can be found in the {@link #ThemeEnforcement} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name com.companyname.yondr_finance:enforceTextAppearance */ public static final int ThemeEnforcement_enforceTextAppearance=2; /** * Attributes that can be used with a Toolbar. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_buttonGravity com.companyname.yondr_finance:buttonGravity}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseContentDescription com.companyname.yondr_finance:collapseContentDescription}</code></td><td>Text to set as the content description for the collapse button.</td></tr> * <tr><td><code>{@link #Toolbar_collapseIcon com.companyname.yondr_finance:collapseIcon}</code></td><td>Icon drawable to use for the collapse button.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEnd com.companyname.yondr_finance:contentInsetEnd}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.companyname.yondr_finance:contentInsetEndWithActions}</code></td><td>Minimum inset for content views within a bar when actions from a menu * are present.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetLeft com.companyname.yondr_finance:contentInsetLeft}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetRight com.companyname.yondr_finance:contentInsetRight}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStart com.companyname.yondr_finance:contentInsetStart}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.companyname.yondr_finance:contentInsetStartWithNavigation}</code></td><td>Minimum inset for content views within a bar when a navigation button * is present, such as the Up button.</td></tr> * <tr><td><code>{@link #Toolbar_logo com.companyname.yondr_finance:logo}</code></td><td>Specifies the drawable used for the application logo.</td></tr> * <tr><td><code>{@link #Toolbar_logoDescription com.companyname.yondr_finance:logoDescription}</code></td><td>A content description string to describe the appearance of the * associated logo image.</td></tr> * <tr><td><code>{@link #Toolbar_maxButtonHeight com.companyname.yondr_finance:maxButtonHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationContentDescription com.companyname.yondr_finance:navigationContentDescription}</code></td><td>Text to set as the content description for the navigation button * located at the start of the toolbar.</td></tr> * <tr><td><code>{@link #Toolbar_navigationIcon com.companyname.yondr_finance:navigationIcon}</code></td><td>Icon drawable to use for the navigation button located at * the start of the toolbar.</td></tr> * <tr><td><code>{@link #Toolbar_popupTheme com.companyname.yondr_finance:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #Toolbar_subtitle com.companyname.yondr_finance:subtitle}</code></td><td>Specifies subtitle text used for navigationMode="normal"</td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.companyname.yondr_finance:subtitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextColor com.companyname.yondr_finance:subtitleTextColor}</code></td><td>A color to apply to the subtitle string.</td></tr> * <tr><td><code>{@link #Toolbar_title com.companyname.yondr_finance:title}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargin com.companyname.yondr_finance:titleMargin}</code></td><td>Specifies extra space on the left, start, right and end sides * of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginBottom com.companyname.yondr_finance:titleMarginBottom}</code></td><td>Specifies extra space on the bottom side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginEnd com.companyname.yondr_finance:titleMarginEnd}</code></td><td>Specifies extra space on the end side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginStart com.companyname.yondr_finance:titleMarginStart}</code></td><td>Specifies extra space on the start side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginTop com.companyname.yondr_finance:titleMarginTop}</code></td><td>Specifies extra space on the top side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMargins com.companyname.yondr_finance:titleMargins}</code></td><td>{@deprecated Use titleMargin}</td></tr> * <tr><td><code>{@link #Toolbar_titleTextAppearance com.companyname.yondr_finance:titleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextColor com.companyname.yondr_finance:titleTextColor}</code></td><td>A color to apply to the title string.</td></tr> * </table> * @see #Toolbar_android_gravity * @see #Toolbar_android_minHeight * @see #Toolbar_buttonGravity * @see #Toolbar_collapseContentDescription * @see #Toolbar_collapseIcon * @see #Toolbar_contentInsetEnd * @see #Toolbar_contentInsetEndWithActions * @see #Toolbar_contentInsetLeft * @see #Toolbar_contentInsetRight * @see #Toolbar_contentInsetStart * @see #Toolbar_contentInsetStartWithNavigation * @see #Toolbar_logo * @see #Toolbar_logoDescription * @see #Toolbar_maxButtonHeight * @see #Toolbar_navigationContentDescription * @see #Toolbar_navigationIcon * @see #Toolbar_popupTheme * @see #Toolbar_subtitle * @see #Toolbar_subtitleTextAppearance * @see #Toolbar_subtitleTextColor * @see #Toolbar_title * @see #Toolbar_titleMargin * @see #Toolbar_titleMarginBottom * @see #Toolbar_titleMarginEnd * @see #Toolbar_titleMarginStart * @see #Toolbar_titleMarginTop * @see #Toolbar_titleMargins * @see #Toolbar_titleTextAppearance * @see #Toolbar_titleTextColor */ @Deprecated public static final int[] Toolbar={ 0x010100af, 0x01010140, 0x7f030051, 0x7f030080, 0x7f030081, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095, 0x7f030096, 0x7f030097, 0x7f030126, 0x7f030127, 0x7f03012b, 0x7f030130, 0x7f030131, 0x7f030143, 0x7f030183, 0x7f030184, 0x7f030185, 0x7f0301cb, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf, 0x7f0301d0, 0x7f0301d1, 0x7f0301d2, 0x7f0301d3, 0x7f0301d4 }; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * attribute's value can be found in the {@link #Toolbar} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:gravity */ public static final int Toolbar_android_gravity=0; /** * <p>This symbol is the offset where the {@link android.R.attr#minHeight} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minHeight */ public static final int Toolbar_android_minHeight=1; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#buttonGravity} * attribute's value can be found in the {@link #Toolbar} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> * * @attr name com.companyname.yondr_finance:buttonGravity */ public static final int Toolbar_buttonGravity=2; /** * <p> * @attr description * Text to set as the content description for the collapse button. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:collapseContentDescription */ public static final int Toolbar_collapseContentDescription=3; /** * <p> * @attr description * Icon drawable to use for the collapse button. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:collapseIcon */ public static final int Toolbar_collapseIcon=4; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetEnd */ public static final int Toolbar_contentInsetEnd=5; /** * <p> * @attr description * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions=6; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetLeft */ public static final int Toolbar_contentInsetLeft=7; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetRight */ public static final int Toolbar_contentInsetRight=8; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetStart */ public static final int Toolbar_contentInsetStart=9; /** * <p> * @attr description * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation=10; /** * <p> * @attr description * Drawable to set as the logo that appears at the starting side of * the Toolbar, just after the navigation button. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:logo */ public static final int Toolbar_logo=11; /** * <p> * @attr description * A content description string to describe the appearance of the * associated logo image. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:logoDescription */ public static final int Toolbar_logoDescription=12; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#maxButtonHeight} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:maxButtonHeight */ public static final int Toolbar_maxButtonHeight=13; /** * <p> * @attr description * Text to set as the content description for the navigation button * located at the start of the toolbar. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:navigationContentDescription */ public static final int Toolbar_navigationContentDescription=14; /** * <p> * @attr description * Icon drawable to use for the navigation button located at * the start of the toolbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:navigationIcon */ public static final int Toolbar_navigationIcon=15; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the toolbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:popupTheme */ public static final int Toolbar_popupTheme=16; /** * <p> * @attr description * Specifies subtitle text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:subtitle */ public static final int Toolbar_subtitle=17; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#subtitleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance=18; /** * <p> * @attr description * A color to apply to the subtitle string. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:subtitleTextColor */ public static final int Toolbar_subtitleTextColor=19; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#title} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name com.companyname.yondr_finance:title */ public static final int Toolbar_title=20; /** * <p> * @attr description * Specifies extra space on the left, start, right and end sides * of the toolbar's title. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:titleMargin */ public static final int Toolbar_titleMargin=21; /** * <p> * @attr description * Specifies extra space on the bottom side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:titleMarginBottom */ public static final int Toolbar_titleMarginBottom=22; /** * <p> * @attr description * Specifies extra space on the end side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:titleMarginEnd */ public static final int Toolbar_titleMarginEnd=23; /** * <p> * @attr description * Specifies extra space on the start side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:titleMarginStart */ public static final int Toolbar_titleMarginStart=24; /** * <p> * @attr description * Specifies extra space on the top side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:titleMarginTop */ public static final int Toolbar_titleMarginTop=25; /** * <p> * @attr description * {@deprecated Use titleMargin} * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:titleMargins */ @Deprecated public static final int Toolbar_titleMargins=26; /** * <p>This symbol is the offset where the {@link com.companyname.yondr_finance.R.attr#titleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:titleTextAppearance */ public static final int Toolbar_titleTextAppearance=27; /** * <p> * @attr description * A color to apply to the title string. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:titleTextColor */ public static final int Toolbar_titleTextColor=28; /** * Attributes that can be used with a View. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> * <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> * <tr><td><code>{@link #View_paddingEnd com.companyname.yondr_finance:paddingEnd}</code></td><td>Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.</td></tr> * <tr><td><code>{@link #View_paddingStart com.companyname.yondr_finance:paddingStart}</code></td><td>Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.</td></tr> * <tr><td><code>{@link #View_theme com.companyname.yondr_finance:theme}</code></td><td>Deprecated.</td></tr> * </table> * @see #View_android_theme * @see #View_android_focusable * @see #View_paddingEnd * @see #View_paddingStart * @see #View_theme */ public static final int[] View={ 0x01010000, 0x010100da, 0x7f030137, 0x7f030138, 0x7f0301c1 }; /** * <p> * @attr description * Specifies a theme override for a view. When a theme override is set, the * view will be inflated using a {@link android.content.Context} themed with * the specified resource. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:theme */ public static final int View_android_theme=0; /** * <p> * @attr description * Boolean that controls whether a view can take focus. By default the user can not * move focus to a view; by setting this attribute to true the view is * allowed to take focus. This value does not impact the behavior of * directly calling {@link android.view.View#requestFocus}, which will * always request focus regardless of this view. It only impacts where * focus navigation will try to move focus. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>10</td><td></td></tr> * </table> * * @attr name android:focusable */ public static final int View_android_focusable=1; /** * <p> * @attr description * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:paddingEnd */ public static final int View_paddingEnd=2; /** * <p> * @attr description * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name com.companyname.yondr_finance:paddingStart */ public static final int View_paddingStart=3; /** * <p> * @attr description * Deprecated. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name com.companyname.yondr_finance:theme */ public static final int View_theme=4; /** * Attributes that can be used with a ViewBackgroundHelper. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.companyname.yondr_finance:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.yondr_finance:backgroundTintMode}</code></td><td>Blending mode used to apply the background tint.</td></tr> * </table> * @see #ViewBackgroundHelper_android_background * @see #ViewBackgroundHelper_backgroundTint * @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper={ 0x010100d4, 0x7f030034, 0x7f030035 }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #ViewBackgroundHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:background */ public static final int ViewBackgroundHelper_android_background=0; /** * <p> * @attr description * Tint to apply to the background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name com.companyname.yondr_finance:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint=1; /** * <p> * @attr description * Blending mode used to apply the background tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name com.companyname.yondr_finance:backgroundTintMode */ public static final int ViewBackgroundHelper_backgroundTintMode=2; /** * Attributes that can be used with a ViewStubCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> * </table> * @see #ViewStubCompat_android_id * @see #ViewStubCompat_android_layout * @see #ViewStubCompat_android_inflatedId */ public static final int[] ViewStubCompat={ 0x010100d0, 0x010100f2, 0x010100f3 }; /** * <p>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #ViewStubCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int ViewStubCompat_android_id=0; /** * <p> * @attr description * Supply an identifier for the layout resource to inflate when the ViewStub * becomes visible or when forced to do so. The layout resource must be a * valid reference to a layout. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int ViewStubCompat_android_layout=1; /** * <p> * @attr description * Overrides the id of the inflated View with this value. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId=2; } public static final class xml { public static final int xamarin_essentials_fileprovider_file_paths=0x7f100000; } }
[ "divya.eficaz@gmail.com" ]
divya.eficaz@gmail.com
81134ba3ffab87044f9fd132b1d1f9e416d7a78a
9734caa4bf051744440d4443322c7f873021a123
/vacancy-indexer-ui/src/main/java/com/maxvetrenko/vacancy/ui/Runner.java
d3a18055ee18a049a3dc088d15b9101a2a38e24b
[]
no_license
maxvetrenko/vacancy-indexer
3c4ca8faeac11b8871409e6d224cc3728652b298
2f32e238ba49dd92985538a37fa6c73f28d51ea1
refs/heads/master
2021-01-17T05:21:08.008597
2015-03-06T09:48:12
2015-03-06T10:17:34
31,762,967
0
0
null
null
null
null
UTF-8
Java
false
false
234
java
package com.maxvetrenko.vacancy.ui; import com.maxvetrenko.vacancy.ui.utils.SpringContext; public class Runner { public static void main(String[] args) { SpringContext.getBean(VacancySearchWindow.class).open(); } }
[ "maxvetrenko2241@gmail.com" ]
maxvetrenko2241@gmail.com
7df12bd2d43d864b6518d12be0bc276fe9c195b5
201fc6ec9651a3ea54c4d4c67868d9c635dc4ee7
/src/main/java/service/AccountService.java
7ed7b32666d189eced4453621eda9d4b763062a5
[]
no_license
ViktoryaInn/My-web-app
90a5c59a427117d55fd09f1097aa4e3d6f4cf46a
7300092bffb30de100f019f2f8d87c2b9671d6da
refs/heads/main
2023-01-02T23:00:55.527076
2020-10-28T14:19:58
2020-10-28T14:19:58
299,724,842
0
0
null
null
null
null
UTF-8
Java
false
false
2,690
java
package service; import dbService.DBService; import dbService.DBException; import dbService.dataSets.UsersDataSet; import java.sql.SQLException; import java.util.HashMap; import java.util.Map; public class AccountService { private static Map<String, UsersDataSet> sessions = new HashMap<>(); private DBService dataBase = new DBService(); public AccountService(){} public boolean addNewUser(String login, String password, String email) throws SQLException { UsersDataSet user = new UsersDataSet(login, password, email); if(dataBase.getUser(login) != null){ return false; } try{ dataBase.addUser(user.getLogin(), user.getPassword(), user.getEmail()); }catch (SQLException e){ return false; } return true; } public boolean getUserByLogin(String login) throws SQLException { return dataBase.getUser(login) == null; } public boolean authorizateUser(UsersDataSet authUser, String sessionID) throws SQLException { UsersDataSet baseUser = dataBase.getUser(authUser.getLogin()); if(baseUser != null){ if(baseUser.getPassword().compareTo(authUser.getPassword()) == 0){ sessions.put(sessionID, baseUser); return true; } return false; } return false; } public String getLoginBySessionID(String sessionID){ if(sessions.containsKey(sessionID)){ return sessions.get(sessionID).getLogin(); } return null; } public boolean checkSessionID(String sessionID){ return sessions.containsKey(sessionID); } public boolean removeSession(String sessionID){ if(sessions.containsKey(sessionID)){ sessions.remove(sessionID); return true; } return false; } /* private static final Map<String, UserProfile> loginToProfile = new HashMap<>(); private static final Map<String, UserProfile> sessionIdToProfile = new HashMap<>(); public static void addNewUser(UserProfile userProfile){ loginToProfile.put(userProfile.getLogin(), userProfile); } public static UserProfile getUserByLogin(String login){ return loginToProfile.get(login); } public static UserProfile getUserBySessionId(String sessionId){ return sessionIdToProfile.get(sessionId); } public static void addNewSession(String sessionId, UserProfile userProfile){ sessionIdToProfile.put(sessionId, userProfile); } public static void deleteSession(String sessionId){ sessionIdToProfile.remove(sessionId); } */ }
[ "vicmurrmiu@gmail.com" ]
vicmurrmiu@gmail.com
0256e9634839c7f1e1edda207531008cdd860e81
f1feed4c6e52d26b01047403922650c0131c9bfb
/app/src/main/java/github/io/carpool/TitleActivity.java
fa983a0352ced5b38ece024d3fa3b8280bbde202
[]
no_license
timzheng0804/Carpool
c023e37746d69ccd12f462c76ae4ab60cc901390
a41540c58cef2fc254678b1bbdeac45002faf3de
refs/heads/master
2021-05-11T20:19:43.153283
2018-02-03T14:51:04
2018-02-03T14:51:04
117,439,029
0
0
null
null
null
null
UTF-8
Java
false
false
332
java
package github.io.carpool; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class TitleActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_title); } }
[ "timzheng0804@gmail.com" ]
timzheng0804@gmail.com
aba0adc1c18dc98527cdc1f1960fd0d1195fdae2
45736204805554b2d13f1805e47eb369a8e16ec3
/com/viaversion/viaversion/rewriter/ComponentRewriter.java
7bb2b3c7d7e69f57566c5bdf7b11acdc9e7953c5
[]
no_license
KrOySi/ArchWare-Source
9afc6bfcb1d642d2da97604ddfed8048667e81fd
46cdf10af07341b26bfa704886299d80296320c2
refs/heads/main
2022-07-30T02:54:33.192997
2021-08-08T23:36:39
2021-08-08T23:36:39
394,089,144
2
0
null
null
null
null
UTF-8
Java
false
false
5,757
java
/* * Decompiled with CFR 0.150. */ package com.viaversion.viaversion.rewriter; import com.viaversion.viaversion.api.Via; import com.viaversion.viaversion.api.protocol.Protocol; import com.viaversion.viaversion.api.protocol.packet.ClientboundPacketType; import com.viaversion.viaversion.api.protocol.remapper.PacketRemapper; import com.viaversion.viaversion.api.type.Type; import com.viaversion.viaversion.libs.gson.JsonElement; import com.viaversion.viaversion.libs.gson.JsonObject; import com.viaversion.viaversion.libs.gson.JsonParser; import com.viaversion.viaversion.libs.gson.JsonPrimitive; import com.viaversion.viaversion.libs.gson.JsonSyntaxException; public class ComponentRewriter { protected final Protocol protocol; public ComponentRewriter(Protocol protocol) { this.protocol = protocol; } public ComponentRewriter() { this.protocol = null; } public void registerComponentPacket(ClientboundPacketType packetType) { this.protocol.registerClientbound(packetType, new PacketRemapper(){ @Override public void registerMap() { this.handler(wrapper -> ComponentRewriter.this.processText(wrapper.passthrough(Type.COMPONENT))); } }); } public void registerChatMessage(ClientboundPacketType packetType) { this.registerComponentPacket(packetType); } public void registerBossBar(ClientboundPacketType packetType) { this.protocol.registerClientbound(packetType, new PacketRemapper(){ @Override public void registerMap() { this.map(Type.UUID); this.map(Type.VAR_INT); this.handler(wrapper -> { int action = wrapper.get(Type.VAR_INT, 0); if (action == 0 || action == 3) { ComponentRewriter.this.processText(wrapper.passthrough(Type.COMPONENT)); } }); } }); } public void registerCombatEvent(ClientboundPacketType packetType) { this.protocol.registerClientbound(packetType, new PacketRemapper(){ @Override public void registerMap() { this.handler(wrapper -> { if (wrapper.passthrough(Type.VAR_INT) == 2) { wrapper.passthrough(Type.VAR_INT); wrapper.passthrough(Type.INT); ComponentRewriter.this.processText(wrapper.passthrough(Type.COMPONENT)); } }); } }); } public void registerTitle(ClientboundPacketType packetType) { this.protocol.registerClientbound(packetType, new PacketRemapper(){ @Override public void registerMap() { this.handler(wrapper -> { int action = wrapper.passthrough(Type.VAR_INT); if (action >= 0 && action <= 2) { ComponentRewriter.this.processText(wrapper.passthrough(Type.COMPONENT)); } }); } }); } public JsonElement processText(String value) { try { JsonElement root = JsonParser.parseString(value); this.processText(root); return root; } catch (JsonSyntaxException e) { if (Via.getManager().isDebug()) { Via.getPlatform().getLogger().severe("Error when trying to parse json: " + value); throw e; } return new JsonPrimitive(value); } } public void processText(JsonElement element) { JsonObject hoverEvent; JsonElement extra; JsonElement translate; if (element == null || element.isJsonNull()) { return; } if (element.isJsonArray()) { this.processAsArray(element); return; } if (element.isJsonPrimitive()) { this.handleText(element.getAsJsonPrimitive()); return; } JsonObject object = element.getAsJsonObject(); JsonPrimitive text = object.getAsJsonPrimitive("text"); if (text != null) { this.handleText(text); } if ((translate = object.get("translate")) != null) { this.handleTranslate(object, translate.getAsString()); JsonElement with = object.get("with"); if (with != null) { this.processAsArray(with); } } if ((extra = object.get("extra")) != null) { this.processAsArray(extra); } if ((hoverEvent = object.getAsJsonObject("hoverEvent")) != null) { this.handleHoverEvent(hoverEvent); } } protected void handleText(JsonPrimitive text) { } protected void handleTranslate(JsonObject object, String translate) { } protected void handleHoverEvent(JsonObject hoverEvent) { JsonObject contents; String action = hoverEvent.getAsJsonPrimitive("action").getAsString(); if (action.equals("show_text")) { JsonElement value = hoverEvent.get("value"); this.processText(value != null ? value : hoverEvent.get("contents")); } else if (action.equals("show_entity") && (contents = hoverEvent.getAsJsonObject("contents")) != null) { this.processText(contents.get("name")); } } private void processAsArray(JsonElement element) { for (JsonElement jsonElement : element.getAsJsonArray()) { this.processText(jsonElement); } } public <T extends Protocol> T getProtocol() { return (T)this.protocol; } }
[ "67242784+KrOySi@users.noreply.github.com" ]
67242784+KrOySi@users.noreply.github.com
44890cc19d59ee54187a950d8f9b7ccac8b0c22c
05a1862363ed4da2b1f60985178cbb5845b9e6f5
/MyrranCore/src/DAO/Settings/DAO/SettingsDAO.java
2b552998b89333bc74347a3050c2e5764ccfd87d
[]
no_license
Hanto/Myrran
3daf41df87e6636cd5b79388cac4e692a0c03a42
63dca560c50b9e73f6256e00933d1e91219a2038
refs/heads/master
2020-04-09T13:24:48.462587
2015-10-01T16:48:10
2015-10-01T16:48:10
21,379,073
0
0
null
null
null
null
UTF-8
Java
false
false
540
java
package DAO.Settings.DAO;// Created by Hanto on 06/07/2014. public interface SettingsDAO { public String getString(String key, String defaultValue); public float getFloat(String key, float defaultValue); public int getInt(String key, int defaultValue); public boolean getBoolean(String key, boolean defaultValue); public void setString(String key, String value); public void setFloat(String key, float value); public void setInt(String key, int value); public void setBoolean(String key, boolean value); }
[ "jhanto@gmail.com" ]
jhanto@gmail.com
4ab154b770615d038ca30707b4a05c5a773b188a
551a331ac2bf66eb2878f8debd3ac74099112653
/umdb-app-server/src-gen/main/java/com/ufes/inf/dwws/umdb/persistence/UserDAOJPA.java
769a12b0c8877f7ba7e2387e1beecc372ecb107b
[ "MIT" ]
permissive
dwws-ufes/2020-UMDb
b5ffb17cfd08e6783c75d8a7459f10afc8c45cad
fa5da5fe4998f41c313b6cb4f6fb3ac472e37fde
refs/heads/main
2023-05-05T07:14:42.240645
2021-05-14T16:18:06
2021-05-14T16:18:06
336,044,432
0
1
MIT
2021-05-14T14:51:46
2021-02-04T18:20:58
Java
UTF-8
Java
false
false
490
java
package com.ufes.inf.dwws.umdb.persistence; import org.springframework.stereotype.Repository; import javax.persistence.PersistenceContext; @Repository public class UserDAOJPA implements UserDAOJPA{ @PersistenceContext EntityManager entityManager; @Override public User getByName(String name) { // TODO Auto-generated method stub return null; } @Override public User getByEmail(String email) { // TODO Auto-generated method stub return null; } }
[ "lucaswfitassis@gmail.com" ]
lucaswfitassis@gmail.com
885a86628ff28e25501ed83cd0cd9aff711ee8e5
ede8e02156674974b54f791be92dc580169cf81c
/MaxAreaofIsland.java
14fc960cb1a2dbeb5d65630296da307aeb784180
[]
no_license
WhiteBugs/leetcode
7e89fae240270e1dae340e864671e351b97dc28b
c668453ea5bc33b970dc93fc345c6dd5c647eef8
refs/heads/master
2021-09-13T22:23:01.991717
2018-05-05T03:04:25
2018-05-05T03:04:25
104,466,969
0
0
null
null
null
null
UTF-8
Java
false
false
1,287
java
package com.leetcode; /** * Create by WhiteBugs . */ public class MaxAreaofIsland { //695. Max Area of Island //https://leetcode.com/problems/max-area-of-island/description/ public int maxAreaOfIsland(int[][] grid) { if (grid == null || grid.length == 0 || grid[0].length == 0) return 0; int answer = 0; for (int i = 0; i < grid.length; i++) { for (int j = 0; j < grid[0].length; j++) { if (grid[i][j] == 1) { int area = islandArea(grid, new int[]{i, j}); answer = answer > area ? answer : area; } } } return answer; } private int islandArea(int[][] grid, int[] index) { int area = 1; grid[index[0]][index[1]] = 0; int[][] near = new int[][]{{index[0] - 1, index[1]}, {index[0] + 1, index[1]}, {index[0], index[1] - 1}, {index[0], index[1] + 1}}; for (int i = 0; i < near.length; i++) { if (near[i][0] >= 0 && near[i][0] < grid.length && near[i][1] >= 0 && near[i][1] < grid[0].length && grid[near[i][0]][near[i][1]] == 1) { area += islandArea(grid, near[i]); } } return area; } }
[ "chengjianan1996@gmail.com" ]
chengjianan1996@gmail.com
8224ea0853d8ca610ed582e5c9b511727469786f
af5cbd406581368a5f9364e09d8da80b0d123409
/Android/app/src/main/java/com/j4f/configs/Constant.java
ec8517e19367d21a72517e11272de40f595eb808
[]
no_license
uethackathon08/uethackathon2015_team8
76ac3cfb82393813593770301a022d9a404d52e5
4fa030d80a8aee7940b6a433f51d3864b72062e5
refs/heads/master
2020-12-26T02:32:37.494405
2015-11-22T08:48:00
2015-11-22T08:48:00
46,556,946
0
1
null
2015-11-20T11:00:12
2015-11-20T11:00:12
null
UTF-8
Java
false
false
53
java
package com.j4f.configs; public class Constant { }
[ "hunter@darkmoon.us" ]
hunter@darkmoon.us