blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 410 | content_id stringlengths 40 40 | detected_licenses listlengths 0 51 | license_type stringclasses 2
values | repo_name stringlengths 5 132 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 80 | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 132
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 9.45M | extension stringclasses 28
values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 352 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4dfee39b74eb7808fc8803dc8524117d2b39fac9 | 4421f7c7149b13fc7e5e2ecba3839cc73c571101 | /src/LeetCode/Math/LC553OptimalDivision.java | 92ab6d113c8f6c5a19ed47a9eef20ae77c500824 | [] | no_license | MyvinB/Algo-Learn | ade78c6587cbd892d9622351e0420e1dade338e7 | 7da34a9d1cf21931c77a3a5acb132a4239ab37f0 | refs/heads/master | 2023-08-18T15:29:45.561872 | 2023-08-12T11:11:17 | 2023-08-12T11:11:17 | 211,624,753 | 4 | 1 | null | null | null | null | UTF-8 | Java | false | false | 534 | java | package LeetCode.Math;/*
@author Myvin Barboza
27/07/20 1:06 PM
*/
public class LC553OptimalDivision {
public String optimalDivision(int[] nums) {
if(nums.length==0) return "";
StringBuilder sb=new StringBuilder();
if(nums.length==1) return ""+nums[0];
if(nums.length==2) return nums[0]+"/"+nums[1];
sb.append(nums[0]+"/("+nums[1]);
for(int i=2;i<nums.length;i++){
sb.append("/"+nums[i]);
}
sb.append(")");
return sb.toString();
}
}
| [
"myvinbarboza@gmail.com"
] | myvinbarboza@gmail.com |
29fece721d1e10f1cae206ff1d9d5cefb8f96a95 | 00e6ec7a14041a979f7de7e8816fd9eca1e0a79f | /src/main/java/pl/khuzzuk/wfrpchar/entities/items/usable/AbstractCommodity.java | 76151396089ce0ab6d2769bfe15ebab9f64d225b | [] | no_license | khuzzuk/WFRPCharSheet | d4500763c31480fd712ed64913b73119173f561c | 16433811c1da7f58792c6c26a320f806cdd8bd78 | refs/heads/master | 2020-05-22T04:03:52.821842 | 2018-06-23T10:23:57 | 2018-06-23T10:23:57 | 64,210,616 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,570 | java | package pl.khuzzuk.wfrpchar.entities.items.usable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Getter;
import lombok.Setter;
import pl.khuzzuk.wfrpchar.entities.Named;
import pl.khuzzuk.wfrpchar.entities.Price;
import pl.khuzzuk.wfrpchar.entities.items.Accessibility;
import pl.khuzzuk.wfrpchar.entities.items.Commodity;
import java.util.List;
@Getter
@Setter
public abstract class AbstractCommodity implements Commodity, Named<String> {
private String name;
private Accessibility accessibility;
private Price basePrice; // Additional price to calculated - it usualy is like basePrice + (baseType.price * resource.priceMultiplier)
private String specialFeatures;
void fillCommodityFields(List<String> fields) {
fields.add(name);
fields.add(basePrice.toString());
fields.add(accessibility.name());
fields.add(specialFeatures);
}
@Override
public boolean equals(Object o) {
return namedEquals(o);
}
@Override
public int hashCode() {
return namedHashCode();
}
@Override
public String toString() {
return name;
}
@Override
@JsonIgnore
public Price getPrice() {
return basePrice;
}
@Override
@JsonIgnore
public void setPrice(Price price) {
basePrice = price;
}
@Override
public float getWeight() {
throw new UnsupportedOperationException();
}
@Override
public void setWeight(float weight) {
throw new UnsupportedOperationException();
}
}
| [
"adriandrabik@gmail.com"
] | adriandrabik@gmail.com |
2ff499cac79b77aa7bb815e22c597ffa5804f85f | b1111f22c43808516cde41aaf1ca8724c4ae2171 | /ThomasClaxtonServerA2S15.java | e8f3806fc13f5ccd9b941cc4ad0d8f4699bce055 | [] | no_license | hall9/ThomasClaxtonA2S15 | 384a916490e4b1a0b70e92564d17d91ef304c09f | a2958df5a0128f8f9c60d5050d2d4b5a58c10765 | refs/heads/master | 2020-05-18T16:24:20.974125 | 2015-04-04T03:30:56 | 2015-04-04T03:30:56 | 33,280,582 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 15,489 | java | import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* This class represents a NTP message, as specified in RFC 2030. The message
* format is compatible with all versions of NTP and SNTP.
*
* This class does not support the optional authentication protocol, and
* ignores the key ID and message digest fields.
*
* For convenience, this class exposes message values as native Java types, not
* the NTP-specified data formats. For example, timestamps are
* stored as doubles (as opposed to the NTP unsigned 64-bit fixed point
* format).
*
* However, the contructor NtpMessage(byte[]) and the method toByteArray()
* allow the import and export of the raw NTP message format.
*
*
* Usage example
*
* // Send message
* DatagramSocket socket = new DatagramSocket();
* InetAddress address = InetAddress.getByName("ntp.cais.rnp.br");
* byte[] buf = new NtpMessage().toByteArray();
* DatagramPacket packet = new DatagramPacket(buf, buf.length, address, 123);
* socket.send(packet);
*
* // Get response
* socket.receive(packet);
* System.out.println(msg.toString());
*
*
* This code is copyright (c) Adam Buckley 2004
*
* 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 (at your option)
* any later version. A HTML version of the GNU General Public License can be
* seen at http://www.gnu.org/licenses/gpl.html
*
* 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.
*
*
* Comments for member variables are taken from RFC2030 by David Mills,
* University of Delaware.
*
* Number format conversion code in NtpMessage(byte[] array) and toByteArray()
* inspired by http://www.pps.jussieu.fr/~jch/enseignement/reseaux/
* NTPMessage.java which is copyright (c) 2003 by Juliusz Chroboczek
*
* @author Adam Buckley
*/
public class ThomasClaxtonServerA2S15
{
/**
* This is a two-bit code warning of an impending leap second to be
* inserted/deleted in the last minute of the current day. It's values
* may be as follows:
*
* Value Meaning
* ----- -------
* 0 no warning
* 1 last minute has 61 seconds
* 2 last minute has 59 seconds)
* 3 alarm condition (clock not synchronized)
*/
public byte leapIndicator = 0;
/**
* This value indicates the NTP/SNTP version number. The version number
* is 3 for Version 3 (IPv4 only) and 4 for Version 4 (IPv4, IPv6 and OSI).
* If necessary to distinguish between IPv4, IPv6 and OSI, the
* encapsulating context must be inspected.
*/
public byte version = 3;
/**
* This value indicates the mode, with values defined as follows:
*
* Mode Meaning
* ---- -------
* 0 reserved
* 1 symmetric active
* 2 symmetric passive
* 3 client
* 4 server
* 5 broadcast
* 6 reserved for NTP control message
* 7 reserved for private use
*
* In unicast and anycast modes, the client sets this field to 3 (client)
* in the request and the server sets it to 4 (server) in the reply. In
* multicast mode, the server sets this field to 5 (broadcast).
*/
public byte mode = 0;
/**
* This value indicates the stratum level of the local clock, with values
* defined as follows:
*
* Stratum Meaning
* ----------------------------------------------
* 0 unspecified or unavailable
* 1 primary reference (e.g., radio clock)
* 2-15 secondary reference (via NTP or SNTP)
* 16-255 reserved
*/
public short stratum = 0;
/**
* This value indicates the maximum interval between successive messages,
* in seconds to the nearest power of two. The values that can appear in
* this field presently range from 4 (16 s) to 14 (16284 s); however, most
* applications use only the sub-range 6 (64 s) to 10 (1024 s).
*/
public byte pollInterval = 0;
/**
* This value indicates the precision of the local clock, in seconds to
* the nearest power of two. The values that normally appear in this field
* range from -6 for mains-frequency clocks to -20 for microsecond clocks
* found in some workstations.
*/
public byte precision = 0;
/**
* This value indicates the total roundtrip delay to the primary reference
* source, in seconds. Note that this variable can take on both positive
* and negative values, depending on the relative time and frequency
* offsets. The values that normally appear in this field range from
* negative values of a few milliseconds to positive values of several
* hundred milliseconds.
*/
public double rootDelay = 0;
/**
* This value indicates the nominal error relative to the primary reference
* source, in seconds. The values that normally appear in this field
* range from 0 to several hundred milliseconds.
*/
public double rootDispersion = 0;
/**
* This is a 4-byte array identifying the particular reference source.
* In the case of NTP Version 3 or Version 4 stratum-0 (unspecified) or
* stratum-1 (primary) servers, this is a four-character ASCII string, left
* justified and zero padded to 32 bits. In NTP Version 3 secondary
* servers, this is the 32-bit IPv4 address of the reference source. In NTP
* Version 4 secondary servers, this is the low order 32 bits of the latest
* transmit timestamp of the reference source. NTP primary (stratum 1)
* servers should set this field to a code identifying the external
* reference source according to the following list. If the external
* reference is one of those listed, the associated code should be used.
* Codes for sources not listed can be contrived as appropriate.
*
* Code External Reference Source
* ---- -------------------------
* LOCL uncalibrated local clock used as a primary reference for
* a subnet without external means of synchronization
* PPS atomic clock or other pulse-per-second source
* individually calibrated to national standards
* ACTS NIST dialup modem service
* USNO USNO modem service
* PTB PTB (Germany) modem service
* TDF Allouis (France) Radio 164 kHz
* DCF Mainflingen (Germany) Radio 77.5 kHz
* MSF Rugby (UK) Radio 60 kHz
* WWV Ft. Collins (US) Radio 2.5, 5, 10, 15, 20 MHz
* WWVB Boulder (US) Radio 60 kHz
* WWVH Kaui Hawaii (US) Radio 2.5, 5, 10, 15 MHz
* CHU Ottawa (Canada) Radio 3330, 7335, 14670 kHz
* LORC LORAN-C radionavigation system
* OMEG OMEGA radionavigation system
* GPS Global Positioning Service
* GOES Geostationary Orbit Environment Satellite
*/
public byte[] referenceIdentifier = {0, 0, 0, 0};
/**
* This is the time at which the local clock was last set or corrected, in
* seconds since 00:00 1-Jan-1900.
*/
public double referenceTimestamp = 0;
/**
* This is the time at which the request departed the client for the
* server, in seconds since 00:00 1-Jan-1900.
*/
public double originateTimestamp = 0;
/**
* This is the time at which the request arrived at the server, in seconds
* since 00:00 1-Jan-1900.
*/
public double receiveTimestamp = 0;
/**
* This is the time at which the reply departed the server for the client,
* in seconds since 00:00 1-Jan-1900.
*/
public double transmitTimestamp = 0;
/**
* Constructs a new NtpMessage from an array of bytes.
*/
public ThomasClaxtonServerA2S15(byte[] array)
{
// See the packet format diagram in RFC 2030 for details
leapIndicator = (byte) ((array[0] >> 6) & 0x3);
version = (byte) ((array[0] >> 3) & 0x7);
mode = (byte) (array[0] & 0x7);
stratum = unsignedByteToShort(array[1]);
pollInterval = array[2];
precision = array[3];
rootDelay = (array[4] * 256.0) +
unsignedByteToShort(array[5]) +
(unsignedByteToShort(array[6]) / 256.0) +
(unsignedByteToShort(array[7]) / 65536.0);
rootDispersion = (unsignedByteToShort(array[8]) * 256.0) +
unsignedByteToShort(array[9]) +
(unsignedByteToShort(array[10]) / 256.0) +
(unsignedByteToShort(array[11]) / 65536.0);
referenceIdentifier[0] = array[12];
referenceIdentifier[1] = array[13];
referenceIdentifier[2] = array[14];
referenceIdentifier[3] = array[15];
referenceTimestamp = decodeTimestamp(array, 16);
originateTimestamp = decodeTimestamp(array, 24);
receiveTimestamp = decodeTimestamp(array, 32);
transmitTimestamp = decodeTimestamp(array, 40);
}
/**
* Constructs a new NtpMessage in client -> server mode, and sets the
* transmit timestamp to the current time.
*/
public ThomasClaxtonServerA2S15()
{
// Note that all the other member variables are already set with
// appropriate default values.
this.mode = 3;
this.transmitTimestamp = (System.currentTimeMillis()/1000.0) + 2208988800.0;
}
/**
* This method constructs the data bytes of a raw NTP packet.
*/
public byte[] toByteArray()
{
// All bytes are automatically set to 0
byte[] p = new byte[48];
p[0] = (byte) (leapIndicator << 6 | version << 3 | mode);
p[1] = (byte) stratum;
p[2] = (byte) pollInterval;
p[3] = (byte) precision;
// root delay is a signed 16.16-bit FP, in Java an int is 32-bits
int l = (int) (rootDelay * 65536.0);
p[4] = (byte) ((l >> 24) & 0xFF);
p[5] = (byte) ((l >> 16) & 0xFF);
p[6] = (byte) ((l >> 8) & 0xFF);
p[7] = (byte) (l & 0xFF);
// root dispersion is an unsigned 16.16-bit FP, in Java there are no
// unsigned primitive types, so we use a long which is 64-bits
long ul = (long) (rootDispersion * 65536.0);
p[8] = (byte) ((ul >> 24) & 0xFF);
p[9] = (byte) ((ul >> 16) & 0xFF);
p[10] = (byte) ((ul >> 8) & 0xFF);
p[11] = (byte) (ul & 0xFF);
p[12] = referenceIdentifier[0];
p[13] = referenceIdentifier[1];
p[14] = referenceIdentifier[2];
p[15] = referenceIdentifier[3];
encodeTimestamp(p, 16, referenceTimestamp);
encodeTimestamp(p, 24, originateTimestamp);
encodeTimestamp(p, 32, receiveTimestamp);
encodeTimestamp(p, 40, transmitTimestamp);
return p;
}
/**
* Returns a string representation of a NtpMessage
*/
public String toString()
{
String precisionStr =
new DecimalFormat("0.#E0").format(Math.pow(2, precision));
return "Leap indicator: " + leapIndicator + "\n" +
"Version: " + version + "\n" +
"Mode: " + mode + "\n" +
"Stratum: " + stratum + "\n" +
"Poll: " + pollInterval + "\n" +
"Precision: " + precision + " (" + precisionStr + " seconds)\n" +
"Root delay: " + new DecimalFormat("0.00").format(rootDelay*1000) + " ms\n" +
"Root dispersion: " + new DecimalFormat("0.00").format(rootDispersion*1000) + " ms\n" +
"Reference identifier: " + referenceIdentifierToString(referenceIdentifier, stratum, version) + "\n" +
"T1: Reference timestamp: " + timestampToString(referenceTimestamp) + "\n" +
"Originate timestamp: " + timestampToString(originateTimestamp) + "\n" +
"T2: Receive timestamp: " + timestampToString(receiveTimestamp) + "\n" +
"T3: Transmit timestamp: " + timestampToString(transmitTimestamp);
}
/**
* Converts an unsigned byte to a short. By default, Java assumes that
* a byte is signed.
*/
public static short unsignedByteToShort(byte b)
{
if((b & 0x80)==0x80) return (short) (128 + (b & 0x7f));
else return (short) b;
}
/**
* Will read 8 bytes of a message beginning at <code>pointer</code>
* and return it as a double, according to the NTP 64-bit timestamp
* format.
*/
public static double decodeTimestamp(byte[] array, int pointer)
{
double r = 0.0;
for(int i=0; i<8; i++)
{
r += unsignedByteToShort(array[pointer+i]) * Math.pow(2, (3-i)*8);
}
return r;
}
/**
* Encodes a timestamp in the specified position in the message
*/
public static void encodeTimestamp(byte[] array, int pointer, double timestamp)
{
// Converts a double into a 64-bit fixed point
for(int i=0; i<8; i++)
{
// 2^24, 2^16, 2^8, .. 2^-32
double base = Math.pow(2, (3-i)*8);
// Capture byte value
array[pointer+i] = (byte) (timestamp / base);
// Subtract captured value from remaining total
timestamp = timestamp - (double) (unsignedByteToShort(array[pointer+i]) * base);
}
// From RFC 2030: It is advisable to fill the non-significant
// low order bits of the timestamp with a random, unbiased
// bitstring, both to avoid systematic roundoff errors and as
// a means of loop detection and replay detection.
array[7] = (byte) (Math.random()*255.0);
}
/**
* Returns a timestamp (number of seconds since 00:00 1-Jan-1900) as a
* formatted date/time string.
*/
public static String timestampToString(double timestamp)
{
if(timestamp==0) return "0";
// timestamp is relative to 1900, utc is used by Java and is relative
// to 1970
double utc = timestamp - (2208988800.0);
// milliseconds
long ms = (long) (utc * 1000.0);
// date/time
String date = new SimpleDateFormat("dd-MMM-yyyy HH:mm:ss").format(new Date(ms));
// fraction
double fraction = timestamp - ((long) timestamp);
String fractionSting = new DecimalFormat(".000000").format(fraction);
return date + fractionSting;
}
/**
* Returns a string representation of a reference identifier according
* to the rules set out in RFC 2030.
*/
public static String referenceIdentifierToString(byte[] ref, short stratum, byte version)
{
// From the RFC 2030:
// In the case of NTP Version 3 or Version 4 stratum-0 (unspecified)
// or stratum-1 (primary) servers, this is a four-character ASCII
// string, left justified and zero padded to 32 bits.
if(stratum==0 || stratum==1)
{
return new String(ref);
}
// In NTP Version 3 secondary servers, this is the 32-bit IPv4
// address of the reference source.
else if(version==3)
{
return unsignedByteToShort(ref[0]) + "." +
unsignedByteToShort(ref[1]) + "." +
unsignedByteToShort(ref[2]) + "." +
unsignedByteToShort(ref[3]);
}
// In NTP Version 4 secondary servers, this is the low order 32 bits
// of the latest transmit timestamp of the reference source.
else if(version==4)
{
return "" + ((unsignedByteToShort(ref[0]) / 256.0) +
(unsignedByteToShort(ref[1]) / 65536.0) +
(unsignedByteToShort(ref[2]) / 16777216.0) +
(unsignedByteToShort(ref[3]) / 4294967296.0));
}
return "";
}
} | [
"Alexander.D.Hall13.civ@mail.mil"
] | Alexander.D.Hall13.civ@mail.mil |
69ef24e515eb89544e6d2adf92432ee8598a0754 | a3f5eafd387f1bc4ac1307cca580683a2b3fc81f | /src/test/java/com/hackathon/produkten/ing/controller/ProductControllerTest.java | 4d24720ca437c39a19c5c330b77cb4e8d2bcfde0 | [] | no_license | prakashsubramanii/Product_ING_java | 747b55421c842bc5ff70b59a94b1768449a12f05 | 779c5ddc9be5b010221d2cb6cb3821163dda5a64 | refs/heads/master | 2020-04-30T06:53:13.548007 | 2019-03-20T14:11:54 | 2019-03-20T14:11:54 | 176,666,574 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,705 | java | package com.hackathon.produkten.ing.controller;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mockito;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.http.MediaType;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.MvcResult;
import org.springframework.test.web.servlet.RequestBuilder;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import com.hackathon.produkten.ing.dto.Overview;
import com.hackathon.produkten.ing.dto.ProductDTO;
import com.hackathon.produkten.ing.service.ProductsService;
@RunWith(SpringRunner.class)
@WebMvcTest(value = ProductsController.class)
public class ProductControllerTest {
@Autowired
private MockMvc mockMvc;
@Autowired
ProductsController productsController;
@MockBean
ProductsService prodService;
@Test
public void retrieveProductGroups() throws Exception {
List<Map<String, String>> productNames = new ArrayList<>();
Map<String, String> productMap = new HashMap<>();
Map<String, String> productMap1 = new HashMap<>();
productMap.put("name", "Child Savings Scheme");
productMap1.put("name", "Orange savings account");
productNames.add(productMap);
productNames.add(productMap1);
List<Overview> list = new ArrayList<>();
Overview productOverview = new Overview("ProductGroup1", productNames);
Overview productOverview1 = new Overview("ProductGroup2", null);
list.add(productOverview);
list.add(productOverview1);
Mockito.when(prodService.getProductGroups()).thenReturn(list);
RequestBuilder requestBuilder = MockMvcRequestBuilders.get("/api/products").accept(MediaType.APPLICATION_JSON);
MvcResult result = mockMvc.perform(requestBuilder).andReturn();
Assert.assertNotNull(result.getResponse());
}
@Test
public void retrieveProductDetails() throws Exception {
ProductDTO productDTO = new ProductDTO();
productDTO.setProductName("product1");
productDTO.setPercentage("0.2%");
Mockito.when(prodService.getProductDetails(Mockito.anyString(),Mockito.anyString())).thenReturn(productDTO);
RequestBuilder requestBuilder = MockMvcRequestBuilders.get("/product/group1/product1").accept(MediaType.APPLICATION_JSON);
MvcResult result = mockMvc.perform(requestBuilder).andReturn();
Assert.assertNotNull(result.getResponse());
}
}
| [
"prakashooty16@gmail.com"
] | prakashooty16@gmail.com |
a7d6c79c4446c06607f7d8cf26c9f41cf34b6c4b | 8c2bd360d8c46822857f7e8aeb840b17ece79a53 | /Droid/obj/Debug/android/src/android/support/design/R.java | 507dfd30c90b4f0836dda13bf1fe230d6f69e83d | [] | no_license | lucas-padovan/EasyMath | 8c887f22b7084a9275e71ce167b5030570ad961a | 798cbfba611bf946e05a8959057c1664642649d5 | refs/heads/master | 2020-04-19T04:41:22.649240 | 2019-01-28T13:44:11 | 2019-01-28T13:44:11 | 167,968,723 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 669,932 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package android.support.design;
public final class R {
public static final class anim {
public static int abc_fade_in=0x7f040000;
public static int abc_fade_out=0x7f040001;
public static int abc_grow_fade_in_from_bottom=0x7f040002;
public static int abc_popup_enter=0x7f040003;
public static int abc_popup_exit=0x7f040004;
public static int abc_shrink_fade_out_from_bottom=0x7f040005;
public static int abc_slide_in_bottom=0x7f040006;
public static int abc_slide_in_top=0x7f040007;
public static int abc_slide_out_bottom=0x7f040008;
public static int abc_slide_out_top=0x7f040009;
public static int design_bottom_sheet_slide_in=0x7f04000a;
public static int design_bottom_sheet_slide_out=0x7f04000b;
public static int design_snackbar_in=0x7f04000c;
public static int design_snackbar_out=0x7f04000d;
public static int tooltip_enter=0x7f04000e;
public static int tooltip_exit=0x7f04000f;
}
public static final class animator {
public static int design_appbar_state_list_animator=0x7f050000;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarDivider=0x7f01006b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarItemBackground=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarPopupTheme=0x7f010065;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static int actionBarSize=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarSplitStyle=0x7f010067;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarStyle=0x7f010066;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabBarStyle=0x7f010061;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabStyle=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabTextStyle=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTheme=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarWidgetTheme=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionButtonStyle=0x7f010086;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionDropDownStyle=0x7f010082;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionLayout=0x7f0100dd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionMenuTextAppearance=0x7f01006d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int actionMenuTextColor=0x7f01006e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeBackground=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCloseButtonStyle=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCloseDrawable=0x7f010073;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCopyDrawable=0x7f010075;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCutDrawable=0x7f010074;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeFindDrawable=0x7f010079;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModePasteDrawable=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModePopupWindowStyle=0x7f01007b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeSelectAllDrawable=0x7f010077;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeShareDrawable=0x7f010078;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeSplitBackground=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeStyle=0x7f01006f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeWebSearchDrawable=0x7f01007a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionOverflowButtonStyle=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionOverflowMenuStyle=0x7f010064;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int actionProviderClass=0x7f0100df;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int actionViewClass=0x7f0100de;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int activityChooserViewStyle=0x7f01008e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogButtonGroupStyle=0x7f0100b3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int alertDialogCenterButtons=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogStyle=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogTheme=0x7f0100b5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int allowStacking=0x7f0100cb;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int alpha=0x7f0100cc;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static int alphabeticModifiers=0x7f0100da;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowHeadLength=0x7f0100d3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowShaftLength=0x7f0100d4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int autoCompleteTextViewStyle=0x7f0100ba;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeMaxTextSize=0x7f010054;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeMinTextSize=0x7f010053;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int autoSizePresetSizes=0x7f010052;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeStepGranularity=0x7f010051;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
*/
public static int autoSizeTextType=0x7f010050;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int background=0x7f01002e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int backgroundSplit=0x7f010030;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int backgroundStacked=0x7f01002f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int backgroundTint=0x7f010116;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int backgroundTintMode=0x7f010117;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int barLength=0x7f0100d5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_autoHide=0x7f010141;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_hideable=0x7f01011e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_overlapTop=0x7f01014a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static int behavior_peekHeight=0x7f01011d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_skipCollapsed=0x7f01011f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int borderWidth=0x7f01013f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int borderlessButtonStyle=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int bottomSheetDialogTheme=0x7f010139;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int bottomSheetStyle=0x7f01013a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarButtonStyle=0x7f010088;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNegativeButtonStyle=0x7f0100b8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNeutralButtonStyle=0x7f0100b9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarPositiveButtonStyle=0x7f0100b7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarStyle=0x7f010087;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static int buttonGravity=0x7f01010b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonPanelSideLayout=0x7f010043;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonStyle=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonStyleSmall=0x7f0100bc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int buttonTint=0x7f0100cd;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int buttonTintMode=0x7f0100ce;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardBackgroundColor=0x7f010017;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardCornerRadius=0x7f010018;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardElevation=0x7f010019;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardMaxElevation=0x7f01001a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardPreventCornerOverlap=0x7f01001c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardUseCompatPadding=0x7f01001b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkboxStyle=0x7f0100bd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkedTextViewStyle=0x7f0100be;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int closeIcon=0x7f0100ee;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int closeItemLayout=0x7f010040;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int collapseContentDescription=0x7f01010d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int collapseIcon=0x7f01010c;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int collapsedTitleGravity=0x7f01012c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int collapsedTitleTextAppearance=0x7f010126;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int color=0x7f0100cf;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorAccent=0x7f0100aa;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorBackgroundFloating=0x7f0100b1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorButtonNormal=0x7f0100ae;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlActivated=0x7f0100ac;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlHighlight=0x7f0100ad;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlNormal=0x7f0100ab;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int colorError=0x7f0100ca;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorPrimary=0x7f0100a8;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorPrimaryDark=0x7f0100a9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorSwitchThumbNormal=0x7f0100af;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int commitIcon=0x7f0100f3;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentDescription=0x7f0100e0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetEnd=0x7f010039;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetEndWithActions=0x7f01003d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetLeft=0x7f01003a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetRight=0x7f01003b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetStart=0x7f010038;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetStartWithNavigation=0x7f01003c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPadding=0x7f01001d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingBottom=0x7f010021;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingLeft=0x7f01001e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingRight=0x7f01001f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingTop=0x7f010020;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentScrim=0x7f010127;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int controlBackground=0x7f0100b0;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int counterEnabled=0x7f010160;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int counterMaxLength=0x7f010161;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterOverflowTextAppearance=0x7f010163;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterTextAppearance=0x7f010162;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int customNavigationLayout=0x7f010031;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int defaultQueryHint=0x7f0100ed;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dialogPreferredPadding=0x7f010080;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dialogTheme=0x7f01007f;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static int displayOptions=0x7f010027;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int divider=0x7f01002d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dividerHorizontal=0x7f01008d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dividerPadding=0x7f0100d9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dividerVertical=0x7f01008c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int drawableSize=0x7f0100d1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int drawerArrowStyle=0x7f010022;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dropDownListViewStyle=0x7f01009f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dropdownListPreferredItemHeight=0x7f010083;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int editTextBackground=0x7f010094;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int editTextColor=0x7f010093;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int editTextStyle=0x7f0100bf;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int elevation=0x7f01003e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int errorEnabled=0x7f01015e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int errorTextAppearance=0x7f01015f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandActivityOverflowButtonDrawable=0x7f010042;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expanded=0x7f010118;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int expandedTitleGravity=0x7f01012d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMargin=0x7f010120;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginBottom=0x7f010124;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginEnd=0x7f010123;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginStart=0x7f010121;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginTop=0x7f010122;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandedTitleTextAppearance=0x7f010125;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int externalRouteEnabledDrawable=0x7f010015;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fabSize=0x7f01013d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fastScrollEnabled=0x7f010004;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollHorizontalThumbDrawable=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollHorizontalTrackDrawable=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollVerticalThumbDrawable=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollVerticalTrackDrawable=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int font=0x7f010171;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontFamily=0x7f010055;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderAuthority=0x7f01016a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fontProviderCerts=0x7f01016d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fontProviderFetchStrategy=0x7f01016e;
/** <p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
*/
public static int fontProviderFetchTimeout=0x7f01016f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderPackage=0x7f01016b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderQuery=0x7f01016c;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fontStyle=0x7f010170;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontWeight=0x7f010172;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int foregroundInsidePadding=0x7f010142;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int gapBetweenBars=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int goIcon=0x7f0100ef;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int headerLayout=0x7f010148;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int height=0x7f010023;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hideOnContentScroll=0x7f010037;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hintAnimationEnabled=0x7f010164;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hintEnabled=0x7f01015d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int hintTextAppearance=0x7f01015c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int homeAsUpIndicator=0x7f010085;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int homeLayout=0x7f010032;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int icon=0x7f01002b;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int iconTint=0x7f0100e2;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int iconTintMode=0x7f0100e3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int iconifiedByDefault=0x7f0100eb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int imageButtonStyle=0x7f010095;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int indeterminateProgressStyle=0x7f010034;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int initialActivityCount=0x7f010041;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int insetForeground=0x7f010149;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int isLightTheme=0x7f010024;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemBackground=0x7f010146;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemIconTint=0x7f010144;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemPadding=0x7f010036;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemTextAppearance=0x7f010147;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemTextColor=0x7f010145;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int keylines=0x7f010131;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout=0x7f0100ea;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layoutManager=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout_anchor=0x7f010134;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int layout_anchorGravity=0x7f010136;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_behavior=0x7f010133;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static int layout_collapseMode=0x7f01012f;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_collapseParallaxMultiplier=0x7f010130;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static int layout_dodgeInsetEdges=0x7f010138;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int layout_insetEdge=0x7f010137;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_keyline=0x7f010135;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static int layout_scrollFlags=0x7f01011b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout_scrollInterpolator=0x7f01011c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listChoiceBackgroundIndicator=0x7f0100a7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listDividerAlertDialog=0x7f010081;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listItemLayout=0x7f010047;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listLayout=0x7f010044;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listMenuViewStyle=0x7f0100c7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listPopupWindowStyle=0x7f0100a0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeight=0x7f01009a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightLarge=0x7f01009c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightSmall=0x7f01009b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingLeft=0x7f01009d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingRight=0x7f01009e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int logo=0x7f01002c;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int logoDescription=0x7f010110;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxActionInlineWidth=0x7f01014b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxButtonHeight=0x7f01010a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int measureWithLargestChild=0x7f0100d7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteAudioTrackDrawable=0x7f010009;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteButtonStyle=0x7f01000a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int mediaRouteButtonTint=0x7f010016;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteCloseDrawable=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteControlPanelThemeOverlay=0x7f01000c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteDefaultIconDrawable=0x7f01000d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRoutePauseDrawable=0x7f01000e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRoutePlayDrawable=0x7f01000f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteSpeakerGroupIconDrawable=0x7f010010;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteSpeakerIconDrawable=0x7f010011;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteStopDrawable=0x7f010012;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteTheme=0x7f010013;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteTvIconDrawable=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int menu=0x7f010143;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int multiChoiceItemLayout=0x7f010045;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int navigationContentDescription=0x7f01010f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int navigationIcon=0x7f01010e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static int navigationMode=0x7f010026;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static int numericModifiers=0x7f0100db;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int overlapAnchor=0x7f0100e6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingBottomNoButtons=0x7f0100e8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingEnd=0x7f010114;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingStart=0x7f010113;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingTopNoTitle=0x7f0100e9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int panelBackground=0x7f0100a4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int panelMenuListTheme=0x7f0100a6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int panelMenuListWidth=0x7f0100a5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleContentDescription=0x7f010167;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int passwordToggleDrawable=0x7f010166;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleEnabled=0x7f010165;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleTint=0x7f010168;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static int passwordToggleTintMode=0x7f010169;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupMenuStyle=0x7f010091;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupTheme=0x7f01003f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupWindowStyle=0x7f010092;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int preserveIconSpacing=0x7f0100e4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int pressedTranslationZ=0x7f01013e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int progressBarPadding=0x7f010035;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int progressBarStyle=0x7f010033;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int queryBackground=0x7f0100f5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int queryHint=0x7f0100ec;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int radioButtonStyle=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyle=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyleIndicator=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyleSmall=0x7f0100c3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int reverseLayout=0x7f010002;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int rippleColor=0x7f01013c;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int scrimAnimationDuration=0x7f01012b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int scrimVisibleHeightTrigger=0x7f01012a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchHintIcon=0x7f0100f1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchIcon=0x7f0100f0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchViewStyle=0x7f010099;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int seekBarStyle=0x7f0100c4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int selectableItemBackground=0x7f010089;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int selectableItemBackgroundBorderless=0x7f01008a;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static int showAsAction=0x7f0100dc;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static int showDividers=0x7f0100d8;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int showText=0x7f010101;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int showTitle=0x7f010048;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int singleChoiceItemLayout=0x7f010046;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int spanCount=0x7f010001;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int spinBars=0x7f0100d0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int spinnerDropDownItemStyle=0x7f010084;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int spinnerStyle=0x7f0100c5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int splitTrack=0x7f010100;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int srcCompat=0x7f010049;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int stackFromEnd=0x7f010003;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_above_anchor=0x7f0100e7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_collapsed=0x7f010119;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_collapsible=0x7f01011a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int statusBarBackground=0x7f010132;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int statusBarScrim=0x7f010128;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subMenuArrow=0x7f0100e5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int submitBackground=0x7f0100f6;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int subtitle=0x7f010028;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subtitleTextAppearance=0x7f010103;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int subtitleTextColor=0x7f010112;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subtitleTextStyle=0x7f01002a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int suggestionRowLayout=0x7f0100f4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchMinWidth=0x7f0100fe;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchPadding=0x7f0100ff;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int switchStyle=0x7f0100c6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int switchTextAppearance=0x7f0100fd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabBackground=0x7f01014f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabContentStart=0x7f01014e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static int tabGravity=0x7f010151;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabIndicatorColor=0x7f01014c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabIndicatorHeight=0x7f01014d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMaxWidth=0x7f010153;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMinWidth=0x7f010152;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static int tabMode=0x7f010150;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPadding=0x7f01015b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingBottom=0x7f01015a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingEnd=0x7f010159;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingStart=0x7f010157;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingTop=0x7f010158;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabSelectedTextColor=0x7f010156;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabTextAppearance=0x7f010154;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabTextColor=0x7f010155;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static int textAllCaps=0x7f01004f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceLargePopupMenu=0x7f01007c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItem=0x7f0100a1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItemSecondary=0x7f0100a2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItemSmall=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearancePopupMenuHeader=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSearchResultSubtitle=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSearchResultTitle=0x7f010096;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSmallPopupMenu=0x7f01007d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorAlertDialogListItem=0x7f0100b6;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorError=0x7f01013b;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorSearchUrl=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int theme=0x7f010115;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thickness=0x7f0100d6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thumbTextPadding=0x7f0100fc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thumbTint=0x7f0100f7;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int thumbTintMode=0x7f0100f8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tickMark=0x7f01004c;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tickMarkTint=0x7f01004d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int tickMarkTintMode=0x7f01004e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tint=0x7f01004a;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int tintMode=0x7f01004b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int title=0x7f010025;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleEnabled=0x7f01012e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMargin=0x7f010104;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginBottom=0x7f010108;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginEnd=0x7f010106;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginStart=0x7f010105;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginTop=0x7f010107;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMargins=0x7f010109;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextAppearance=0x7f010102;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleTextColor=0x7f010111;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextStyle=0x7f010029;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarId=0x7f010129;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarNavigationButtonStyle=0x7f010090;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarStyle=0x7f01008f;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int tooltipForegroundColor=0x7f0100c9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tooltipFrameBackground=0x7f0100c8;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tooltipText=0x7f0100e1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int track=0x7f0100f9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int trackTint=0x7f0100fa;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int trackTintMode=0x7f0100fb;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int useCompatPadding=0x7f010140;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int voiceIcon=0x7f0100f2;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionBar=0x7f010056;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionBarOverlay=0x7f010058;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionModeOverlay=0x7f010059;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedHeightMajor=0x7f01005d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedHeightMinor=0x7f01005b;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedWidthMajor=0x7f01005a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedWidthMinor=0x7f01005c;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowMinWidthMajor=0x7f01005e;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowMinWidthMinor=0x7f01005f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowNoTitle=0x7f010057;
}
public static final class bool {
public static int abc_action_bar_embed_tabs=0x7f0d0000;
public static int abc_allow_stacked_button_bar=0x7f0d0001;
public static int abc_config_actionMenuItemAllCaps=0x7f0d0002;
public static int abc_config_closeDialogWhenTouchOutside=0x7f0d0003;
public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0d0004;
}
public static final class color {
public static int abc_background_cache_hint_selector_material_dark=0x7f0c004b;
public static int abc_background_cache_hint_selector_material_light=0x7f0c004c;
public static int abc_btn_colored_borderless_text_material=0x7f0c004d;
public static int abc_btn_colored_text_material=0x7f0c004e;
public static int abc_color_highlight_material=0x7f0c004f;
public static int abc_hint_foreground_material_dark=0x7f0c0050;
public static int abc_hint_foreground_material_light=0x7f0c0051;
public static int abc_input_method_navigation_guard=0x7f0c0004;
public static int abc_primary_text_disable_only_material_dark=0x7f0c0052;
public static int abc_primary_text_disable_only_material_light=0x7f0c0053;
public static int abc_primary_text_material_dark=0x7f0c0054;
public static int abc_primary_text_material_light=0x7f0c0055;
public static int abc_search_url_text=0x7f0c0056;
public static int abc_search_url_text_normal=0x7f0c0005;
public static int abc_search_url_text_pressed=0x7f0c0006;
public static int abc_search_url_text_selected=0x7f0c0007;
public static int abc_secondary_text_material_dark=0x7f0c0057;
public static int abc_secondary_text_material_light=0x7f0c0058;
public static int abc_tint_btn_checkable=0x7f0c0059;
public static int abc_tint_default=0x7f0c005a;
public static int abc_tint_edittext=0x7f0c005b;
public static int abc_tint_seek_thumb=0x7f0c005c;
public static int abc_tint_spinner=0x7f0c005d;
public static int abc_tint_switch_track=0x7f0c005e;
public static int accent_material_dark=0x7f0c0008;
public static int accent_material_light=0x7f0c0009;
public static int background_floating_material_dark=0x7f0c000a;
public static int background_floating_material_light=0x7f0c000b;
public static int background_material_dark=0x7f0c000c;
public static int background_material_light=0x7f0c000d;
public static int bright_foreground_disabled_material_dark=0x7f0c000e;
public static int bright_foreground_disabled_material_light=0x7f0c000f;
public static int bright_foreground_inverse_material_dark=0x7f0c0010;
public static int bright_foreground_inverse_material_light=0x7f0c0011;
public static int bright_foreground_material_dark=0x7f0c0012;
public static int bright_foreground_material_light=0x7f0c0013;
public static int button_material_dark=0x7f0c0014;
public static int button_material_light=0x7f0c0015;
public static int cardview_dark_background=0x7f0c0000;
public static int cardview_light_background=0x7f0c0001;
public static int cardview_shadow_end_color=0x7f0c0002;
public static int cardview_shadow_start_color=0x7f0c0003;
public static int design_bottom_navigation_shadow_color=0x7f0c0040;
public static int design_error=0x7f0c005f;
public static int design_fab_shadow_end_color=0x7f0c0041;
public static int design_fab_shadow_mid_color=0x7f0c0042;
public static int design_fab_shadow_start_color=0x7f0c0043;
public static int design_fab_stroke_end_inner_color=0x7f0c0044;
public static int design_fab_stroke_end_outer_color=0x7f0c0045;
public static int design_fab_stroke_top_inner_color=0x7f0c0046;
public static int design_fab_stroke_top_outer_color=0x7f0c0047;
public static int design_snackbar_background_color=0x7f0c0048;
public static int design_tint_password_toggle=0x7f0c0060;
public static int dim_foreground_disabled_material_dark=0x7f0c0016;
public static int dim_foreground_disabled_material_light=0x7f0c0017;
public static int dim_foreground_material_dark=0x7f0c0018;
public static int dim_foreground_material_light=0x7f0c0019;
public static int error_color_material=0x7f0c001a;
public static int foreground_material_dark=0x7f0c001b;
public static int foreground_material_light=0x7f0c001c;
public static int highlighted_text_material_dark=0x7f0c001d;
public static int highlighted_text_material_light=0x7f0c001e;
public static int material_blue_grey_800=0x7f0c001f;
public static int material_blue_grey_900=0x7f0c0020;
public static int material_blue_grey_950=0x7f0c0021;
public static int material_deep_teal_200=0x7f0c0022;
public static int material_deep_teal_500=0x7f0c0023;
public static int material_grey_100=0x7f0c0024;
public static int material_grey_300=0x7f0c0025;
public static int material_grey_50=0x7f0c0026;
public static int material_grey_600=0x7f0c0027;
public static int material_grey_800=0x7f0c0028;
public static int material_grey_850=0x7f0c0029;
public static int material_grey_900=0x7f0c002a;
public static int notification_action_color_filter=0x7f0c0049;
public static int notification_icon_bg_color=0x7f0c004a;
public static int notification_material_background_media_default_color=0x7f0c003f;
public static int primary_dark_material_dark=0x7f0c002b;
public static int primary_dark_material_light=0x7f0c002c;
public static int primary_material_dark=0x7f0c002d;
public static int primary_material_light=0x7f0c002e;
public static int primary_text_default_material_dark=0x7f0c002f;
public static int primary_text_default_material_light=0x7f0c0030;
public static int primary_text_disabled_material_dark=0x7f0c0031;
public static int primary_text_disabled_material_light=0x7f0c0032;
public static int ripple_material_dark=0x7f0c0033;
public static int ripple_material_light=0x7f0c0034;
public static int secondary_text_default_material_dark=0x7f0c0035;
public static int secondary_text_default_material_light=0x7f0c0036;
public static int secondary_text_disabled_material_dark=0x7f0c0037;
public static int secondary_text_disabled_material_light=0x7f0c0038;
public static int switch_thumb_disabled_material_dark=0x7f0c0039;
public static int switch_thumb_disabled_material_light=0x7f0c003a;
public static int switch_thumb_material_dark=0x7f0c0061;
public static int switch_thumb_material_light=0x7f0c0062;
public static int switch_thumb_normal_material_dark=0x7f0c003b;
public static int switch_thumb_normal_material_light=0x7f0c003c;
public static int tooltip_background_dark=0x7f0c003d;
public static int tooltip_background_light=0x7f0c003e;
}
public static final class dimen {
public static int abc_action_bar_content_inset_material=0x7f07001b;
public static int abc_action_bar_content_inset_with_nav=0x7f07001c;
public static int abc_action_bar_default_height_material=0x7f070010;
public static int abc_action_bar_default_padding_end_material=0x7f07001d;
public static int abc_action_bar_default_padding_start_material=0x7f07001e;
public static int abc_action_bar_elevation_material=0x7f070020;
public static int abc_action_bar_icon_vertical_padding_material=0x7f070021;
public static int abc_action_bar_overflow_padding_end_material=0x7f070022;
public static int abc_action_bar_overflow_padding_start_material=0x7f070023;
public static int abc_action_bar_progress_bar_size=0x7f070011;
public static int abc_action_bar_stacked_max_height=0x7f070024;
public static int abc_action_bar_stacked_tab_max_width=0x7f070025;
public static int abc_action_bar_subtitle_bottom_margin_material=0x7f070026;
public static int abc_action_bar_subtitle_top_margin_material=0x7f070027;
public static int abc_action_button_min_height_material=0x7f070028;
public static int abc_action_button_min_width_material=0x7f070029;
public static int abc_action_button_min_width_overflow_material=0x7f07002a;
public static int abc_alert_dialog_button_bar_height=0x7f07000f;
public static int abc_button_inset_horizontal_material=0x7f07002b;
public static int abc_button_inset_vertical_material=0x7f07002c;
public static int abc_button_padding_horizontal_material=0x7f07002d;
public static int abc_button_padding_vertical_material=0x7f07002e;
public static int abc_cascading_menus_min_smallest_width=0x7f07002f;
public static int abc_config_prefDialogWidth=0x7f070014;
public static int abc_control_corner_material=0x7f070030;
public static int abc_control_inset_material=0x7f070031;
public static int abc_control_padding_material=0x7f070032;
public static int abc_dialog_fixed_height_major=0x7f070015;
public static int abc_dialog_fixed_height_minor=0x7f070016;
public static int abc_dialog_fixed_width_major=0x7f070017;
public static int abc_dialog_fixed_width_minor=0x7f070018;
public static int abc_dialog_list_padding_bottom_no_buttons=0x7f070033;
public static int abc_dialog_list_padding_top_no_title=0x7f070034;
public static int abc_dialog_min_width_major=0x7f070019;
public static int abc_dialog_min_width_minor=0x7f07001a;
public static int abc_dialog_padding_material=0x7f070035;
public static int abc_dialog_padding_top_material=0x7f070036;
public static int abc_dialog_title_divider_material=0x7f070037;
public static int abc_disabled_alpha_material_dark=0x7f070038;
public static int abc_disabled_alpha_material_light=0x7f070039;
public static int abc_dropdownitem_icon_width=0x7f07003a;
public static int abc_dropdownitem_text_padding_left=0x7f07003b;
public static int abc_dropdownitem_text_padding_right=0x7f07003c;
public static int abc_edit_text_inset_bottom_material=0x7f07003d;
public static int abc_edit_text_inset_horizontal_material=0x7f07003e;
public static int abc_edit_text_inset_top_material=0x7f07003f;
public static int abc_floating_window_z=0x7f070040;
public static int abc_list_item_padding_horizontal_material=0x7f070041;
public static int abc_panel_menu_list_width=0x7f070042;
public static int abc_progress_bar_height_material=0x7f070043;
public static int abc_search_view_preferred_height=0x7f070044;
public static int abc_search_view_preferred_width=0x7f070045;
public static int abc_seekbar_track_background_height_material=0x7f070046;
public static int abc_seekbar_track_progress_height_material=0x7f070047;
public static int abc_select_dialog_padding_start_material=0x7f070048;
public static int abc_switch_padding=0x7f07001f;
public static int abc_text_size_body_1_material=0x7f070049;
public static int abc_text_size_body_2_material=0x7f07004a;
public static int abc_text_size_button_material=0x7f07004b;
public static int abc_text_size_caption_material=0x7f07004c;
public static int abc_text_size_display_1_material=0x7f07004d;
public static int abc_text_size_display_2_material=0x7f07004e;
public static int abc_text_size_display_3_material=0x7f07004f;
public static int abc_text_size_display_4_material=0x7f070050;
public static int abc_text_size_headline_material=0x7f070051;
public static int abc_text_size_large_material=0x7f070052;
public static int abc_text_size_medium_material=0x7f070053;
public static int abc_text_size_menu_header_material=0x7f070054;
public static int abc_text_size_menu_material=0x7f070055;
public static int abc_text_size_small_material=0x7f070056;
public static int abc_text_size_subhead_material=0x7f070057;
public static int abc_text_size_subtitle_material_toolbar=0x7f070012;
public static int abc_text_size_title_material=0x7f070058;
public static int abc_text_size_title_material_toolbar=0x7f070013;
public static int cardview_compat_inset_shadow=0x7f07000c;
public static int cardview_default_elevation=0x7f07000d;
public static int cardview_default_radius=0x7f07000e;
public static int compat_button_inset_horizontal_material=0x7f070094;
public static int compat_button_inset_vertical_material=0x7f070095;
public static int compat_button_padding_horizontal_material=0x7f070096;
public static int compat_button_padding_vertical_material=0x7f070097;
public static int compat_control_corner_material=0x7f070098;
public static int design_appbar_elevation=0x7f070072;
public static int design_bottom_navigation_active_item_max_width=0x7f070073;
public static int design_bottom_navigation_active_text_size=0x7f070074;
public static int design_bottom_navigation_elevation=0x7f070075;
public static int design_bottom_navigation_height=0x7f070076;
public static int design_bottom_navigation_item_max_width=0x7f070077;
public static int design_bottom_navigation_item_min_width=0x7f070078;
public static int design_bottom_navigation_margin=0x7f070079;
public static int design_bottom_navigation_shadow_height=0x7f07007a;
public static int design_bottom_navigation_text_size=0x7f07007b;
public static int design_bottom_sheet_modal_elevation=0x7f07007c;
public static int design_bottom_sheet_peek_height_min=0x7f07007d;
public static int design_fab_border_width=0x7f07007e;
public static int design_fab_elevation=0x7f07007f;
public static int design_fab_image_size=0x7f070080;
public static int design_fab_size_mini=0x7f070081;
public static int design_fab_size_normal=0x7f070082;
public static int design_fab_translation_z_pressed=0x7f070083;
public static int design_navigation_elevation=0x7f070084;
public static int design_navigation_icon_padding=0x7f070085;
public static int design_navigation_icon_size=0x7f070086;
public static int design_navigation_max_width=0x7f07006a;
public static int design_navigation_padding_bottom=0x7f070087;
public static int design_navigation_separator_vertical_padding=0x7f070088;
public static int design_snackbar_action_inline_max_width=0x7f07006b;
public static int design_snackbar_background_corner_radius=0x7f07006c;
public static int design_snackbar_elevation=0x7f070089;
public static int design_snackbar_extra_spacing_horizontal=0x7f07006d;
public static int design_snackbar_max_width=0x7f07006e;
public static int design_snackbar_min_width=0x7f07006f;
public static int design_snackbar_padding_horizontal=0x7f07008a;
public static int design_snackbar_padding_vertical=0x7f07008b;
public static int design_snackbar_padding_vertical_2lines=0x7f070070;
public static int design_snackbar_text_size=0x7f07008c;
public static int design_tab_max_width=0x7f07008d;
public static int design_tab_scrollable_min_width=0x7f070071;
public static int design_tab_text_size=0x7f07008e;
public static int design_tab_text_size_2line=0x7f07008f;
public static int disabled_alpha_material_dark=0x7f070059;
public static int disabled_alpha_material_light=0x7f07005a;
public static int fastscroll_default_thickness=0x7f070000;
public static int fastscroll_margin=0x7f070001;
public static int fastscroll_minimum_range=0x7f070002;
public static int highlight_alpha_material_colored=0x7f07005b;
public static int highlight_alpha_material_dark=0x7f07005c;
public static int highlight_alpha_material_light=0x7f07005d;
public static int hint_alpha_material_dark=0x7f07005e;
public static int hint_alpha_material_light=0x7f07005f;
public static int hint_pressed_alpha_material_dark=0x7f070060;
public static int hint_pressed_alpha_material_light=0x7f070061;
public static int item_touch_helper_max_drag_scroll_per_frame=0x7f070003;
public static int item_touch_helper_swipe_escape_max_velocity=0x7f070004;
public static int item_touch_helper_swipe_escape_velocity=0x7f070005;
public static int mr_controller_volume_group_list_item_height=0x7f070006;
public static int mr_controller_volume_group_list_item_icon_size=0x7f070007;
public static int mr_controller_volume_group_list_max_height=0x7f070008;
public static int mr_controller_volume_group_list_padding_top=0x7f07000b;
public static int mr_dialog_fixed_width_major=0x7f070009;
public static int mr_dialog_fixed_width_minor=0x7f07000a;
public static int notification_action_icon_size=0x7f070099;
public static int notification_action_text_size=0x7f07009a;
public static int notification_big_circle_margin=0x7f07009b;
public static int notification_content_margin_start=0x7f070091;
public static int notification_large_icon_height=0x7f07009c;
public static int notification_large_icon_width=0x7f07009d;
public static int notification_main_column_padding_top=0x7f070092;
public static int notification_media_narrow_margin=0x7f070093;
public static int notification_right_icon_size=0x7f07009e;
public static int notification_right_side_padding_top=0x7f070090;
public static int notification_small_icon_background_padding=0x7f07009f;
public static int notification_small_icon_size_as_large=0x7f0700a0;
public static int notification_subtext_size=0x7f0700a1;
public static int notification_top_pad=0x7f0700a2;
public static int notification_top_pad_large_text=0x7f0700a3;
public static int tooltip_corner_radius=0x7f070062;
public static int tooltip_horizontal_padding=0x7f070063;
public static int tooltip_margin=0x7f070064;
public static int tooltip_precise_anchor_extra_offset=0x7f070065;
public static int tooltip_precise_anchor_threshold=0x7f070066;
public static int tooltip_vertical_padding=0x7f070067;
public static int tooltip_y_offset_non_touch=0x7f070068;
public static int tooltip_y_offset_touch=0x7f070069;
}
public static final class drawable {
public static int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static int abc_action_bar_item_background_material=0x7f020001;
public static int abc_btn_borderless_material=0x7f020002;
public static int abc_btn_check_material=0x7f020003;
public static int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static int abc_btn_colored_material=0x7f020006;
public static int abc_btn_default_mtrl_shape=0x7f020007;
public static int abc_btn_radio_material=0x7f020008;
public static int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static int abc_cab_background_internal_bg=0x7f02000d;
public static int abc_cab_background_top_material=0x7f02000e;
public static int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static int abc_control_background_material=0x7f020010;
public static int abc_dialog_material_background=0x7f020011;
public static int abc_edit_text_material=0x7f020012;
public static int abc_ic_ab_back_material=0x7f020013;
public static int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static int abc_ic_clear_material=0x7f020015;
public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static int abc_ic_go_search_api_material=0x7f020017;
public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static int abc_ic_menu_overflow_material=0x7f02001a;
public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static int abc_ic_search_api_material=0x7f02001e;
public static int abc_ic_star_black_16dp=0x7f02001f;
public static int abc_ic_star_black_36dp=0x7f020020;
public static int abc_ic_star_black_48dp=0x7f020021;
public static int abc_ic_star_half_black_16dp=0x7f020022;
public static int abc_ic_star_half_black_36dp=0x7f020023;
public static int abc_ic_star_half_black_48dp=0x7f020024;
public static int abc_ic_voice_search_api_material=0x7f020025;
public static int abc_item_background_holo_dark=0x7f020026;
public static int abc_item_background_holo_light=0x7f020027;
public static int abc_list_divider_mtrl_alpha=0x7f020028;
public static int abc_list_focused_holo=0x7f020029;
public static int abc_list_longpressed_holo=0x7f02002a;
public static int abc_list_pressed_holo_dark=0x7f02002b;
public static int abc_list_pressed_holo_light=0x7f02002c;
public static int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static int abc_list_selector_disabled_holo_light=0x7f020030;
public static int abc_list_selector_holo_dark=0x7f020031;
public static int abc_list_selector_holo_light=0x7f020032;
public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static int abc_popup_background_mtrl_mult=0x7f020034;
public static int abc_ratingbar_indicator_material=0x7f020035;
public static int abc_ratingbar_material=0x7f020036;
public static int abc_ratingbar_small_material=0x7f020037;
public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static int abc_seekbar_thumb_material=0x7f02003d;
public static int abc_seekbar_tick_mark_material=0x7f02003e;
public static int abc_seekbar_track_material=0x7f02003f;
public static int abc_spinner_mtrl_am_alpha=0x7f020040;
public static int abc_spinner_textfield_background_material=0x7f020041;
public static int abc_switch_thumb_material=0x7f020042;
public static int abc_switch_track_mtrl_alpha=0x7f020043;
public static int abc_tab_indicator_material=0x7f020044;
public static int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static int abc_text_cursor_material=0x7f020046;
public static int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static int abc_textfield_search_material=0x7f020051;
public static int abc_vector_test=0x7f020052;
public static int avd_hide_password=0x7f020053;
public static int avd_hide_password_1=0x7f020131;
public static int avd_hide_password_2=0x7f020132;
public static int avd_hide_password_3=0x7f020133;
public static int avd_show_password=0x7f020054;
public static int avd_show_password_1=0x7f020134;
public static int avd_show_password_2=0x7f020135;
public static int avd_show_password_3=0x7f020136;
public static int design_bottom_navigation_item_background=0x7f020055;
public static int design_fab_background=0x7f020056;
public static int design_ic_visibility=0x7f020057;
public static int design_ic_visibility_off=0x7f020058;
public static int design_password_eye=0x7f020059;
public static int design_snackbar_background=0x7f02005a;
public static int ic_audiotrack_dark=0x7f02005b;
public static int ic_audiotrack_light=0x7f02005c;
public static int ic_dialog_close_dark=0x7f02005d;
public static int ic_dialog_close_light=0x7f02005e;
public static int ic_group_collapse_00=0x7f02005f;
public static int ic_group_collapse_01=0x7f020060;
public static int ic_group_collapse_02=0x7f020061;
public static int ic_group_collapse_03=0x7f020062;
public static int ic_group_collapse_04=0x7f020063;
public static int ic_group_collapse_05=0x7f020064;
public static int ic_group_collapse_06=0x7f020065;
public static int ic_group_collapse_07=0x7f020066;
public static int ic_group_collapse_08=0x7f020067;
public static int ic_group_collapse_09=0x7f020068;
public static int ic_group_collapse_10=0x7f020069;
public static int ic_group_collapse_11=0x7f02006a;
public static int ic_group_collapse_12=0x7f02006b;
public static int ic_group_collapse_13=0x7f02006c;
public static int ic_group_collapse_14=0x7f02006d;
public static int ic_group_collapse_15=0x7f02006e;
public static int ic_group_expand_00=0x7f02006f;
public static int ic_group_expand_01=0x7f020070;
public static int ic_group_expand_02=0x7f020071;
public static int ic_group_expand_03=0x7f020072;
public static int ic_group_expand_04=0x7f020073;
public static int ic_group_expand_05=0x7f020074;
public static int ic_group_expand_06=0x7f020075;
public static int ic_group_expand_07=0x7f020076;
public static int ic_group_expand_08=0x7f020077;
public static int ic_group_expand_09=0x7f020078;
public static int ic_group_expand_10=0x7f020079;
public static int ic_group_expand_11=0x7f02007a;
public static int ic_group_expand_12=0x7f02007b;
public static int ic_group_expand_13=0x7f02007c;
public static int ic_group_expand_14=0x7f02007d;
public static int ic_group_expand_15=0x7f02007e;
public static int ic_launcher=0x7f02007f;
public static int ic_media_pause_dark=0x7f020080;
public static int ic_media_pause_light=0x7f020081;
public static int ic_media_play_dark=0x7f020082;
public static int ic_media_play_light=0x7f020083;
public static int ic_media_stop_dark=0x7f020084;
public static int ic_media_stop_light=0x7f020085;
public static int ic_mr_button_connected_00_dark=0x7f020086;
public static int ic_mr_button_connected_00_light=0x7f020087;
public static int ic_mr_button_connected_01_dark=0x7f020088;
public static int ic_mr_button_connected_01_light=0x7f020089;
public static int ic_mr_button_connected_02_dark=0x7f02008a;
public static int ic_mr_button_connected_02_light=0x7f02008b;
public static int ic_mr_button_connected_03_dark=0x7f02008c;
public static int ic_mr_button_connected_03_light=0x7f02008d;
public static int ic_mr_button_connected_04_dark=0x7f02008e;
public static int ic_mr_button_connected_04_light=0x7f02008f;
public static int ic_mr_button_connected_05_dark=0x7f020090;
public static int ic_mr_button_connected_05_light=0x7f020091;
public static int ic_mr_button_connected_06_dark=0x7f020092;
public static int ic_mr_button_connected_06_light=0x7f020093;
public static int ic_mr_button_connected_07_dark=0x7f020094;
public static int ic_mr_button_connected_07_light=0x7f020095;
public static int ic_mr_button_connected_08_dark=0x7f020096;
public static int ic_mr_button_connected_08_light=0x7f020097;
public static int ic_mr_button_connected_09_dark=0x7f020098;
public static int ic_mr_button_connected_09_light=0x7f020099;
public static int ic_mr_button_connected_10_dark=0x7f02009a;
public static int ic_mr_button_connected_10_light=0x7f02009b;
public static int ic_mr_button_connected_11_dark=0x7f02009c;
public static int ic_mr_button_connected_11_light=0x7f02009d;
public static int ic_mr_button_connected_12_dark=0x7f02009e;
public static int ic_mr_button_connected_12_light=0x7f02009f;
public static int ic_mr_button_connected_13_dark=0x7f0200a0;
public static int ic_mr_button_connected_13_light=0x7f0200a1;
public static int ic_mr_button_connected_14_dark=0x7f0200a2;
public static int ic_mr_button_connected_14_light=0x7f0200a3;
public static int ic_mr_button_connected_15_dark=0x7f0200a4;
public static int ic_mr_button_connected_15_light=0x7f0200a5;
public static int ic_mr_button_connected_16_dark=0x7f0200a6;
public static int ic_mr_button_connected_16_light=0x7f0200a7;
public static int ic_mr_button_connected_17_dark=0x7f0200a8;
public static int ic_mr_button_connected_17_light=0x7f0200a9;
public static int ic_mr_button_connected_18_dark=0x7f0200aa;
public static int ic_mr_button_connected_18_light=0x7f0200ab;
public static int ic_mr_button_connected_19_dark=0x7f0200ac;
public static int ic_mr_button_connected_19_light=0x7f0200ad;
public static int ic_mr_button_connected_20_dark=0x7f0200ae;
public static int ic_mr_button_connected_20_light=0x7f0200af;
public static int ic_mr_button_connected_21_dark=0x7f0200b0;
public static int ic_mr_button_connected_21_light=0x7f0200b1;
public static int ic_mr_button_connected_22_dark=0x7f0200b2;
public static int ic_mr_button_connected_22_light=0x7f0200b3;
public static int ic_mr_button_connected_23_dark=0x7f0200b4;
public static int ic_mr_button_connected_23_light=0x7f0200b5;
public static int ic_mr_button_connected_24_dark=0x7f0200b6;
public static int ic_mr_button_connected_24_light=0x7f0200b7;
public static int ic_mr_button_connected_25_dark=0x7f0200b8;
public static int ic_mr_button_connected_25_light=0x7f0200b9;
public static int ic_mr_button_connected_26_dark=0x7f0200ba;
public static int ic_mr_button_connected_26_light=0x7f0200bb;
public static int ic_mr_button_connected_27_dark=0x7f0200bc;
public static int ic_mr_button_connected_27_light=0x7f0200bd;
public static int ic_mr_button_connected_28_dark=0x7f0200be;
public static int ic_mr_button_connected_28_light=0x7f0200bf;
public static int ic_mr_button_connected_29_dark=0x7f0200c0;
public static int ic_mr_button_connected_29_light=0x7f0200c1;
public static int ic_mr_button_connected_30_dark=0x7f0200c2;
public static int ic_mr_button_connected_30_light=0x7f0200c3;
public static int ic_mr_button_connecting_00_dark=0x7f0200c4;
public static int ic_mr_button_connecting_00_light=0x7f0200c5;
public static int ic_mr_button_connecting_01_dark=0x7f0200c6;
public static int ic_mr_button_connecting_01_light=0x7f0200c7;
public static int ic_mr_button_connecting_02_dark=0x7f0200c8;
public static int ic_mr_button_connecting_02_light=0x7f0200c9;
public static int ic_mr_button_connecting_03_dark=0x7f0200ca;
public static int ic_mr_button_connecting_03_light=0x7f0200cb;
public static int ic_mr_button_connecting_04_dark=0x7f0200cc;
public static int ic_mr_button_connecting_04_light=0x7f0200cd;
public static int ic_mr_button_connecting_05_dark=0x7f0200ce;
public static int ic_mr_button_connecting_05_light=0x7f0200cf;
public static int ic_mr_button_connecting_06_dark=0x7f0200d0;
public static int ic_mr_button_connecting_06_light=0x7f0200d1;
public static int ic_mr_button_connecting_07_dark=0x7f0200d2;
public static int ic_mr_button_connecting_07_light=0x7f0200d3;
public static int ic_mr_button_connecting_08_dark=0x7f0200d4;
public static int ic_mr_button_connecting_08_light=0x7f0200d5;
public static int ic_mr_button_connecting_09_dark=0x7f0200d6;
public static int ic_mr_button_connecting_09_light=0x7f0200d7;
public static int ic_mr_button_connecting_10_dark=0x7f0200d8;
public static int ic_mr_button_connecting_10_light=0x7f0200d9;
public static int ic_mr_button_connecting_11_dark=0x7f0200da;
public static int ic_mr_button_connecting_11_light=0x7f0200db;
public static int ic_mr_button_connecting_12_dark=0x7f0200dc;
public static int ic_mr_button_connecting_12_light=0x7f0200dd;
public static int ic_mr_button_connecting_13_dark=0x7f0200de;
public static int ic_mr_button_connecting_13_light=0x7f0200df;
public static int ic_mr_button_connecting_14_dark=0x7f0200e0;
public static int ic_mr_button_connecting_14_light=0x7f0200e1;
public static int ic_mr_button_connecting_15_dark=0x7f0200e2;
public static int ic_mr_button_connecting_15_light=0x7f0200e3;
public static int ic_mr_button_connecting_16_dark=0x7f0200e4;
public static int ic_mr_button_connecting_16_light=0x7f0200e5;
public static int ic_mr_button_connecting_17_dark=0x7f0200e6;
public static int ic_mr_button_connecting_17_light=0x7f0200e7;
public static int ic_mr_button_connecting_18_dark=0x7f0200e8;
public static int ic_mr_button_connecting_18_light=0x7f0200e9;
public static int ic_mr_button_connecting_19_dark=0x7f0200ea;
public static int ic_mr_button_connecting_19_light=0x7f0200eb;
public static int ic_mr_button_connecting_20_dark=0x7f0200ec;
public static int ic_mr_button_connecting_20_light=0x7f0200ed;
public static int ic_mr_button_connecting_21_dark=0x7f0200ee;
public static int ic_mr_button_connecting_21_light=0x7f0200ef;
public static int ic_mr_button_connecting_22_dark=0x7f0200f0;
public static int ic_mr_button_connecting_22_light=0x7f0200f1;
public static int ic_mr_button_connecting_23_dark=0x7f0200f2;
public static int ic_mr_button_connecting_23_light=0x7f0200f3;
public static int ic_mr_button_connecting_24_dark=0x7f0200f4;
public static int ic_mr_button_connecting_24_light=0x7f0200f5;
public static int ic_mr_button_connecting_25_dark=0x7f0200f6;
public static int ic_mr_button_connecting_25_light=0x7f0200f7;
public static int ic_mr_button_connecting_26_dark=0x7f0200f8;
public static int ic_mr_button_connecting_26_light=0x7f0200f9;
public static int ic_mr_button_connecting_27_dark=0x7f0200fa;
public static int ic_mr_button_connecting_27_light=0x7f0200fb;
public static int ic_mr_button_connecting_28_dark=0x7f0200fc;
public static int ic_mr_button_connecting_28_light=0x7f0200fd;
public static int ic_mr_button_connecting_29_dark=0x7f0200fe;
public static int ic_mr_button_connecting_29_light=0x7f0200ff;
public static int ic_mr_button_connecting_30_dark=0x7f020100;
public static int ic_mr_button_connecting_30_light=0x7f020101;
public static int ic_mr_button_disabled_dark=0x7f020102;
public static int ic_mr_button_disabled_light=0x7f020103;
public static int ic_mr_button_disconnected_dark=0x7f020104;
public static int ic_mr_button_disconnected_light=0x7f020105;
public static int ic_mr_button_grey=0x7f020106;
public static int ic_vol_type_speaker_dark=0x7f020107;
public static int ic_vol_type_speaker_group_dark=0x7f020108;
public static int ic_vol_type_speaker_group_light=0x7f020109;
public static int ic_vol_type_speaker_light=0x7f02010a;
public static int ic_vol_type_tv_dark=0x7f02010b;
public static int ic_vol_type_tv_light=0x7f02010c;
public static int icon=0x7f02010d;
public static int mr_button_connected_dark=0x7f02010e;
public static int mr_button_connected_light=0x7f02010f;
public static int mr_button_connecting_dark=0x7f020110;
public static int mr_button_connecting_light=0x7f020111;
public static int mr_button_dark=0x7f020112;
public static int mr_button_light=0x7f020113;
public static int mr_dialog_close_dark=0x7f020114;
public static int mr_dialog_close_light=0x7f020115;
public static int mr_dialog_material_background_dark=0x7f020116;
public static int mr_dialog_material_background_light=0x7f020117;
public static int mr_group_collapse=0x7f020118;
public static int mr_group_expand=0x7f020119;
public static int mr_media_pause_dark=0x7f02011a;
public static int mr_media_pause_light=0x7f02011b;
public static int mr_media_play_dark=0x7f02011c;
public static int mr_media_play_light=0x7f02011d;
public static int mr_media_stop_dark=0x7f02011e;
public static int mr_media_stop_light=0x7f02011f;
public static int mr_vol_type_audiotrack_dark=0x7f020120;
public static int mr_vol_type_audiotrack_light=0x7f020121;
public static int navigation_empty_icon=0x7f020122;
public static int notification_action_background=0x7f020123;
public static int notification_bg=0x7f020124;
public static int notification_bg_low=0x7f020125;
public static int notification_bg_low_normal=0x7f020126;
public static int notification_bg_low_pressed=0x7f020127;
public static int notification_bg_normal=0x7f020128;
public static int notification_bg_normal_pressed=0x7f020129;
public static int notification_icon_background=0x7f02012a;
public static int notification_template_icon_bg=0x7f02012f;
public static int notification_template_icon_low_bg=0x7f020130;
public static int notification_tile_bg=0x7f02012b;
public static int notify_panel_notification_icon_bg=0x7f02012c;
public static int tooltip_frame_dark=0x7f02012d;
public static int tooltip_frame_light=0x7f02012e;
}
public static final class id {
public static int ALT=0x7f080032;
public static int CTRL=0x7f080033;
public static int FUNCTION=0x7f080034;
public static int META=0x7f080035;
public static int SHIFT=0x7f080036;
public static int SYM=0x7f080037;
public static int action0=0x7f0800b6;
public static int action_bar=0x7f08007c;
public static int action_bar_activity_content=0x7f080001;
public static int action_bar_container=0x7f08007b;
public static int action_bar_root=0x7f080077;
public static int action_bar_spinner=0x7f080002;
public static int action_bar_subtitle=0x7f08005b;
public static int action_bar_title=0x7f08005a;
public static int action_container=0x7f0800b3;
public static int action_context_bar=0x7f08007d;
public static int action_divider=0x7f0800ba;
public static int action_image=0x7f0800b4;
public static int action_menu_divider=0x7f080003;
public static int action_menu_presenter=0x7f080004;
public static int action_mode_bar=0x7f080079;
public static int action_mode_bar_stub=0x7f080078;
public static int action_mode_close_button=0x7f08005c;
public static int action_text=0x7f0800b5;
public static int actions=0x7f0800c3;
public static int activity_chooser_view_content=0x7f08005d;
public static int add=0x7f080027;
public static int alertTitle=0x7f080070;
public static int all=0x7f080052;
public static int always=0x7f080038;
public static int async=0x7f080056;
public static int auto=0x7f080044;
public static int beginning=0x7f08002f;
public static int blocking=0x7f080057;
public static int bottom=0x7f08003d;
public static int buttonPanel=0x7f080063;
public static int cancel_action=0x7f0800b7;
public static int center=0x7f080045;
public static int center_horizontal=0x7f080046;
public static int center_vertical=0x7f080047;
public static int checkbox=0x7f080073;
public static int chronometer=0x7f0800bf;
public static int clip_horizontal=0x7f08004e;
public static int clip_vertical=0x7f08004f;
public static int collapseActionView=0x7f080039;
public static int container=0x7f08008d;
public static int contentPanel=0x7f080066;
public static int coordinator=0x7f08008e;
public static int custom=0x7f08006d;
public static int customPanel=0x7f08006c;
public static int decor_content_parent=0x7f08007a;
public static int default_activity_button=0x7f080060;
public static int design_bottom_sheet=0x7f080090;
public static int design_menu_item_action_area=0x7f080097;
public static int design_menu_item_action_area_stub=0x7f080096;
public static int design_menu_item_text=0x7f080095;
public static int design_navigation_view=0x7f080094;
public static int disableHome=0x7f080020;
public static int edit_query=0x7f08007e;
public static int end=0x7f080030;
public static int end_padder=0x7f0800c5;
public static int enterAlways=0x7f08003f;
public static int enterAlwaysCollapsed=0x7f080040;
public static int exitUntilCollapsed=0x7f080041;
public static int expand_activities_button=0x7f08005e;
public static int expanded_menu=0x7f080072;
public static int fill=0x7f080050;
public static int fill_horizontal=0x7f080051;
public static int fill_vertical=0x7f080048;
public static int fixed=0x7f080054;
public static int forever=0x7f080058;
public static int ghost_view=0x7f08000a;
public static int home=0x7f080005;
public static int homeAsUp=0x7f080021;
public static int icon=0x7f080062;
public static int icon_group=0x7f0800c4;
public static int ifRoom=0x7f08003a;
public static int image=0x7f08005f;
public static int info=0x7f0800c0;
public static int italic=0x7f080059;
public static int item_touch_helper_previous_elevation=0x7f080000;
public static int largeLabel=0x7f08008c;
public static int left=0x7f080049;
public static int line1=0x7f080017;
public static int line3=0x7f080018;
public static int listMode=0x7f08001d;
public static int list_item=0x7f080061;
public static int masked=0x7f0800ca;
public static int media_actions=0x7f0800b9;
public static int message=0x7f0800c8;
public static int middle=0x7f080031;
public static int mini=0x7f080053;
public static int mr_art=0x7f0800a5;
public static int mr_chooser_list=0x7f08009a;
public static int mr_chooser_route_desc=0x7f08009d;
public static int mr_chooser_route_icon=0x7f08009b;
public static int mr_chooser_route_name=0x7f08009c;
public static int mr_chooser_title=0x7f080099;
public static int mr_close=0x7f0800a2;
public static int mr_control_divider=0x7f0800a8;
public static int mr_control_playback_ctrl=0x7f0800ae;
public static int mr_control_subtitle=0x7f0800b1;
public static int mr_control_title=0x7f0800b0;
public static int mr_control_title_container=0x7f0800af;
public static int mr_custom_control=0x7f0800a3;
public static int mr_default_control=0x7f0800a4;
public static int mr_dialog_area=0x7f08009f;
public static int mr_expandable_area=0x7f08009e;
public static int mr_group_expand_collapse=0x7f0800b2;
public static int mr_media_main_control=0x7f0800a6;
public static int mr_name=0x7f0800a1;
public static int mr_playback_control=0x7f0800a7;
public static int mr_title_bar=0x7f0800a0;
public static int mr_volume_control=0x7f0800a9;
public static int mr_volume_group_list=0x7f0800aa;
public static int mr_volume_item_icon=0x7f0800ac;
public static int mr_volume_slider=0x7f0800ad;
public static int multiply=0x7f080028;
public static int navigation_header_container=0x7f080093;
public static int never=0x7f08003b;
public static int none=0x7f080022;
public static int normal=0x7f08001e;
public static int notification_background=0x7f0800c2;
public static int notification_main_column=0x7f0800bc;
public static int notification_main_column_container=0x7f0800bb;
public static int parallax=0x7f08004c;
public static int parentPanel=0x7f080065;
public static int parent_matrix=0x7f08000b;
public static int pin=0x7f08004d;
public static int progress_circular=0x7f080006;
public static int progress_horizontal=0x7f080007;
public static int radio=0x7f080075;
public static int right=0x7f08004a;
public static int right_icon=0x7f0800c1;
public static int right_side=0x7f0800bd;
public static int save_image_matrix=0x7f08000c;
public static int save_non_transition_alpha=0x7f08000d;
public static int save_scale_type=0x7f08000e;
public static int screen=0x7f080029;
public static int scroll=0x7f080042;
public static int scrollIndicatorDown=0x7f08006b;
public static int scrollIndicatorUp=0x7f080067;
public static int scrollView=0x7f080068;
public static int scrollable=0x7f080055;
public static int search_badge=0x7f080080;
public static int search_bar=0x7f08007f;
public static int search_button=0x7f080081;
public static int search_close_btn=0x7f080086;
public static int search_edit_frame=0x7f080082;
public static int search_go_btn=0x7f080088;
public static int search_mag_icon=0x7f080083;
public static int search_plate=0x7f080084;
public static int search_src_text=0x7f080085;
public static int search_voice_btn=0x7f080089;
public static int select_dialog_listview=0x7f08008a;
public static int shortcut=0x7f080074;
public static int showCustom=0x7f080023;
public static int showHome=0x7f080024;
public static int showTitle=0x7f080025;
public static int sliding_tabs=0x7f0800c6;
public static int smallLabel=0x7f08008b;
public static int snackbar_action=0x7f080092;
public static int snackbar_text=0x7f080091;
public static int snap=0x7f080043;
public static int spacer=0x7f080064;
public static int split_action_bar=0x7f080008;
public static int src_atop=0x7f08002a;
public static int src_in=0x7f08002b;
public static int src_over=0x7f08002c;
public static int start=0x7f08004b;
public static int status_bar_latest_event_content=0x7f0800b8;
public static int submenuarrow=0x7f080076;
public static int submit_area=0x7f080087;
public static int tabMode=0x7f08001f;
public static int tag_transition_group=0x7f080019;
public static int text=0x7f08001a;
public static int text2=0x7f08001b;
public static int textSpacerNoButtons=0x7f08006a;
public static int textSpacerNoTitle=0x7f080069;
public static int text_input_password_toggle=0x7f080098;
public static int textinput_counter=0x7f080014;
public static int textinput_error=0x7f080015;
public static int time=0x7f0800be;
public static int title=0x7f08001c;
public static int titleDividerNoCustom=0x7f080071;
public static int title_template=0x7f08006f;
public static int toolbar=0x7f0800c7;
public static int top=0x7f08003e;
public static int topPanel=0x7f08006e;
public static int touch_outside=0x7f08008f;
public static int transition_current_scene=0x7f08000f;
public static int transition_layout_save=0x7f080010;
public static int transition_position=0x7f080011;
public static int transition_scene_layoutid_cache=0x7f080012;
public static int transition_transform=0x7f080013;
public static int uniform=0x7f08002d;
public static int up=0x7f080009;
public static int useLogo=0x7f080026;
public static int view_offset_helper=0x7f080016;
public static int visible=0x7f0800c9;
public static int volume_item_container=0x7f0800ab;
public static int withText=0x7f08003c;
public static int wrap_content=0x7f08002e;
}
public static final class integer {
public static int abc_config_activityDefaultDur=0x7f0a0003;
public static int abc_config_activityShortDur=0x7f0a0004;
public static int app_bar_elevation_anim_duration=0x7f0a0008;
public static int bottom_sheet_slide_duration=0x7f0a0009;
public static int cancel_button_image_alpha=0x7f0a0005;
public static int config_tooltipAnimTime=0x7f0a0006;
public static int design_snackbar_text_max_lines=0x7f0a0007;
public static int hide_password_duration=0x7f0a000a;
public static int mr_controller_volume_group_list_animation_duration_ms=0x7f0a0000;
public static int mr_controller_volume_group_list_fade_in_duration_ms=0x7f0a0001;
public static int mr_controller_volume_group_list_fade_out_duration_ms=0x7f0a0002;
public static int show_password_duration=0x7f0a000b;
public static int status_bar_notification_info_maxnum=0x7f0a000c;
}
public static final class interpolator {
public static int mr_fast_out_slow_in=0x7f060000;
public static int mr_linear_out_slow_in=0x7f060001;
}
public static final class layout {
public static int abc_action_bar_title_item=0x7f030000;
public static int abc_action_bar_up_container=0x7f030001;
public static int abc_action_menu_item_layout=0x7f030002;
public static int abc_action_menu_layout=0x7f030003;
public static int abc_action_mode_bar=0x7f030004;
public static int abc_action_mode_close_item_material=0x7f030005;
public static int abc_activity_chooser_view=0x7f030006;
public static int abc_activity_chooser_view_list_item=0x7f030007;
public static int abc_alert_dialog_button_bar_material=0x7f030008;
public static int abc_alert_dialog_material=0x7f030009;
public static int abc_alert_dialog_title_material=0x7f03000a;
public static int abc_dialog_title_material=0x7f03000b;
public static int abc_expanded_menu_layout=0x7f03000c;
public static int abc_list_menu_item_checkbox=0x7f03000d;
public static int abc_list_menu_item_icon=0x7f03000e;
public static int abc_list_menu_item_layout=0x7f03000f;
public static int abc_list_menu_item_radio=0x7f030010;
public static int abc_popup_menu_header_item_layout=0x7f030011;
public static int abc_popup_menu_item_layout=0x7f030012;
public static int abc_screen_content_include=0x7f030013;
public static int abc_screen_simple=0x7f030014;
public static int abc_screen_simple_overlay_action_mode=0x7f030015;
public static int abc_screen_toolbar=0x7f030016;
public static int abc_search_dropdown_item_icons_2line=0x7f030017;
public static int abc_search_view=0x7f030018;
public static int abc_select_dialog_material=0x7f030019;
public static int design_bottom_navigation_item=0x7f03001a;
public static int design_bottom_sheet_dialog=0x7f03001b;
public static int design_layout_snackbar=0x7f03001c;
public static int design_layout_snackbar_include=0x7f03001d;
public static int design_layout_tab_icon=0x7f03001e;
public static int design_layout_tab_text=0x7f03001f;
public static int design_menu_item_action_area=0x7f030020;
public static int design_navigation_item=0x7f030021;
public static int design_navigation_item_header=0x7f030022;
public static int design_navigation_item_separator=0x7f030023;
public static int design_navigation_item_subheader=0x7f030024;
public static int design_navigation_menu=0x7f030025;
public static int design_navigation_menu_item=0x7f030026;
public static int design_text_input_password_icon=0x7f030027;
public static int mr_chooser_dialog=0x7f030028;
public static int mr_chooser_list_item=0x7f030029;
public static int mr_controller_material_dialog_b=0x7f03002a;
public static int mr_controller_volume_item=0x7f03002b;
public static int mr_playback_control=0x7f03002c;
public static int mr_volume_control=0x7f03002d;
public static int notification_action=0x7f03002e;
public static int notification_action_tombstone=0x7f03002f;
public static int notification_media_action=0x7f030030;
public static int notification_media_cancel_action=0x7f030031;
public static int notification_template_big_media=0x7f030032;
public static int notification_template_big_media_custom=0x7f030033;
public static int notification_template_big_media_narrow=0x7f030034;
public static int notification_template_big_media_narrow_custom=0x7f030035;
public static int notification_template_custom_big=0x7f030036;
public static int notification_template_icon_group=0x7f030037;
public static int notification_template_lines_media=0x7f030038;
public static int notification_template_media=0x7f030039;
public static int notification_template_media_custom=0x7f03003a;
public static int notification_template_part_chronometer=0x7f03003b;
public static int notification_template_part_time=0x7f03003c;
public static int select_dialog_item_material=0x7f03003d;
public static int select_dialog_multichoice_material=0x7f03003e;
public static int select_dialog_singlechoice_material=0x7f03003f;
public static int support_simple_spinner_dropdown_item=0x7f030040;
public static int tabbar=0x7f030041;
public static int toolbar=0x7f030042;
public static int tooltip=0x7f030043;
}
public static final class string {
public static int abc_action_bar_home_description=0x7f090015;
public static int abc_action_bar_up_description=0x7f090016;
public static int abc_action_menu_overflow_description=0x7f090017;
public static int abc_action_mode_done=0x7f090018;
public static int abc_activity_chooser_view_see_all=0x7f090019;
public static int abc_activitychooserview_choose_application=0x7f09001a;
public static int abc_capital_off=0x7f09001b;
public static int abc_capital_on=0x7f09001c;
public static int abc_font_family_body_1_material=0x7f090027;
public static int abc_font_family_body_2_material=0x7f090028;
public static int abc_font_family_button_material=0x7f090029;
public static int abc_font_family_caption_material=0x7f09002a;
public static int abc_font_family_display_1_material=0x7f09002b;
public static int abc_font_family_display_2_material=0x7f09002c;
public static int abc_font_family_display_3_material=0x7f09002d;
public static int abc_font_family_display_4_material=0x7f09002e;
public static int abc_font_family_headline_material=0x7f09002f;
public static int abc_font_family_menu_material=0x7f090030;
public static int abc_font_family_subhead_material=0x7f090031;
public static int abc_font_family_title_material=0x7f090032;
public static int abc_search_hint=0x7f09001d;
public static int abc_searchview_description_clear=0x7f09001e;
public static int abc_searchview_description_query=0x7f09001f;
public static int abc_searchview_description_search=0x7f090020;
public static int abc_searchview_description_submit=0x7f090021;
public static int abc_searchview_description_voice=0x7f090022;
public static int abc_shareactionprovider_share_with=0x7f090023;
public static int abc_shareactionprovider_share_with_application=0x7f090024;
public static int abc_toolbar_collapse_description=0x7f090025;
public static int appbar_scrolling_view_behavior=0x7f090033;
public static int bottom_sheet_behavior=0x7f090034;
public static int character_counter_pattern=0x7f090035;
public static int mr_button_content_description=0x7f090000;
public static int mr_cast_button_connected=0x7f090001;
public static int mr_cast_button_connecting=0x7f090002;
public static int mr_cast_button_disconnected=0x7f090003;
public static int mr_chooser_searching=0x7f090004;
public static int mr_chooser_title=0x7f090005;
public static int mr_controller_album_art=0x7f090006;
public static int mr_controller_casting_screen=0x7f090007;
public static int mr_controller_close_description=0x7f090008;
public static int mr_controller_collapse_group=0x7f090009;
public static int mr_controller_disconnect=0x7f09000a;
public static int mr_controller_expand_group=0x7f09000b;
public static int mr_controller_no_info_available=0x7f09000c;
public static int mr_controller_no_media_selected=0x7f09000d;
public static int mr_controller_pause=0x7f09000e;
public static int mr_controller_play=0x7f09000f;
public static int mr_controller_stop=0x7f090010;
public static int mr_controller_stop_casting=0x7f090011;
public static int mr_controller_volume_slider=0x7f090012;
public static int mr_system_route_name=0x7f090013;
public static int mr_user_route_category_name=0x7f090014;
public static int password_toggle_content_description=0x7f090036;
public static int path_password_eye=0x7f090037;
public static int path_password_eye_mask_strike_through=0x7f090038;
public static int path_password_eye_mask_visible=0x7f090039;
public static int path_password_strike_through=0x7f09003a;
public static int search_menu_title=0x7f090026;
public static int status_bar_notification_info_overflow=0x7f09003b;
}
public static final class style {
public static int AlertDialog_AppCompat=0x7f0b00a4;
public static int AlertDialog_AppCompat_Light=0x7f0b00a5;
public static int Animation_AppCompat_Dialog=0x7f0b00a6;
public static int Animation_AppCompat_DropDownUp=0x7f0b00a7;
public static int Animation_AppCompat_Tooltip=0x7f0b00a8;
public static int Animation_Design_BottomSheetDialog=0x7f0b016e;
public static int AppCompatDialogStyle=0x7f0b0191;
public static int Base_AlertDialog_AppCompat=0x7f0b00a9;
public static int Base_AlertDialog_AppCompat_Light=0x7f0b00aa;
public static int Base_Animation_AppCompat_Dialog=0x7f0b00ab;
public static int Base_Animation_AppCompat_DropDownUp=0x7f0b00ac;
public static int Base_Animation_AppCompat_Tooltip=0x7f0b00ad;
public static int Base_CardView=0x7f0b000c;
public static int Base_DialogWindowTitle_AppCompat=0x7f0b00ae;
public static int Base_DialogWindowTitleBackground_AppCompat=0x7f0b00af;
public static int Base_TextAppearance_AppCompat=0x7f0b0048;
public static int Base_TextAppearance_AppCompat_Body1=0x7f0b0049;
public static int Base_TextAppearance_AppCompat_Body2=0x7f0b004a;
public static int Base_TextAppearance_AppCompat_Button=0x7f0b0036;
public static int Base_TextAppearance_AppCompat_Caption=0x7f0b004b;
public static int Base_TextAppearance_AppCompat_Display1=0x7f0b004c;
public static int Base_TextAppearance_AppCompat_Display2=0x7f0b004d;
public static int Base_TextAppearance_AppCompat_Display3=0x7f0b004e;
public static int Base_TextAppearance_AppCompat_Display4=0x7f0b004f;
public static int Base_TextAppearance_AppCompat_Headline=0x7f0b0050;
public static int Base_TextAppearance_AppCompat_Inverse=0x7f0b001a;
public static int Base_TextAppearance_AppCompat_Large=0x7f0b0051;
public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b001b;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0052;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0053;
public static int Base_TextAppearance_AppCompat_Medium=0x7f0b0054;
public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b001c;
public static int Base_TextAppearance_AppCompat_Menu=0x7f0b0055;
public static int Base_TextAppearance_AppCompat_SearchResult=0x7f0b00b0;
public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b0056;
public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b0057;
public static int Base_TextAppearance_AppCompat_Small=0x7f0b0058;
public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b001d;
public static int Base_TextAppearance_AppCompat_Subhead=0x7f0b0059;
public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b001e;
public static int Base_TextAppearance_AppCompat_Title=0x7f0b005a;
public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b001f;
public static int Base_TextAppearance_AppCompat_Tooltip=0x7f0b00b1;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0095;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b005b;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b005c;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b005d;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b005e;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b005f;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0060;
public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f0b0061;
public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b009c;
public static int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b009d;
public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b0096;
public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00b2;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0062;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0063;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0064;
public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b0065;
public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b0066;
public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b00b3;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0067;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0068;
public static int Base_Theme_AppCompat=0x7f0b0069;
public static int Base_Theme_AppCompat_CompactMenu=0x7f0b00b4;
public static int Base_Theme_AppCompat_Dialog=0x7f0b0020;
public static int Base_Theme_AppCompat_Dialog_Alert=0x7f0b0021;
public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b00b5;
public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0022;
public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b0010;
public static int Base_Theme_AppCompat_Light=0x7f0b006a;
public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b00b6;
public static int Base_Theme_AppCompat_Light_Dialog=0x7f0b0023;
public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0024;
public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b00b7;
public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0025;
public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0011;
public static int Base_ThemeOverlay_AppCompat=0x7f0b00b8;
public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b00b9;
public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0b00ba;
public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b00bb;
public static int Base_ThemeOverlay_AppCompat_Dialog=0x7f0b0026;
public static int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0027;
public static int Base_ThemeOverlay_AppCompat_Light=0x7f0b00bc;
public static int Base_V11_Theme_AppCompat_Dialog=0x7f0b0028;
public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b0029;
public static int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0b002a;
public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0b0032;
public static int Base_V12_Widget_AppCompat_EditText=0x7f0b0033;
public static int Base_V14_Widget_Design_AppBarLayout=0x7f0b016f;
public static int Base_V21_Theme_AppCompat=0x7f0b006b;
public static int Base_V21_Theme_AppCompat_Dialog=0x7f0b006c;
public static int Base_V21_Theme_AppCompat_Light=0x7f0b006d;
public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b006e;
public static int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0b006f;
public static int Base_V21_Widget_Design_AppBarLayout=0x7f0b016b;
public static int Base_V22_Theme_AppCompat=0x7f0b0093;
public static int Base_V22_Theme_AppCompat_Light=0x7f0b0094;
public static int Base_V23_Theme_AppCompat=0x7f0b0097;
public static int Base_V23_Theme_AppCompat_Light=0x7f0b0098;
public static int Base_V26_Theme_AppCompat=0x7f0b00a0;
public static int Base_V26_Theme_AppCompat_Light=0x7f0b00a1;
public static int Base_V26_Widget_AppCompat_Toolbar=0x7f0b00a2;
public static int Base_V26_Widget_Design_AppBarLayout=0x7f0b016d;
public static int Base_V7_Theme_AppCompat=0x7f0b00bd;
public static int Base_V7_Theme_AppCompat_Dialog=0x7f0b00be;
public static int Base_V7_Theme_AppCompat_Light=0x7f0b00bf;
public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b00c0;
public static int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0b00c1;
public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0b00c2;
public static int Base_V7_Widget_AppCompat_EditText=0x7f0b00c3;
public static int Base_V7_Widget_AppCompat_Toolbar=0x7f0b00c4;
public static int Base_Widget_AppCompat_ActionBar=0x7f0b00c5;
public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b00c6;
public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b00c7;
public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b0070;
public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b0071;
public static int Base_Widget_AppCompat_ActionButton=0x7f0b0072;
public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0073;
public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b0074;
public static int Base_Widget_AppCompat_ActionMode=0x7f0b00c8;
public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0b00c9;
public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b0034;
public static int Base_Widget_AppCompat_Button=0x7f0b0075;
public static int Base_Widget_AppCompat_Button_Borderless=0x7f0b0076;
public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b0077;
public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b00ca;
public static int Base_Widget_AppCompat_Button_Colored=0x7f0b0099;
public static int Base_Widget_AppCompat_Button_Small=0x7f0b0078;
public static int Base_Widget_AppCompat_ButtonBar=0x7f0b0079;
public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b00cb;
public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b007a;
public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b007b;
public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b00cc;
public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b000f;
public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b00cd;
public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b007c;
public static int Base_Widget_AppCompat_EditText=0x7f0b0035;
public static int Base_Widget_AppCompat_ImageButton=0x7f0b007d;
public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0b00ce;
public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b00cf;
public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b00d0;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b007e;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b007f;
public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0080;
public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b0081;
public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0082;
public static int Base_Widget_AppCompat_ListMenuView=0x7f0b00d1;
public static int Base_Widget_AppCompat_ListPopupWindow=0x7f0b0083;
public static int Base_Widget_AppCompat_ListView=0x7f0b0084;
public static int Base_Widget_AppCompat_ListView_DropDown=0x7f0b0085;
public static int Base_Widget_AppCompat_ListView_Menu=0x7f0b0086;
public static int Base_Widget_AppCompat_PopupMenu=0x7f0b0087;
public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b0088;
public static int Base_Widget_AppCompat_PopupWindow=0x7f0b00d2;
public static int Base_Widget_AppCompat_ProgressBar=0x7f0b002b;
public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b002c;
public static int Base_Widget_AppCompat_RatingBar=0x7f0b0089;
public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0b009a;
public static int Base_Widget_AppCompat_RatingBar_Small=0x7f0b009b;
public static int Base_Widget_AppCompat_SearchView=0x7f0b00d3;
public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b00d4;
public static int Base_Widget_AppCompat_SeekBar=0x7f0b008a;
public static int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0b00d5;
public static int Base_Widget_AppCompat_Spinner=0x7f0b008b;
public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b0012;
public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b008c;
public static int Base_Widget_AppCompat_Toolbar=0x7f0b00a3;
public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b008d;
public static int Base_Widget_Design_AppBarLayout=0x7f0b016c;
public static int Base_Widget_Design_TabLayout=0x7f0b0170;
public static int CardView=0x7f0b000b;
public static int CardView_Dark=0x7f0b000d;
public static int CardView_Light=0x7f0b000e;
public static int MyTheme=0x7f0b018f;
/** Base theme applied no matter what API
*/
public static int MyTheme_Base=0x7f0b0190;
public static int Platform_AppCompat=0x7f0b002d;
public static int Platform_AppCompat_Light=0x7f0b002e;
public static int Platform_ThemeOverlay_AppCompat=0x7f0b008e;
public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b008f;
public static int Platform_ThemeOverlay_AppCompat_Light=0x7f0b0090;
public static int Platform_V11_AppCompat=0x7f0b002f;
public static int Platform_V11_AppCompat_Light=0x7f0b0030;
public static int Platform_V14_AppCompat=0x7f0b0037;
public static int Platform_V14_AppCompat_Light=0x7f0b0038;
public static int Platform_V21_AppCompat=0x7f0b0091;
public static int Platform_V21_AppCompat_Light=0x7f0b0092;
public static int Platform_V25_AppCompat=0x7f0b009e;
public static int Platform_V25_AppCompat_Light=0x7f0b009f;
public static int Platform_Widget_AppCompat_Spinner=0x7f0b0031;
public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0b003a;
public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b003b;
public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0b003c;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b003d;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b003e;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b003f;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b0040;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b0041;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b0042;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b0043;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b0044;
public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b0045;
public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0b0046;
public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b0047;
public static int TextAppearance_AppCompat=0x7f0b00d6;
public static int TextAppearance_AppCompat_Body1=0x7f0b00d7;
public static int TextAppearance_AppCompat_Body2=0x7f0b00d8;
public static int TextAppearance_AppCompat_Button=0x7f0b00d9;
public static int TextAppearance_AppCompat_Caption=0x7f0b00da;
public static int TextAppearance_AppCompat_Display1=0x7f0b00db;
public static int TextAppearance_AppCompat_Display2=0x7f0b00dc;
public static int TextAppearance_AppCompat_Display3=0x7f0b00dd;
public static int TextAppearance_AppCompat_Display4=0x7f0b00de;
public static int TextAppearance_AppCompat_Headline=0x7f0b00df;
public static int TextAppearance_AppCompat_Inverse=0x7f0b00e0;
public static int TextAppearance_AppCompat_Large=0x7f0b00e1;
public static int TextAppearance_AppCompat_Large_Inverse=0x7f0b00e2;
public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b00e3;
public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b00e4;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b00e5;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b00e6;
public static int TextAppearance_AppCompat_Medium=0x7f0b00e7;
public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0b00e8;
public static int TextAppearance_AppCompat_Menu=0x7f0b00e9;
public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b00ea;
public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0b00eb;
public static int TextAppearance_AppCompat_Small=0x7f0b00ec;
public static int TextAppearance_AppCompat_Small_Inverse=0x7f0b00ed;
public static int TextAppearance_AppCompat_Subhead=0x7f0b00ee;
public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00ef;
public static int TextAppearance_AppCompat_Title=0x7f0b00f0;
public static int TextAppearance_AppCompat_Title_Inverse=0x7f0b00f1;
public static int TextAppearance_AppCompat_Tooltip=0x7f0b0039;
public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00f2;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b00f3;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b00f4;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b00f5;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b00f6;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b00f7;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b00f8;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b00f9;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b00fa;
public static int TextAppearance_AppCompat_Widget_Button=0x7f0b00fb;
public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b00fc;
public static int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b00fd;
public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b00fe;
public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00ff;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0100;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0101;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0102;
public static int TextAppearance_AppCompat_Widget_Switch=0x7f0b0103;
public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b0104;
public static int TextAppearance_Compat_Notification=0x7f0b0188;
public static int TextAppearance_Compat_Notification_Info=0x7f0b0189;
public static int TextAppearance_Compat_Notification_Info_Media=0x7f0b0165;
public static int TextAppearance_Compat_Notification_Line2=0x7f0b018e;
public static int TextAppearance_Compat_Notification_Line2_Media=0x7f0b0169;
public static int TextAppearance_Compat_Notification_Media=0x7f0b0166;
public static int TextAppearance_Compat_Notification_Time=0x7f0b018a;
public static int TextAppearance_Compat_Notification_Time_Media=0x7f0b0167;
public static int TextAppearance_Compat_Notification_Title=0x7f0b018b;
public static int TextAppearance_Compat_Notification_Title_Media=0x7f0b0168;
public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0b0171;
public static int TextAppearance_Design_Counter=0x7f0b0172;
public static int TextAppearance_Design_Counter_Overflow=0x7f0b0173;
public static int TextAppearance_Design_Error=0x7f0b0174;
public static int TextAppearance_Design_Hint=0x7f0b0175;
public static int TextAppearance_Design_Snackbar_Message=0x7f0b0176;
public static int TextAppearance_Design_Tab=0x7f0b0177;
public static int TextAppearance_MediaRouter_PrimaryText=0x7f0b0000;
public static int TextAppearance_MediaRouter_SecondaryText=0x7f0b0001;
public static int TextAppearance_MediaRouter_Title=0x7f0b0002;
public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0105;
public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0106;
public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0107;
public static int Theme_AppCompat=0x7f0b0108;
public static int Theme_AppCompat_CompactMenu=0x7f0b0109;
public static int Theme_AppCompat_DayNight=0x7f0b0013;
public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f0b0014;
public static int Theme_AppCompat_DayNight_Dialog=0x7f0b0015;
public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0b0016;
public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0b0017;
public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0b0018;
public static int Theme_AppCompat_DayNight_NoActionBar=0x7f0b0019;
public static int Theme_AppCompat_Dialog=0x7f0b010a;
public static int Theme_AppCompat_Dialog_Alert=0x7f0b010b;
public static int Theme_AppCompat_Dialog_MinWidth=0x7f0b010c;
public static int Theme_AppCompat_DialogWhenLarge=0x7f0b010d;
public static int Theme_AppCompat_Light=0x7f0b010e;
public static int Theme_AppCompat_Light_DarkActionBar=0x7f0b010f;
public static int Theme_AppCompat_Light_Dialog=0x7f0b0110;
public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0b0111;
public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0112;
public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0113;
public static int Theme_AppCompat_Light_NoActionBar=0x7f0b0114;
public static int Theme_AppCompat_NoActionBar=0x7f0b0115;
public static int Theme_Design=0x7f0b0178;
public static int Theme_Design_BottomSheetDialog=0x7f0b0179;
public static int Theme_Design_Light=0x7f0b017a;
public static int Theme_Design_Light_BottomSheetDialog=0x7f0b017b;
public static int Theme_Design_Light_NoActionBar=0x7f0b017c;
public static int Theme_Design_NoActionBar=0x7f0b017d;
public static int Theme_MediaRouter=0x7f0b0003;
public static int Theme_MediaRouter_Light=0x7f0b0004;
public static int Theme_MediaRouter_Light_DarkControlPanel=0x7f0b0005;
public static int Theme_MediaRouter_LightControlPanel=0x7f0b0006;
public static int ThemeOverlay_AppCompat=0x7f0b0116;
public static int ThemeOverlay_AppCompat_ActionBar=0x7f0b0117;
public static int ThemeOverlay_AppCompat_Dark=0x7f0b0118;
public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b0119;
public static int ThemeOverlay_AppCompat_Dialog=0x7f0b011a;
public static int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b011b;
public static int ThemeOverlay_AppCompat_Light=0x7f0b011c;
public static int ThemeOverlay_MediaRouter_Dark=0x7f0b0007;
public static int ThemeOverlay_MediaRouter_Light=0x7f0b0008;
public static int Widget_AppCompat_ActionBar=0x7f0b011d;
public static int Widget_AppCompat_ActionBar_Solid=0x7f0b011e;
public static int Widget_AppCompat_ActionBar_TabBar=0x7f0b011f;
public static int Widget_AppCompat_ActionBar_TabText=0x7f0b0120;
public static int Widget_AppCompat_ActionBar_TabView=0x7f0b0121;
public static int Widget_AppCompat_ActionButton=0x7f0b0122;
public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0b0123;
public static int Widget_AppCompat_ActionButton_Overflow=0x7f0b0124;
public static int Widget_AppCompat_ActionMode=0x7f0b0125;
public static int Widget_AppCompat_ActivityChooserView=0x7f0b0126;
public static int Widget_AppCompat_AutoCompleteTextView=0x7f0b0127;
public static int Widget_AppCompat_Button=0x7f0b0128;
public static int Widget_AppCompat_Button_Borderless=0x7f0b0129;
public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0b012a;
public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b012b;
public static int Widget_AppCompat_Button_Colored=0x7f0b012c;
public static int Widget_AppCompat_Button_Small=0x7f0b012d;
public static int Widget_AppCompat_ButtonBar=0x7f0b012e;
public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b012f;
public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0130;
public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0131;
public static int Widget_AppCompat_CompoundButton_Switch=0x7f0b0132;
public static int Widget_AppCompat_DrawerArrowToggle=0x7f0b0133;
public static int Widget_AppCompat_DropDownItem_Spinner=0x7f0b0134;
public static int Widget_AppCompat_EditText=0x7f0b0135;
public static int Widget_AppCompat_ImageButton=0x7f0b0136;
public static int Widget_AppCompat_Light_ActionBar=0x7f0b0137;
public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0138;
public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0139;
public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b013a;
public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b013b;
public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b013c;
public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b013d;
public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b013e;
public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b013f;
public static int Widget_AppCompat_Light_ActionButton=0x7f0b0140;
public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b0141;
public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0142;
public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b0143;
public static int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0144;
public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b0145;
public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b0146;
public static int Widget_AppCompat_Light_ListPopupWindow=0x7f0b0147;
public static int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0148;
public static int Widget_AppCompat_Light_PopupMenu=0x7f0b0149;
public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b014a;
public static int Widget_AppCompat_Light_SearchView=0x7f0b014b;
public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b014c;
public static int Widget_AppCompat_ListMenuView=0x7f0b014d;
public static int Widget_AppCompat_ListPopupWindow=0x7f0b014e;
public static int Widget_AppCompat_ListView=0x7f0b014f;
public static int Widget_AppCompat_ListView_DropDown=0x7f0b0150;
public static int Widget_AppCompat_ListView_Menu=0x7f0b0151;
public static int Widget_AppCompat_PopupMenu=0x7f0b0152;
public static int Widget_AppCompat_PopupMenu_Overflow=0x7f0b0153;
public static int Widget_AppCompat_PopupWindow=0x7f0b0154;
public static int Widget_AppCompat_ProgressBar=0x7f0b0155;
public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0156;
public static int Widget_AppCompat_RatingBar=0x7f0b0157;
public static int Widget_AppCompat_RatingBar_Indicator=0x7f0b0158;
public static int Widget_AppCompat_RatingBar_Small=0x7f0b0159;
public static int Widget_AppCompat_SearchView=0x7f0b015a;
public static int Widget_AppCompat_SearchView_ActionBar=0x7f0b015b;
public static int Widget_AppCompat_SeekBar=0x7f0b015c;
public static int Widget_AppCompat_SeekBar_Discrete=0x7f0b015d;
public static int Widget_AppCompat_Spinner=0x7f0b015e;
public static int Widget_AppCompat_Spinner_DropDown=0x7f0b015f;
public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0160;
public static int Widget_AppCompat_Spinner_Underlined=0x7f0b0161;
public static int Widget_AppCompat_TextView_SpinnerItem=0x7f0b0162;
public static int Widget_AppCompat_Toolbar=0x7f0b0163;
public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0164;
public static int Widget_Compat_NotificationActionContainer=0x7f0b018c;
public static int Widget_Compat_NotificationActionText=0x7f0b018d;
public static int Widget_Design_AppBarLayout=0x7f0b017e;
public static int Widget_Design_BottomNavigationView=0x7f0b017f;
public static int Widget_Design_BottomSheet_Modal=0x7f0b0180;
public static int Widget_Design_CollapsingToolbar=0x7f0b0181;
public static int Widget_Design_CoordinatorLayout=0x7f0b0182;
public static int Widget_Design_FloatingActionButton=0x7f0b0183;
public static int Widget_Design_NavigationView=0x7f0b0184;
public static int Widget_Design_ScrimInsetsFrameLayout=0x7f0b0185;
public static int Widget_Design_Snackbar=0x7f0b0186;
public static int Widget_Design_TabLayout=0x7f0b016a;
public static int Widget_Design_TextInputLayout=0x7f0b0187;
public static int Widget_MediaRouter_Light_MediaRouteButton=0x7f0b0009;
public static int Widget_MediaRouter_MediaRouteButton=0x7f0b000a;
}
public static final class styleable {
/** Attributes that can be used with a ActionBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBar_background android.support.design:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit android.support.design:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked android.support.design:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd android.support.design:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions android.support.design:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft android.support.design:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight android.support.design:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart android.support.design:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation android.support.design:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout android.support.design:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions android.support.design:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider android.support.design:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation android.support.design:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height android.support.design:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll android.support.design:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator android.support.design:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout android.support.design:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon android.support.design:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle android.support.design:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding android.support.design:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo android.support.design:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode android.support.design:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme android.support.design:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding android.support.design:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle android.support.design:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle android.support.design:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle android.support.design:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title android.support.design:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle android.support.design:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetEndWithActions
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@see #ActionBar_contentInsetStartWithNavigation
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_elevation
@see #ActionBar_height
@see #ActionBar_hideOnContentScroll
@see #ActionBar_homeAsUpIndicator
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_popupTheme
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f010023, 0x7f010025, 0x7f010026, 0x7f010027,
0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b,
0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f,
0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033,
0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037,
0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b,
0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f,
0x7f010085
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#background}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:background
*/
public static int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.design:backgroundSplit
*/
public static int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#backgroundStacked}
attribute's value can be found in the {@link #ActionBar} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.design:backgroundStacked
*/
public static int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetEnd
*/
public static int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetEndWithActions
*/
public static int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetLeft
*/
public static int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetRight}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetRight
*/
public static int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetStart}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetStart
*/
public static int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetStartWithNavigation
*/
public static int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#customNavigationLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:customNavigationLayout
*/
public static int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#displayOptions}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
@attr name android.support.design:displayOptions
*/
public static int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#divider}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:divider
*/
public static int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#elevation}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:elevation
*/
public static int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#height}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:height
*/
public static int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#hideOnContentScroll}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:hideOnContentScroll
*/
public static int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:homeAsUpIndicator
*/
public static int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#homeLayout}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:homeLayout
*/
public static int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#icon}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:icon
*/
public static int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#indeterminateProgressStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:indeterminateProgressStyle
*/
public static int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#itemPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:itemPadding
*/
public static int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#logo}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:logo
*/
public static int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#navigationMode}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
@attr name android.support.design:navigationMode
*/
public static int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#popupTheme}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:popupTheme
*/
public static int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#progressBarPadding}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:progressBarPadding
*/
public static int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#progressBarStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:progressBarStyle
*/
public static int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#subtitle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:subtitle
*/
public static int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:subtitleTextStyle
*/
public static int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#title}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:title
*/
public static int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:titleTextStyle
*/
public static int ActionBar_titleTextStyle = 5;
/** Attributes that can be used with a ActionBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
</table>
@see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout = {
0x010100b3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #ActionBarLayout} array.
@attr name android:layout_gravity
*/
public static int ActionBarLayout_android_layout_gravity = 0;
/** Attributes that can be used with a ActionMenuItemView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
</table>
@see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView = {
0x0101013f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #ActionMenuItemView} array.
@attr name android:minWidth
*/
public static int ActionMenuItemView_android_minWidth = 0;
/** Attributes that can be used with a ActionMenuView.
*/
public static final int[] ActionMenuView = {
};
/** Attributes that can be used with a ActionMode.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionMode_background android.support.design:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit android.support.design:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout android.support.design:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height android.support.design:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle android.support.design:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle android.support.design:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionMode_background
@see #ActionMode_backgroundSplit
@see #ActionMode_closeItemLayout
@see #ActionMode_height
@see #ActionMode_subtitleTextStyle
@see #ActionMode_titleTextStyle
*/
public static final int[] ActionMode = {
0x7f010023, 0x7f010029, 0x7f01002a, 0x7f01002e,
0x7f010030, 0x7f010040
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#background}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:background
*/
public static int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#backgroundSplit}
attribute's value can be found in the {@link #ActionMode} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.design:backgroundSplit
*/
public static int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#closeItemLayout}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:closeItemLayout
*/
public static int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#height}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:height
*/
public static int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#subtitleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:subtitleTextStyle
*/
public static int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#titleTextStyle}
attribute's value can be found in the {@link #ActionMode} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:titleTextStyle
*/
public static int ActionMode_titleTextStyle = 1;
/** Attributes that can be used with a ActivityChooserView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.design:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount android.support.design:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010041, 0x7f010042
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#expandActivityOverflowButtonDrawable}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:expandActivityOverflowButtonDrawable
*/
public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#initialActivityCount}
attribute's value can be found in the {@link #ActivityChooserView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:initialActivityCount
*/
public static int ActivityChooserView_initialActivityCount = 0;
/** Attributes that can be used with a AlertDialog.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_buttonPanelSideLayout android.support.design:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout android.support.design:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout android.support.design:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout android.support.design:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle android.support.design:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout android.support.design:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_showTitle
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f010043, 0x7f010044, 0x7f010045,
0x7f010046, 0x7f010047, 0x7f010048
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#buttonPanelSideLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:buttonPanelSideLayout
*/
public static int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#listItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:listItemLayout
*/
public static int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#listLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:listLayout
*/
public static int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#multiChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:multiChoiceItemLayout
*/
public static int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#showTitle}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:showTitle
*/
public static int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#singleChoiceItemLayout}
attribute's value can be found in the {@link #AlertDialog} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:singleChoiceItemLayout
*/
public static int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation android.support.design:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded android.support.design:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_android_keyboardNavigationCluster
@see #AppBarLayout_android_touchscreenBlocksFocus
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x0101048f, 0x01010540, 0x7f01003e,
0x7f010118
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:keyboardNavigationCluster
*/
public static int AppBarLayout_android_keyboardNavigationCluster = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:touchscreenBlocksFocus
*/
public static int AppBarLayout_android_touchscreenBlocksFocus = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#elevation}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:elevation
*/
public static int AppBarLayout_elevation = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#expanded}
attribute's value can be found in the {@link #AppBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:expanded
*/
public static int AppBarLayout_expanded = 4;
/** 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 android.support.design:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible android.support.design:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010119, 0x7f01011a
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#state_collapsed}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:state_collapsed
*/
public static int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#state_collapsible}
attribute's value can be found in the {@link #AppBarLayoutStates} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:state_collapsible
*/
public static int AppBarLayoutStates_state_collapsible = 1;
/** Attributes that can be used with a AppBarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags android.support.design:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator android.support.design:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f01011b, 0x7f01011c
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layout_scrollFlags}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
@attr name android.support.design:layout_scrollFlags
*/
public static int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layout_scrollInterpolator}
attribute's value can be found in the {@link #AppBarLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:layout_scrollInterpolator
*/
public static 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 android.support.design:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint android.support.design:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode android.support.design:tintMode}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
@see #AppCompatImageView_tint
@see #AppCompatImageView_tintMode
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f010049, 0x7f01004a, 0x7f01004b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#srcCompat}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:srcCompat
*/
public static int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tint}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tint
*/
public static int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tintMode}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.design:tintMode
*/
public static 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 android.support.design:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint android.support.design:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode android.support.design:tickMarkTintMode}</code></td><td></td></tr>
</table>
@see #AppCompatSeekBar_android_thumb
@see #AppCompatSeekBar_tickMark
@see #AppCompatSeekBar_tickMarkTint
@see #AppCompatSeekBar_tickMarkTintMode
*/
public static final int[] AppCompatSeekBar = {
0x01010142, 0x7f01004c, 0x7f01004d, 0x7f01004e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tickMark}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:tickMark
*/
public static int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tickMarkTint}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tickMarkTint
*/
public static int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tickMarkTintMode}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.design:tickMarkTintMode
*/
public static int AppCompatSeekBar_tickMarkTintMode = 3;
/** Attributes that can be used with a AppCompatTextHelper.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
</table>
@see #AppCompatTextHelper_android_drawableBottom
@see #AppCompatTextHelper_android_drawableEnd
@see #AppCompatTextHelper_android_drawableLeft
@see #AppCompatTextHelper_android_drawableRight
@see #AppCompatTextHelper_android_drawableStart
@see #AppCompatTextHelper_android_drawableTop
@see #AppCompatTextHelper_android_textAppearance
*/
public static final int[] AppCompatTextHelper = {
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableBottom
*/
public static int AppCompatTextHelper_android_drawableBottom = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableEnd
*/
public static int AppCompatTextHelper_android_drawableEnd = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableLeft
*/
public static int AppCompatTextHelper_android_drawableLeft = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableRight}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableRight
*/
public static int AppCompatTextHelper_android_drawableRight = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableStart}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableStart
*/
public static int AppCompatTextHelper_android_drawableStart = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#drawableTop}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:drawableTop
*/
public static int AppCompatTextHelper_android_drawableTop = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextHelper} array.
@attr name android:textAppearance
*/
public static int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize android.support.design:autoSizeMaxTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize android.support.design:autoSizeMinTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes android.support.design:autoSizePresetSizes}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity android.support.design:autoSizeStepGranularity}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeTextType android.support.design:autoSizeTextType}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_fontFamily android.support.design:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps android.support.design:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_autoSizeMaxTextSize
@see #AppCompatTextView_autoSizeMinTextSize
@see #AppCompatTextView_autoSizePresetSizes
@see #AppCompatTextView_autoSizeStepGranularity
@see #AppCompatTextView_autoSizeTextType
@see #AppCompatTextView_fontFamily
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f01004f, 0x7f010050, 0x7f010051,
0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#autoSizeMaxTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:autoSizeMaxTextSize
*/
public static int AppCompatTextView_autoSizeMaxTextSize = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#autoSizeMinTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:autoSizeMinTextSize
*/
public static int AppCompatTextView_autoSizeMinTextSize = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#autoSizePresetSizes}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:autoSizePresetSizes
*/
public static int AppCompatTextView_autoSizePresetSizes = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#autoSizeStepGranularity}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:autoSizeStepGranularity
*/
public static int AppCompatTextView_autoSizeStepGranularity = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#autoSizeTextType}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.design:autoSizeTextType
*/
public static int AppCompatTextView_autoSizeTextType = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fontFamily}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:fontFamily
*/
public static int AppCompatTextView_fontFamily = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textAllCaps}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name android.support.design:textAllCaps
*/
public static int AppCompatTextView_textAllCaps = 1;
/** Attributes that can be used with a AppCompatTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarDivider android.support.design:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground android.support.design:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme android.support.design:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize android.support.design:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle android.support.design:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle android.support.design:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle android.support.design:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle android.support.design:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle android.support.design:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme android.support.design:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme android.support.design:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle android.support.design:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle android.support.design:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance android.support.design:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor android.support.design:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground android.support.design:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.design:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable android.support.design:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable android.support.design:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable android.support.design:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable android.support.design:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable android.support.design:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle android.support.design:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.design:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable android.support.design:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground android.support.design:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle android.support.design:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.design:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle android.support.design:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle android.support.design:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle android.support.design:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.design:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons android.support.design:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle android.support.design:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme android.support.design:alertDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.design:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle android.support.design:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle android.support.design:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.design:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.design:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.design:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle android.support.design:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle android.support.design:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall android.support.design:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle android.support.design:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle android.support.design:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent android.support.design:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating android.support.design:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal android.support.design:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated android.support.design:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight android.support.design:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal android.support.design:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorError android.support.design:colorError}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary android.support.design:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark android.support.design:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal android.support.design:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground android.support.design:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding android.support.design:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme android.support.design:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal android.support.design:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical android.support.design:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle android.support.design:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.design:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground android.support.design:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor android.support.design:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle android.support.design:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator android.support.design:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle android.support.design:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.design:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog android.support.design:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle android.support.design:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle android.support.design:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight android.support.design:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.design:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.design:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.design:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.design:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground android.support.design:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme android.support.design:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth android.support.design:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle android.support.design:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle android.support.design:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle android.support.design:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle android.support.design:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator android.support.design:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall android.support.design:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle android.support.design:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle android.support.design:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground android.support.design:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.design:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.design:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle android.support.design:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle android.support.design:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.design:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem android.support.design:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary android.support.design:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall android.support.design:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader android.support.design:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.design:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.design:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.design:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem android.support.design:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl android.support.design:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.design:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle android.support.design:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor android.support.design:tooltipForegroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground android.support.design:tooltipFrameBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar android.support.design:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay android.support.design:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay android.support.design:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor android.support.design:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor android.support.design:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor android.support.design:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor android.support.design:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor android.support.design:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor android.support.design:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle android.support.design:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorError
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSecondary
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_tooltipForegroundColor
@see #AppCompatTheme_tooltipFrameBackground
@see #AppCompatTheme_windowActionBar
@see #AppCompatTheme_windowActionBarOverlay
@see #AppCompatTheme_windowActionModeOverlay
@see #AppCompatTheme_windowFixedHeightMajor
@see #AppCompatTheme_windowFixedHeightMinor
@see #AppCompatTheme_windowFixedWidthMajor
@see #AppCompatTheme_windowFixedWidthMinor
@see #AppCompatTheme_windowMinWidthMajor
@see #AppCompatTheme_windowMinWidthMinor
@see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme = {
0x01010057, 0x010100ae, 0x7f010056, 0x7f010057,
0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b,
0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067,
0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b,
0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087,
0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b,
0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f,
0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093,
0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097,
0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b,
0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f,
0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3,
0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7,
0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab,
0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af,
0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3,
0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7,
0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb,
0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf,
0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3,
0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7,
0x7f0100c8, 0x7f0100c9, 0x7f0100ca
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionBarDivider}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionBarDivider
*/
public static int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionBarItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionBarItemBackground
*/
public static int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionBarPopupTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionBarPopupTheme
*/
public static int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionBarSize}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
@attr name android.support.design:actionBarSize
*/
public static int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionBarSplitStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionBarSplitStyle
*/
public static int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionBarStyle
*/
public static int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionBarTabBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionBarTabBarStyle
*/
public static int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionBarTabStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionBarTabStyle
*/
public static int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionBarTabTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionBarTabTextStyle
*/
public static int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionBarTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionBarTheme
*/
public static int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionBarWidgetTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionBarWidgetTheme
*/
public static int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionButtonStyle
*/
public static int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionDropDownStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionDropDownStyle
*/
public static int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionMenuTextAppearance}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionMenuTextAppearance
*/
public static int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionMenuTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.design:actionMenuTextColor
*/
public static int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModeBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModeBackground
*/
public static int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModeCloseButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModeCloseButtonStyle
*/
public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModeCloseDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModeCloseDrawable
*/
public static int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModeCopyDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModeCopyDrawable
*/
public static int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModeCutDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModeCutDrawable
*/
public static int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModeFindDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModeFindDrawable
*/
public static int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModePasteDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModePasteDrawable
*/
public static int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModePopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModePopupWindowStyle
*/
public static int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModeSelectAllDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModeSelectAllDrawable
*/
public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModeShareDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModeShareDrawable
*/
public static int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModeSplitBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModeSplitBackground
*/
public static int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModeStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModeStyle
*/
public static int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionModeWebSearchDrawable}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionModeWebSearchDrawable
*/
public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionOverflowButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionOverflowButtonStyle
*/
public static int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionOverflowMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionOverflowMenuStyle
*/
public static int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#activityChooserViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:activityChooserViewStyle
*/
public static int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#alertDialogButtonGroupStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:alertDialogButtonGroupStyle
*/
public static int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#alertDialogCenterButtons}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:alertDialogCenterButtons
*/
public static int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#alertDialogStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:alertDialogStyle
*/
public static int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#alertDialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:alertDialogTheme
*/
public static int AppCompatTheme_alertDialogTheme = 97;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static int AppCompatTheme_android_windowAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowIsFloating
*/
public static int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#autoCompleteTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:autoCompleteTextViewStyle
*/
public static int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#borderlessButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:borderlessButtonStyle
*/
public static int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#buttonBarButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:buttonBarButtonStyle
*/
public static int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#buttonBarNegativeButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:buttonBarNegativeButtonStyle
*/
public static int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#buttonBarNeutralButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:buttonBarNeutralButtonStyle
*/
public static int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#buttonBarPositiveButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:buttonBarPositiveButtonStyle
*/
public static int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#buttonBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:buttonBarStyle
*/
public static int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#buttonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:buttonStyle
*/
public static int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#buttonStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:buttonStyleSmall
*/
public static int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#checkboxStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:checkboxStyle
*/
public static int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#checkedTextViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:checkedTextViewStyle
*/
public static int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#colorAccent}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:colorAccent
*/
public static int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#colorBackgroundFloating}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:colorBackgroundFloating
*/
public static int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#colorButtonNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:colorButtonNormal
*/
public static int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#colorControlActivated}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:colorControlActivated
*/
public static int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#colorControlHighlight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:colorControlHighlight
*/
public static int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#colorControlNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:colorControlNormal
*/
public static int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#colorError}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.design:colorError
*/
public static int AppCompatTheme_colorError = 118;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#colorPrimary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:colorPrimary
*/
public static int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#colorPrimaryDark}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:colorPrimaryDark
*/
public static int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#colorSwitchThumbNormal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:colorSwitchThumbNormal
*/
public static int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#controlBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:controlBackground
*/
public static int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#dialogPreferredPadding}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:dialogPreferredPadding
*/
public static int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#dialogTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:dialogTheme
*/
public static int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#dividerHorizontal}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:dividerHorizontal
*/
public static int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#dividerVertical}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:dividerVertical
*/
public static int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#dropDownListViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:dropDownListViewStyle
*/
public static int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#dropdownListPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:dropdownListPreferredItemHeight
*/
public static int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#editTextBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:editTextBackground
*/
public static int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#editTextColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.design:editTextColor
*/
public static int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#editTextStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:editTextStyle
*/
public static int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#homeAsUpIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:homeAsUpIndicator
*/
public static int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#imageButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:imageButtonStyle
*/
public static int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#listChoiceBackgroundIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:listChoiceBackgroundIndicator
*/
public static int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#listDividerAlertDialog}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:listDividerAlertDialog
*/
public static int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#listMenuViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:listMenuViewStyle
*/
public static int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#listPopupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:listPopupWindowStyle
*/
public static int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#listPreferredItemHeight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:listPreferredItemHeight
*/
public static int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#listPreferredItemHeightLarge}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:listPreferredItemHeightLarge
*/
public static int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#listPreferredItemHeightSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:listPreferredItemHeightSmall
*/
public static int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#listPreferredItemPaddingLeft}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:listPreferredItemPaddingLeft
*/
public static int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#listPreferredItemPaddingRight}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:listPreferredItemPaddingRight
*/
public static int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#panelBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:panelBackground
*/
public static int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#panelMenuListTheme}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:panelMenuListTheme
*/
public static int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#panelMenuListWidth}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:panelMenuListWidth
*/
public static int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#popupMenuStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:popupMenuStyle
*/
public static int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#popupWindowStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:popupWindowStyle
*/
public static int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#radioButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:radioButtonStyle
*/
public static int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#ratingBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:ratingBarStyle
*/
public static int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#ratingBarStyleIndicator}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:ratingBarStyleIndicator
*/
public static int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#ratingBarStyleSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:ratingBarStyleSmall
*/
public static int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#searchViewStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:searchViewStyle
*/
public static int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#seekBarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:seekBarStyle
*/
public static int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#selectableItemBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:selectableItemBackground
*/
public static int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#selectableItemBackgroundBorderless}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:selectableItemBackgroundBorderless
*/
public static int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#spinnerDropDownItemStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:spinnerDropDownItemStyle
*/
public static int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#spinnerStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:spinnerStyle
*/
public static int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#switchStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:switchStyle
*/
public static int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceLargePopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:textAppearanceLargePopupMenu
*/
public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:textAppearanceListItem
*/
public static int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceListItemSecondary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:textAppearanceListItemSecondary
*/
public static int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceListItemSmall}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:textAppearanceListItemSmall
*/
public static int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textAppearancePopupMenuHeader}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:textAppearancePopupMenuHeader
*/
public static int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceSearchResultSubtitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:textAppearanceSearchResultSubtitle
*/
public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceSearchResultTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:textAppearanceSearchResultTitle
*/
public static int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceSmallPopupMenu}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:textAppearanceSmallPopupMenu
*/
public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textColorAlertDialogListItem}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.design:textColorAlertDialogListItem
*/
public static int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textColorSearchUrl}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.design:textColorSearchUrl
*/
public static int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#toolbarNavigationButtonStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:toolbarNavigationButtonStyle
*/
public static int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#toolbarStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:toolbarStyle
*/
public static int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tooltipForegroundColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.design:tooltipForegroundColor
*/
public static int AppCompatTheme_tooltipForegroundColor = 117;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tooltipFrameBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:tooltipFrameBackground
*/
public static int AppCompatTheme_tooltipFrameBackground = 116;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#windowActionBar}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:windowActionBar
*/
public static int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#windowActionBarOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:windowActionBarOverlay
*/
public static int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#windowActionModeOverlay}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:windowActionModeOverlay
*/
public static int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#windowFixedHeightMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:windowFixedHeightMajor
*/
public static int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#windowFixedHeightMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:windowFixedHeightMinor
*/
public static int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#windowFixedWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:windowFixedWidthMajor
*/
public static int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#windowFixedWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:windowFixedWidthMinor
*/
public static int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#windowMinWidthMajor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:windowMinWidthMajor
*/
public static int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#windowMinWidthMinor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:windowMinWidthMinor
*/
public static int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#windowNoTitle}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:windowNoTitle
*/
public static int AppCompatTheme_windowNoTitle = 3;
/** Attributes that can be used with a BottomNavigationView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomNavigationView_elevation android.support.design:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground android.support.design:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint android.support.design:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor android.support.design:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu android.support.design:menu}</code></td><td></td></tr>
</table>
@see #BottomNavigationView_elevation
@see #BottomNavigationView_itemBackground
@see #BottomNavigationView_itemIconTint
@see #BottomNavigationView_itemTextColor
@see #BottomNavigationView_menu
*/
public static final int[] BottomNavigationView = {
0x7f01003e, 0x7f010143, 0x7f010144, 0x7f010145,
0x7f010146
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#elevation}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:elevation
*/
public static int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#itemBackground}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:itemBackground
*/
public static int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#itemIconTint}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:itemIconTint
*/
public static int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#itemTextColor}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:itemTextColor
*/
public static int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#menu}
attribute's value can be found in the {@link #BottomNavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:menu
*/
public static int BottomNavigationView_menu = 1;
/** Attributes that can be used with a BottomSheetBehavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable android.support.design:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight android.support.design:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed android.support.design:behavior_skipCollapsed}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Layout_behavior_hideable
@see #BottomSheetBehavior_Layout_behavior_peekHeight
@see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout = {
0x7f01011d, 0x7f01011e, 0x7f01011f
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#behavior_hideable}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:behavior_hideable
*/
public static int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#behavior_peekHeight}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
@attr name android.support.design:behavior_peekHeight
*/
public static int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#behavior_skipCollapsed}
attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:behavior_skipCollapsed
*/
public static int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2;
/** Attributes that can be used with a ButtonBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ButtonBarLayout_allowStacking android.support.design:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100cb
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#allowStacking}
attribute's value can be found in the {@link #ButtonBarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:allowStacking
*/
public static int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CardView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardBackgroundColor android.support.design:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius android.support.design:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation android.support.design:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation android.support.design:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap android.support.design:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding android.support.design:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding android.support.design:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom android.support.design:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft android.support.design:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight android.support.design:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop android.support.design:contentPaddingTop}</code></td><td></td></tr>
</table>
@see #CardView_android_minHeight
@see #CardView_android_minWidth
@see #CardView_cardBackgroundColor
@see #CardView_cardCornerRadius
@see #CardView_cardElevation
@see #CardView_cardMaxElevation
@see #CardView_cardPreventCornerOverlap
@see #CardView_cardUseCompatPadding
@see #CardView_contentPadding
@see #CardView_contentPaddingBottom
@see #CardView_contentPaddingLeft
@see #CardView_contentPaddingRight
@see #CardView_contentPaddingTop
*/
public static final int[] CardView = {
0x0101013f, 0x01010140, 0x7f010017, 0x7f010018,
0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c,
0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,
0x7f010021
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minHeight
*/
public static int CardView_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minWidth
*/
public static int CardView_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#cardBackgroundColor}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:cardBackgroundColor
*/
public static int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#cardCornerRadius}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:cardCornerRadius
*/
public static int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#cardElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:cardElevation
*/
public static int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#cardMaxElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:cardMaxElevation
*/
public static int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#cardPreventCornerOverlap}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:cardPreventCornerOverlap
*/
public static int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#cardUseCompatPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:cardUseCompatPadding
*/
public static int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentPadding
*/
public static int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentPaddingBottom}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentPaddingBottom
*/
public static int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentPaddingLeft}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentPaddingLeft
*/
public static int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentPaddingRight}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentPaddingRight
*/
public static int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentPaddingTop}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentPaddingTop
*/
public static int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.design:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.design:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim android.support.design:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.design:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.design:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.design:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.design:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.design:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.design:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.design:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration android.support.design:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger android.support.design:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim android.support.design:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title android.support.design:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled android.support.design:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId android.support.design: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 = {
0x7f010025, 0x7f010120, 0x7f010121, 0x7f010122,
0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126,
0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a,
0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#collapsedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name android.support.design:collapsedTitleGravity
*/
public static int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#collapsedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:collapsedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentScrim
*/
public static int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleGravity}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name android.support.design:expandedTitleGravity
*/
public static int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleMargin}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:expandedTitleMargin
*/
public static int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleMarginBottom}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:expandedTitleMarginBottom
*/
public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleMarginEnd}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:expandedTitleMarginEnd
*/
public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleMarginStart}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:expandedTitleMarginStart
*/
public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleMarginTop}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:expandedTitleMarginTop
*/
public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleTextAppearance}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:expandedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#scrimAnimationDuration}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:scrimAnimationDuration
*/
public static int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#scrimVisibleHeightTrigger}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:scrimVisibleHeightTrigger
*/
public static int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#statusBarScrim}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:statusBarScrim
*/
public static int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#title}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:title
*/
public static int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#titleEnabled}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:titleEnabled
*/
public static int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#toolbarId}
attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:toolbarId
*/
public static int CollapsingToolbarLayout_toolbarId = 10;
/** Attributes that can be used with a CollapsingToolbarLayout_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode android.support.design:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier android.support.design:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f01012f, 0x7f010130
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layout_collapseMode}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
@attr name android.support.design:layout_collapseMode
*/
public static int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layout_collapseParallaxMultiplier}
attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:layout_collapseParallaxMultiplier
*/
public static int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1;
/** Attributes that can be used with a ColorStateListItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ColorStateListItem_alpha android.support.design:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
</table>
@see #ColorStateListItem_alpha
@see #ColorStateListItem_android_alpha
@see #ColorStateListItem_android_color
*/
public static final int[] ColorStateListItem = {
0x010101a5, 0x0101031f, 0x7f0100cc
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
<p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:alpha
*/
public static int ColorStateListItem_alpha = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#alpha}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:alpha
*/
public static int ColorStateListItem_android_alpha = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#color}
attribute's value can be found in the {@link #ColorStateListItem} array.
@attr name android:color
*/
public static int ColorStateListItem_android_color = 0;
/** Attributes that can be used with a CompoundButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTint android.support.design:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode android.support.design:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100cd, 0x7f0100ce
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#buttonTint}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:buttonTint
*/
public static int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.design:buttonTintMode
*/
public static 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 android.support.design:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground android.support.design:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f010131, 0x7f010132
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#keylines}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:keylines
*/
public static int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#statusBarBackground}
attribute's value can be found in the {@link #CoordinatorLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:statusBarBackground
*/
public static 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 android.support.design:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity android.support.design:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior android.support.design:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges android.support.design:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge android.support.design:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline android.support.design:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_Layout_android_layout_gravity
@see #CoordinatorLayout_Layout_layout_anchor
@see #CoordinatorLayout_Layout_layout_anchorGravity
@see #CoordinatorLayout_Layout_layout_behavior
@see #CoordinatorLayout_Layout_layout_dodgeInsetEdges
@see #CoordinatorLayout_Layout_layout_insetEdge
@see #CoordinatorLayout_Layout_layout_keyline
*/
public static final int[] CoordinatorLayout_Layout = {
0x010100b3, 0x7f010133, 0x7f010134, 0x7f010135,
0x7f010136, 0x7f010137, 0x7f010138
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layout_anchor}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:layout_anchor
*/
public static int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layout_anchorGravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name android.support.design:layout_anchorGravity
*/
public static int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layout_behavior}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:layout_behavior
*/
public static int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layout_dodgeInsetEdges}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
@attr name android.support.design:layout_dodgeInsetEdges
*/
public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layout_insetEdge}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
@attr name android.support.design:layout_insetEdge
*/
public static int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layout_keyline}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:layout_keyline
*/
public static int CoordinatorLayout_Layout_layout_keyline = 3;
/** Attributes that can be used with a DesignTheme.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme android.support.design:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle android.support.design:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError android.support.design:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010139, 0x7f01013a, 0x7f01013b
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#bottomSheetDialogTheme}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:bottomSheetDialogTheme
*/
public static int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#bottomSheetStyle}
attribute's value can be found in the {@link #DesignTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:bottomSheetStyle
*/
public static int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textColorError}
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 to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.design:textColorError
*/
public static int DesignTheme_textColorError = 2;
/** Attributes that can be used with a DrawerArrowToggle.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength android.support.design:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength android.support.design:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength android.support.design:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color android.support.design:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize android.support.design:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars android.support.design:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars android.support.design:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness android.support.design:thickness}</code></td><td></td></tr>
</table>
@see #DrawerArrowToggle_arrowHeadLength
@see #DrawerArrowToggle_arrowShaftLength
@see #DrawerArrowToggle_barLength
@see #DrawerArrowToggle_color
@see #DrawerArrowToggle_drawableSize
@see #DrawerArrowToggle_gapBetweenBars
@see #DrawerArrowToggle_spinBars
@see #DrawerArrowToggle_thickness
*/
public static final int[] DrawerArrowToggle = {
0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2,
0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#arrowHeadLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:arrowHeadLength
*/
public static int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#arrowShaftLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:arrowShaftLength
*/
public static int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#barLength}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:barLength
*/
public static int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#color}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:color
*/
public static int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#drawableSize}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:drawableSize
*/
public static int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#gapBetweenBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:gapBetweenBars
*/
public static int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#spinBars}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:spinBars
*/
public static int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#thickness}
attribute's value can be found in the {@link #DrawerArrowToggle} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:thickness
*/
public static 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 android.support.design:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode android.support.design:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth android.support.design:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation android.support.design:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize android.support.design:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ android.support.design:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor android.support.design:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding android.support.design:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f01003e, 0x7f010116, 0x7f010117, 0x7f01013c,
0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#backgroundTint}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:backgroundTint
*/
public static int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.design:backgroundTintMode
*/
public static int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#borderWidth}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:borderWidth
*/
public static int FloatingActionButton_borderWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#elevation}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:elevation
*/
public static int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fabSize}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.design:fabSize
*/
public static int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#pressedTranslationZ}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:pressedTranslationZ
*/
public static int FloatingActionButton_pressedTranslationZ = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#rippleColor}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:rippleColor
*/
public static int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#useCompatPadding}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:useCompatPadding
*/
public static int FloatingActionButton_useCompatPadding = 7;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide android.support.design:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f010141
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#behavior_autoHide}
attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:behavior_autoHide
*/
public static int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** 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 android.support.design:fontProviderAuthority}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderCerts android.support.design:fontProviderCerts}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchStrategy android.support.design:fontProviderFetchStrategy}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchTimeout android.support.design:fontProviderFetchTimeout}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderPackage android.support.design:fontProviderPackage}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderQuery android.support.design:fontProviderQuery}</code></td><td></td></tr>
</table>
@see #FontFamily_fontProviderAuthority
@see #FontFamily_fontProviderCerts
@see #FontFamily_fontProviderFetchStrategy
@see #FontFamily_fontProviderFetchTimeout
@see #FontFamily_fontProviderPackage
@see #FontFamily_fontProviderQuery
*/
public static final int[] FontFamily = {
0x7f01016a, 0x7f01016b, 0x7f01016c, 0x7f01016d,
0x7f01016e, 0x7f01016f
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderAuthority}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:fontProviderAuthority
*/
public static int FontFamily_fontProviderAuthority = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderCerts}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:fontProviderCerts
*/
public static int FontFamily_fontProviderCerts = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderFetchStrategy}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.design:fontProviderFetchStrategy
*/
public static int FontFamily_fontProviderFetchStrategy = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderFetchTimeout}
attribute's value can be found in the {@link #FontFamily} array.
<p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
@attr name android.support.design:fontProviderFetchTimeout
*/
public static int FontFamily_fontProviderFetchTimeout = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderPackage}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:fontProviderPackage
*/
public static int FontFamily_fontProviderPackage = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fontProviderQuery}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:fontProviderQuery
*/
public static int FontFamily_fontProviderQuery = 2;
/** 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_fontStyle android:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_font android.support.design:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontStyle android.support.design:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontWeight android.support.design:fontWeight}</code></td><td></td></tr>
</table>
@see #FontFamilyFont_android_font
@see #FontFamilyFont_android_fontStyle
@see #FontFamilyFont_android_fontWeight
@see #FontFamilyFont_font
@see #FontFamilyFont_fontStyle
@see #FontFamilyFont_fontWeight
*/
public static final int[] FontFamilyFont = {
0x01010532, 0x01010533, 0x0101053f, 0x7f010170,
0x7f010171, 0x7f010172
};
/**
<p>This symbol is the offset where the {@link android.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:font
*/
public static int FontFamilyFont_android_font = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontStyle
*/
public static int FontFamilyFont_android_fontStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontWeight
*/
public static int FontFamilyFont_android_fontWeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:font
*/
public static int FontFamilyFont_font = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.design:fontStyle
*/
public static int FontFamilyFont_fontStyle = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:fontWeight
*/
public static int FontFamilyFont_fontWeight = 5;
/** 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 android.support.design: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, 0x7f010142
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static int ForegroundLinearLayout_android_foreground = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foregroundGravity
*/
public static int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#foregroundInsidePadding}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:foregroundInsidePadding
*/
public static int ForegroundLinearLayout_foregroundInsidePadding = 2;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider android.support.design:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding android.support.design:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild android.support.design:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers android.support.design:showDividers}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_android_baselineAligned
@see #LinearLayoutCompat_android_baselineAlignedChildIndex
@see #LinearLayoutCompat_android_gravity
@see #LinearLayoutCompat_android_orientation
@see #LinearLayoutCompat_android_weightSum
@see #LinearLayoutCompat_divider
@see #LinearLayoutCompat_dividerPadding
@see #LinearLayoutCompat_measureWithLargestChild
@see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat = {
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f01002d, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static int LinearLayoutCompat_android_baselineAligned = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAlignedChildIndex
*/
public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:gravity
*/
public static int LinearLayoutCompat_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:orientation
*/
public static int LinearLayoutCompat_android_orientation = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#weightSum}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:weightSum
*/
public static int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#divider}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:divider
*/
public static int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#dividerPadding}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:dividerPadding
*/
public static int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#measureWithLargestChild}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:measureWithLargestChild
*/
public static int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#showDividers}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
@attr name android.support.design:showDividers
*/
public static int LinearLayoutCompat_showDividers = 7;
/** Attributes that can be used with a LinearLayoutCompat_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_Layout_android_layout_gravity
@see #LinearLayoutCompat_Layout_android_layout_height
@see #LinearLayoutCompat_Layout_android_layout_weight
@see #LinearLayoutCompat_Layout_android_layout_width
*/
public static final int[] LinearLayoutCompat_Layout = {
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_gravity
*/
public static int LinearLayoutCompat_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_height}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_height
*/
public static int LinearLayoutCompat_Layout_android_layout_height = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_weight}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_weight
*/
public static int LinearLayoutCompat_Layout_android_layout_weight = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_width}
attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
@attr name android:layout_width
*/
public static int LinearLayoutCompat_Layout_android_layout_width = 1;
/** Attributes that can be used with a ListPopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
<tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
</table>
@see #ListPopupWindow_android_dropDownHorizontalOffset
@see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow = {
0x010102ac, 0x010102ad
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownHorizontalOffset
*/
public static int ListPopupWindow_android_dropDownHorizontalOffset = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
attribute's value can be found in the {@link #ListPopupWindow} array.
@attr name android:dropDownVerticalOffset
*/
public static int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MediaRouteButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable android.support.design:externalRouteEnabledDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_mediaRouteButtonTint android.support.design:mediaRouteButtonTint}</code></td><td></td></tr>
</table>
@see #MediaRouteButton_android_minHeight
@see #MediaRouteButton_android_minWidth
@see #MediaRouteButton_externalRouteEnabledDrawable
@see #MediaRouteButton_mediaRouteButtonTint
*/
public static final int[] MediaRouteButton = {
0x0101013f, 0x01010140, 0x7f010015, 0x7f010016
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minHeight
*/
public static int MediaRouteButton_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minWidth
*/
public static int MediaRouteButton_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#externalRouteEnabledDrawable}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:externalRouteEnabledDrawable
*/
public static int MediaRouteButton_externalRouteEnabledDrawable = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#mediaRouteButtonTint}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:mediaRouteButtonTint
*/
public static int MediaRouteButton_mediaRouteButtonTint = 3;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static int MenuGroup_android_checkableBehavior = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:enabled
*/
public static int MenuGroup_android_enabled = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:id
*/
public static int MenuGroup_android_id = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:menuCategory
*/
public static int MenuGroup_android_menuCategory = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:orderInCategory
*/
public static int MenuGroup_android_orderInCategory = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:visible
*/
public static int MenuGroup_android_visible = 2;
/** Attributes that can be used with a MenuItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuItem_actionLayout android.support.design:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass android.support.design:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass android.support.design:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_alphabeticModifiers android.support.design:alphabeticModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_contentDescription android.support.design:contentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTint android.support.design:iconTint}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTintMode android.support.design:iconTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_numericModifiers android.support.design:numericModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction android.support.design:showAsAction}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_tooltipText android.support.design:tooltipText}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_alphabeticModifiers
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_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, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1, 0x7f0100e2, 0x7f0100e3
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionLayout}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:actionLayout
*/
public static int MenuItem_actionLayout = 16;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionProviderClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:actionProviderClass
*/
public static int MenuItem_actionProviderClass = 18;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#actionViewClass}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:actionViewClass
*/
public static int MenuItem_actionViewClass = 17;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#alphabeticModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name android.support.design:alphabeticModifiers
*/
public static int MenuItem_alphabeticModifiers = 13;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static int MenuItem_android_alphabeticShortcut = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#checkable}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checkable
*/
public static int MenuItem_android_checkable = 11;
/**
<p>This symbol is the offset where the {@link android.R.attr#checked}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:checked
*/
public static int MenuItem_android_checked = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#enabled}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:enabled
*/
public static int MenuItem_android_enabled = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:icon
*/
public static int MenuItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:id
*/
public static int MenuItem_android_id = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#menuCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:menuCategory
*/
public static int MenuItem_android_menuCategory = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:numericShortcut
*/
public static int MenuItem_android_numericShortcut = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#onClick}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:onClick
*/
public static int MenuItem_android_onClick = 12;
/**
<p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:orderInCategory
*/
public static int MenuItem_android_orderInCategory = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#title}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:title
*/
public static int MenuItem_android_title = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:titleCondensed
*/
public static int MenuItem_android_titleCondensed = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#visible}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:visible
*/
public static int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentDescription}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentDescription
*/
public static int MenuItem_contentDescription = 19;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#iconTint}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:iconTint
*/
public static int MenuItem_iconTint = 21;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#iconTintMode}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.design:iconTintMode
*/
public static int MenuItem_iconTintMode = 22;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#numericModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name android.support.design:numericModifiers
*/
public static int MenuItem_numericModifiers = 14;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#showAsAction}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
@attr name android.support.design:showAsAction
*/
public static int MenuItem_showAsAction = 15;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tooltipText}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tooltipText
*/
public static int MenuItem_tooltipText = 20;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing android.support.design:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow android.support.design:subMenuArrow}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
@see #MenuView_subMenuArrow
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f0100e4,
0x7f0100e5
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static int MenuView_android_headerBackground = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:horizontalDivider
*/
public static int MenuView_android_horizontalDivider = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemBackground
*/
public static int MenuView_android_itemBackground = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemIconDisabledAlpha
*/
public static int MenuView_android_itemIconDisabledAlpha = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:itemTextAppearance
*/
public static int MenuView_android_itemTextAppearance = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:verticalDivider
*/
public static int MenuView_android_verticalDivider = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:windowAnimationStyle
*/
public static int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#preserveIconSpacing}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:preserveIconSpacing
*/
public static int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#subMenuArrow}
attribute's value can be found in the {@link #MenuView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:subMenuArrow
*/
public static 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 android.support.design:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout android.support.design:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground android.support.design:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint android.support.design:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance android.support.design:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor android.support.design:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu android.support.design:menu}</code></td><td></td></tr>
</table>
@see #NavigationView_android_background
@see #NavigationView_android_fitsSystemWindows
@see #NavigationView_android_maxWidth
@see #NavigationView_elevation
@see #NavigationView_headerLayout
@see #NavigationView_itemBackground
@see #NavigationView_itemIconTint
@see #NavigationView_itemTextAppearance
@see #NavigationView_itemTextColor
@see #NavigationView_menu
*/
public static final int[] NavigationView = {
0x010100d4, 0x010100dd, 0x0101011f, 0x7f01003e,
0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146,
0x7f010147, 0x7f010148
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static int NavigationView_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:fitsSystemWindows
*/
public static int NavigationView_android_fitsSystemWindows = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:maxWidth
*/
public static int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#elevation}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:elevation
*/
public static int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#headerLayout}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:headerLayout
*/
public static int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#itemBackground}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:itemBackground
*/
public static int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#itemIconTint}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:itemIconTint
*/
public static int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#itemTextAppearance}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:itemTextAppearance
*/
public static int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#itemTextColor}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:itemTextColor
*/
public static int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#menu}
attribute's value can be found in the {@link #NavigationView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:menu
*/
public static int NavigationView_menu = 4;
/** Attributes that can be used with a PopupWindow.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #PopupWindow_overlapAnchor android.support.design:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupAnimationStyle
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x010102c9, 0x7f0100e6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static int PopupWindow_android_popupAnimationStyle = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupBackground
*/
public static int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#overlapAnchor}
attribute's value can be found in the {@link #PopupWindow} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:overlapAnchor
*/
public static 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 android.support.design:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100e7
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#state_above_anchor}
attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:state_above_anchor
*/
public static 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 android.support.design:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle android.support.design:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100e8, 0x7f0100e9
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#paddingBottomNoButtons}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:paddingBottomNoButtons
*/
public static int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#paddingTopNoTitle}
attribute's value can be found in the {@link #RecycleListView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:paddingTopNoTitle
*/
public static int RecycleListView_paddingTopNoTitle = 1;
/** Attributes that can be used with a RecyclerView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollEnabled android.support.design:fastScrollEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable android.support.design:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable android.support.design:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable android.support.design:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable android.support.design:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager android.support.design:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout android.support.design:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount android.support.design:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd android.support.design:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@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, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005,
0x7f010006, 0x7f010007, 0x7f010008
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static int RecyclerView_android_descendantFocusability = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#orientation}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:orientation
*/
public static int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fastScrollEnabled}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:fastScrollEnabled
*/
public static int RecyclerView_fastScrollEnabled = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fastScrollHorizontalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:fastScrollHorizontalThumbDrawable
*/
public static int RecyclerView_fastScrollHorizontalThumbDrawable = 9;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fastScrollHorizontalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:fastScrollHorizontalTrackDrawable
*/
public static int RecyclerView_fastScrollHorizontalTrackDrawable = 10;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fastScrollVerticalThumbDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:fastScrollVerticalThumbDrawable
*/
public static int RecyclerView_fastScrollVerticalThumbDrawable = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fastScrollVerticalTrackDrawable}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:fastScrollVerticalTrackDrawable
*/
public static int RecyclerView_fastScrollVerticalTrackDrawable = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layoutManager}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:layoutManager
*/
public static int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#reverseLayout}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:reverseLayout
*/
public static int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#spanCount}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:spanCount
*/
public static int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#stackFromEnd}
attribute's value can be found in the {@link #RecyclerView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:stackFromEnd
*/
public static int RecyclerView_stackFromEnd = 5;
/** Attributes that can be used with a ScrimInsetsFrameLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground android.support.design:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010149
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#insetForeground}
attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.design:insetForeground
*/
public static 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 android.support.design:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f01014a
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#behavior_overlapTop}
attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:behavior_overlapTop
*/
public static int ScrollingViewBehavior_Layout_behavior_overlapTop = 0;
/** Attributes that can be used with a SearchView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_closeIcon android.support.design:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon android.support.design:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint android.support.design:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon android.support.design:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault android.support.design:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout android.support.design:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground android.support.design:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint android.support.design:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon android.support.design:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon android.support.design:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground android.support.design:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout android.support.design:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon android.support.design:voiceIcon}</code></td><td></td></tr>
</table>
@see #SearchView_android_focusable
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_closeIcon
@see #SearchView_commitIcon
@see #SearchView_defaultQueryHint
@see #SearchView_goIcon
@see #SearchView_iconifiedByDefault
@see #SearchView_layout
@see #SearchView_queryBackground
@see #SearchView_queryHint
@see #SearchView_searchHintIcon
@see #SearchView_searchIcon
@see #SearchView_submitBackground
@see #SearchView_suggestionRowLayout
@see #SearchView_voiceIcon
*/
public static final int[] SearchView = {
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed,
0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1,
0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5,
0x7f0100f6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static int SearchView_android_focusable = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#imeOptions}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:imeOptions
*/
public static int SearchView_android_imeOptions = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#inputType}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:inputType
*/
public static int SearchView_android_inputType = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:maxWidth
*/
public static int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#closeIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:closeIcon
*/
public static int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#commitIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:commitIcon
*/
public static int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#defaultQueryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:defaultQueryHint
*/
public static int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#goIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:goIcon
*/
public static int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#iconifiedByDefault}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:iconifiedByDefault
*/
public static int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#layout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:layout
*/
public static int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#queryBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:queryBackground
*/
public static int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#queryHint}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:queryHint
*/
public static int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#searchHintIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:searchHintIcon
*/
public static int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#searchIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:searchIcon
*/
public static int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#submitBackground}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:submitBackground
*/
public static int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#suggestionRowLayout}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:suggestionRowLayout
*/
public static int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#voiceIcon}
attribute's value can be found in the {@link #SearchView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:voiceIcon
*/
public static int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation android.support.design:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth android.support.design:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f01003e, 0x7f01014b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#elevation}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:elevation
*/
public static int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#maxActionInlineWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:maxActionInlineWidth
*/
public static int SnackbarLayout_maxActionInlineWidth = 2;
/** Attributes that can be used with a Spinner.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
<tr><td><code>{@link #Spinner_popupTheme android.support.design:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_entries
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f01003f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static int Spinner_android_dropDownWidth = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#entries}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:entries
*/
public static int Spinner_android_entries = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#popupBackground}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:popupBackground
*/
public static int Spinner_android_popupBackground = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#prompt}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:prompt
*/
public static int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#popupTheme}
attribute's value can be found in the {@link #Spinner} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:popupTheme
*/
public static int Spinner_popupTheme = 4;
/** Attributes that can be used with a SwitchCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_showText android.support.design:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack android.support.design:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth android.support.design:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding android.support.design:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance android.support.design:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding android.support.design:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint android.support.design:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode android.support.design:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track android.support.design:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint android.support.design:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode android.support.design:trackTintMode}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_thumbTint
@see #SwitchCompat_thumbTintMode
@see #SwitchCompat_track
@see #SwitchCompat_trackTint
@see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f0100f7,
0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb,
0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff,
0x7f010100, 0x7f010101
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static int SwitchCompat_android_textOff = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textOn}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOn
*/
public static int SwitchCompat_android_textOn = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:thumb
*/
public static int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#showText}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:showText
*/
public static int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#splitTrack}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:splitTrack
*/
public static int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#switchMinWidth}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:switchMinWidth
*/
public static int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#switchPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:switchPadding
*/
public static int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#switchTextAppearance}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:switchTextAppearance
*/
public static int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#thumbTextPadding}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:thumbTextPadding
*/
public static int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#thumbTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:thumbTint
*/
public static int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#thumbTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.design:thumbTintMode
*/
public static int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#track}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:track
*/
public static int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#trackTint}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:trackTint
*/
public static int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#trackTintMode}
attribute's value can be found in the {@link #SwitchCompat} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.design:trackTintMode
*/
public static int SwitchCompat_trackTintMode = 7;
/** Attributes that can be used with a TabItem.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
<tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
</table>
@see #TabItem_android_icon
@see #TabItem_android_layout
@see #TabItem_android_text
*/
public static final int[] TabItem = {
0x01010002, 0x010100f2, 0x0101014f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#icon}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:icon
*/
public static int TabItem_android_icon = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:layout
*/
public static int TabItem_android_layout = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#text}
attribute's value can be found in the {@link #TabItem} array.
@attr name android:text
*/
public static 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 android.support.design:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart android.support.design:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity android.support.design:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor android.support.design:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight android.support.design:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth android.support.design:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth android.support.design:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode android.support.design:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding android.support.design:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom android.support.design:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd android.support.design:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart android.support.design:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop android.support.design:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor android.support.design:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance android.support.design:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor android.support.design:tabTextColor}</code></td><td></td></tr>
</table>
@see #TabLayout_tabBackground
@see #TabLayout_tabContentStart
@see #TabLayout_tabGravity
@see #TabLayout_tabIndicatorColor
@see #TabLayout_tabIndicatorHeight
@see #TabLayout_tabMaxWidth
@see #TabLayout_tabMinWidth
@see #TabLayout_tabMode
@see #TabLayout_tabPadding
@see #TabLayout_tabPaddingBottom
@see #TabLayout_tabPaddingEnd
@see #TabLayout_tabPaddingStart
@see #TabLayout_tabPaddingTop
@see #TabLayout_tabSelectedTextColor
@see #TabLayout_tabTextAppearance
@see #TabLayout_tabTextColor
*/
public static final int[] TabLayout = {
0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f,
0x7f010150, 0x7f010151, 0x7f010152, 0x7f010153,
0x7f010154, 0x7f010155, 0x7f010156, 0x7f010157,
0x7f010158, 0x7f010159, 0x7f01015a, 0x7f01015b
};
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabBackground}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:tabBackground
*/
public static int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabContentStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabContentStart
*/
public static int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabGravity}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.design:tabGravity
*/
public static int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabIndicatorColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabIndicatorColor
*/
public static int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabIndicatorHeight}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabIndicatorHeight
*/
public static int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabMaxWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabMaxWidth
*/
public static int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabMinWidth}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabMinWidth
*/
public static int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabMode}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.design:tabMode
*/
public static int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabPadding}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabPadding
*/
public static int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabPaddingBottom}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabPaddingBottom
*/
public static int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabPaddingEnd}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabPaddingEnd
*/
public static int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabPaddingStart}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabPaddingStart
*/
public static int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabPaddingTop}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabPaddingTop
*/
public static int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabSelectedTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabSelectedTextColor
*/
public static int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabTextAppearance}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:tabTextAppearance
*/
public static int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#tabTextColor}
attribute's value can be found in the {@link #TabLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:tabTextColor
*/
public static int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</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_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_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_fontFamily android.support.design:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps android.support.design:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_fontFamily
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textColorLink
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_fontFamily
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x0101009b, 0x01010161, 0x01010162,
0x01010163, 0x01010164, 0x010103ac, 0x7f01004f,
0x7f010055
};
/**
<p>This symbol is the offset where the {@link android.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:fontFamily
*/
public static int TextAppearance_android_fontFamily = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static 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.
@attr name android:shadowDx
*/
public static 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.
@attr name android:shadowDy
*/
public static 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.
@attr name android:shadowRadius
*/
public static int TextAppearance_android_shadowRadius = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static int TextAppearance_android_textColor = 3;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorHint
*/
public static 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.
@attr name android:textColorLink
*/
public static int TextAppearance_android_textColorLink = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static int TextAppearance_android_textSize = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#textStyle}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textStyle
*/
public static int TextAppearance_android_textStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#typeface}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:typeface
*/
public static int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:fontFamily
*/
public static int TextAppearance_fontFamily = 12;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#textAllCaps}
attribute's value can be found in the {@link #TextAppearance} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
@attr name android.support.design:textAllCaps
*/
public static int TextAppearance_textAllCaps = 11;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled android.support.design:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength android.support.design:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance android.support.design:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance android.support.design:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled android.support.design:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance android.support.design:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled android.support.design:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled android.support.design:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance android.support.design:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription android.support.design:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable android.support.design:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled android.support.design:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint android.support.design:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode android.support.design:passwordToggleTintMode}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
@see #TextInputLayout_passwordToggleContentDescription
@see #TextInputLayout_passwordToggleDrawable
@see #TextInputLayout_passwordToggleEnabled
@see #TextInputLayout_passwordToggleTint
@see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f01015c, 0x7f01015d,
0x7f01015e, 0x7f01015f, 0x7f010160, 0x7f010161,
0x7f010162, 0x7f010163, 0x7f010164, 0x7f010165,
0x7f010166, 0x7f010167, 0x7f010168, 0x7f010169
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static int TextInputLayout_android_hint = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorHint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:textColorHint
*/
public static int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#counterEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:counterEnabled
*/
public static int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#counterMaxLength}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:counterMaxLength
*/
public static int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#counterOverflowTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:counterOverflowTextAppearance
*/
public static int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#counterTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:counterTextAppearance
*/
public static int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#errorEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:errorEnabled
*/
public static int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#errorTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:errorTextAppearance
*/
public static int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#hintAnimationEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:hintAnimationEnabled
*/
public static int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#hintEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:hintEnabled
*/
public static int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#hintTextAppearance}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:hintTextAppearance
*/
public static int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#passwordToggleContentDescription}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:passwordToggleContentDescription
*/
public static int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#passwordToggleDrawable}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:passwordToggleDrawable
*/
public static int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#passwordToggleEnabled}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:passwordToggleEnabled
*/
public static int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#passwordToggleTint}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:passwordToggleTint
*/
public static int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#passwordToggleTintMode}
attribute's value can be found in the {@link #TextInputLayout} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
@attr name android.support.design:passwordToggleTintMode
*/
public static int TextInputLayout_passwordToggleTintMode = 15;
/** Attributes that can be used with a Toolbar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_buttonGravity android.support.design:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription android.support.design:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon android.support.design:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd android.support.design:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions android.support.design:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft android.support.design:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight android.support.design:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart android.support.design:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation android.support.design:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo android.support.design:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription android.support.design:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight android.support.design:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription android.support.design:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon android.support.design:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme android.support.design:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle android.support.design:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance android.support.design:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor android.support.design:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title android.support.design:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin android.support.design:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom android.support.design:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd android.support.design:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart android.support.design:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop android.support.design:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins android.support.design:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance android.support.design:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor android.support.design:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_buttonGravity
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetEndWithActions
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@see #Toolbar_contentInsetStartWithNavigation
@see #Toolbar_logo
@see #Toolbar_logoDescription
@see #Toolbar_maxButtonHeight
@see #Toolbar_navigationContentDescription
@see #Toolbar_navigationIcon
@see #Toolbar_popupTheme
@see #Toolbar_subtitle
@see #Toolbar_subtitleTextAppearance
@see #Toolbar_subtitleTextColor
@see #Toolbar_title
@see #Toolbar_titleMargin
@see #Toolbar_titleMarginBottom
@see #Toolbar_titleMarginEnd
@see #Toolbar_titleMarginStart
@see #Toolbar_titleMarginTop
@see #Toolbar_titleMargins
@see #Toolbar_titleTextAppearance
@see #Toolbar_titleTextColor
*/
public static final int[] Toolbar = {
0x010100af, 0x01010140, 0x7f010025, 0x7f010028,
0x7f01002c, 0x7f010038, 0x7f010039, 0x7f01003a,
0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003f,
0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105,
0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109,
0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d,
0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111,
0x7f010112
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static int Toolbar_android_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:minHeight
*/
public static int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#buttonGravity}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
@attr name android.support.design:buttonGravity
*/
public static int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#collapseContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:collapseContentDescription
*/
public static int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#collapseIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:collapseIcon
*/
public static int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetEnd
*/
public static int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetEndWithActions}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetEndWithActions
*/
public static int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetLeft}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetLeft
*/
public static int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetRight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetRight
*/
public static int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetStart
*/
public static int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#contentInsetStartWithNavigation}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:contentInsetStartWithNavigation
*/
public static int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#logo}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:logo
*/
public static int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#logoDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:logoDescription
*/
public static int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#maxButtonHeight}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:maxButtonHeight
*/
public static int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#navigationContentDescription}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:navigationContentDescription
*/
public static int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#navigationIcon}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:navigationIcon
*/
public static int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#popupTheme}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:popupTheme
*/
public static int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#subtitle}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:subtitle
*/
public static int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#subtitleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:subtitleTextAppearance
*/
public static int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#subtitleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:subtitleTextColor
*/
public static int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#title}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:title
*/
public static int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#titleMargin}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:titleMargin
*/
public static int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#titleMarginBottom}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:titleMarginBottom
*/
public static int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#titleMarginEnd}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:titleMarginEnd
*/
public static int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#titleMarginStart}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:titleMarginStart
*/
public static int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#titleMarginTop}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:titleMarginTop
*/
public static int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#titleMargins}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:titleMargins
*/
public static int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#titleTextAppearance}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:titleTextAppearance
*/
public static int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#titleTextColor}
attribute's value can be found in the {@link #Toolbar} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:titleTextColor
*/
public static int Toolbar_titleTextColor = 27;
/** Attributes that can be used with a View.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
<tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingEnd android.support.design:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart android.support.design:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme android.support.design:theme}</code></td><td></td></tr>
</table>
@see #View_android_focusable
@see #View_android_theme
@see #View_paddingEnd
@see #View_paddingStart
@see #View_theme
*/
public static final int[] View = {
0x01010000, 0x010100da, 0x7f010113, 0x7f010114,
0x7f010115
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static int View_android_focusable = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#theme}
attribute's value can be found in the {@link #View} array.
@attr name android:theme
*/
public static int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#paddingEnd}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:paddingEnd
*/
public static int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#paddingStart}
attribute's value can be found in the {@link #View} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:paddingStart
*/
public static int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#theme}
attribute's value can be found in the {@link #View} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.design:theme
*/
public static 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 android.support.design:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode android.support.design:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f010116, 0x7f010117
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#backgroundTint}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.design:backgroundTint
*/
public static int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.design.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.design:backgroundTintMode
*/
public static int ViewBackgroundHelper_backgroundTintMode = 2;
/** Attributes that can be used with a ViewStubCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
<tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
</table>
@see #ViewStubCompat_android_id
@see #ViewStubCompat_android_inflatedId
@see #ViewStubCompat_android_layout
*/
public static final int[] ViewStubCompat = {
0x010100d0, 0x010100f2, 0x010100f3
};
/**
<p>This symbol is the offset where the {@link android.R.attr#id}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:id
*/
public static int ViewStubCompat_android_id = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#inflatedId}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:inflatedId
*/
public static int ViewStubCompat_android_inflatedId = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #ViewStubCompat} array.
@attr name android:layout
*/
public static int ViewStubCompat_android_layout = 1;
};
}
| [
"lucaspadovan@outlook.com"
] | lucaspadovan@outlook.com |
90a3789da5235080fa7d7fefaf60725e84daa2f2 | bac7e90c24995b5b35f48e47826e52a3a2e1e627 | /111_Minimum_Depth_of_BT/DFS.java | 5fc1b9c3b052a250e8e0578b90374d62a4808cf7 | [] | no_license | WeiChienHsu/Java_Practice | 3a4d195744596aa9ad08120ee52c72b63fe39c29 | 6403a6d3799447db7f043d97b7eaa9acfc125fd6 | refs/heads/master | 2021-07-21T07:06:08.302888 | 2018-11-17T05:10:44 | 2018-11-17T05:10:44 | 114,281,944 | 2 | 5 | null | null | null | null | UTF-8 | Java | false | false | 271 | java | class Solution {
public int minDepth(TreeNode root) {
if(root == null) return 0;
int left = minDepth(root.left);
int right = minDepth(root.right);
return (right == 0 || left == 0) ? left + right + 1 : Math.min(left, right) + 1;
}
} | [
"weichien711@gmail.com"
] | weichien711@gmail.com |
7aac2b5979a773a19ca2a19fd73e1445bf0c921c | 58e792219ca60ab0f3b9fc638e184a79d43a3e1d | /src/test/java/bbejeck/guava/chapter2/ascii/CaseFormatTest.java | 53c7c6ab63d350843b6df85a1a0ec835e196d4fd | [] | no_license | davidhuizhou/GoogleGuava | 4abd2d6121de8f394b02e1128850227058e0ba2c | cb8bff79907b834925b199d1b40bfd81bbdee437 | refs/heads/master | 2021-01-15T15:25:16.007685 | 2016-07-02T20:11:16 | 2016-07-02T20:11:16 | 46,386,411 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 806 | java | package bbejeck.guava.chapter2.ascii;
import org.junit.Test;
import com.google.common.base.CaseFormat;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
/**
* User: Bill Bejeck
* Date: 3/18/13
* Time: 10:36 AM
*/
public class CaseFormatTest {
@Test
public void testToLowerCamelCaseFromLowerHyphen() {
assertThat(CaseFormat.LOWER_HYPHEN.to(CaseFormat.LOWER_CAMEL, "foo-bar"), is("fooBar"));
}
@Test
public void testToUpperCamelCaseFromLowerUnderScore() {
assertThat(CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, "foo_bar"), is("FooBar"));
}
@Test
public void testToUpperUnderScoreFromLowerCamelCase() {
assertThat(CaseFormat.LOWER_CAMEL.to(CaseFormat.UPPER_UNDERSCORE, "fooBar"), is("FOO_BAR"));
}
}
| [
"davidhuizhou@gmail.com"
] | davidhuizhou@gmail.com |
69f3cacc709b9c118ab112d45b81245d66c6aae3 | 7691f450cbd3656282331add7b3204cc91c2fe1b | /jdi-eyes-demo/src/main/java/jdisite/sections/ContactForm.java | b6c06b6e6f3ed7d38299fb91f4e8eae131a9c34b | [
"MIT"
] | permissive | AlMcRey/jdi-light | 159b98f4b7d124d7ac21416cb3b136001ea427e3 | 3ed1f5bbd596cd0fcb42d084ceb8238238b1c2c5 | refs/heads/master | 2022-07-15T08:37:00.628644 | 2020-05-06T09:53:17 | 2020-05-06T09:53:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 812 | java | package jdisite.sections;
/**
* Created by Roman Iovlev on 10.11.2018
* Email: roman.iovlev.jdi@gmail.com; Skype: roman.iovlev
*/
import com.epam.jdi.light.elements.complex.dropdown.DropdownSelect;
import com.epam.jdi.light.elements.composite.Form;
import com.epam.jdi.light.elements.pageobjects.annotations.locators.UI;
import com.epam.jdi.light.ui.html.elements.common.*;
import com.epam.jdi.light.ui.html.elements.complex.DataListOptions;
import jdisite.custom.MultiSelect;
import jdisite.entities.ContactInfo;
public class ContactForm extends Form<ContactInfo> {
TextField name, lastName, position, passportNumber, passportSeria;
DropdownSelect gender;
DataListOptions religion;
@UI("#weather") MultiSelect weather;
Checkbox passport, acceptConditions;
TextArea description;
} | [
"roman.iovlev.jdi@gmail.com"
] | roman.iovlev.jdi@gmail.com |
5a3b1f30efb588c6ce8366b9615d9f49697f888a | 6b5f8dcd70092f897e1874b6f91eb1cecec40d94 | /swift-api-server/src/test/java/com/fr/swift/cloud/api/info/RequestInfoTest.java | 85283826f65ee1127211022a658d496e835f1dc5 | [
"Apache-2.0"
] | permissive | fanruan/intelli-swift-jdbc | 548809e0b445016fb17e7afaf0076f0a605724d5 | 0effc209b35374ea1e33d6fda0399585f19779b7 | refs/heads/master | 2022-07-04T05:55:26.656528 | 2021-07-27T11:25:28 | 2021-07-27T11:25:28 | 153,720,290 | 7 | 5 | Apache-2.0 | 2021-03-17T01:11:14 | 2018-10-19T03:15:22 | Java | UTF-8 | Java | false | false | 6,436 | java | package com.fr.swift.cloud.api.info;
import com.fr.swift.cloud.api.info.api.CreateTableRequestInfo;
import com.fr.swift.cloud.api.info.api.InsertRequestInfo;
import com.fr.swift.cloud.api.info.api.TableRequestInfo;
import com.fr.swift.cloud.api.info.api.TruncateRequestInfo;
import com.fr.swift.cloud.api.rpc.bean.Column;
import com.fr.swift.cloud.base.json.JsonBuilder;
import com.fr.swift.cloud.db.SwiftDatabase;
import com.fr.swift.cloud.source.ListBasedRow;
import com.fr.swift.cloud.source.Row;
import org.junit.Assert;
import org.junit.Test;
import java.sql.Types;
import java.util.Arrays;
import java.util.List;
import static org.junit.Assert.assertEquals;
//import com.fr.swift.query.info.bean.element.DimensionBean;
//import com.fr.swift.query.info.bean.element.filter.FilterInfoBean;
//import com.fr.swift.query.info.bean.element.filter.impl.AllShowFilterBean;
//import com.fr.swift.query.info.bean.query.DetailQueryInfoBean;
//import com.fr.swift.query.info.bean.query.QueryBeanFactory;
//import com.fr.swift.query.info.bean.query.QueryInfoBean;
//import com.fr.swift.query.info.bean.type.DimensionType;
/**
* @author yee
* @date 2019-01-03
*/
public class RequestInfoTest {
@Test
public void createTableRequestInfoTest() throws Exception {
CreateTableRequestInfo info = new CreateTableRequestInfo();
info.setTable("table");
info.setColumns(Arrays.asList(new Column("id", Types.BIGINT), new Column("name", Types.VARCHAR)));
info.setAuthCode("authCode");
info.setDatabase(SwiftDatabase.CUBE);
String json = JsonBuilder.writeJsonString(info);
CreateTableRequestInfo newInfo = JsonBuilder.readValue(json, CreateTableRequestInfo.class);
assertEquals(info.getTable(), newInfo.getTable());
assertEquals(info.getDatabase(), newInfo.getDatabase());
assertEquals(info.getAuthCode(), newInfo.getAuthCode());
List<Column> expect = info.getColumns();
List<Column> real = newInfo.getColumns();
assertEquals(expect.size(), real.size());
for (int i = 0; i < expect.size(); i++) {
assertEquals(expect.get(i), real.get(i));
}
}
@Test
public void deleteRequestInfoTest() throws Exception {
// FilterBean filterBean = new AllShowFilterBean();
// DeleteRequestInfo info = new DeleteRequestInfo();
// info.setTable("table");
// info.setWhere(JsonBuilder.writeJsonString(filterBean));
// info.setAuthCode("authCode");
// info.setDatabase(SwiftSchema.CUBE);
// String json = JsonBuilder.writeJsonString(info);
// DeleteRequestInfo newInfo = JsonBuilder.readValue(json, DeleteRequestInfo.class);
// assertEquals(info.getTable(), newInfo.getTable());
// assertEquals(info.getDatabase(), newInfo.getDatabase());
// assertEquals(info.getAuthCode(), newInfo.getAuthCode());
// String real = newInfo.getWhere();
// assertTrue(JsonBuilder.readValue(real, FilterInfoBean.class) instanceof AllShowFilterBean);
}
@Test
public void insertRequestInfoTest() throws Exception {
InsertRequestInfo info = new InsertRequestInfo();
info.setTable("table");
info.setSelectFields(Arrays.asList("id", "name"));
info.setData(Arrays.<Row>asList(new ListBasedRow(1L, "anchor"), new ListBasedRow(2L, "mike")));
info.setAuthCode("authCode");
info.setDatabase(SwiftDatabase.CUBE);
String json = JsonBuilder.writeJsonString(info);
InsertRequestInfo newInfo = JsonBuilder.readValue(json, InsertRequestInfo.class);
assertEquals(info.getTable(), newInfo.getTable());
assertEquals(info.getDatabase(), newInfo.getDatabase());
assertEquals(info.getAuthCode(), newInfo.getAuthCode());
List<Row> expect = info.getData();
List<Row> real = newInfo.getData();
assertEquals(expect.size(), real.size());
for (int i = 0; i < expect.size(); i++) {
Row expectRow = expect.get(i);
Row realRow = real.get(i);
assertEquals(expectRow, realRow);
}
List<String> expectSelect = info.getSelectFields();
List<String> realSelect = newInfo.getSelectFields();
assertEquals(expectSelect.size(), realSelect.size());
for (int i = 0; i < expectSelect.size(); i++) {
assertEquals(expectSelect.get(i), realSelect.get(i));
}
}
@Test
public void queryRequestInfoTest() throws Exception {
// QueryRequestInfo info = new QueryRequestInfo();
// DetailQueryInfoBean queryBean = new DetailQueryInfoBean();
// queryBean.setTableName("table");
// DimensionBean bean = new DimensionBean();
// bean.setType(DimensionType.DETAIL_ALL_COLUMN);
// queryBean.setDimensions(Arrays.asList(bean));
// info.setAuthCode("authCode");
// info.setDatabase(SwiftSchema.CUBE);
// info.setQueryJson(QueryBeanFactory.queryBean2String(queryBean));
//
// String json = JsonBuilder.writeJsonString(info);
// QueryRequestInfo newInfo = JsonBuilder.readValue(json, QueryRequestInfo.class);
// assertEquals(info.getDatabase(), newInfo.getDatabase());
// assertEquals(info.getAuthCode(), newInfo.getAuthCode());
// String real = newInfo.getQueryJson();
// QueryInfoBean queryInfoBean = QueryBeanFactory.create(real);
// assertTrue(queryInfoBean instanceof DetailQueryInfoBean);
// List<DimensionBean> dimensionBeans = ((DetailQueryInfoBean) queryInfoBean).getDimensions();
// assertEquals(1, dimensionBeans.size());
// DimensionType type = dimensionBeans.get(0).getType();
// Assert.assertEquals(DimensionType.DETAIL_ALL_COLUMN, type);
}
@Test
public void tableRequestInfoTest() throws Exception {
TableRequestInfo info = new TruncateRequestInfo();
info.setTable("table");
info.setAuthCode("authCode");
info.setDatabase(SwiftDatabase.CUBE);
String json = JsonBuilder.writeJsonString(info);
TableRequestInfo newInfo = JsonBuilder.readValue(json, TableRequestInfo.class);
assertEquals(info.getTable(), newInfo.getTable());
assertEquals(info.getDatabase(), newInfo.getDatabase());
assertEquals(info.getAuthCode(), newInfo.getAuthCode());
Assert.assertEquals(RequestType.TRUNCATE_TABLE, newInfo.getRequestType());
}
} | [
"Heng.Jiang@fanruan.com"
] | Heng.Jiang@fanruan.com |
d4e2be6ce19beac13f28073458a3ae076fdca532 | dd80a584130ef1a0333429ba76c1cee0eb40df73 | /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/FadingTest.java | 29fb868794f4910f3b9b60436d6987051058ecaf | [
"MIT",
"LicenseRef-scancode-unicode",
"Apache-2.0"
] | permissive | karunmatharu/Android-4.4-Pay-by-Data | 466f4e169ede13c5835424c78e8c30ce58f885c1 | fcb778e92d4aad525ef7a995660580f948d40bc9 | refs/heads/master | 2021-03-24T13:33:01.721868 | 2017-02-18T17:48:49 | 2017-02-18T17:48:49 | 81,847,777 | 0 | 2 | MIT | 2020-03-09T00:02:12 | 2017-02-13T16:47:00 | null | UTF-8 | Java | false | false | 2,484 | java | /*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.transitiontests;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.transition.Scene;
import android.widget.Button;
import android.transition.Fade;
import android.transition.TransitionManager;
public class FadingTest extends Activity {
Button mRemovingButton, mInvisibleButton, mGoneButton;
Scene mScene1, mScene2;
ViewGroup mSceneRoot;
static Fade sFade = new Fade();
Scene mCurrentScene;
static {
sFade.addTarget(R.id.removingButton).addTarget(R.id.invisibleButton).
addTarget(R.id.goneButton);
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.fading_test);
View container = (View) findViewById(R.id.container);
mSceneRoot = (ViewGroup) container.getParent();
mRemovingButton = (Button) findViewById(R.id.removingButton);
mInvisibleButton = (Button) findViewById(R.id.invisibleButton);
mGoneButton = (Button) findViewById(R.id.goneButton);
mGoneButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mGoneButton.setAlpha(mGoneButton.getAlpha() < 1 ? 1 : .6f);
}
});
mScene1 = Scene.getSceneForLayout(mSceneRoot, R.layout.fading_test, this);
mScene2 = Scene.getSceneForLayout(mSceneRoot, R.layout.fading_test_scene_2, this);
mCurrentScene = mScene1;
}
public void sendMessage(View view) {
if (mCurrentScene == mScene1) {
TransitionManager.go(mScene2);
mCurrentScene = mScene2;
} else {
TransitionManager.go(mScene1);
mCurrentScene = mScene1;
}
}
}
| [
"karun.matharu@gmail.com"
] | karun.matharu@gmail.com |
dfdba6269c107fa02800be2296102b41af482069 | c30d4f174a28aac495463f44b496811ee0c21265 | /platform/util/testSrc/com/intellij/util/containers/ConcurrentBitSetTest.java | f5fb2d43332a5408ca48ab53815a4ffe5854db31 | [
"Apache-2.0"
] | permissive | sarvex/intellij-community | cbbf08642231783c5b46ef2d55a29441341a03b3 | 8b8c21f445550bd72662e159ae715e9d944ba140 | refs/heads/master | 2023-05-14T14:32:51.014859 | 2023-05-01T06:59:21 | 2023-05-01T06:59:21 | 32,571,446 | 0 | 0 | Apache-2.0 | 2023-05-01T06:59:22 | 2015-03-20T08:16:17 | Java | UTF-8 | Java | false | false | 3,787 | java | /*
* Copyright 2000-2015 JetBrains s.r.o.
*
* 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.intellij.util.containers;
import junit.framework.TestCase;
public class ConcurrentBitSetTest extends TestCase {
public void test() {
ConcurrentBitSet bitSet = new ConcurrentBitSet();
final ConcurrentBitSet emptySet = new ConcurrentBitSet();
int N = 3000;
assertEquals(0, bitSet.nextClearBit(0));
assertEquals(bitSet, emptySet);
for (int i=0; i<N;i++) {
assertEquals(-1, bitSet.nextSetBit(i));
assertEquals(i, bitSet.nextClearBit(i));
assertFalse(bitSet.get(i));
bitSet.set(i);
assertTrue(bitSet.get(i));
bitSet.clear(i);
assertFalse(bitSet.get(i));
assertEquals(bitSet, emptySet);
}
bitSet = new ConcurrentBitSet();
for (int b=0;b<N;b++) {
assertEquals(bitSet, emptySet);
boolean set = bitSet.flip(b);
assertTrue(set);
assertEquals(b, bitSet.nextSetBit(0));
assertEquals(b==0?1:0, bitSet.nextClearBit(0));
assertEquals(b+1, bitSet.nextClearBit(b));
assertFalse(bitSet.get(b==0?1:0));
assertTrue(bitSet.get(b));
for (int i=0; i<N;i++) {
assertEquals(i<=b?b:-1, bitSet.nextSetBit(i));
assertEquals(i==b?b+1:i, bitSet.nextClearBit(i));
assertEquals(i == b, bitSet.get(i));
}
boolean after = bitSet.flip(b);
assertFalse(after);
assertEquals(-1, bitSet.nextSetBit(0));
assertEquals(0, bitSet.nextClearBit(0));
assertEquals(b, bitSet.nextClearBit(b));
assertFalse(bitSet.get(0));
assertFalse(bitSet.get(b));
for (int i=0; i<N;i++) {
assertEquals(-1, bitSet.nextSetBit(i));
assertEquals(i, bitSet.nextClearBit(i));
assertFalse(bitSet.get(i));
}
}
bitSet.set(100, true);
assertFalse(bitSet.equals(emptySet));
bitSet.clear();
assertEquals(bitSet, emptySet);
}
public void testStress() throws InterruptedException {
final ConcurrentBitSet bitSet = new ConcurrentBitSet();
int N = 100;
final int L = 100;
Thread[] threads = new Thread[N];
for (int i=0; i<N;i++) {
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
for (int i = 0; i < 10000; i++) {
for (int j = 0; j < L; j++) {
bitSet.flip(j);
}
}
}
},"conc bit set");
threads[i] = thread;
thread.start();
}
for (Thread thread : threads) {
thread.join();
}
assertEquals(-1, bitSet.nextSetBit(0));
}
public void testStress2_Performance() throws InterruptedException {
final ConcurrentBitSet bitSet = new ConcurrentBitSet();
int N = 10;
final int L = 1000000;
Thread[] threads = new Thread[N];
for (int i=0; i<N;i++) {
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
for (int i = 0; i < 100; i++) {
for (int j = 0; j < L; j++) {
bitSet.flip(j);
}
}
}
},"conc bit stress");
threads[i] = thread;
thread.start();
}
for (Thread thread : threads) {
thread.join();
}
assertEquals(-1, bitSet.nextSetBit(0));
}
}
| [
"cdr@intellij.com"
] | cdr@intellij.com |
c55e8af1dcbf0dac40aeefae564849fdb9babcf3 | 28b60cf46e91195e9be6c4e3b5078ba4984a6b2c | /app/src/androidTest/java/com/example/dell_pc/login/ExampleInstrumentedTest.java | 115709fc295dba0652636c0722444536ed994f58 | [] | no_license | Dania-Mazhar/Login | 9fe9e7842a3464c803bbcbfdcc8596eee527c559 | e4cf18d56d94163d7bdc73451f46217ffaa30fc5 | refs/heads/master | 2021-09-01T06:47:34.666223 | 2017-12-25T13:03:55 | 2017-12-25T13:03:55 | 115,338,509 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 754 | java | package com.example.dell_pc.login;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumentation test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.example.dell_pc.login", appContext.getPackageName());
}
}
| [
"Mazhar Iqbal"
] | Mazhar Iqbal |
54839ec175eca10d283cc84d98bdc5b8e93ca026 | a40af96d9ae03f99187826304a965f768817f356 | /09Lesson6399/src/java6399/scores/Score6399.java | 659bf0840c7fd53622329ffb90dd38190443374e | [] | no_license | liuchang1220/JavaFX | 9e44bf673d5f70b0d9ff51183e1fdcecbb19c566 | 91b856960c1fb73a89e7e56309b68ccaf8201422 | refs/heads/master | 2023-05-03T18:37:11.827849 | 2021-05-19T16:34:47 | 2021-05-19T16:34:47 | 368,934,614 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,144 | java | package java6399.scores;
public class Score6399 {
private String name;
private int Chinese;
private int math;
private int english;
private int sum;
public Score6399() {
}
public Score6399(String name, int chinese, int math, int english) {
this.name = name;
Chinese = chinese;
this.math = math;
this.english = english;
}
public int getSum() {
return sum;
}
public void setSum(int sum) {
this.sum = sum;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getChinese() {
return Chinese;
}
public void setChinese(int chinese) {
Chinese = chinese;
}
public int getMath() {
return math;
}
public void setMath(int math) {
this.math = math;
}
public int getEnglish() {
return english;
}
public void setEnglish(int english) {
this.english = english;
}
public int getsum(){
sum=this.Chinese+this.english+this.math;
return sum;
}
}
| [
"you@example.com"
] | you@example.com |
cd1cdef1f80eb44c80e3d69679528b9f938af69b | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/12/12_ff7bc372602e70e1e9a6a8e9c0d026e9f19f7e2b/LoginActivity/12_ff7bc372602e70e1e9a6a8e9c0d026e9f19f7e2b_LoginActivity_s.java | 74b743d3ac54018c8000586ded38857d77129c6f | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 7,258 | java | package com.turbo_extreme_sloth.ezzence.activities;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.ProgressDialog;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.turbo_extreme_sloth.ezzence.CurrentUser;
import com.turbo_extreme_sloth.ezzence.R;
import com.turbo_extreme_sloth.ezzence.SharedPreferencesHelper;
import com.turbo_extreme_sloth.ezzence.User;
import com.turbo_extreme_sloth.ezzence.config.Config;
import com.turbo_extreme_sloth.ezzence.rest.RESTRequest;
import com.turbo_extreme_sloth.ezzence.rest.RESTRequestEvent;
import com.turbo_extreme_sloth.ezzence.rest.RESTRequestListener;
public class LoginActivity extends Activity implements RESTRequestListener
{
/** The ID for recognizing a login event. */
protected static final String LOGIN_EVENT_ID = "loginEvent";
/** Stores the user information during the request. */
protected User user;
/** Elements. */
protected EditText userNameEditText;
protected EditText passwordEditText;
protected EditText loginPinEditText;
protected Button loginButtonButton;
protected ProgressDialog progressDialog;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
User user = SharedPreferencesHelper.getUser(this);
// If a user is present in shared preferences, start the unlock activity
if (user.getName() != null &&
user.getPassword() != null &&
user.getPin() != null &&
user.getName().length() > 0 &&
user.getPassword().length() > 0 &&
user.getPin().length() > 0)
{
startActivity(new Intent(this, UnlockActivity.class));
finish();
return;
}
setContentView(R.layout.activity_login);
userNameEditText = (EditText) findViewById(R.id.loginUserNameEditText);
passwordEditText = (EditText) findViewById(R.id.loginPasswordEditText);
loginPinEditText = (EditText) findViewById(R.id.loginPinEditText);
loginButtonButton = (Button) findViewById(R.id.loginButtonButton);
loginButtonButton.setOnClickListener(loginButtonButtonOnClickListener);
}
/**
* The click listener for the login button.
*/
protected OnClickListener loginButtonButtonOnClickListener = new OnClickListener()
{
@Override
public void onClick(View view)
{
String userName = userNameEditText.getText().toString();
String password = passwordEditText.getText().toString();
String pin = loginPinEditText.getText().toString();
// User name must not be empty
if (userName.length() <= 0)
{
AlertDialog.Builder builder = new AlertDialog.Builder(LoginActivity.this);
builder.setMessage(R.string.login_empty_userName);
builder.setPositiveButton(R.string.ok, null);
builder.show();
return;
}
// Password must not be empty
if (password.length() <= 0)
{
AlertDialog.Builder builder = new AlertDialog.Builder(LoginActivity.this);
builder.setMessage(R.string.login_empty_password);
builder.setPositiveButton(R.string.ok, null);
builder.show();
return;
}
// Pin code must be at least 5 digits
if (pin.length() < 5)
{
AlertDialog.Builder builder = new AlertDialog.Builder(LoginActivity.this);
builder.setMessage(R.string.login_pin_too_short);
builder.setPositiveButton(R.string.ok, null);
builder.show();
return;
}
performLoginRequest(userName, password, pin);
}
};
/**
* Performs a RESTful request to the server
*/
protected void performLoginRequest(String userName, String password, String pin)
{
// Store these user credentials in the user class
user = new User(userName, password, (String) null, pin, 0);
// Create new RESTRequest instance and fill it with user data
RESTRequest restRequest = new RESTRequest(Config.REST_REQUEST_BASE_URL + Config.REST_REQUEST_LOGIN, LOGIN_EVENT_ID);
restRequest.putString("username", userName);
restRequest.putString("password", password);
restRequest.addEventListener(this);
// Send an asynchronous RESTful request
restRequest.execute();
}
@Override
public void RESTRequestOnPreExecute(RESTRequestEvent event)
{
progressDialog = new ProgressDialog(this);
progressDialog.setTitle(getResources().getString(R.string.loading));
progressDialog.show();
}
@Override
public void RESTRequestOnPostExecute(RESTRequestEvent event)
{
progressDialog.dismiss();
if (LOGIN_EVENT_ID.equals(event.getID()))
{
handleRESTRequestLoginEvent(event);
}
}
/**
* @param event
*/
private void handleRESTRequestLoginEvent(RESTRequestEvent event)
{
String result = event.getResult();
// Check if the returned string isn't an error generated by the REST class
if (RESTRequest.isExceptionCode(result))
{
Toast.makeText(this, getString(R.string.error_unknown_exception), Toast.LENGTH_SHORT).show();
return;
}
try
{
// Parse JSON
JSONObject jsonObject = new JSONObject(result);
String message = jsonObject.getString("message");
String sessionID = jsonObject.getString("sessionID");
int userType = jsonObject.getInt("userType");
// Show a message when user is blocked
if ("blocked".equals(message))
{
AlertDialog.Builder builder = new AlertDialog.Builder(LoginActivity.this);
builder.setTitle(R.string.login_failed);
builder.setMessage(R.string.login_blocked);
builder.setPositiveButton(R.string.ok, null);
builder.show();
return;
}
// Message should be equal to success and sessionID should be available to be logged in successfully
if (!"success".equals(message) ||
sessionID == null ||
sessionID.length() <= 0)
{
Toast.makeText(getApplicationContext(), getResources().getString(R.string.rest_not_found), Toast.LENGTH_SHORT).show();
return;
}
user.setSessionID(sessionID);
user.setType(userType);
}
catch (JSONException e) { }
// Correct login, start main activity
if (user.isLoggedIn())
{
SharedPreferencesHelper.storeUser(this, user);
CurrentUser.setCurrentUser(user);
startActivity(new Intent(this, MainActivity.class));
finish();
}
else
{
String message = event.getMessageFromResult();
// The server couldn't be reached, as no message is set
if (message == null)
{
Toast.makeText(getApplicationContext(), getResources().getString(R.string.rest_not_found), Toast.LENGTH_SHORT).show();
}
// The server did not accept the passed user credentials
else
{
AlertDialog.Builder builder = new AlertDialog.Builder(LoginActivity.this);
builder.setTitle(R.string.login_failed);
builder.setMessage(R.string.login_wrong_credentials);
builder.setPositiveButton(R.string.ok, null);
builder.show();
}
}
}
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
dd62605972689cc572bf219c24a11fb0b95a8298 | bad4228f6e58ef1feb048f926cd8af2eb9b487de | /provider-cached/src/main/java/org/deephacks/confit/internal/cached/query/ConfigIndexFields.java | cd82f3ab0eaa51292849b537e657bd635368bddd | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | thiagogjt/confit | 77fc4a878875af9c9ae2d65aabc2e1577e5bc91c | a7b65104db7e52e68cbd08178cdbfc68946be12c | refs/heads/master | 2020-04-08T18:33:26.995221 | 2013-10-31T18:38:13 | 2013-10-31T18:38:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,882 | java | package org.deephacks.confit.internal.cached.query;
import com.google.common.base.Preconditions;
import org.deephacks.confit.model.Bean;
import org.deephacks.confit.model.BeanId;
import org.deephacks.confit.model.Schema.AbstractSchemaProperty;
import org.deephacks.confit.model.Schema.SchemaProperty;
import org.deephacks.confit.model.Schema.SchemaPropertyList;
import org.deephacks.confit.model.Schema.SchemaPropertyRef;
import org.deephacks.confit.model.Schema.SchemaPropertyRefList;
import org.deephacks.confit.model.Schema.SchemaPropertyRefMap;
import org.deephacks.confit.serialization.Conversion;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
/**
* ConfigIndexFields contain field values for a particular schema and bean.
*/
public class ConfigIndexFields implements Comparable<ConfigIndexFields> {
/** Bean id of this instance */
public BeanId id;
/** fieldName -> value of an indexed field */
public HashMap<String, Object> fields = new HashMap<>();
private static final Conversion conv = Conversion.get();
/**
* Use only when removing instances from an indexed collection!
*/
public ConfigIndexFields(BeanId beanId) {
this.id = beanId;
}
public ConfigIndexFields(Bean bean) {
Preconditions.checkNotNull(bean.getSchema(), "Schema must be available on bean.");
this.id = bean.getId();
for (AbstractSchemaProperty prop : bean.getSchema().getIndexed()) {
Object value = getValuesAsObject(prop, bean);
if (value != null) {
fields.put(prop.getName(), value);
}
}
}
private Object getValuesAsObject(final AbstractSchemaProperty property, final Bean bean) {
String propertyName = property.getName();
Object value = null;
if (property instanceof SchemaProperty) {
Class<?> cls = ((SchemaProperty) property).getClassType();
List<String> values = bean.getValues(propertyName);
if (values != null && values.size() > 0) {
value = conv.convert(values.get(0), cls);
}
} else if (property instanceof SchemaPropertyList) {
SchemaPropertyList list = (SchemaPropertyList) property;
Class<?> cls = list.getClassType();
List<String> values = bean.getValues(propertyName);
if (values != null && values.size() > 0) {
value = conv.convert(values, cls);
}
} else if (property instanceof SchemaPropertyRef) {
List<BeanId> ids = bean.getReference(propertyName);
if (ids != null && ids.size() > 0) {
value = ids.get(0).getInstanceId();
}
} else if (property instanceof SchemaPropertyRefList ||
property instanceof SchemaPropertyRefMap) {
List<BeanId> ids = bean.getReference(propertyName);
if (ids != null) {
ArrayList<String> instanceIds = new ArrayList<>();
for (BeanId id : ids) {
instanceIds.add(id.getInstanceId());
}
value = instanceIds;
}
} else {
throw new IllegalArgumentException("Unrecognized property");
}
return value;
}
public BeanId getBeanId() {
return id;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ConfigIndexFields that = (ConfigIndexFields) o;
if (id != null ? !id.equals(that.id) : that.id != null) return false;
return true;
}
@Override
public int hashCode() {
return id != null ? id.hashCode() : 0;
}
@Override
public int compareTo(ConfigIndexFields o) {
return 0;
}
}
| [
"stoffe@gmail.com"
] | stoffe@gmail.com |
a21bd0cd475967120c1f3b035698a59c9e1a87f9 | 1f8cb8aa3742eec1762bb57da0c4f8f7664657cd | /org.zikula.modulestudio.generator.beautifier/src/org/zikula/modulestudio/generator/beautifier/pdt/internal/core/documentModel/parser/PhpLexerFactory.java | b731bf69fb310fc5f8f7164fb5c787330ac54d96 | [] | no_license | espaan/MostGenerator | 22621b0adddd5f3953471a460db495175857f28d | 9da01e49f391f715981b19963b870ba880a80ea8 | refs/heads/master | 2021-01-17T05:27:58.989579 | 2012-01-09T19:53:24 | 2012-01-09T19:53:24 | 3,140,229 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 695 | java | package org.zikula.modulestudio.generator.beautifier.pdt.internal.core.documentModel.parser;
/**
* Based on package org.eclipse.php.internal.core.documentModel.parser;
*/
import java.io.InputStream;
import java.io.Reader;
public class PhpLexerFactory {
public static AbstractPhpLexer createLexer(Reader reader) {
return new org.zikula.modulestudio.generator.beautifier.pdt.internal.core.documentModel.parser.php53.PhpLexer(
reader);
}
public static AbstractPhpLexer createLexer(InputStream stream) {
return new org.zikula.modulestudio.generator.beautifier.pdt.internal.core.documentModel.parser.php53.PhpLexer(
stream);
}
}
| [
"info@guite.de"
] | info@guite.de |
4f2da3e2dc98519cde7417e3ea59385793dc4ac1 | d95735cecd119244d2e93e384cba9657a381344a | /MovingAverageConst_.java | 626edd4bd53365e97e0cdc97d413efad9030a58e | [] | no_license | nithishdivakar/ImageJ-codes | 0f640af54f903807fc4117c2445662476e1f4e9c | e53666f27f5fd12cec14110ea74cdf0990855d05 | refs/heads/master | 2020-07-05T15:32:36.283644 | 2016-12-03T13:03:18 | 2016-12-03T13:03:18 | 74,112,581 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,693 | java | import javax.swing.JOptionPane;
import ij.IJ;
import ij.ImagePlus;
import ij.plugin.filter.PlugInFilter;
import ij.process.ImageProcessor;
public class MovingAverageConst_ implements PlugInFilter{
ImagePlus inImg;
String title = null;
@Override
public int setup(String arg, ImagePlus imp) {
if(imp == null){
IJ.error("No input image");
}
else{
this.inImg = imp;
}
return DOES_ALL + NO_CHANGES;
}
public double pix(double[][] A, int xpos,int ypos,int h,int w){
if (xpos<0) xpos=-xpos;
if (ypos<0) ypos=-ypos;
if (xpos>=h-1) xpos=2*h-xpos-2;
if (ypos>=w-1) ypos=2*w-ypos-2;
return A[xpos][ypos];
}
@Override
public void run(ImageProcessor ip) {
int h = ip.getHeight();
int w = ip.getWidth();
String input = JOptionPane.showInputDialog("Please filter size" ) ;
int L= Integer.parseInt(input) ;
ImagePlus imOut = IJ.createImage("Moving Average","8bit", w, h, 1);
ImageProcessor ipProc = imOut.getProcessor();
double img_array[][] = new double[w][h];
double img_array2[][] = new double[w][h];
for (int x=0;x<w;x++){
for(int y=0;y<h;y++){
img_array[x][y] = ip.getPixel(x, y);
}
}
for (int x=0;x<w;x++){
int y=0;
double pix_val=0.0;
for (int i=-L;i<=L;i++){
for (int j=-L;j<=L;j++){
int xpos = i+x;
int ypos = j+y;
if (xpos<0) xpos=-xpos;
if (ypos<0) ypos=-ypos;
if (xpos>=h-1) xpos=2*h-xpos-2;
if (ypos>=w-1) ypos=2*w-ypos-2;
pix_val += ip.getPixel(xpos, ypos);
}
}
img_array[x][y] = pix_val/(4.0*L*L+4.0*L+1.0);
img_array2[x][y] = pix_val/(4.0*L*L+4.0*L+1.0);
}
for (int y=0;y<h;y++){
//for (int x=0;x<w;x++){
int x=0;
double pix_val=0.0;
for (int i=-L;i<=L;i++){
for (int j=-L;j<=L;j++){
int xpos = i+x;
int ypos = j+y;
if (xpos<0) xpos=-xpos;
if (ypos<0) ypos=-ypos;
if (xpos>=h-1) xpos=2*h-xpos-2;
if (ypos>=w-1) ypos=2*w-ypos-2;
pix_val += ip.getPixel(xpos, ypos);
}
}
img_array[x][y] = pix_val/(4.0*L*L+4.0*L+1.0);
img_array2[x][y] = pix_val/(4.0*L*L+4.0*L+1.0);
}//}
for (int x=1;x<w;x++){
for (int y=1;y<h;y++){
double temp =
+pix(img_array,x+L ,y+L ,h,w)
-pix(img_array,x-L-1,y+L ,h,w)
-pix(img_array,x+L ,y-L-1,h,w)
+pix(img_array,x-L-1,y-L-1,h,w)
;
double pix_val=
+pix(img_array2,x ,y-1,h,w)
+pix(img_array2,x-1,y ,h,w)
-pix(img_array2,x-1,y-1,h,w)
+temp/(4.0*L*L+4.0*L+1.0);
img_array2[x][y] = pix_val;
}}
for (int x=0;x<w;x++){
for(int y=0;y<h;y++){
ipProc.putPixel(x, y, (int)img_array2[x][y]);
}
}
imOut.show();
}
}
| [
"nithish.divakar@gmail.com"
] | nithish.divakar@gmail.com |
7d86e8a4fac9b09ccbf046b52dde0d0942e03686 | eb9f655206c43c12b497c667ba56a0d358b6bc3a | /platform/platform-impl/src/com/intellij/openapi/wm/impl/welcomeScreen/OpenAlienProjectAction.java | c785048ebfd163cdb2ad1571248feef3714b6675 | [
"Apache-2.0"
] | permissive | JetBrains/intellij-community | 2ed226e200ecc17c037dcddd4a006de56cd43941 | 05dbd4575d01a213f3f4d69aa4968473f2536142 | refs/heads/master | 2023-09-03T17:06:37.560889 | 2023-09-03T11:51:00 | 2023-09-03T12:12:27 | 2,489,216 | 16,288 | 6,635 | Apache-2.0 | 2023-09-12T07:41:58 | 2011-09-30T13:33:05 | null | UTF-8 | Java | false | false | 2,059 | java | // Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.openapi.wm.impl.welcomeScreen;
import com.intellij.ide.IdeBundle;
import com.intellij.ide.impl.ProjectUtil;
import com.intellij.openapi.actionSystem.*;
import com.intellij.openapi.ui.popup.JBPopupFactory;
import com.intellij.openapi.util.NlsSafe;
import org.jetbrains.annotations.NotNull;
import javax.swing.*;
import java.nio.file.Path;
import java.util.List;
import java.util.Objects;
public class OpenAlienProjectAction extends AnAction {
private final ProjectDetector myDetector;
private List<String> myProjectPaths;
public OpenAlienProjectAction(ProjectDetector detector) {
myDetector = detector;
}
public void scheduleUpdate(JComponent toUpdate) {
toUpdate.setVisible(false);
myDetector.detectProjects(projects -> toUpdate.setVisible(!(myProjectPaths = projects).isEmpty()));
}
@Override
public void update(@NotNull AnActionEvent e) {
e.getPresentation().setEnabled(ActionPlaces.WELCOME_SCREEN.equals(e.getPlace()));
}
@Override
public @NotNull ActionUpdateThread getActionUpdateThread() {
return ActionUpdateThread.BGT;
}
@Override
public void actionPerformed(@NotNull AnActionEvent e) {
if (myProjectPaths == null) return;
DefaultActionGroup actionGroup = new DefaultActionGroup();
for (@NlsSafe String path : myProjectPaths) {
actionGroup.add(new AnAction(path) {
@Override
public void actionPerformed(@NotNull AnActionEvent e) {
ProjectUtil.openOrImport(Path.of(path));
projectOpened();
}
});
}
JBPopupFactory.getInstance()
.createActionGroupPopup(IdeBundle.message("popup.title.open.project"), actionGroup, e.getDataContext(), JBPopupFactory.ActionSelectionAid.SPEEDSEARCH,
false).showUnderneathOf(Objects.requireNonNull(e.getData(PlatformCoreDataKeys.CONTEXT_COMPONENT)));
}
protected void projectOpened() {}
}
| [
"intellij-monorepo-bot-no-reply@jetbrains.com"
] | intellij-monorepo-bot-no-reply@jetbrains.com |
eb7791ef46c13064389260014ca86cb5a1d44d66 | 7cfbe188a0080842af0f43a4a254201d1aa976ed | /src/main/java/com/vsvet/example/videorentalstore/domain/MoviePrice.java | 95c1ee2ff8a29905c270264e74eafb6deb4cffeb | [] | no_license | 0vint0/videorentalstore | 9545dba52b2d18333fc209edbee1f3d8274ef6b5 | b254992b47f4cb9da91e7ef507f71b8eebb0aca1 | refs/heads/master | 2021-08-31T16:11:09.357629 | 2017-12-22T01:33:41 | 2017-12-22T01:33:41 | 115,056,299 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,686 | java | package com.vsvet.example.videorentalstore.domain;
import javax.persistence.*;
import java.math.BigDecimal;
import java.util.Objects;
/**
* Defines the price per movie type
*/
@Entity
@Table(name = "movie_prices")
public class MoviePrice extends AbstractEntity {
@Id
@Column(name = "movie_type", nullable = false, unique = true)
@Enumerated(EnumType.STRING)
private MovieType movieType;
@Column(name = "price", nullable = false)
private BigDecimal price;
/**
* Represents the period in days included in price,
* after period is exceed the calculation is done per day.
*/
@Column(name = "start_period", nullable = false)
private Integer startPeriod;
public Integer getStartPeriod() {
return startPeriod;
}
public void setStartPeriod(Integer startPeriod) {
this.startPeriod = startPeriod;
}
public MovieType getMovieType() {
return movieType;
}
public void setMovieType(MovieType movieType) {
this.movieType = movieType;
}
public BigDecimal getPrice() {
return price;
}
public void setPrice(BigDecimal price) {
this.price = price;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof MoviePrice)) return false;
MoviePrice that = (MoviePrice) o;
return getStartPeriod() == that.getStartPeriod() &&
getMovieType() == that.getMovieType() &&
Objects.equals(getPrice(), that.getPrice());
}
@Override
public int hashCode() {
return Objects.hash(getMovieType(), getPrice(), getStartPeriod());
}
}
| [
"vsvet@pentalog.fr"
] | vsvet@pentalog.fr |
7645da7399650fd1c11ad74ae8a98ea28a5fe55a | 082076c5aeb88928e39cf443feb13734dd1495c3 | /src/main/java/msz/bakk/protocol/Reputation/ReputationServer.java | 4e8610ec1d3b30fdb6e7cbd09cfb5d5e43a8a110 | [] | no_license | researchstudio-sat/won_reputation_privacy | 891c6d1bdba6fd65673e3ac51a4e61b4953f563d | 173735a7e6c8991fa87b126c8b3c2eec9af32fde | refs/heads/master | 2020-06-17T14:19:01.478302 | 2019-07-09T06:41:22 | 2019-07-09T06:41:22 | 195,949,070 | 0 | 0 | null | 2019-07-09T06:45:50 | 2019-07-09T06:45:50 | null | UTF-8 | Java | false | false | 4,370 | java | package msz.bakk.protocol.Reputation;
import msz.bakk.protocol.ConnectionHandler;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import java.io.*;
import java.net.ServerSocket;
import java.net.Socket;
import java.security.PublicKey;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
/**
* Reputation server listens for incoming bot connection
* The connection is delegated to RepuationService
* RepuationService is executed in a seperate Thread
* to ensure that the whole process is non-blocking
*
* Only the bot knows the connection of this service
*
* Thanks to 'distributed systems' at TU Wien for providing
* the template and the test environment
*
* The shell listens for 'shutdown' to turn the server down
* or just kill the process.
*/
public class ReputationServer extends Thread {
private static final Log LOG = LogFactory.getLog(ReputationServer.class);
private PublicKey systemPublicKey = null;
private ExecutorService executor = Executors.newFixedThreadPool(10);
private ServerSocket serverSocket;
private boolean shutdown = false;
private InputStream in;
private PrintStream out;
private int port = 5555;
private ReputationStore reputationStore = new ReputationStore();
public ReputationServer() {
this.in = System.in;
this.out = System.out;
}
public ReputationServer(InputStream in, PrintStream out, PublicKey systemPublicKey) {
// For testing the server itself, use the Streams from the Testbase class
this.in = in;
this.out = out;
this.systemPublicKey = systemPublicKey;
}
@Override
public void run() {
try {
this.serverSocket = new ServerSocket(this.port);
new Thread(new RepuationServerConnection()).start();
this.directTerminal();
} catch (InterruptedException | IOException e) {
e.printStackTrace();
}
}
private class RepuationServerConnection implements ConnectionHandler {
public void run() {
try {
clientAcceptLoop();
} catch (IOException e) {
e.printStackTrace();
}
}
// We wait for incoming connections and delegate the handling
// to the Thread RepuationBotService
public void clientAcceptLoop() throws IOException {
while(!serverSocket.isClosed()) {
LOG.info("X Waiting for connection on port " + port);
Socket socket = serverSocket.accept();
ReputationService service = new ReputationService(reputationStore, socket, systemPublicKey);
LOG.info("We spawn a new service thread");
executor.execute(service);
}
}
}
// Listen for "shutdown" keyword in the terminal and closes all sockets
private void directTerminal() throws InterruptedException, IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(this.in));
PrintWriter out = new PrintWriter(this.out);
String inputLine;
boolean shutdown = false;
Thread.sleep(500); // Simulate some loading
out.println("Shutdown the server with the command: 'shutdown'");
out.print("T !> ");
out.flush();
while(!shutdown && (inputLine = reader.readLine()) != null) {
if(inputLine.equals("shutdown")) {
shutdown = true;
}
}
this.shutdown();
}
//After recieving 'shutdown' we close all threads
//including the server socket
private void shutdown() {
this.out.println("Shutting down Reputationbot: " );
try {
executor.shutdown();
try {
if (!executor.awaitTermination(800, TimeUnit.MILLISECONDS)) {
executor.shutdownNow();
}
} catch (InterruptedException e) {
executor.shutdownNow();
}
this.serverSocket.close();
} catch (IOException e) {
e.printStackTrace();
}
}
//For single test purpose and for easy start
public static void main(String[] args) {
new ReputationServer().start();
}
}
| [
"mszkb@skca.eu"
] | mszkb@skca.eu |
642b4572b7e2819f8456482e5e44daf5e84134a6 | 97675dccdda1db7746e6fd09851df3e129a8c14a | /src/demo3/KeyScanner.java | 735668b7baa812e6896d89a3287acb8981a3814b | [] | no_license | wenbingshen/jvm-serviceability-examples | c59070f7dc55d69dd7fb4ac4f354065ed5a03ee7 | 579baf68fa4b9e718069233e99c1538e9e59559b | refs/heads/master | 2021-09-14T20:43:47.514752 | 2018-05-19T00:16:26 | 2018-05-19T00:16:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,095 | java | package demo3;
import sun.jvm.hotspot.oops.*;
import sun.jvm.hotspot.runtime.VM;
import sun.jvm.hotspot.tools.Tool;
public class KeyScanner extends Tool {
@Override
public void run() {
Klass privateKeyKlass = VM.getVM().getSystemDictionary()
.find("java/security/PrivateKey", null, null);
VM.getVM().getObjectHeap().iterateObjectsOfKlass(new DefaultHeapVisitor() {
@Override
public boolean doObj(Oop oop) {
InstanceKlass holder = (InstanceKlass) oop.getKlass();
OopField field = (OopField) holder.findField("key", "[B");
print((TypeArray) field.getValue(oop));
return false;
}
}, privateKeyKlass);
}
private void print(TypeArray array) {
long length = array.getLength();
for (long i = 0; i < length; i++) {
System.out.printf("%02x", array.getByteAt(i));
}
System.out.println();
}
public static void main(String[] args) {
new KeyScanner().execute(new String[]{""});
}
}
| [
"andrey.pangin@corp.mail.ru"
] | andrey.pangin@corp.mail.ru |
be5dceaab28df3d1071df3bbe0450251da56b1c4 | ca992e8df8bdb3a75b02284f8fca8db5a0a64311 | /bos_management/src/main/java/cn/itcast/bos/dao/WayBillRepository.java | 1d1b10455103943063af1594bfd3b5d9f1d86323 | [] | no_license | chenxup/bos | d992e6b2aa2ade9cf24279f36c4174df06cb7726 | c0a81b746b902f5db66add91029956279b2670e0 | refs/heads/master | 2021-07-08T14:27:26.032566 | 2017-10-06T08:33:04 | 2017-10-06T08:33:04 | 103,370,416 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 642 | java | package cn.itcast.bos.dao;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.data.jpa.repository.Query;
import cn.itcast.bos.domain.take_delivery.WayBill;
public interface WayBillRepository extends JpaRepository<WayBill,Integer>,JpaSpecificationExecutor<WayBill> {
WayBill findByWayBillNum(String wayBillNum);
@Query(value="select count(t.c_sign_status) from t_way_bill t group by t.c_sign_status order by t.c_sign_status", nativeQuery=true)
List<Object> findCountWayBill();
}
| [
"123"
] | 123 |
8c4f3ab76cf85957f4f591ec0829878bd8fbdcfc | b9ac7ef5ea7e1875d8a20db1399a18e14cd5d3c9 | /app/src/main/java/Main/View/Main_activity.java | 0bff8af5a0f60829b99f619988e2739fc6697afc | [] | no_license | 674018983/Training_Institution | 4d9ecbcc7f33718eecfc06d2c70973c36d3f5357 | 1628307dfc72257affa9eb726a516f0ab59e337e | refs/heads/master | 2021-01-19T17:34:42.209968 | 2017-05-09T02:15:02 | 2017-05-09T02:15:02 | 88,334,317 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,288 | java | package Main.View;
import android.os.Bundle;
import android.support.v4.view.ViewPager;
import java.util.ArrayList;
import java.util.List;
import Adapter.MyFragmentPagerAdapter;
import Content.myAppCompatActivity;
import UI.WeiXinButton.Icon;
import UI.WeiXinButton.WeiXinButton;
import deazy.myapp.R;
/**
* Created by XZC on 2017/4/13.
*/
public class Main_activity extends main_View{
private ViewPager viewPager;
List<Icon> mlist = new ArrayList<Icon>();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTheme(R.style.AppTheme);
setContentView(R.layout.activity_main);
mlist.add(new Icon(0,R.drawable.search,R.drawable.search2));
mlist.add(new Icon(1,R.drawable.address,R.drawable.address2));
mlist.add(new Icon(2,R.drawable.go,R.drawable.go2));
mlist.add(new Icon(3,R.drawable.one,R.drawable.one2));
viewPager = (ViewPager) findViewById(R.id.viewPager);
MyFragmentPagerAdapter adapter = new MyFragmentPagerAdapter(getSupportFragmentManager());
viewPager.setAdapter(adapter);
WeiXinButton myview= (WeiXinButton) findViewById(R.id.myview);
myview.ViewPageListener(viewPager);
myview.add(mlist);
}
}
| [
"674018983@qq.com"
] | 674018983@qq.com |
f51b4e949cef958f0bc8e0b47f20b86f2f63c803 | fc4181143e63b01bdf6e4c229647249510ecc244 | /videoedit/src/main/java/com/geetol/videoedit/whole/pickvideo/beans/ImageFile.java | 47f1db816ee48546aa994b163094e0e04fab858a | [] | no_license | smallneil/Eight_ZiMu | 68e9c0de76a6f10da67f4166f49e9641c4ae2d44 | cd5a19d29ad62005fe36e9a0df09e885d701513a | refs/heads/master | 2020-12-04T20:42:25.357551 | 2020-01-05T08:37:21 | 2020-01-05T08:37:21 | 231,890,011 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,724 | java | package com.geetol.videoedit.whole.pickvideo.beans;
import android.os.Parcel;
import android.os.Parcelable;
/**
* Created by Vincent Woo
* Date: 2016/10/10
* Time: 17:44
*/
public class ImageFile extends BaseFile implements Parcelable {
private int orientation; //0, 90, 180, 270
public int getOrientation() {
return orientation;
}
public void setOrientation(int orientation) {
this.orientation = orientation;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeLong(getId());
dest.writeString(getName());
dest.writeString(getPath());
dest.writeLong(getSize());
dest.writeString(getBucketId());
dest.writeString(getBucketName());
dest.writeLong(getDate());
dest.writeByte((byte) (isSelected() ? 1 : 0));
dest.writeInt(orientation);
}
@Override
public int describeContents() {
return 0;
}
public static final Creator<ImageFile> CREATOR = new Creator<ImageFile>() {
@Override
public ImageFile[] newArray(int size) {
return new ImageFile[size];
}
@Override
public ImageFile createFromParcel(Parcel in) {
ImageFile file = new ImageFile();
file.setId(in.readLong());
file.setName(in.readString());
file.setPath(in.readString());
file.setSize(in.readLong());
file.setBucketId(in.readString());
file.setBucketName(in.readString());
file.setDate(in.readLong());
file.setSelected(in.readByte() != 0);
file.setOrientation(in.readInt());
return file;
}
};
}
| [
"124035268@qq.com"
] | 124035268@qq.com |
c082c01ebab62195bc85cd698a2c93c9bb3aa360 | ee70108855b8a0388649e02a100a8df74e45a0a7 | /standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/model/MReplicationMetrics.java | 463be25d69a34890d1d27e5d7e117f4a6a1c1f21 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"Python-2.0",
"MIT",
"GPL-1.0-or-later",
"BSD-2-Clause",
"JSON"
] | permissive | shameersss1/hive | 3d4258d50ac185ca23e7fa139e87aade8fb59802 | 7cdf362f9f1a53025b371a8d5122336ded71d692 | refs/heads/master | 2023-04-13T01:16:06.504992 | 2020-06-19T06:59:30 | 2020-06-19T06:59:30 | 217,729,769 | 0 | 0 | Apache-2.0 | 2019-10-26T15:34:02 | 2019-10-26T15:34:02 | null | UTF-8 | Java | false | false | 2,416 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.hive.metastore.model;
import org.apache.hadoop.hive.metastore.api.ReplicationMetrics;
/**
* Describes Replication Metrics.
*/
public class MReplicationMetrics {
private long scheduledExecutionId;
private String policy;
private long dumpExecutionId;
private String metadata;
private String progress;
public MReplicationMetrics() {
}
public static ReplicationMetrics toThrift(MReplicationMetrics mReplicationMetric) {
ReplicationMetrics ret = new ReplicationMetrics();
ret.setScheduledExecutionId(mReplicationMetric.scheduledExecutionId);
ret.setPolicy(mReplicationMetric.policy);
ret.setMetadata(mReplicationMetric.metadata);
ret.setProgress(mReplicationMetric.progress);
ret.setDumpExecutionId(mReplicationMetric.dumpExecutionId);
return ret;
}
public long getScheduledExecutionId() {
return scheduledExecutionId;
}
public void setScheduledExecutionId(long scheduledExecutionId) {
this.scheduledExecutionId = scheduledExecutionId;
}
public String getPolicy() {
return policy;
}
public void setPolicy(String policy) {
this.policy = policy;
}
public long getDumpExecutionId() {
return dumpExecutionId;
}
public void setDumpExecutionId(long dumpExecutionId) {
this.dumpExecutionId = dumpExecutionId;
}
public String getMetadata() {
return metadata;
}
public void setMetadata(String metadata) {
this.metadata = metadata;
}
public String getProgress() {
return progress;
}
public void setProgress(String progress) {
this.progress = progress;
}
}
| [
"anishek@gmail.com"
] | anishek@gmail.com |
d1a32953174f7f53e6087d4b51a819f05b966be4 | f8b35af6a8258484cf5cb4aa70dcfc832b95ff6a | /src/ipproject2.java | a9d0f58507ed42a46a5b92bad3f7c34dcc2170b9 | [] | no_license | Khushi-S-B/Java-Date_Validation | 7c203b498166b5a33d242c5fc4404ead289dc15a | 676bc4a380b4083f0a0b03f70aef82f1d71ad600 | refs/heads/master | 2020-07-01T18:32:58.500633 | 2019-08-08T12:48:42 | 2019-08-08T12:48:42 | 201,256,706 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,195 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Ace
*/
import java.util.Date;
public class ipproject2 extends javax.swing.JFrame {
/**
* Creates new form ipproject2
*/
public ipproject2() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jTextField1 = new javax.swing.JTextField();
jButton1 = new javax.swing.JButton();
jLabel8 = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jLabel1.setFont(new java.awt.Font("Tahoma", 1, 18)); // NOI18N
jLabel1.setText("Date Validation");
jLabel2.setText("Input date using the following format mm/dd/yyyy:");
jButton1.setText("Check Validity");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addGap(0, 0, Short.MAX_VALUE)
.addComponent(jLabel1)
.addGap(195, 195, 195))
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(218, 218, 218)
.addComponent(jButton1))
.addGroup(layout.createSequentialGroup()
.addGap(22, 22, 22)
.addComponent(jLabel2)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 227, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jLabel8, javax.swing.GroupLayout.PREFERRED_SIZE, 446, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addContainerGap(37, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(28, 28, 28)
.addComponent(jLabel1, javax.swing.GroupLayout.PREFERRED_SIZE, 29, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(49, 49, 49)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, 31, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(45, 45, 45)
.addComponent(jButton1)
.addGap(38, 38, 38)
.addComponent(jLabel8, javax.swing.GroupLayout.PREFERRED_SIZE, 26, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(38, Short.MAX_VALUE))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
int sI,fI ,sL, month, day, year;
String mm, dd, yyyy, date;
date = jTextField1.getText();
// TODO code application logic here
//System.out.print("Input date using the following format mm/dd/yyyy: ");
//date = keyboard.next();
sL = date.length();
fI = date.indexOf("/");
sI = date.lastIndexOf("/");
mm = date.substring(0,fI);
month = Integer.parseInt(mm);
dd = date.substring((fI+1),sI);
day = Integer.parseInt(dd);
yyyy = date.substring((sI+1),sL);
year = Integer.parseInt(yyyy);
switch (month)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
if (day > 31)
System.out.print(date + " is an invalid date.");
else
System.out.print(date + " is a valid date.");
case 4:
case 6:
case 9:
case 11:
if (day > 30)
jLabel8.setText(date + " is an invalid date.");
else
jLabel8.setText(date + " is a valid date.");
case 2:
if (year % 4 == 0)
if (day > 29)
jLabel8.setText(date + " is an invalid day.");
else
jLabel8.setText(date + " is a valid date and leap year.");
else
if (day > 28)
jLabel8.setText(date + " is an invalid day.");
else
jLabel8.setText(date + " is a valid date.");
default:
jLabel8.setText("The date: " + date + " has an invalid month");
}
//Determine whether date is valid and print appropriate message// TODO add your handling code here:
}//GEN-LAST:event_jButton1ActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(ipproject2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(ipproject2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(ipproject2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(ipproject2.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new ipproject2().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel8;
private javax.swing.JTextField jTextField1;
// End of variables declaration//GEN-END:variables
}
| [
""
] | |
1ec097e46c87531a832573367aaca6f81a714fdb | 2ca1fdf01005ff38d189f274645e542a146dbe08 | /Lib_Coreframe/src/main/java/com/cydroid/coreframe/db/base/BaseHelper.java | fa3fedc0baebf655a6f3f47a07bf1020acb39760 | [] | no_license | panzhoutao/MyFrame | 17ad45e28dbb1e42f19149c2a8a3a93019e774c8 | 90ece08377b1bc2f7ea521b7b7a37f0584dc660f | refs/heads/master | 2021-01-13T15:08:55.165425 | 2016-12-12T10:12:50 | 2016-12-12T10:12:50 | 76,235,029 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,081 | java | package com.cydroid.coreframe.db.base;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import com.cydroid.coreframe.db.DBLock;
import com.cydroid.coreframe.db.Pager;
import com.cydroid.coreframe.tool.util.LogUtil;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
public abstract class BaseHelper <T extends Serializable,PK extends Serializable> extends SQLiteOpenHelper
implements BaseOperate<T, PK> {
protected String ID;
protected final static String DATABASE_NAME = "app_db_order.db";
private final static int DATABASE_VERSION = 130;
protected Context context;
protected String TABLE_NAME;
public BaseHelper(Context context,String tableName,String key) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
TABLE_NAME=tableName;
ID=key;
this.context=context;
synchronized (DBLock.Lock) {
onCreate(this.getWritableDatabase());
}
}
@Override
public void onCreate(SQLiteDatabase db) {
// TODO Auto-generated method stub
String sql=getCreateSql();
if(sql!=null){
db.execSQL(getCreateSql());
}
}
public void clearCash(){
// final File file = context.getDatabasePath(DATABASE_NAME);
// file.delete();
// new BaseHelper(context);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
// final File file = context.getDatabasePath(DATABASE_NAME);
// file.delete();
// new BaseHelper(context);
}
protected abstract String getCreateSql();
protected abstract Long insert(T content, SQLiteDatabase db);
protected abstract T parseDataCursor(Cursor cursor);
@Override
public void clear() {
synchronized (DBLock.Lock) {
SQLiteDatabase db = this.getWritableDatabase();
String dropsql = " DROP TABLE IF EXISTS " + TABLE_NAME;
db.execSQL(dropsql);
db.execSQL(getCreateSql());
}
}
@Override
public Long insert(T entity) {
// TODO Auto-generated method stub
synchronized (DBLock.Lock) {
SQLiteDatabase db = getWritableDatabase();
return insert(entity,db);
}
}
@Override
public Long insertAll(List<T> entitys) {
// TODO Auto-generated method stub
synchronized (DBLock.Lock) {
SQLiteDatabase db = getWritableDatabase();
db.beginTransaction();
for(T entity:entitys){
insert(entity,db);
}
db.setTransactionSuccessful();
db.endTransaction();
}
return null;
}
@Override
public Long getNextPrimaryKey() {
// TODO Auto-generated method stub
return null;
}
@Override
public Long update(T entity) {
// TODO Auto-generated method stub
return insert(entity);
}
@Override
public int updateByProperty(Serializable id, String property,
Serializable value) {
// TODO Auto-generated method stub
return 0;
}
@Override
public int deleteById(PK id) {
// TODO Auto-generated method stub
LogUtil.i("id " + ID);
synchronized (DBLock.Lock) {
SQLiteDatabase db = this.getWritableDatabase();
return db.delete(TABLE_NAME, ID+"=?"
, new String[]{String.valueOf(id)});
}
}
@Override
public int delete(List<PK> ids) {
// TODO Auto-generated method stub
synchronized (DBLock.Lock) {
SQLiteDatabase db = this.getWritableDatabase();
db.beginTransaction();
for(PK id:ids){
db.delete(TABLE_NAME, ID+"=?"
, new String[]{String.valueOf(id)});
}
db.setTransactionSuccessful();
db.endTransaction();
}
return 0;
}
@Override
public int deleteByProperty(String property, Serializable value) {
// TODO Auto-generated method stub
synchronized (DBLock.Lock) {
SQLiteDatabase db = this.getWritableDatabase();
return db.delete(TABLE_NAME, property+" =?"
,new String[]{String.valueOf(value)});
}
}
@Override
public T getById(PK id) {
// TODO Auto-generated method stub
synchronized (DBLock.Lock) {
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.query(TABLE_NAME, null, ID + "=?"
, new String[]{String.valueOf(id)}, null, null, null);
if (!cursor.moveToFirst()) {
cursor.close();
return null;
}
T holder = parseDataCursor(cursor);
cursor.close();
return holder;
}
}
@Override
public List<T> getByProperty(String property, Serializable value) {
// TODO Auto-generated method stub
synchronized (DBLock.Lock) {
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.query(TABLE_NAME, null, property + " = ?"
, new String[]{String.valueOf(value)}, null, null, null);
List<T> holderlist = new ArrayList<T>();
for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
T holder = parseDataCursor(cursor);
holderlist.add(holder);
}
cursor.close();
return holderlist;
}
}
@Override
public List<T> getByLikeProperty(String property, Serializable value) {
// TODO Auto-generated method stub
synchronized (DBLock.Lock) {
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.query(TABLE_NAME, null, property + " like ?"
, new String[]{"%"+String.valueOf(value)+"%"}, null, null, null);
List<T> holderlist = new ArrayList<T>();
for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
T holder = parseDataCursor(cursor);
holderlist.add(holder);
}
cursor.close();
return holderlist;
}
}
@Override
public List<T> getByExample(T entity) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<T> findAllByPage(Pager mPager,BaseDAO.SortType sortType) {
// TODO Auto-generated method stub
synchronized (DBLock.Lock) {
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.query(TABLE_NAME, null, null, null, null, null, ID + (sortType== BaseDAO.SortType.asc?" asc":" desc"), mPager.curpage * mPager.pagesize + "," + mPager.pagesize);
List<T> holders = new ArrayList<T>();
for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
holders.add(parseDataCursor(cursor));
}
cursor.close();
return holders;
}
}
@Override
public List<T> findAll(String orderby) {
// TODO Auto-generated method stub
synchronized (DBLock.Lock) {
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.query(TABLE_NAME, null, null, null, null, null, orderby);
List<T> holderlist = new ArrayList<T>();
for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
T holder = parseDataCursor(cursor);
holderlist.add(holder);
}
cursor.close();
return holderlist;
}
}
@Override
public List<T> findAll() {
synchronized (DBLock.Lock) {
// TODO Auto-generated method stub
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.query(TABLE_NAME, null, null, null, null, null, null);
List<T> holderlist = new ArrayList<T>();
for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
T holder = parseDataCursor(cursor);
holderlist.add(holder);
}
cursor.close();
return holderlist;
}
}
}
| [
"836618033@qq.com"
] | 836618033@qq.com |
d8d03826ac48a13933419442bbd0d10b65f086a0 | 06561c825cee8b99ba28192adbfd4e30d15d827d | /src/fontes/Principal.java | 8ad862bc3457eea72636140d6d8fccc483633b3f | [] | no_license | wesleyeduardocr7/ListaDuplamenteEncadeadaComMapas | 130f4461c5e7bd4981ba957b8334f49c3b9121a5 | cf62da3f6171620d2972f045a094427bc0dccf4f | refs/heads/master | 2020-12-03T16:51:55.268223 | 2020-01-02T14:30:50 | 2020-01-02T14:30:50 | 231,396,954 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,633 | java |
package fontes;
import java.util.HashMap;
import java.util.Map;
/**
*
* @author Wesley Eduardo
*/
public class Principal {
public static void main(String[] args) {
Controle controle = new Controle();
Map<Integer,String> mapaPessoas = new HashMap<>();
mapaPessoas.put(1, "João Delfino");
mapaPessoas.put(2, "Maria do Carmo");
mapaPessoas.put(3, "Claudinei Silva");
mapaPessoas.put(4, "Wesley Eduardo");
mapaPessoas.put(5, "Luis Carlos");
mapaPessoas.put(6, "Paulo Andre");
mapaPessoas.put(7, "Antonio Pedro");
mapaPessoas.put(8, "Thiago Sousa");
mapaPessoas.put(9, "Gabriel Silva");
mapaPessoas.entrySet().forEach((entry) -> {
Integer key = entry.getKey();
String value = entry.getValue();
Pessoa pessoa = new Pessoa();
pessoa.setId(key);
pessoa.setNome(value);
if(key%2 == 0){
controle.addInicio(pessoa);
}else{
controle.addFim(pessoa);
}
});
System.out.println("\nIMPRIMINDO LISTA");
System.out.println(controle.percorre());
System.out.println("");
controle.removeFim();
controle.removeInicio();
System.out.println("\nIMPRIMINDO LISTA APÓS REMOÇÕES");
System.out.println(controle.percorre());
}
}
| [
"wesley.eduardo@acad.ifma.edu.br"
] | wesley.eduardo@acad.ifma.edu.br |
ac79f3a95e00f1da74ff30a9e988d3fca52bb411 | b7404e4df213ac973eebbdac7c045c8af50fbe3c | /app/src/androidTest/java/com/example/tarun/khana/ExampleInstrumentedTest.java | e51a7a1eb6e702fdbef6830bf13b0e8f8757ab62 | [] | no_license | tarun20mogra/Khana | a34aa9303d93753f26cb0f950dc99fdc57226e5b | 4c654b333c96c37ca8d3d007df1baf20120492b6 | refs/heads/master | 2021-04-15T08:41:54.294669 | 2018-07-16T03:21:18 | 2018-07-16T03:21:18 | 126,396,119 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 747 | java | package com.example.tarun.khana;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.example.tarun.khana", appContext.getPackageName());
}
}
| [
"tarun20mogra@users.noreply.github.com"
] | tarun20mogra@users.noreply.github.com |
543fe6474a88bc064f1caf4b23616453fd593892 | 855e77973c061d3551a0e9287a477597c662ead8 | /src/main/java/application/controller/register/RegisterRental.java | 1605af2e02d3c2dd96f248033bfaea24ad5ecabd | [] | no_license | MihajloZivanovic/Fahrzeugverwaltung | d51ebeee5e86f59a9125ad793cb7b3e0ae20b2be | 0d3ebbf66d5a64f5594ad45f7f37620a03b96cde | refs/heads/master | 2023-01-20T19:49:09.904901 | 2020-11-29T18:39:55 | 2020-11-29T18:39:55 | 313,648,996 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,176 | java | package application.controller.register;
import application.GlobalAccessVariables;
import application.data.*;
import application.service.TableViewConstructor;
import com.jfoenix.controls.JFXButton;
import com.jfoenix.controls.JFXTreeTableView;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
import javafx.scene.control.ChoiceBox;
import javafx.scene.control.ComboBox;
import javafx.scene.control.TextField;
import jdk.nashorn.internal.objects.Global;
import java.awt.*;
import java.net.URL;
import java.util.ResourceBundle;
public class RegisterRental implements Initializable {
ObservableList<String> statusList = FXCollections.observableArrayList("Offen", "Ausbezahlt","FertigDing");
@FXML
JFXButton vehicleRegisterButton, customerRegisterButton, vehicleListButton, rentalButton, rentalListButton, customerListButton;
@FXML
JFXButton homeButton;
@FXML
JFXTreeTableView vehicleRentalList, customerRentalList;
@FXML
TextField price, from, until;
@FXML
ChoiceBox statusRental;
public void handleButtonAction(javafx.event.ActionEvent event) throws Exception {
Parent root;
if (event.getSource() == vehicleRegisterButton) {
root = FXMLLoader.load(getClass().getResource("/application/controller/register/registerVehicle.fxml"));
} else if (event.getSource() == customerRegisterButton) {
root = FXMLLoader.load(getClass().getResource("/application/controller/register/registerCustomer.fxml"));
} else if (event.getSource() == vehicleListButton) {
root = FXMLLoader.load(getClass().getResource("/application/controller/display/displayVehicle.fxml"));
} else if (event.getSource() == rentalButton) {
root = FXMLLoader.load(getClass().getResource("/application/controller/register/registerRental.fxml"));
} else if (event.getSource() == rentalListButton) {
root = FXMLLoader.load(getClass().getResource("/application/controller/display/displayRental.fxml"));
} else if (event.getSource() == customerListButton) {
root = FXMLLoader.load(getClass().getResource("/application/controller/display/displayCustomer.fxml"));
} else {
root = FXMLLoader.load(getClass().getResource("/application/controller/primaryView.fxml"));
}
GlobalAccessVariables.mainStage.getScene().setRoot(root);
}
public void registerRental(){
Rental tmpRental = new Rental();
Object selectedVehicle = vehicleRentalList.getTreeItem(vehicleRentalList.getSelectionModel().getFocusedIndex()).getValue();
if(selectedVehicle instanceof Car) tmpRental.setVehicle((Car) selectedVehicle);
if(selectedVehicle instanceof Motorcycle) tmpRental.setVehicle((Motorcycle) selectedVehicle);
if(selectedVehicle instanceof Transporter) tmpRental.setVehicle((Transporter) selectedVehicle);
Customer selectedCustomer = (Customer) customerRentalList.getTreeItem(customerRentalList.getSelectionModel().getFocusedIndex()).getValue();
tmpRental.setCustomer(selectedCustomer);
tmpRental.setPrice(Float.parseFloat(price.getText()));
tmpRental.setStatusOfRent(String.valueOf(statusRental.getValue()));
tmpRental.setFrom(from.getText());
tmpRental.setUntil(until.getText());
GlobalAccessVariables.rentalList.addRental(tmpRental);
}
@Override
public void initialize(URL location, ResourceBundle resources) {
from.setPromptText("tt-mm-jjjj");
until.setPromptText("tt-mm-jjjj");
statusRental.setItems(statusList);
TableViewConstructor.initializeCustomerTableView(customerRentalList, true);
TableViewConstructor.populateTableView(GlobalAccessVariables.customerList.getCustomerList(), customerRentalList);
TableViewConstructor.initializeVehicleTableView(vehicleRentalList, true);
TableViewConstructor.populateTableView(GlobalAccessVariables.vehicleList.getVehicles(), vehicleRentalList);
}
}
| [
"mihajlo.zivanovic@hotmail.com"
] | mihajlo.zivanovic@hotmail.com |
7043316b76d5feb6667506c4bc842ad2521a48f9 | 943083da7372eb646d88bb03e63781e3520b81b9 | /RM_AD_PUSH/src/com/baidu/push/example/MyPushMessageReceiver.java | 1711662000a8697c5306025e06a53e52b554b1d5 | [] | no_license | H3ll0W0lrd/dt_workspace | 9ca4a0cd32b7990c5fcbd7f52474328b53891623 | 112efdcfab920ff66a034d2524a0aaa2f819b7a8 | refs/heads/master | 2022-01-08T09:37:27.990460 | 2018-08-03T14:56:02 | 2018-08-03T14:56:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,398 | java | package com.baidu.push.example;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import org.apache.http.util.EncodingUtils;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.AlarmManager;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.sax.StartElementListener;
import android.text.TextUtils;
import android.util.Log;
import android.util.Xml.Encoding;
import android.widget.Toast;
import com.baidu.android.pushservice.PushMessageReceiver;
import com.baidu.push.model.PushMsg;
import com.baidu.push.util.BeaconSensor;
import com.baidu.push.util.DTClockReceiver;
import com.baidu.push.util.WifiSensor;
import com.google.gson.Gson;
import com.rtm.gf.R;
/*
* Push消息处理receiver。请编写您需要的回调函数, 一般来说: onBind是必须的,用来处理startWork返回值;
*onMessage用来接收透传消息; onSetTags、onDelTags、onListTags是tag相关操作的回调;
*onNotificationClicked在通知被点击时回调; onUnbind是stopWork接口的返回值回调
* 返回值中的errorCode,解释如下:
*0 - Success
*10001 - Network Problem
*10101 Integrate Check Error
*30600 - Internal Server Error
*30601 - Method Not Allowed
*30602 - Request Params Not Valid
*30603 - Authentication Failed
*30604 - Quota Use Up Payment Required
*30605 -Data Required Not Found
*30606 - Request Time Expires Timeout
*30607 - Channel Token Timeout
*30608 - Bind Relation Not Found
*30609 - Bind Number Too Many
* 当您遇到以上返回错误时,如果解释不了您的问题,请用同一请求的返回值requestId和errorCode联系我们追查问题。
*
*/
public class MyPushMessageReceiver extends PushMessageReceiver {
/** TAG to Log */
public static final String TAG = MyPushMessageReceiver.class
.getSimpleName();
/**
* 调用PushManager.startWork后,sdk将对push
* server发起绑定请求,这个过程是异步的。绑定请求的结果通过onBind返回。 如果您需要用单播推送,需要把这里获取的channel
* id和user id上传到应用server中,再调用server接口用channel id和user id给单个手机或者用户推送。
*
* @param context
* BroadcastReceiver的执行Context
* @param errorCode
* 绑定接口返回值,0 - 成功
* @param appid
* 应用id。errorCode非0时为null
* @param userId
* 应用user id。errorCode非0时为null
* @param channelId
* 应用channel id。errorCode非0时为null
* @param requestId
* 向服务端发起的请求id。在追查问题时有用;
* @return none
*/
@Override
public void onBind(Context context, int errorCode, String appid,
String userId, String channelId, String requestId) {
String responseString = "onBind errorCode=" + errorCode + " appid="
+ appid + " userId=" + userId + " channelId=" + channelId
+ " requestId=" + requestId;
Log.d(TAG, responseString);
Toast.makeText(context, "绑定码:" + errorCode, 5000).show();
if (errorCode == 0) {
// 绑定成功
SharedPreferences preferences = context.getSharedPreferences(
"rtmap.xml", 0);
preferences.edit().putString("token", userId + "_" + channelId)
.commit();
Log.e("rtmap", "绑定成功");
BeaconSensor.getInstance().init(context.getApplicationContext());
WifiSensor.getInstance()
.setContext(context.getApplicationContext());
// Intent intent = new Intent(DTClockReceiver.ALARM_ALERT_ACTION);
// PendingIntent pendingIntent = PendingIntent.getBroadcast(context,
// 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
// AlarmManager am = (AlarmManager) context
// .getSystemService(Context.ALARM_SERVICE);
// am.setRepeating(AlarmManager.RTC_WAKEUP, 0, 60 * 1000,
// pendingIntent);
Intent intent = new Intent(context, DTService.class);
context.startService(intent);
}
// Demo更新界面展示代码,应用请在这里加入自己的处理逻辑
updateContent(context, responseString);
}
/**
* 接收透传消息的函数。
*
* @param context
* 上下文
* @param message
* 推送的消息
* @param customContentString
* 自定义内容,为空或者json字符串
*/
@Override
public void onMessage(Context context, String message,
String customContentString) {
String messageString = "透传消息 message=\"" + message
+ "\" customContentString=" + customContentString;
Log.e("rtmap", message);
if (message != null) {
Gson gson = new Gson();
PushMsg msg = gson.fromJson(message, PushMsg.class);
if (msg.getData().getMsg().getContent() != null)
updateNotification(context,
msg.getData().getMsg().getContent(), 1);
else {
updateNotification(context, msg.getData().getMsg().getUrl(), 2);
}
}
// Demo更新界面展示代码,应用请在这里加入自己的处理逻辑
updateContent(context, messageString);
}
/**
* 更新通知
*
* @param context
* @param msg
* @param type
* 消息和推送type:1私信 2关注 3通讯录好友 4定向闹钟 5评论
*/
private void updateNotification(Context context, String msg, int type) {
NotificationManager nm = (NotificationManager) context
.getSystemService(Context.NOTIFICATION_SERVICE);
// 通知点击后进入消息页
Intent i = null;
if (type == 1)
i = new Intent(context, PushDemoActivity.class);
else {
i = new Intent(context, DTProtocalActivity.class);
}
i.putExtra("url", msg);
PendingIntent intent = PendingIntent.getActivity(context, 1, i,
PendingIntent.FLAG_UPDATE_CURRENT);
// Update the notification to indicate that the alert has been
// silenced.
Notification notification = new Notification();
notification.icon = R.drawable.ic_launcher;// 设置通知的图标
notification.tickerText = msg; // 显示在状态栏中的文字
notification.when = System.currentTimeMillis(); // 设置来通知时的时间
notification.defaults = Notification.DEFAULT_SOUND; // 调用系统自带声音
notification.setLatestEventInfo(context,
context.getString(R.string.app_name), msg, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
nm.notify(type, notification);
}
/**
* 接收通知点击的函数。
*
* @param context
* 上下文
* @param title
* 推送的通知的标题
* @param description
* 推送的通知的描述
* @param customContentString
* 自定义内容,为空或者json字符串
*/
@Override
public void onNotificationClicked(Context context, String title,
String description, String customContentString) {
String notifyString = "通知点击 title=\"" + title + "\" description=\""
+ description + "\" customContent=" + customContentString;
Log.d(TAG, notifyString);
// 自定义内容获取方式,mykey和myvalue对应通知推送时自定义内容中设置的键和值
if (!TextUtils.isEmpty(customContentString)) {
JSONObject customJson = null;
try {
customJson = new JSONObject(customContentString);
String myvalue = null;
if (!customJson.isNull("mykey")) {
myvalue = customJson.getString("mykey");
}
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// Demo更新界面展示代码,应用请在这里加入自己的处理逻辑
updateContent(context, notifyString);
}
/**
* 接收通知到达的函数。
*
* @param context
* 上下文
* @param title
* 推送的通知的标题
* @param description
* 推送的通知的描述
* @param customContentString
* 自定义内容,为空或者json字符串
*/
@Override
public void onNotificationArrived(Context context, String title,
String description, String customContentString) {
String notifyString = "onNotificationArrived title=\"" + title
+ "\" description=\"" + description + "\" customContent="
+ customContentString;
Log.d(TAG, notifyString);
// 自定义内容获取方式,mykey和myvalue对应通知推送时自定义内容中设置的键和值
if (!TextUtils.isEmpty(customContentString)) {
JSONObject customJson = null;
try {
customJson = new JSONObject(customContentString);
String myvalue = null;
if (!customJson.isNull("mykey")) {
myvalue = customJson.getString("mykey");
}
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// Demo更新界面展示代码,应用请在这里加入自己的处理逻辑
// 你可以參考 onNotificationClicked中的提示从自定义内容获取具体值
updateContent(context, notifyString);
}
/**
* setTags() 的回调函数。
*
* @param context
* 上下文
* @param errorCode
* 错误码。0表示某些tag已经设置成功;非0表示所有tag的设置均失败。
* @param successTags
* 设置成功的tag
* @param failTags
* 设置失败的tag
* @param requestId
* 分配给对云推送的请求的id
*/
@Override
public void onSetTags(Context context, int errorCode,
List<String> sucessTags, List<String> failTags, String requestId) {
String responseString = "onSetTags errorCode=" + errorCode
+ " sucessTags=" + sucessTags + " failTags=" + failTags
+ " requestId=" + requestId;
Log.d(TAG, responseString);
// Demo更新界面展示代码,应用请在这里加入自己的处理逻辑
updateContent(context, responseString);
}
/**
* delTags() 的回调函数。
*
* @param context
* 上下文
* @param errorCode
* 错误码。0表示某些tag已经删除成功;非0表示所有tag均删除失败。
* @param successTags
* 成功删除的tag
* @param failTags
* 删除失败的tag
* @param requestId
* 分配给对云推送的请求的id
*/
@Override
public void onDelTags(Context context, int errorCode,
List<String> sucessTags, List<String> failTags, String requestId) {
String responseString = "onDelTags errorCode=" + errorCode
+ " sucessTags=" + sucessTags + " failTags=" + failTags
+ " requestId=" + requestId;
Log.d(TAG, responseString);
// Demo更新界面展示代码,应用请在这里加入自己的处理逻辑
updateContent(context, responseString);
}
/**
* listTags() 的回调函数。
*
* @param context
* 上下文
* @param errorCode
* 错误码。0表示列举tag成功;非0表示失败。
* @param tags
* 当前应用设置的所有tag。
* @param requestId
* 分配给对云推送的请求的id
*/
@Override
public void onListTags(Context context, int errorCode, List<String> tags,
String requestId) {
String responseString = "onListTags errorCode=" + errorCode + " tags="
+ tags;
Log.d(TAG, responseString);
// Demo更新界面展示代码,应用请在这里加入自己的处理逻辑
updateContent(context, responseString);
}
/**
* PushManager.stopWork() 的回调函数。
*
* @param context
* 上下文
* @param errorCode
* 错误码。0表示从云推送解绑定成功;非0表示失败。
* @param requestId
* 分配给对云推送的请求的id
*/
@Override
public void onUnbind(Context context, int errorCode, String requestId) {
String responseString = "onUnbind errorCode=" + errorCode
+ " requestId = " + requestId;
Log.d(TAG, responseString);
if (errorCode == 0) {
// 解绑定成功
}
// Demo更新界面展示代码,应用请在这里加入自己的处理逻辑
updateContent(context, responseString);
}
private void updateContent(Context context, String content) {
Log.d(TAG, "updateContent");
String logText = "" + Utils.logStringCache;
if (!logText.equals("")) {
logText += "\n";
}
SimpleDateFormat sDateFormat = new SimpleDateFormat("HH-mm-ss");
logText += sDateFormat.format(new Date()) + ": ";
logText += content;
Utils.logStringCache = logText;
}
}
| [
"dingtao@yintaodeMacBook-Air.local"
] | dingtao@yintaodeMacBook-Air.local |
54a1d89512f23e5ddadd1de8f6d1190eee045780 | 7cc83d1699c0d1b0b2bdf028e540838ce1281c72 | /common/src/main/java/se/samuelandersson/gomoku/GomokuBoardListener.java | 44a9d7d28ba60764a996a1a98ef3cff398db8cc6 | [] | no_license | kyhoolee/Gomoku-2 | 7245c1c67ba3e0fa03a14f9df4bf83675d89d8f7 | d11f3f6f4447e838a774580a20d7973399ac9aa0 | refs/heads/master | 2021-12-15T08:46:29.705835 | 2017-08-05T21:24:11 | 2017-08-05T21:24:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 120 | java | package se.samuelandersson.gomoku;
public interface GomokuBoardListener
{
void onChange(Color color, int x, int y);
} | [
"samuel@samuelandersson.se"
] | samuel@samuelandersson.se |
5844aaf79d066deec5f2e4244bdbc46013241189 | 6da7c6af6fe28766d178b1f20f5c3f7caf19716b | /src/main/java/site/zkd/unnote/model/custom/ResponseList.java | 45c808b078b2ae8da03ff7f2d4787da9dd09d397 | [] | no_license | biewenyun/blog_unnote_20170824 | ff089a0f79921987d4bd69ab78f01ce31239d006 | 606f03f30cc25d9a9a548b35012a04e898442b6d | refs/heads/master | 2021-07-13T00:57:05.215692 | 2017-10-18T14:10:06 | 2017-10-18T14:10:06 | 107,271,828 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 780 | java | package site.zkd.unnote.model.custom;
/**
* 服务器返回给前端的信息
* @param <T>
*/
public class ResponseList<T> {
private int code;
private String msg;
private Object data;
private PageSplit pageSplit;
public int getCode() {
return code;
}
public void setCode(int code) {
this.code = code;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public Object getData() {
return data;
}
public void setData(Object data) {
this.data = data;
}
public PageSplit getPageSplit() {
return pageSplit;
}
public void setPageSplit(PageSplit pageSplit) {
this.pageSplit = pageSplit;
}
} | [
"939212460@qq.com"
] | 939212460@qq.com |
8efcc7809c1bae272adce265e619d6a19f6b4b88 | b7181b4ed2b80d5e02812e955c3afbefdf1efa71 | /PCDServer/src/pcdserver/PCDServer.java | 93f2c32dabb21f6d586771e0ee4b106d0da6939e | [] | no_license | alvaroalmanza88/PCDServer | 0d2f4a816cd0db921267e5a69bd364694d092cfe | 35d75622a0c7d7fb13ad566bbce415e1bb4e4d2b | refs/heads/master | 2021-08-06T09:23:54.043541 | 2017-11-04T20:56:47 | 2017-11-04T20:56:47 | 108,141,787 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 609 | java |
package pcdserver;
/**
* Clase principal del proyecto
* @author Álvaro Camilo Almanza Báez, David Encinas de Frutos, José Miguel Olivares Gil, José Manuel Serrano Ojeda
* @version 1.0.0
*/
public class PCDServer {
/**
* Se instancia la interfaz, se hace visible y se evita que se modifique su
* tamaño.
* @param args no se usan
*/
public static void main(String[] args) {
Principal ventana= new Principal();
ventana.setVisible(true);
ventana.setResizable(false);
ventana.setLocationRelativeTo(null);
}
}
| [
"jose.miguel.olivares.gil@gmail.com"
] | jose.miguel.olivares.gil@gmail.com |
dd958f415621843c019f8bcc6961700698c868dc | 54f352a242a8ad6ff5516703e91da61e08d9a9e6 | /Source Codes/AtCoder/arc091/A/2192600.java | d72acaabb8e967b1c7aa1094a206cefeb9a5d91a | [] | no_license | Kawser-nerd/CLCDSA | 5cbd8a4c3f65173e4e8e0d7ed845574c4770c3eb | aee32551795763b54acb26856ab239370cac4e75 | refs/heads/master | 2022-02-09T11:08:56.588303 | 2022-01-26T18:53:40 | 2022-01-26T18:53:40 | 211,783,197 | 23 | 9 | null | null | null | null | UTF-8 | Java | false | false | 877 | java | import java.util.*;
public class Main {
private long N;
private long M;
public void inputData() {
Scanner sc = new Scanner(System.in);
N = sc.nextLong();
M = sc.nextLong();
}
public void printAnswer() {
/*if (N == 1 && M == 1) {
System.out.println(1);
} else if (N == 1) {
System.out.println(M - 2);
} else if (M == 1) {
System.out.println(N - 2);
} else {
System.out.println((N - 2) * (M - 2));
}*/
if (N > 1) {
N -= 2;
}
if (M > 1) {
M -= 2;
}
System.out.println(N * M);
}
public void run() {
inputData();
printAnswer();
}
public static void main(String[] args) {
(new Main()).run();
}
} | [
"kwnafi@yahoo.com"
] | kwnafi@yahoo.com |
8810e1bfdebc22750e27ca95f3174b36e0115793 | 56540b58842aafeaa07c3b4d520b1c31decff538 | /src/main/java/com/rani/springboot/spring5recipeapplication/repositories/RecipeRepository.java | 56c278dd9a6c35eae9a938490e8461daac445a4c | [] | no_license | GautamiKhante/spring5-recipe-application | 20dd537d8a4a7f802a02c1dae40ffbb723a884fc | c757ad22e3406d6a2bed0bf8d297844ea4c74a33 | refs/heads/master | 2023-01-04T04:55:10.647624 | 2020-10-17T11:43:25 | 2020-10-17T11:43:25 | 279,963,905 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 270 | java | package com.rani.springboot.spring5recipeapplication.repositories;
import com.rani.springboot.spring5recipeapplication.domain.Recipe;
import org.springframework.data.repository.CrudRepository;
public interface RecipeRepository extends CrudRepository<Recipe, Long> {
}
| [
"33024174+GautamiKhante@users.noreply.github.com"
] | 33024174+GautamiKhante@users.noreply.github.com |
f1e6bfa76a42457d4d99bf8b29f4a7544f9b15e9 | 50e8fcfaa9e888e8e0791519526dd2586513258b | /spring-ioc-di-2/src/main/java/com/example/ioc/xml/Money.java | c7c5ab5e83f374c8a8b0b84975a437cd6053cdad | [] | no_license | leejaengjaeng/T-academy-SPRING | ce374514c4026ed775ed0c8865dd3ba810ad9004 | 2cd7ad924f616b50d80081a7e1e353e8d97d025e | refs/heads/master | 2020-04-17T23:26:37.073154 | 2016-09-07T09:06:47 | 2016-09-07T09:06:47 | 66,986,941 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 382 | java | package com.example.ioc.xml;
// VO
// = model, domain , entity, DTO (Data Transfer Object)
public class Money {
private int amount;
public Money() {
// TODO Auto-generated constructor stub
}
public Money(int amount) {
super();
this.amount = amount;
}
public int getAmount() {
return amount;
}
public void setAmount(int amount) {
this.amount = amount;
}
}
| [
"leejaengjaeng@github.com"
] | leejaengjaeng@github.com |
858ce0083794e628c33031f84f1ff5bbbd644bb0 | 28b038ee891b6080d34d99d2ac185eea51b20b79 | /Interfaces_figurasGeometricas/src/figuras/FiguraGeometrica.java | f039e398e68572774f5fc43e23733d78ead27a77 | [] | no_license | mpalliser/Ejercicios_java | 943331c0e6a0408d70d419887966597f7eb7364f | 403c0120b0f9a7389d742c588f9f386ef8dc2911 | refs/heads/master | 2021-01-13T01:18:08.186563 | 2017-04-02T17:10:03 | 2017-04-02T17:10:03 | 81,492,533 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 507 | java | package figuras;
public abstract class FiguraGeometrica implements Drawable {
//Propiedades privadas
private String nombre ;
//Constructor
public FiguraGeometrica(String nombre){
this.nombre = nombre;
}
//seters y getters
public String getNombre(){
return this.nombre;
}
public void setNombre(String nombre){
this.nombre = nombre;
}
//OCP(Open Closed Principle)
public abstract double area();
public void draw(){
System.out.println(this.getNombre() + ": es drawable");
}
}
| [
"mariano.palliser@gmail.com"
] | mariano.palliser@gmail.com |
1c6c7c7a15f8d07d7a242f6bb0005d1d9b0a5397 | e9f77d290fe31f5d0e6d2c61fdb123326a738024 | /src/test/java/datastructs/adt/MatrixDataSetTestRunner.java | 5e77a510950ef7348f5e37c85ddf8b11ac4d7199 | [] | no_license | pockerman/tech3java | b9e7bb58f8a4bae74d4e28c0ac12616a4066294d | 0c126be763aa50f941aab1cfd37f0b49d19706fc | refs/heads/master | 2022-11-20T08:42:00.883282 | 2019-12-27T09:43:12 | 2019-12-27T09:43:12 | 202,491,575 | 1 | 2 | null | 2022-11-15T23:47:46 | 2019-08-15T07:05:24 | Java | UTF-8 | Java | false | false | 981 | java | package datastructs.adt;
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
public class MatrixDataSetTestRunner {
public static void run(String[] args){
System.out.println("============================");
System.out.println("Start executing MatrixDataSet tests");
Result result = JUnitCore.runClasses(MatrixDataSetTest.class);
if( !result.wasSuccessful()) {
for (Failure failure : result.getFailures()) {
System.out.println(failure.toString());
}
}
else{
System.out.println("\tAll tests passed: "+ result.getRunCount());
}
System.out.println("\tTest run time: "+ result.getRunTime());
System.out.println("Done....");
System.out.println("============================");
}
public static void main(String[] args) {
MatrixDataSetTestRunner.run(args);
}
}
| [
"a.giavaras@gmail.com"
] | a.giavaras@gmail.com |
23bbd8d2baef9e670fb3087f3be8e11bfff2eec0 | 8fa23d7383a122dafbff5b01b6251e6e51c26241 | /src/SalamaApprovalFlow/src/com/salama/approvalflow/meta/util/ApprovalFlowMetaUtil.java | bce81caba4f6c817465d2f55eca7ad7a1d64cf38 | [
"MIT"
] | permissive | SalamaSoft/workflow | 30f328902eaae6a5257a551cd9efb0c30610bd6e | 63efed781b8b0486ddd3c76591cf1f7b35129ae5 | refs/heads/master | 2021-01-10T15:33:18.544885 | 2016-08-30T05:56:07 | 2016-08-30T05:56:07 | 44,440,594 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 8,063 | java | package com.salama.approvalflow.meta.util;
import java.util.List;
import com.salama.approvalflow.meta.designer.ApprovalActivity;
import com.salama.approvalflow.meta.designer.ApprovalActivityNames;
import com.salama.approvalflow.meta.designer.ApprovalFlow;
import com.salama.approvalflow.meta.designer.ApprovalState;
import com.salama.approvalflow.meta.designer.ApprovalTransitionNames;
import com.salama.approvalflow.runtime.application.ApprovalApp;
import com.salama.workflow.core.meta.Activity;
import com.salama.workflow.core.meta.Application;
import com.salama.workflow.core.meta.Condition;
import com.salama.workflow.core.meta.Event;
import com.salama.workflow.core.meta.Param;
import com.salama.workflow.core.meta.Role;
import com.salama.workflow.core.meta.SetValue;
import com.salama.workflow.core.meta.State;
import com.salama.workflow.core.meta.Transition;
import com.salama.workflow.core.meta.WorkFlow;
import com.salama.workflow.core.persistence.StateInstance;
public class ApprovalFlowMetaUtil {
private ApprovalFlowMetaUtil() {
}
public static WorkFlow approvalFlowToMeta(ApprovalFlow approvalFlow) {
WorkFlow workFlowMeta = new WorkFlow();
workFlowMeta.setName(approvalFlow.getName());
workFlowMeta.setDescription(approvalFlow.getDescription());
workFlowMeta.setAllRoles(approvalFlow.getAllRoles());
//states
State state = null;
State startState = null;
for(int i = 0; i < approvalFlow.getAllStates().size(); i++) {
state = approvalStateToMeta(approvalFlow.getAllStates().get(i));
workFlowMeta.getAllStates().add(state);
if(i == 0) {
startState = state;
}
}
workFlowMeta.setStartState(startState.getName());
return workFlowMeta;
}
public static State approvalStateToMeta(ApprovalState approvalState) {
State state = new State();
state.setName(approvalState.getName());
state.setDescription(approvalState.getDescription());
state.setAccessibleRoles(approvalState.getAccessibleRoles());
state.setStateData(approvalState.getStateData());
state.setStateUserDefineSetting(approvalState.getStateUserDefineSetting());
state.setStateDataUISetting(approvalState.getStateDataUISetting());
state.setStateType(approvalState.getStateType());
ApprovalActivity approvalActivity = null;
Activity activity = null;
Event event = null;
for(int i =0; i < approvalState.getActivityList().size(); i++) {
approvalActivity = approvalState.getActivityList().get(i);
activity = approvalActivityToMeta(state.getName(), approvalState.getAccessibleRoles(), approvalActivity);
state.getActivities().add(activity);
event = new Event();
event.setActivityName(activity.getName());
event.setName(activity.getName());
state.getActivityEvents().add(event);
}
return state;
}
public static Activity approvalActivityToMeta(String currentStateName, List<Role> accessibleRoles, ApprovalActivity approvalActivity) {
Activity activity = new Activity();
activity.setName(approvalActivity.getName());
activity.setDescription(approvalActivity.getDescription());
activity.setAccessibleRoles(accessibleRoles);
Application app = new Application();
app.setName(approvalActivity.getName());
app.setDescription(approvalActivity.getDescription());
app.setApplicationClass(ApprovalApp.class.getName());
Param param = new Param();
//stateInstance
param.setValueExpression("#this");
param.setParamType(StateInstance.class.getName());
app.getParams().add(param);
if(approvalActivity.getName().equals(ApprovalActivityNames.Approve)) {
app.setMethodName("approve");
} else if(approvalActivity.getName().equals(ApprovalActivityNames.Disapprove)) {
app.setMethodName("disapprove");
}
activity.setApplication(app);
{
//Move to next
Transition transitionMoveToNext = new Transition();
transitionMoveToNext.setName(ApprovalTransitionNames.MoveToNextState);
SetValue setValue = new SetValue();
setValue.setSrcExpression("stateData");
setValue.setDestExpression("stateData");
transitionMoveToNext.getSetValueToToState().add(setValue);
transitionMoveToNext.setToState(approvalActivity.getToState());
Condition conditionMoveToNext = new Condition();
conditionMoveToNext.setBoolExpression(approvalActivity.getBoolExpressionForMoveToNext());
conditionMoveToNext.getConditionHandler().setHandlerClass(approvalActivity.getCondtionHandlerClass());
transitionMoveToNext.setConditionExpression(conditionMoveToNext);
activity.getTransitions().add(transitionMoveToNext);
}
//Stay on current state
{
Transition transitionStayOnCurrentState = new Transition();
transitionStayOnCurrentState.setName(ApprovalTransitionNames.StayOnCurrentState);
SetValue setValueStayOnCurrentState = new SetValue();
setValueStayOnCurrentState.setSrcExpression("stateData");
setValueStayOnCurrentState.setDestExpression("stateData");
transitionStayOnCurrentState.getSetValueToToState().add(setValueStayOnCurrentState);
transitionStayOnCurrentState.setToState(currentStateName);
Condition conditionStayOnCurrentState = new Condition();
conditionStayOnCurrentState.setBoolExpression("!(" + approvalActivity.getBoolExpressionForMoveToNext() + ")");
conditionStayOnCurrentState.getConditionHandler().setHandlerClass(approvalActivity.getCondtionHandlerClass());
transitionStayOnCurrentState.setConditionExpression(conditionStayOnCurrentState);
activity.getTransitions().add(transitionStayOnCurrentState);
}
return activity;
}
public static ApprovalFlow metaToApprovalFlow(WorkFlow workFlowMeta) {
ApprovalFlow approvalFlow = new ApprovalFlow();
approvalFlow.setName(workFlowMeta.getName());
approvalFlow.setDescription(workFlowMeta.getDescription());
approvalFlow.setAllRoles(workFlowMeta.getAllRoles());
//states
ApprovalState approvalState = null;
for(int i = 0; i < workFlowMeta.getAllStates().size(); i++) {
approvalState = metaToApprovalState(workFlowMeta.getAllStates().get(i));
approvalFlow.getAllStates().add(approvalState);
}
return approvalFlow;
}
public static ApprovalState metaToApprovalState(State state) {
ApprovalState approvalState = new ApprovalState();
approvalState.setName(state.getName());
approvalState.setDescription(state.getDescription());
approvalState.setAccessibleRoles(state.getAccessibleRoles());
approvalState.setStateData(state.getStateData());
approvalState.setStateUserDefineSetting(state.getStateUserDefineSetting());
approvalState.setStateDataUISetting(state.getStateDataUISetting());
approvalState.setStateType(state.getStateType());
ApprovalActivity approvalActivity = null;
Activity activity = null;
for(int i =0; i < state.getActivities().size(); i++) {
activity = state.getActivities().get(i);
approvalActivity = metaToApprovalActivity(activity);
approvalState.getActivityList().add(approvalActivity);
}
return approvalState;
}
public static ApprovalActivity metaToApprovalActivity(Activity activity) {
ApprovalActivity approvalActivity = new ApprovalActivity();
approvalActivity.setName(activity.getName());
approvalActivity.setDescription(activity.getDescription());
if(activity.getTransitions().size() > 0) {
for(Transition transition: activity.getTransitions()) {
if(transition.getName().equals(ApprovalTransitionNames.MoveToNextState)) {
approvalActivity.setToState(transition.getToState());
approvalActivity.setBoolExpressionForMoveToNext(transition.getConditionExpression().getBoolExpression());
if(transition.getConditionExpression().getConditionHandler() != null) {
approvalActivity.setCondtionHandlerClass(transition.getConditionExpression().getConditionHandler().getHandlerClass());
}
break;
}
}
}
return approvalActivity;
}
}
| [
"beef.liu@gmail.com"
] | beef.liu@gmail.com |
8f30160c42233a0171160d518e5fdcf1f19448ec | 947060da682450b6a8c3f9727ac1c3e1c36c4f0a | /vpxdebugger/src/main/java/com/peralex/utilities/ui/graphs/graphBase/GraphWrapper.java | 4774ca3eac00e687004f4439713d221c2e06af3d | [] | no_license | nathanr123/vpxdebugger | 715847316cb3d04080832839b0fa6f512fac0a34 | e8cfd5c3adfed6eb9f115d4b87557fb0d2b11399 | refs/heads/master | 2021-01-19T13:52:32.272016 | 2015-09-10T01:43:49 | 2015-09-10T01:43:49 | 42,190,419 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 23,507 | java | package com.peralex.utilities.ui.graphs.graphBase;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Font;
import java.awt.GridBagConstraints;
import java.util.ResourceBundle;
import javax.swing.JComponent;
import javax.swing.JPanel;
import com.peralex.utilities.locale.ILocaleListener;
import com.peralex.utilities.locale.PeralexLibsBundle;
import com.peralex.utilities.ui.SwingLib;
import com.peralex.utilities.ui.graphs.axisscale.AbstractAxisScale;
import com.peralex.utilities.ui.graphs.axisscale.AbstractDefaultAxisScale;
import com.peralex.utilities.ui.graphs.axisscale.NumberAxisScale;
/**
* This wraps the graph proper and provides titles, x-axis and y-axis labels, and a co-ordinate panel.
*
* This version tries to scale with system font settings. It also tries to
* gracefully scale with resizing windows. It uses the default system font
* settings.
*
* FIXME: we have the names of some methods confused. e.g. setXAxisVisible() should be called setXAxisScaleVisible()
* and setXAxisScaleVisible() should be called setXAxisPanelVisible().
*
* FIXME: de-couple the relationship between this and cGraphBase by using an interface.
* Gives me more options when creating new kinds of graphs.
*
* FIXME rename the coordinates panel to something like MouseCoordinatesPanel to distinguish it from line-cursors.
*
* @author Andre
* @author Noel Grandin
*/
public class GraphWrapper extends javax.swing.JPanel implements ILocaleListener
{
/** The resource bundle used for multilingual support */
private ResourceBundle textRes = PeralexLibsBundle.getResource();
/**
* Stores the reference to the Graph that is added.
*
* Note: this can be null if we operating purely as a layout class.
*/
private ZoomDrawSurface oGraph;
/**
* These store the Titles and Units of the Axis'.
*/
private String sXAxisTitle = "", sXAxisUnit = "", sYAxisTitle = "",
sYAxisUnit = "";
private AbstractAxisScale oXAxisScale = new NumberAxisScale(AbstractDefaultAxisScale.X_AXIS);
private AbstractAxisScale oYAxisScale = new NumberAxisScale(AbstractDefaultAxisScale.Y_AXIS);
/**
* Creates new form cGraphWrapper
*/
public GraphWrapper()
{
initComponents();
/*
* make the default title font be 20% bigger than the default font, and bold
*/
Font titleFont = oTitleLabel.getFont();
titleFont = titleFont.deriveFont(titleFont.getSize() * 1.2f);
titleFont = titleFont.deriveFont(Font.BOLD);
setTitleFont(titleFont);
PeralexLibsBundle.addLocaleListener(this); //do after components have been initialised
}
/**
* Creates new form cGraphWrapper
*/
public GraphWrapper(ZoomDrawSurface oGraph)
{
this();
setGraph(oGraph);
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
// <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
private void initComponents()
{
java.awt.GridBagConstraints gridBagConstraints;
oTitlePanel = new javax.swing.JPanel();
oHeaderLeftExtraPanel = new javax.swing.JPanel();
oTitleLabel = new javax.swing.JLabel();
oHeaderRightExtraPanel = new javax.swing.JPanel();
oCoordinatesPanel = new com.peralex.utilities.ui.graphs.graphBase.CoordinatesPanel();
oHeaderBottomExtraPanel = new javax.swing.JPanel();
oGraphContainerPanel = new javax.swing.JPanel();
oXAxisContainerPanel = new javax.swing.JPanel();
oYAxisLabel = new com.peralex.utilities.ui.graphs.graphBase.YAxisLabel();
oYAxisContainerPanel = new javax.swing.JPanel();
oXAxisLabel = new javax.swing.JLabel();
oTopLeftCornerPanel = new javax.swing.JPanel();
oBottomLeftCornerPanel = new javax.swing.JPanel();
oXAxisExtraPanel = new javax.swing.JPanel();
setLayout(new java.awt.GridBagLayout());
oTitlePanel.setLayout(new java.awt.GridBagLayout());
oHeaderLeftExtraPanel.setLayout(new java.awt.BorderLayout());
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 1;
gridBagConstraints.fill = java.awt.GridBagConstraints.VERTICAL;
gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
oTitlePanel.add(oHeaderLeftExtraPanel, gridBagConstraints);
oTitleLabel.setText("Graph Title");
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 1;
gridBagConstraints.gridy = 1;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.anchor = java.awt.GridBagConstraints.WEST;
gridBagConstraints.weightx = 1.0;
gridBagConstraints.insets = new java.awt.Insets(0, 0, 0, 2);
oTitlePanel.add(oTitleLabel, gridBagConstraints);
oHeaderRightExtraPanel.setLayout(new java.awt.BorderLayout());
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 2;
gridBagConstraints.gridy = 1;
gridBagConstraints.fill = java.awt.GridBagConstraints.VERTICAL;
gridBagConstraints.anchor = java.awt.GridBagConstraints.EAST;
oTitlePanel.add(oHeaderRightExtraPanel, gridBagConstraints);
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 3;
gridBagConstraints.gridy = 1;
gridBagConstraints.anchor = java.awt.GridBagConstraints.EAST;
oTitlePanel.add(oCoordinatesPanel, gridBagConstraints);
oHeaderBottomExtraPanel.setLayout(new java.awt.BorderLayout());
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 2;
gridBagConstraints.gridwidth = 4;
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
oTitlePanel.add(oHeaderBottomExtraPanel, gridBagConstraints);
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 2;
gridBagConstraints.gridy = 0;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.weightx = 1.0;
add(oTitlePanel, gridBagConstraints);
oGraphContainerPanel.setLayout(new java.awt.BorderLayout());
oGraphContainerPanel.setBackground(new java.awt.Color(153, 153, 153));
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 2;
gridBagConstraints.gridy = 1;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.weightx = 1.0;
gridBagConstraints.weighty = 1.0;
add(oGraphContainerPanel, gridBagConstraints);
oXAxisContainerPanel.setLayout(new java.awt.BorderLayout());
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 2;
gridBagConstraints.gridy = 2;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.weightx = 1.0;
add(oXAxisContainerPanel, gridBagConstraints);
oYAxisLabel.setLayout(new java.awt.FlowLayout());
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 1;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.weighty = 1.0;
add(oYAxisLabel, gridBagConstraints);
oYAxisContainerPanel.setLayout(new java.awt.BorderLayout());
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 1;
gridBagConstraints.gridy = 1;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.weighty = 1.0;
add(oYAxisContainerPanel, gridBagConstraints);
oXAxisLabel.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
oXAxisLabel.setText(textRes.getString("X-Axis"));
oXAxisLabel.setVerticalAlignment(javax.swing.SwingConstants.TOP);
oXAxisLabel.setVerticalTextPosition(javax.swing.SwingConstants.TOP);
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 2;
gridBagConstraints.gridy = 3;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.weightx = 1.0;
add(oXAxisLabel, gridBagConstraints);
oTopLeftCornerPanel.setLayout(new java.awt.BorderLayout());
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 0;
gridBagConstraints.gridwidth = 2;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
add(oTopLeftCornerPanel, gridBagConstraints);
oBottomLeftCornerPanel.setLayout(new java.awt.BorderLayout());
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 2;
gridBagConstraints.gridwidth = 2;
gridBagConstraints.gridheight = 3;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
add(oBottomLeftCornerPanel, gridBagConstraints);
oXAxisExtraPanel.setLayout(new java.awt.BorderLayout());
gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 2;
gridBagConstraints.gridy = 4;
gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
gridBagConstraints.weightx = 1.0;
add(oXAxisExtraPanel, gridBagConstraints);
}// </editor-fold>//GEN-END:initComponents
private class MyGridListener implements IGridListener
{
public void mouseCoordinatesChanged(GridDrawSurface surface, final double fXValue,
final double fYValue)
{
if (oCoordinatesPanel != null)
{
oCoordinatesPanel.setCoordinates(fXValue / oGraph.getXScalingFactor(), fYValue
/ oGraph.getYScalingFactor());
}
}
public void scalingFactorChanged(GridDrawSurface surface, long lXScalingFactor,
String sXScaleUnit, long lYScalingFactor, String sYScaleUnit)
{
updateCoordinatesPanelSuffixes();
if (!sXAxisUnit.equals(""))
{
oXAxisLabel.setText(sXAxisTitle + " (" + sXScaleUnit + sXAxisUnit + ")");
}
if (!sYAxisUnit.equals(""))
{
oYAxisLabel.setText(sYAxisTitle + " (" + sYScaleUnit + sYAxisUnit + ")");
}
}
public void gridChanged(int axis, double minimum, double maximum, long scalingFactor,
boolean proportional, double[] afGridValues, int[] aiGridCoordinates) {
}
}
private final MyGridListener gridListener = new MyGridListener();
/**
* This will add the graph to the Wrapper.
*/
public final void setGraph(final ZoomDrawSurface _oGraph)
{
this.oGraph = _oGraph;
oXAxisScale.linkToX(this.oGraph);
oYAxisScale.linkToY(this.oGraph);
oGraph.addGridListener(gridListener);
oGraphContainerPanel.add(oGraph);
oXAxisContainerPanel.add(oXAxisScale);
oXAxisScale.setOffsetFirstLabel(true);
oYAxisContainerPanel.add(oYAxisScale);
updateCoordinatesPanelSuffixes();
}
/**
* This is a very raw method for adding stuff to a GraphWrapper.
* It means that you are using the wrapper purely as a layout class,
* and none of the axis and cursor/coordinate stuff is in operation.
*/
public final void setGraph(Component _oGraph, Component oXAxis, Component oYAxis)
{
oGraphContainerPanel.add(_oGraph);
oXAxisContainerPanel.add(oXAxis);
oYAxisContainerPanel.add(oYAxis);
}
/**
* Remove the current Graph component.
*/
public final void removeGraph()
{
oGraph.removeGridListener(gridListener);
oGraphContainerPanel.remove(oGraph);
oXAxisContainerPanel.remove(oXAxisScale);
oYAxisContainerPanel.remove(oYAxisScale);
this.oGraph = null;
}
/**
* This will set the visibility of the x-scale i.e. the thing with numbers and marks on it.
*/
public void setXAxisVisible(boolean bVisible)
{
oXAxisScale.setVisible(bVisible);
}
public boolean isXAxisVisible()
{
return oXAxisScale.isVisible();
}
/**
* This will set the visibility of the y-scale i.e. the thing with numbers and marks on it.
*/
public void setYAxisVisible(boolean bVisible)
{
oYAxisScale.setVisible(bVisible);
}
public boolean isYAxisVisible()
{
return oYAxisScale.isVisible();
}
/**
* sets visibility for both x- and y-axis labels
*/
public void setAxisLabelsVisible(boolean bVisible)
{
setXAxisLabelVisible(bVisible);
setYAxisLabelVisible(bVisible);
}
public boolean isAxisLabelsVisible()
{
return isXAxisLabelVisible() && isYAxisLabelVisible();
}
/**
* This will set the X- and Y-Axis container panel visibility.
*/
public void setAxisScalesVisible(boolean bVisible)
{
setXAxisScaleVisible(bVisible);
setYAxisScaleVisible(bVisible);
}
public boolean isAxisScalesVisible()
{
return isXAxisScaleVisible() && isYAxisScaleVisible();
}
/**
* This will set the XAxis Label visibility.
*/
public void setXAxisLabelVisible(boolean bVisible)
{
oXAxisLabel.setVisible(bVisible);
}
public boolean isXAxisLabelVisible()
{
return oXAxisLabel.isVisible();
}
/**
* This will set the XAxis container panel visibility.
*/
public void setXAxisScaleVisible(boolean bVisible)
{
oXAxisContainerPanel.setVisible(bVisible);
}
public boolean isXAxisScaleVisible()
{
return oXAxisContainerPanel.isVisible();
}
/**
* This will set the YAxis Label visibility.
*/
public void setYAxisLabelVisible(boolean bVisible)
{
oYAxisLabel.setVisible(bVisible);
}
public boolean isYAxisLabelVisible()
{
return oYAxisLabel.isVisible();
}
/**
* This will set the YAxis container panel visibility.
*/
public void setYAxisScaleVisible(boolean bVisible)
{
oYAxisContainerPanel.setVisible(bVisible);
}
public boolean isYAxisScaleVisible()
{
return oYAxisContainerPanel.isVisible();
}
/**
* set the visibility of the cursor co-ordinates panel.
*/
public void setCursorCoordinatesVisible(boolean bVisible)
{
oCoordinatesPanel.setVisible(bVisible);
}
/**
* This will set the Title of the Graph.
*/
public void setTitle(String sTitle)
{
oTitleLabel.setText(sTitle);
}
public String getTitle()
{
return oTitleLabel.getText();
}
public void setTitleFont(Font oFont)
{
oTitleLabel.setFont(oFont);
}
public Font getTitleFont()
{
return oTitleLabel.getFont();
}
/**
* Sets the alignment of the title along the X axis.
*
* @see javax.swing.SwingConstants
*
* @param alignment One of the following constants
* defined in <code>SwingConstants</code>:
* <code>LEFT</code>,
* <code>CENTER</code> (the default for image-only labels),
* <code>RIGHT</code>,
* <code>LEADING</code> (the default for text-only labels) or
* <code>TRAILING</code>.
*/
public void setTitleHorizontalAlignment(int alignment)
{
oTitleLabel.setHorizontalAlignment(alignment);
}
public int getTitleHorizontalAlignment()
{
return oTitleLabel.getHorizontalAlignment();
}
public void setTitleForeground(Color oColor)
{
oTitleLabel.setForeground(oColor);
}
public void setCursorCoordinatesFont(Font oFont)
{
oCoordinatesPanel.setFont(oFont);
}
/**
* sets fonts for both x- and y- axes
*/
public void setAxisLabelFont(Font oFont)
{
oXAxisLabel.setFont(oFont);
oYAxisLabel.setFont(oFont);
}
/**
* sets label background for both x- and y-axes
*/
public void setAxisLabelForeground(Color oColor)
{
oXAxisLabel.setForeground(oColor);
oYAxisLabel.setForeground(oColor);
}
/**
* FIXME: need a better name for this method
*/
public void setGraphContainerPanelBackground(Color oColor)
{
oGraphContainerPanel.setBackground(oColor);
}
public void setCursorCoordinatesBackground(Color oColor)
{
oCoordinatesPanel.setBackground(oColor);
}
/**
* This will set the Title of both the Axis of the Graph.
*/
public void setAxisTitles(String sXAxisTitle, String sYAxisTitle)
{
setAxisTitlesAndUnits(sXAxisTitle, this.sXAxisUnit, sYAxisTitle, this.sYAxisUnit);
}
public void setYAxisTitle(String sYAxisTitle)
{
setAxisTitlesAndUnits(sXAxisTitle, sXAxisUnit, sYAxisTitle, sYAxisUnit);
}
public void setXAxisTitle(String sXAxisTitle)
{
setAxisTitlesAndUnits(sXAxisTitle, sXAxisUnit, sYAxisTitle, sYAxisUnit);
}
public void setXAxisUnit(String sXAxisUnit)
{
setAxisTitlesAndUnits(sXAxisTitle, sXAxisUnit, sYAxisTitle, sYAxisUnit);
}
public void setYAxisUnit(String sYAxisUnit)
{
setAxisTitlesAndUnits(sXAxisTitle, sXAxisUnit, sYAxisTitle, sYAxisUnit);
}
/**
* This will set the Title and Units of both the Axis of the Graph.
*/
public void setAxisTitlesAndUnits(String sXAxisTitle,
String sXAxisUnit, String sYAxisTitle, String sYAxisUnit)
{
this.sXAxisTitle = sXAxisTitle;
this.sXAxisUnit = sXAxisUnit;
this.sYAxisTitle = sYAxisTitle;
this.sYAxisUnit = sYAxisUnit;
updateCoordinatesPanelSuffixes();
SwingLib.invokeAndWaitSafe(new Runnable()
{
public void run()
{
internalSetAxisTitlesAndUnits();
}
});
}
private void internalSetAxisTitlesAndUnits()
{
if (GraphWrapper.this.sXAxisUnit != null && !GraphWrapper.this.sXAxisUnit.equals(""))
{
final String xScaleUnit = oGraph==null ? "" : oGraph.getXScaleUnit();
oXAxisLabel.setText(GraphWrapper.this.sXAxisTitle + " (" + xScaleUnit
+ GraphWrapper.this.sXAxisUnit + ")");
}
else
{
oXAxisLabel.setText(GraphWrapper.this.sXAxisTitle);
}
if (GraphWrapper.this.sYAxisUnit != null && !GraphWrapper.this.sYAxisUnit.equals(""))
{
final String yScaleUnit = oGraph==null ? "" : oGraph.getYScaleUnit();
oYAxisLabel.setText(GraphWrapper.this.sYAxisTitle + " (" + yScaleUnit
+ GraphWrapper.this.sYAxisUnit + ")");
}
else
{
oYAxisLabel.setText(GraphWrapper.this.sYAxisTitle);
}
}
private void updateCoordinatesPanelSuffixes()
{
if (oGraph!=null && oCoordinatesPanel!=null)
{
final String sXSuffix = oGraph.getXScaleUnit() + (sXAxisUnit==null ? "" : sXAxisUnit);
final String sYSuffix = oGraph.getYScaleUnit() + (sYAxisUnit==null ? "" : sYAxisUnit);
oCoordinatesPanel.setCoordinateSuffixes(sXSuffix, sYSuffix);
}
}
/**
* Add an extra component below the x-axis panel.
* Useful for additional GUI elements that need to be the same width as the x-axis.
*/
public void addXAxisExtra(JComponent oExtraComponent)
{
oXAxisExtraPanel.add(oExtraComponent, BorderLayout.CENTER);
}
/**
* This panel is meant for adding extra functionality to the x-axis area.
* By default, it has a BorderLayout.
*
* Useful for additional GUI elements that need to be the same width as the x-axis.
*/
public JPanel getXAxisExtraPanel()
{
return oXAxisExtraPanel;
}
/**
* Add an extra component to the right of the graph draw surface.
* This component is sized to the same height as the graph draw
* surface, but is positioned to the right of the graph and
* the title area.
*
* FIXME we should check that only one component gets added
*/
public void setGraphRightExtra(JComponent oExtraComponent)
{
GridBagConstraints gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 3;
gridBagConstraints.gridy = 1;
gridBagConstraints.fill = java.awt.GridBagConstraints.VERTICAL;
gridBagConstraints.weighty = 1.0;
add(oExtraComponent, gridBagConstraints);
}
/**
* This panel is meant for adding extra functionality to the header area, between the title
* and the co-ordinates panel.
*
* By default, it has a BorderLayout.
*/
public JPanel getHeaderRightExtraPanel()
{
return oHeaderRightExtraPanel;
}
/**
* This panel is meant for adding extra functionality to the header area, between the title
* and the left edge of the graph.
*
* By default, it has a BorderLayout.
*/
public JPanel getHeaderLeftExtraPanel()
{
return oHeaderLeftExtraPanel;
}
/**
* This panel is meant for adding extra functionality to the header area, between the title
* and the top edge of the graph.
* It spans the width of the graph.
* Useful for adding components to the top of the graph that need to be exactly as wide as the
* graph.
*
* By default, it has a BorderLayout.
*/
public JPanel getHeaderBottomExtraPanel()
{
return oHeaderBottomExtraPanel;
}
/**
* Get the top left corner panel.
* This method is so that clients of this class can add extra widgets to that space.
*
* By default, it has a BorderLayout.
*/
public JPanel getTopLeftCornerPanel()
{
return oTopLeftCornerPanel;
}
/**
* Get the bottom left corner panel.
* This method is so that clients of this class can add extra widgets to that space.
*
* By default, it has a BorderLayout.
*/
public JPanel getBottomLeftCornerPanel()
{
return oBottomLeftCornerPanel;
}
/**
* This will add the given component to the HeaderPanel at the top,
* spanning the full width of the header panel, sitting above the title and co-ordinates panel.
*/
public void addAboveHeaderPanel(JComponent oExtraComponent)
{
GridBagConstraints oGridBagConstraints = new GridBagConstraints();
oGridBagConstraints.gridx = 0;
oGridBagConstraints.gridy = 0;
oGridBagConstraints.gridwidth = 4;
oGridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
oTitlePanel.add(oExtraComponent, oGridBagConstraints);
}
/**
* This will remove the current co-ordinates panel, and disconnect the auto-updating
* of the coordinates that normally happens.
*/
public void replaceCoordinatesPanel(JPanel newCoordinatesPanel)
{
if (oCoordinatesPanel==null) throw new IllegalStateException("panel already been replaced");
oTitlePanel.remove(oCoordinatesPanel);
oCoordinatesPanel = null;
java.awt.GridBagConstraints gridBagConstraints = new java.awt.GridBagConstraints();
gridBagConstraints.gridx = 3;
gridBagConstraints.gridy = 0;
gridBagConstraints.anchor = java.awt.GridBagConstraints.EAST;
oTitlePanel.add(newCoordinatesPanel, gridBagConstraints);
oTitlePanel.revalidate();
oTitlePanel.repaint();
}
public void replaceYAxis(JComponent newAxis)
{
oYAxisContainerPanel.removeAll();
oYAxisContainerPanel.add(newAxis);
}
public void setXCoordinateDecimalFormat(String oFormat)
{
oCoordinatesPanel.setXCoordinateDecimalFormat(oFormat);
}
public void setYCoordinateDecimalFormat(String oFormat)
{
oCoordinatesPanel.setYCoordinateDecimalFormat(oFormat);
}
/**
* This method is called when the locale has been changed. The listener should
* then update the visual components.
*/
public void componentsLocaleChanged()
{
textRes = PeralexLibsBundle.getResource();
oXAxisLabel.setText(textRes.getString("X-Axis"));
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JPanel oBottomLeftCornerPanel;
private com.peralex.utilities.ui.graphs.graphBase.CoordinatesPanel oCoordinatesPanel;
private javax.swing.JPanel oGraphContainerPanel;
private javax.swing.JPanel oHeaderBottomExtraPanel;
private javax.swing.JPanel oHeaderLeftExtraPanel;
private javax.swing.JPanel oHeaderRightExtraPanel;
private javax.swing.JLabel oTitleLabel;
private javax.swing.JPanel oTitlePanel;
private javax.swing.JPanel oTopLeftCornerPanel;
private javax.swing.JPanel oXAxisContainerPanel;
private javax.swing.JPanel oXAxisExtraPanel;
private javax.swing.JLabel oXAxisLabel;
private javax.swing.JPanel oYAxisContainerPanel;
private com.peralex.utilities.ui.graphs.graphBase.YAxisLabel oYAxisLabel;
// End of variables declaration//GEN-END:variables
}
| [
"AbiAchu@DESKTOP-DP8HR9K"
] | AbiAchu@DESKTOP-DP8HR9K |
aa906c2de05fb6fb145da103884f328658e611c8 | 33d9aeb2a0a0dfa69e3afe529a80c2768d35adec | /src/preprocess/ImgStatistic.java | 38cb80ddc555b5a54ce5082325cf98591b8779fd | [] | no_license | goldyliang/pattern-recognition | 73b0a122a4cac3877499807846dd5ed789e20f46 | 3585df812a8e43103b1e1cbd41bdb0fb6e541a23 | refs/heads/master | 2021-01-11T03:01:22.091035 | 2016-11-10T14:10:35 | 2016-11-10T14:10:35 | 70,866,020 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 150 | java | package preprocess;
/**
* Created by gordon on 10/9/16.
*/
public class ImgStatistic {
public int xc, yc;
public double deltax, deltay;
}
| [
"goldyliang@gmail.com"
] | goldyliang@gmail.com |
bb8e18d02db007312d758e00a014bd5ea02359b1 | 6635387159b685ab34f9c927b878734bd6040e7e | /src/cgq.java | 93dc7adf8c50d492e00282e81862f94a41c34391 | [] | no_license | RepoForks/com.snapchat.android | 987dd3d4a72c2f43bc52f5dea9d55bfb190966e2 | 6e28a32ad495cf14f87e512dd0be700f5186b4c6 | refs/heads/master | 2021-05-05T10:36:16.396377 | 2015-07-16T16:46:26 | 2015-07-16T16:46:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 370 | java | final class cgq
implements cgi
{
Class a;
String b;
int c;
cgq(Class paramClass, String paramString, int paramInt)
{
a = paramClass;
b = paramString;
c = paramInt;
}
public final String toString()
{
return b + ":" + c;
}
}
/* Location:
* Qualified Name: cgq
* Java Class Version: 6 (50.0)
* JD-Core Version: 0.7.1
*/ | [
"reverseengineeringer@hackeradmin.com"
] | reverseengineeringer@hackeradmin.com |
6e1b6958f226289019a6039b1f2b4ea86d18cf68 | fa6fc60295c1cfb4d98fb563beea05a9b1536781 | /app/src/androidTest/java/com/example/kim/wordten/ExampleInstrumentedTest.java | 038c6108a9c5fc62b5d73713654097f11a0ab43e | [] | no_license | kimyumyum/WordTen | 86fb804a8a281c9cb6e265db9ed97bcace14332f | 9920189a5ad156e72fa16f44408d90ad1b533c46 | refs/heads/master | 2020-06-15T00:35:52.015955 | 2016-11-30T12:37:17 | 2016-11-30T12:37:17 | 75,185,495 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 750 | java | package com.example.kim.wordten;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumentation test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() throws Exception {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.example.kim.wordten", appContext.getPackageName());
}
}
| [
"kimyumyum@gmail.com"
] | kimyumyum@gmail.com |
5fc2e6c7849d606728c17bb2184c7e9d4a62a7aa | d4708bc25f981cf96d1df400bd69dd288c962172 | /command/remote/GarageDoor.java | 69ab9d2eb3636f0550ac098f3eed948befa812ab | [] | no_license | chenlongteam/headfirst-java | 484697f900642e491950768aea1eff48b299daf1 | 5e09f7cbeae83463405d723657ebb9af10357082 | refs/heads/master | 2020-09-26T09:07:41.577643 | 2019-12-06T01:53:59 | 2019-12-06T01:54:29 | 226,223,642 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 577 | java | package headfirstsource.command.remote;
public class GarageDoor {
String location;
public GarageDoor(String location) {
this.location = location;
}
public void up() {
System.out.println(location + " garage Door is Up");
}
public void down() {
System.out.println(location + " garage Door is Down");
}
public void stop() {
System.out.println(location + " garage Door is Stopped");
}
public void lightOn() {
System.out.println(location + " garage light is on");
}
public void lightOff() {
System.out.println(location + " garage light is off");
}
}
| [
"zxsz4084@163.com"
] | zxsz4084@163.com |
1160dc2b64c284cbd6e8ad121fff68ea5b8d97e6 | 8e8dfc63388cd954155559071dde3f3660157e1b | /src/main/java/com/shady/netty/timeserver/TimeEncoder.java | 345bf5ca28b709d178cd20d27db66e91688a7e58 | [] | no_license | talk114/netty-tutorial | 24bcce107a5461489249e99d456e06a46d15d364 | aaed8ea5a032b24591d29f618f90d8ad02bdcfa5 | refs/heads/master | 2021-01-20T16:05:05.461655 | 2015-05-24T19:26:11 | 2015-05-24T19:26:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,018 | java | package com.shady.netty.timeserver;
import com.shady.netty.UnixTime;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerAdapter;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelPromise;
/**
* Created by shady on 24/05/15.
*/
public class TimeEncoder extends ChannelHandlerAdapter {
@Override
public void write(ChannelHandlerContext ctx, Object msg, ChannelPromise promise) throws Exception {
UnixTime m = (UnixTime) msg;
ByteBuf encoded = ctx.alloc().buffer(4);
encoded.writeLong(m.value());
ctx.write(encoded, promise); //We pass the original ChannelPromise as-is so that Netty marks
// it as success or failure when the encoded data is actually written out to the wire.
}
//Alternative. Extend MessageToByteEncoder<com.shady.netty.UnixTime>
// @Override
// protected void encode(ChannelHandlerContext ctx, com.shady.netty.UnixTime msg, ByteBuf out) {
// out.writeLong(msg.value());
// }
}
| [
"ramon.lopez@aon.at"
] | ramon.lopez@aon.at |
687344bf4f4bc331b2bcb11e755d288f8c3917b3 | fa51687f6aa32d57a9f5f4efc6dcfda2806f244d | /jdk8-src/src/main/java/java/time/chrono/MinguoEra.java | f7cf95855c3d47659cc8869b013977bd0c9c9da7 | [] | no_license | yida-lxw/jdk8 | 44bad6ccd2d81099bea11433c8f2a0fc2e589eaa | 9f69e5f33eb5ab32e385301b210db1e49e919aac | refs/heads/master | 2022-12-29T23:56:32.001512 | 2020-04-27T04:14:10 | 2020-04-27T04:14:10 | 258,988,898 | 0 | 1 | null | 2020-10-13T21:32:05 | 2020-04-26T09:21:22 | Java | UTF-8 | Java | false | false | 4,780 | java | /*
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*
*
*
*
*
*
* Copyright (c) 2012, Stephen Colebourne & Michael Nascimento Santos
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of JSR-310 nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package java.time.chrono;
import java.time.DateTimeException;
/**
* An era in the Minguo calendar system.
* <p>
* The Minguo calendar system has two eras.
* The current era, for years from 1 onwards, is known as the 'Republic of China' era.
* All previous years, zero or earlier in the proleptic count or one and greater
* in the year-of-era count, are part of the 'Before Republic of China' era.
*
* <table summary="Minguo years and eras" cellpadding="2" cellspacing="3" border="0" >
* <thead>
* <tr class="tableSubHeadingColor">
* <th class="colFirst" align="left">year-of-era</th>
* <th class="colFirst" align="left">era</th>
* <th class="colFirst" align="left">proleptic-year</th>
* <th class="colLast" align="left">ISO proleptic-year</th>
* </tr>
* </thead>
* <tbody>
* <tr class="rowColor">
* <td>2</td><td>ROC</td><td>2</td><td>1913</td>
* </tr>
* <tr class="altColor">
* <td>1</td><td>ROC</td><td>1</td><td>1912</td>
* </tr>
* <tr class="rowColor">
* <td>1</td><td>BEFORE_ROC</td><td>0</td><td>1911</td>
* </tr>
* <tr class="altColor">
* <td>2</td><td>BEFORE_ROC</td><td>-1</td><td>1910</td>
* </tr>
* </tbody>
* </table>
* <p>
* <b>Do not use {@code ordinal()} to obtain the numeric representation of {@code MinguoEra}.
* Use {@code getValue()} instead.</b>
*
* @implSpec This is an immutable and thread-safe enum.
* @since 1.8
*/
public enum MinguoEra implements Era {
/**
* The singleton instance for the era before the current one, 'Before Republic of China Era',
* which has the numeric value 0.
*/
BEFORE_ROC,
/**
* The singleton instance for the current era, 'Republic of China Era',
* which has the numeric value 1.
*/
ROC;
//-----------------------------------------------------------------------
/**
* Obtains an instance of {@code MinguoEra} from an {@code int} value.
* <p>
* {@code MinguoEra} is an enum representing the Minguo eras of BEFORE_ROC/ROC.
* This factory allows the enum to be obtained from the {@code int} value.
*
* @param minguoEra the BEFORE_ROC/ROC value to represent, from 0 (BEFORE_ROC) to 1 (ROC)
* @return the era singleton, not null
* @throws DateTimeException if the value is invalid
*/
public static MinguoEra of(int minguoEra) {
switch (minguoEra) {
case 0:
return BEFORE_ROC;
case 1:
return ROC;
default:
throw new DateTimeException("Invalid era: " + minguoEra);
}
}
//-----------------------------------------------------------------------
/**
* Gets the numeric era {@code int} value.
* <p>
* The era BEFORE_ROC has the value 0, while the era ROC has the value 1.
*
* @return the era value, from 0 (BEFORE_ROC) to 1 (ROC)
*/
@Override
public int getValue() {
return ordinal();
}
}
| [
"yida@caibeike.com"
] | yida@caibeike.com |
931a22ef11e7e4aa2cc69c8c39f8d988ba15dad5 | b1715771753d06bc0c621797012ea56fa5b08ac0 | /src/main/java/entrants/ghosts/neethu/Blinky.java | efd7bb90af6d726b4604be8ef52cc1ec2570b9c7 | [] | no_license | neethumichael/Artificial-Intelligence | e8891ebc778844c51cf3cd5babf7ae9c000d9b4f | e45a290476e77833a86d3dcf4cd300f53f5a007c | refs/heads/master | 2021-01-20T20:32:51.398222 | 2016-08-24T03:18:22 | 2016-08-24T03:18:22 | 63,538,445 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 466 | java | package main.java.entrants.ghosts.neethu;
import pacman.controllers.IndividualGhostController;
import pacman.controllers.MASController;
import pacman.game.Constants;
import pacman.game.Game;
/**
* Created by Piers on 11/11/2015.
*/
public class Blinky extends IndividualGhostController {
public Blinky() {
super(Constants.GHOST.BLINKY);
}
@Override
public Constants.MOVE getMove(Game game, long timeDue) {
return null;
}
}
| [
"neethu89@ccs.neu.edu"
] | neethu89@ccs.neu.edu |
821b590e7ccd2924b5f69763294062d027e10129 | b341c1aac764fb29e37d24113102c359f1606757 | /entry-online-app/entry-online-biz/src/test/java/com/fescotech/apps/admin/biz/admin/Student.java | c2ffe25c29c07ab8bb5ce79a5298c555a84bdedb | [] | no_license | 13849141963/hr-web | 53400d3938ad04b06a1f843a698bfba24cb88607 | ea6b3e5165632acbf8ee74a5639f49deb76aa8c8 | refs/heads/master | 2022-12-28T06:27:13.082769 | 2019-06-20T13:08:44 | 2019-06-20T13:08:44 | 192,918,646 | 0 | 0 | null | 2022-12-16T08:04:33 | 2019-06-20T12:46:48 | JavaScript | UTF-8 | Java | false | false | 619 | java | package com.fescotech.apps.admin.biz.admin;
/**
* @author cao.guo.dong
* @create 2017-12-26 9:14
* @desc 学生类
**/
public class Student {
private int age;
private String name;
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "Student{" +
"age=" + age +
", name='" + name + '\'' +
'}';
}
}
| [
"email@example.com"
] | email@example.com |
c2b71617bc1e55ee7768bfb43dd4211a31535a52 | 1431bb10dea880af8a72a2a634d42d6dbafe7531 | /src/view/MenuBar.java | 133d8a1492da779af69c26e8a26ed70b14708e58 | [] | no_license | EvgeniiaS/Tetris | 0d3ddf6212951150c3b343956bc2b6b1d77d2b57 | 5f037f316f0b55a8c3f83591f415874c3a05b928 | refs/heads/master | 2020-05-22T08:19:11.076393 | 2017-07-12T20:15:26 | 2017-07-12T20:15:26 | 84,617,625 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,830 | java | /*
* TCSS 305
* Assignment 6B - Tetris
*/
package view;
import java.awt.GridLayout;
import java.awt.event.WindowEvent;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import javax.swing.ImageIcon;
import javax.swing.JCheckBoxMenuItem;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JSlider;
/**
* Represents a menu bar in a game window.
* @author Evgeniia Shcherbinina
* @version 12/9/2016
*/
public class MenuBar extends JMenuBar implements PropertyChangeListener {
/** Generated serial version ID. */
private static final long serialVersionUID = -7128494878211941996L;
/** A name of the option to change control keys. */
private static final String MENU_NAME = "Change Control Keys...";
/** A number of raws on the control keys panel. */
private static final int RAWS = 6;
/** A number of raws on the grid panel. */
private static final int RAWS_GRID = 4;
/** Major tick spacing for the width slider. */
private static final int WIDTH_MAJOR_TICK = 5;
/** Major tick spacing for the height slider. */
private static final int HEIGHT_MAJOR_TICK = 10;
/** A name of an image file. */
private static final ImageIcon TETRIS_IMAGE = new ImageIcon("images/tetris_40.png");
/** JFrame that contains all elements of GUI. */
private final JFrame myFrame;
/** GUI of a game board. */
private final GameBoardPanel myGamePanel;
/** Options menu item. */
private final JMenu myOptions;
/** New game menu item. */
private final JMenuItem myNewGame;
/** End game menu item. */
private final JMenuItem myEndGame;
/** Save game menu item. */
private final JMenuItem mySaveGame;
/** Play saved game menu item. */
private final JMenuItem myPlaySavedGame;
/**
* Constructs this menu bar.
* @param theFrame JFrame that contains all elements of GUI
* @param thePanel the panel which represents GUI of a game board
*/
public MenuBar(final JFrame theFrame, final GameBoardPanel thePanel) {
super();
myFrame = theFrame;
myGamePanel = thePanel;
myOptions = new JMenu("Options");
myNewGame = new JMenuItem(new NewGameAction(myGamePanel));
myEndGame = new JMenuItem(new EndGameAction(myGamePanel));
mySaveGame = new JMenuItem("Save Game", 'S');
myPlaySavedGame = new JMenuItem("Play Saved Game", 'P');
setup();
}
/**
* Sets up the menu bar.
*/
private void setup() {
setupFileMenu();
setupOptionsMenu();
setupHelpMenu();
}
/**
* Sets up this File menu.
*/
private void setupFileMenu() {
final JMenu fileMenu = new JMenu("File");
fileMenu.setMnemonic('F');
add(fileMenu);
myNewGame.setMnemonic('N');
fileMenu.add(myNewGame);
fileMenu.add(myEndGame);
myEndGame.setMnemonic('E');
myEndGame.setEnabled(false);
fileMenu.addSeparator();
myGamePanel.addPropertyChangeListener(this);
fileMenu.add(mySaveGame);
mySaveGame.setEnabled(false);
mySaveGame.addActionListener(theEvent -> {
myGamePanel.saveGame();
});
fileMenu.add(myPlaySavedGame);
myPlaySavedGame.addActionListener(theEvent -> {
myGamePanel.startSavedGame();
});
fileMenu.addSeparator();
final JMenuItem quit = new JMenuItem("Quit", 'Q');
fileMenu.add(quit);
quit.addActionListener(theEvent -> {
myFrame.dispatchEvent(new WindowEvent(myFrame, WindowEvent.WINDOW_CLOSING));
});
}
/**
* Sets up Options menu.
*/
private void setupOptionsMenu() {
myOptions.setMnemonic('O');
add(myOptions);
setupOptionsControlKeysMenu();
myOptions.addSeparator();
setupOptionsGridMenu();
setupOptionsLevelMenu();
myOptions.addSeparator();
final JCheckBoxMenuItem muteSounds = new JCheckBoxMenuItem("Mute Sounds");
muteSounds.addActionListener(theEvent -> {
myGamePanel.changeMuteSounds();
});
myOptions.add(muteSounds);
}
/**
* Sets up Options -> Control Keys menu.
*/
private void setupOptionsControlKeysMenu() {
final JMenuItem controlKeys = new JMenuItem(MENU_NAME, 'C');
myOptions.add(controlKeys);
final JPanel controlKeysPanel = new JPanel();
controlKeysPanel.setLayout(new GridLayout(RAWS, 2));
for (int i = 0; i < GUI.ACTION_NAMES.length; i++) {
final KeyChangeField k = new KeyChangeField(GUI.ACTION_NAMES[i], myGamePanel);
controlKeysPanel.add(k);
}
controlKeys.addActionListener(theEvent -> {
JOptionPane.showMessageDialog(myFrame, controlKeysPanel, MENU_NAME,
JOptionPane.PLAIN_MESSAGE, TETRIS_IMAGE);
});
}
/**
* Sets up Options -> Choose Grid menu.
*/
private void setupOptionsGridMenu() {
final JMenuItem chooseGrid = new JMenuItem("Choose Grid...", 'G');
myOptions.add(chooseGrid);
final JPanel sliders = new JPanel();
sliders.setLayout(new GridLayout(RAWS_GRID, 1));
final JSlider sliderWidth = new JSlider(5, 20, 10);
sliderWidth.setMajorTickSpacing(WIDTH_MAJOR_TICK);
sliderWidth.setMinorTickSpacing(1);
sliderWidth.setPaintTicks(true);
sliderWidth.setPaintLabels(true);
sliderWidth.addChangeListener(theEvent -> {
if (!myGamePanel.isGameOver()) {
myGamePanel.endGame();
}
myGamePanel.setWidth(sliderWidth.getValue());
});
final JSlider sliderHeight = new JSlider(10, 40, 20);
sliderHeight.setMajorTickSpacing(HEIGHT_MAJOR_TICK);
sliderHeight.setMinorTickSpacing(1);
sliderHeight.setPaintTicks(true);
sliderHeight.setPaintLabels(true);
sliderHeight.addChangeListener(theEvent -> {
myGamePanel.setHeight(sliderHeight.getValue());
});
final JLabel widthLabel = new JLabel("Choose width");
final JLabel heightLabel = new JLabel("Choose height");
sliders.add(widthLabel);
sliders.add(sliderWidth);
sliders.add(heightLabel);
sliders.add(sliderHeight);
chooseGrid.addActionListener(theEvent -> {
JOptionPane.showMessageDialog(myFrame, sliders, "Choose Grid",
JOptionPane.PLAIN_MESSAGE, TETRIS_IMAGE);
});
}
/**
* Sets up Options -> Choose Level menu.
*/
private void setupOptionsLevelMenu() {
final JMenuItem chooseLevel = new JMenuItem("Choose Level...", 'L');
myOptions.add(chooseLevel);
final JPanel levelPanel = new JPanel();
final JSlider levelSlider = new JSlider(1, 11, 1);
levelSlider.setMajorTickSpacing(2);
levelSlider.setMinorTickSpacing(1);
levelSlider.setPaintTicks(true);
levelSlider.setPaintLabels(true);
levelSlider.addChangeListener(theEvent -> {
if (!myGamePanel.isGameOver()) {
myGamePanel.endGame();
}
myGamePanel.setLevel(levelSlider.getValue());
});
levelPanel.add(levelSlider);
chooseLevel.addActionListener(theEvent -> {
JOptionPane.showMessageDialog(myFrame, levelPanel, "Choose Level",
JOptionPane.PLAIN_MESSAGE, TETRIS_IMAGE);
});
}
/**
* Sets up Help menu.
*/
private void setupHelpMenu() {
final JMenu helpMenu = new JMenu("Help");
helpMenu.setMnemonic('H');
add(helpMenu);
final JMenuItem scoring = new JMenuItem("Scoring...", 'S');
scoring.addActionListener(theEvent -> {
JOptionPane.showMessageDialog(myFrame,
"A game starts at level 1 and increments the level"
+ " for each cumulative five lines cleared.\n"
+ "Every time as a tetris piece moves down, a score increases"
+ " by one point.\n"
+ "You can earn:\n"
+ "- 200 points for clearing a single line\n"
+ "- 500 points for clearing two lines at once\n"
+ "- 1000 points for clearing three lines at once\n"
+ "- 2000 points for clearing four lines at once",
"Scoring", JOptionPane.PLAIN_MESSAGE, TETRIS_IMAGE);
});
helpMenu.add(scoring);
final JMenuItem about = new JMenuItem("About...", 'A');
about.addActionListener(theEvent -> {
JOptionPane.showMessageDialog(myFrame, "TCSS 305 Tetris\nAutumn 2016\n"
+ "Evgeniia Shcherbinina\n\n"
+ "Used music and sounds:\n\n"
+ "\"Rainbows\" by Kevin MacLeod (incompetech.com)\n"
+ "Licensed under Creative Commons: By Attribution 3.0 License.\n"
+ "http://creativecommons.org/licenses/by/3.0/\n\n"
+ "\"Game Over Sound\" by TheZero (freesound.org)\n"
+ "\"Bit Bubbles\" by Rurbital (freesound.org)\n"
+ "Licensed under the Creative Commons 0 License.", "About",
JOptionPane.PLAIN_MESSAGE, TETRIS_IMAGE);
});
helpMenu.add(about);
}
@Override
public void propertyChange(final PropertyChangeEvent theArg) {
if ("New game".equals(theArg.getPropertyName())) {
myNewGame.setEnabled(false);
myEndGame.setEnabled(true);
mySaveGame.setEnabled(true);
myPlaySavedGame.setEnabled(false);
} else if ("End game".equals(theArg.getPropertyName())) {
myNewGame.setEnabled(true);
myEndGame.setEnabled(false);
mySaveGame.setEnabled(false);
myPlaySavedGame.setEnabled(true);
}
}
}
| [
"shcherbininaev@gmail.com"
] | shcherbininaev@gmail.com |
7cb8a95eefbb94b76d0434c300aacc76391f2b37 | 258de8e8d556901959831bbdc3878af2d8933997 | /utopia-schedule/src/main/java/com/voxlearning/utopia/schedule/schedule/chips/AutoGenChipsRemindRecord.java | c1a8f0cdf544bba6c7ded75ac15483d52137cf30 | [] | no_license | Explorer1092/vox | d40168b44ccd523748647742ec376fdc2b22160f | 701160b0417e5a3f1b942269b0e7e2fd768f4b8e | refs/heads/master | 2020-05-14T20:13:02.531549 | 2019-04-17T06:54:06 | 2019-04-17T06:54:06 | 181,923,482 | 0 | 4 | null | 2019-04-17T15:53:25 | 2019-04-17T15:53:25 | null | UTF-8 | Java | false | false | 7,382 | java | package com.voxlearning.utopia.schedule.schedule.chips;
import com.voxlearning.alps.annotation.common.Mode;
import com.voxlearning.alps.annotation.remote.ImportService;
import com.voxlearning.alps.calendar.DateUtils;
import com.voxlearning.alps.core.util.CollectionUtils;
import com.voxlearning.alps.core.util.StringUtils;
import com.voxlearning.alps.lang.calendar.DayRange;
import com.voxlearning.alps.lang.mapper.json.JsonUtils;
import com.voxlearning.alps.schedule.progress.ISimpleProgressMonitor;
import com.voxlearning.alps.spi.queue.AlpsQueueProducer;
import com.voxlearning.alps.spi.queue.Message;
import com.voxlearning.alps.spi.queue.MessageProducer;
import com.voxlearning.alps.spi.schedule.ProgressTotalWork;
import com.voxlearning.alps.spi.schedule.ScheduledJobDefinition;
import com.voxlearning.utopia.schedule.journal.JobJournalLogger;
import com.voxlearning.utopia.schedule.support.ScheduledJobWithJournalSupport;
import com.voxlearning.utopia.service.ai.api.ChipsActiveService;
import com.voxlearning.utopia.service.ai.api.ChipsEnglishClazzService;
import com.voxlearning.utopia.service.ai.api.ChipsEnglishContentLoader;
import com.voxlearning.utopia.service.ai.entity.ChipsEnglishClass;
import com.voxlearning.utopia.service.ai.entity.ChipsEnglishClassUserRef;
import com.voxlearning.utopia.service.ai.entity.ChipsEnglishProductTimetable;
import javax.inject.Named;
import java.util.*;
import java.util.stream.Collectors;
/**
* 薯条英语 生成催课提醒记录
*
* @author zhuxuan
*/
@Named
@ScheduledJobDefinition(
jobName = "薯条英语 生成催课提醒记录",
jobDescription = "每天 0 点执行",
disabled = {Mode.STAGING},
cronExpression = "0 0 0 * * ?"
)
@ProgressTotalWork(100)
public class AutoGenChipsRemindRecord extends ScheduledJobWithJournalSupport {
@ImportService(interfaceClass = ChipsActiveService.class)
private ChipsActiveService chipsActiveService;
@ImportService(interfaceClass = ChipsEnglishClazzService.class)
private ChipsEnglishClazzService chipsEnglishClazzService;
@ImportService(interfaceClass = ChipsEnglishContentLoader.class)
private ChipsEnglishContentLoader chipsEnglishContentLoader;
@AlpsQueueProducer(queue = "utopia.chips.active.service.remind.message.send.queue")
private MessageProducer producer;
/**
* 如果没有班级 跑所有的班级
* 如果有班级 没有userIdCols 跑该班级下所有的
* 如果有班级 且有userIdCols 这跑 班级下的用户和userIdCols 的交集部分
*
* @param jobJournalLogger
* @param startTimestamp
* @param parameters 可以不传,数据样例 {"unitDate":"2019-02-26","clazzId":4,"userIds":[0,1,2,3,4,5,6,7,8,9]}
* @param progressMonitor
* @throws Exception
*/
@Override
protected void executeScheduledJob(JobJournalLogger jobJournalLogger, long startTimestamp, Map<String, Object> parameters, ISimpleProgressMonitor progressMonitor) throws Exception {
Object clazzObj = parameters.get("clazzId");
Object unitDateObj = parameters.get("unitDate");
Object userIds = parameters.get("userIds");
long clazzId = clazzObj == null ? 0l : Long.parseLong(clazzObj.toString());
//如果没有传unitDate 则使用DayRange.current().previous().getStartDate()
Date unitDate = unitDateObj == null ? DayRange.current().previous().getStartDate() : DateUtils.parseDate(unitDateObj.toString(), DateUtils.FORMAT_SQL_DATE);
Collection<Long> userCol = null;
if (userIds != null) {
List<Object> temp = (List) userIds;
userCol = temp.stream().map(e -> Long.valueOf(e.toString())).collect(Collectors.toSet());
}
autoGenChipsRemindRecord(clazzId, userCol, unitDate);
}
public void autoGenChipsRemindRecord(Long clazzId, Collection<Long> userIdCols, Date unitData) {
if (clazzId == null || clazzId == 0l) {//执行所有班级对应的unitData的单元数据
List<ChipsEnglishClass> clazzList = chipsEnglishClazzService.loadAllChipsEnglishClass();
for (ChipsEnglishClass clazz : clazzList) {
handleByClazz(clazz, null, unitData);
}
} else {
ChipsEnglishClass clazz = chipsEnglishClazzService.selectChipsEnglishClassById(clazzId);
if (clazz == null) {
return;
}
handleByClazz(clazz, userIdCols, unitData);
}
}
/**
* 处理一个班级下的
*
* @param clazz
* @param userIdCols
* @param unitData
*/
private void handleByClazz(ChipsEnglishClass clazz, Collection<Long> userIdCols, Date unitData) {
String unitId = loadUnitId(clazz, unitData);
if (StringUtils.isBlank(unitId)) {
return;
}
List<ChipsEnglishClassUserRef> refs = chipsEnglishClazzService.selectChipsEnglishClassUserRefByClazzId(clazz.getId());
if (CollectionUtils.isEmpty(refs)) {
return;
}
List<Long> userIdList;
if (CollectionUtils.isEmpty(userIdCols)) {//跑该班级下的所有用户对应的unitData的单元数据
userIdList = refs.stream().map(ChipsEnglishClassUserRef::getUserId).collect(Collectors.toList());
} else {//跑该班级下的所有用户和userIdCols的交集 对应的unitData的单元数据
userIdList = refs.stream().map(ChipsEnglishClassUserRef::getUserId).filter(e -> userIdCols.contains(e)).collect(Collectors.toList());
}
// logger.info("AutoGenChipsRemindRecord handle clazz: " + clazz.getId() + " ; unitId : " + unitId + "; userIdList size : " + userIdList.size());
sendQueue(clazz, userIdList, unitId);
}
private void sendQueue(ChipsEnglishClass clazz, Collection<Long> userIdCols, String unitId) {
if (CollectionUtils.isEmpty(userIdCols)) {
return;
}
int index = 1;
for (Long userId : userIdCols) {
Map<String, Object> message = new HashMap<>();
message.put("clazzId", clazz.getId());
message.put("userId", userId);
message.put("productId", clazz.getProductId());
message.put("unitId", unitId);
producer.produce(Message.newMessage().withPlainTextBody(JsonUtils.toJson(message)));
if (index % 100 == 0) {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
}
index++;
}
}
private String loadUnitId(ChipsEnglishClass clazz, Date unitData) {
ChipsEnglishProductTimetable timetable = chipsEnglishContentLoader.loadChipsEnglishProductTimetableById(clazz.getProductId());
if (timetable == null) {
return null;
}
// 在开始时间之前 或者 在结束时间之后,不生成
if (timetable.getBeginDate().after(unitData) || timetable.getEndDate().before(unitData)) {
return null;
}
// 单元id
String unitId = timetable.getCourses().stream()
.filter(course -> unitData.equals(course.getBeginDate()))
.map(ChipsEnglishProductTimetable.Course::getUnitId)
.findFirst()
.orElse(null);
return unitId;
}
}
| [
"wangahai@300.cn"
] | wangahai@300.cn |
63d27b58c4e4786509a53fb41040165c0d238885 | 72751ea7b3360e63fa8dfa1dee4a20a3fe7d1d6d | /src/main/java/com/amakedon/om/service/ReportService.java | d65a75bcebe737aa438ccf036f647d53203ea04c | [] | no_license | antoninaolhovik/order-management | 4959d84181f428ee12a032f7d80cf49490ecd303 | 782c614c066be63cd88f4bc0e57b8071ba7cf432 | refs/heads/master | 2023-09-04T09:48:14.126361 | 2023-08-26T10:31:39 | 2023-08-26T10:31:39 | 213,712,894 | 0 | 0 | null | 2023-08-26T10:31:40 | 2019-10-08T17:51:47 | Java | UTF-8 | Java | false | false | 241 | java | package com.amakedon.om.service;
import org.springframework.data.domain.Pageable;
import java.math.BigDecimal;
import java.util.Map;
public interface ReportService {
Map<String, Double> getAmountOfIncomeByDate (Pageable pageable);
}
| [
"toshaolhovik@gmail.com"
] | toshaolhovik@gmail.com |
f710e283ad68cafce6e892925338129cf8fda7ca | 257e222c5c682bde0d7a8cb675df0a58c8ea19b9 | /src/main/java/com/cb/demo/service/SecurityServiceImpl.java | cc6517b63262d3aa39ef42e9456f0645abce8d31 | [] | no_license | craig-kovar/couchbase-sync-ui | 1bf6acc0855071606b322a2d5d5d9c7d49f5ed02 | f99d8b1bb8c8a1e81d0481b8ed113837f83917c7 | refs/heads/master | 2020-04-06T16:10:12.186489 | 2018-11-27T22:35:44 | 2018-11-27T22:35:44 | 157,608,437 | 0 | 0 | null | 2018-11-14T20:42:56 | 2018-11-14T20:42:56 | null | UTF-8 | Java | false | false | 1,870 | java | package com.cb.demo.service;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.authentication.AuthenticationManager;
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.stereotype.Service;
@Service
public class SecurityServiceImpl implements SecurityService{
@Autowired
private AuthenticationManager authenticationManager;
@Autowired
private UserDetailsService userDetailsService;
private static final Logger logger = LoggerFactory.getLogger(SecurityServiceImpl.class);
@Override
public String findLoggedInUsername() {
Object userDetails = SecurityContextHolder.getContext().getAuthentication().getDetails();
if (userDetails instanceof UserDetails) {
return ((UserDetails)userDetails).getUsername();
}
return null;
}
@Override
public void autologin(String username, String password) {
UserDetails userDetails = userDetailsService.loadUserByUsername(username);
UsernamePasswordAuthenticationToken usernamePasswordAuthenticationToken = new UsernamePasswordAuthenticationToken(userDetails, password, userDetails.getAuthorities());
authenticationManager.authenticate(usernamePasswordAuthenticationToken);
if (usernamePasswordAuthenticationToken.isAuthenticated()) {
SecurityContextHolder.getContext().setAuthentication(usernamePasswordAuthenticationToken);
logger.debug(String.format("Auto login %s successfully!", username));
}
}
}
| [
"balaji.narayanan@tekzenit.com"
] | balaji.narayanan@tekzenit.com |
4e7f3e21a6ee2070ce07cb9e089ea32a356de94c | ce7b214d6bac187df801bf473b4f6813a7b366c7 | /theater-web/src/main/java/com/epam/keikom/web/converter/UserToDTO.java | 3923e80532181343e92fbaa57901e1cf89101dfb | [] | no_license | KeMihail/keiko_spring_advanced | 9039cd4ef2b85b9cfce1f383139c6552abe43d29 | 9b4e62497ef4ecce68ea6a0acbc4709f26045789 | refs/heads/master | 2021-12-15T03:29:13.615921 | 2019-06-07T06:59:13 | 2019-06-07T06:59:13 | 190,700,780 | 0 | 0 | null | 2021-12-14T21:22:47 | 2019-06-07T06:56:13 | Java | UTF-8 | Java | false | false | 562 | java | package com.epam.keikom.web.converter;
import com.epam.keikom.dao.domain.User;
import com.epam.keikom.web.dto.UserDTO;
import org.springframework.stereotype.Component;
import java.util.function.Function;
@Component
public class UserToDTO implements Function<User, UserDTO> {
@Override
public UserDTO apply(User user) {
final UserDTO dto = new UserDTO();
dto.setId(user.getId());
dto.setFirstName(user.getFirstName());
dto.setLastName(user.getLastName());
dto.setEmail(user.getEmail());
dto.setBirthday(user.getBirthday());
return dto;
}
}
| [
"mihaila4038@gmail.com"
] | mihaila4038@gmail.com |
af746d720a921ad3b2bddd4fae3524f3d63405ed | b6bfba71956589aa6f56729ec9ebce824a5fb8f4 | /src/main/java/com/javapatterns/windowadapter/ServiceAdapter.java | 4a6382408b6da0090f870f5383830e667229613d | [
"Apache-2.0"
] | permissive | plotor/design-pattern | 5d78d0ef7349a2d637bea5b7270c9557820e5f60 | 4614bab50921b61610693b9b1ed06feddcee9ce6 | refs/heads/master | 2022-12-20T17:49:13.396939 | 2020-10-13T14:37:14 | 2020-10-13T14:37:14 | 67,619,122 | 0 | 0 | Apache-2.0 | 2020-10-13T14:37:15 | 2016-09-07T15:21:45 | Java | UTF-8 | Java | false | false | 274 | java | package com.javapatterns.windowadapter;
public class ServiceAdapter implements AbstractService {
public void serviceOperation1() {
}
public int serviceOperation2() {
return 0;
}
public String serviceOperation3() {
return null;
}
}
| [
"zhenchao.wang@hotmail.com"
] | zhenchao.wang@hotmail.com |
70033e129fc777ac2f770c27080981095e33db6a | ddb6505be618a19342a7f5f1853b6f09bf0c4384 | /TulingRobot.java | ddd8b81c2d43cbe025e8f3775c24e59507194827 | [] | no_license | foolself/LittleProgram | 0c5fe8518396806e6d8aa69356bd75e90f303e71 | 8ff8be0e992720069583e1239fb276ff0336b9af | refs/heads/master | 2021-01-21T04:48:04.243942 | 2016-07-08T00:30:17 | 2016-07-08T00:30:17 | 48,491,886 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,129 | java | import java.net.*;
import java.util.*;
import java.io.*;
class TulingRobot {
private static String APIKEY = "f75c7d0da63c567fa90af0b93d455ffd";
public static void main(String[] args) throws IOException {
String input = "你好啊";
String INFO = URLEncoder.encode(input, "utf-8");
String getURL = "http://www.tuling123.com/openapi/api?key=" + APIKEY + "&info=" + INFO;
URL getUrl = new URL(getURL);
HttpURLConnection connection = (HttpURLConnection) getUrl.openConnection();
connection.connect();
// 取得输入流,并使用Reader读取
BufferedReader reader = new BufferedReader(new InputStreamReader( connection.getInputStream(), "utf-8"));
StringBuffer sb = new StringBuffer();
String line = "";
while ((line = reader.readLine()) != null) {
sb.append(line);
}
reader.close();
// 断开连接
connection.disconnect();
String result = sb.toString();
System.out.println(result);
String[] results = new String[10];
results = result.split(":");
String answer = results[results.length - 1];
answer = answer.substring(1, answer.length() - 2);
System.out.println(answer);
}
} | [
"foolselfgm@gmail.com"
] | foolselfgm@gmail.com |
0ea2a1b8c4d43a69094d29abe8032388ccdd2ba0 | 8003073e7679778df3fc2622765cf434c6bed5b2 | /android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/customview/R.java | b77422a868d4d3641d48ed72fd7aa809a51680ba | [] | no_license | torcoste/react-native-navigation-typescript-layout | 90dcc5b6ed2ff20158de1109e8319fb6fe9a3a3e | 60b42b547e7916b864c55504988b7e24dbffe3ba | refs/heads/master | 2023-01-13T02:55:14.918743 | 2021-09-03T09:22:12 | 2021-09-03T09:22:12 | 193,249,658 | 1 | 0 | null | 2023-01-04T00:50:59 | 2019-06-22T15:32:15 | Java | UTF-8 | Java | false | false | 10,457 | 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 android.support.customview;
public final class R {
private R() {}
public static final class attr {
private attr() {}
public static final int alpha = 0x7f04002b;
public static final int font = 0x7f0400f0;
public static final int fontProviderAuthority = 0x7f0400f2;
public static final int fontProviderCerts = 0x7f0400f3;
public static final int fontProviderFetchStrategy = 0x7f0400f4;
public static final int fontProviderFetchTimeout = 0x7f0400f5;
public static final int fontProviderPackage = 0x7f0400f6;
public static final int fontProviderQuery = 0x7f0400f7;
public static final int fontStyle = 0x7f0400f8;
public static final int fontVariationSettings = 0x7f0400f9;
public static final int fontWeight = 0x7f0400fa;
public static final int ttcIndex = 0x7f040231;
}
public static final class color {
private color() {}
public static final int notification_action_color_filter = 0x7f060073;
public static final int notification_icon_bg_color = 0x7f060074;
public static final int ripple_material_light = 0x7f06007f;
public static final int secondary_text_default_material_light = 0x7f060081;
}
public static final class dimen {
private dimen() {}
public static final int compat_button_inset_horizontal_material = 0x7f07006f;
public static final int compat_button_inset_vertical_material = 0x7f070070;
public static final int compat_button_padding_horizontal_material = 0x7f070071;
public static final int compat_button_padding_vertical_material = 0x7f070072;
public static final int compat_control_corner_material = 0x7f070073;
public static final int compat_notification_large_icon_max_height = 0x7f070074;
public static final int compat_notification_large_icon_max_width = 0x7f070075;
public static final int notification_action_icon_size = 0x7f0700e5;
public static final int notification_action_text_size = 0x7f0700e6;
public static final int notification_big_circle_margin = 0x7f0700e7;
public static final int notification_content_margin_start = 0x7f0700e8;
public static final int notification_large_icon_height = 0x7f0700e9;
public static final int notification_large_icon_width = 0x7f0700ea;
public static final int notification_main_column_padding_top = 0x7f0700eb;
public static final int notification_media_narrow_margin = 0x7f0700ec;
public static final int notification_right_icon_size = 0x7f0700ed;
public static final int notification_right_side_padding_top = 0x7f0700ee;
public static final int notification_small_icon_background_padding = 0x7f0700ef;
public static final int notification_small_icon_size_as_large = 0x7f0700f0;
public static final int notification_subtext_size = 0x7f0700f1;
public static final int notification_top_pad = 0x7f0700f2;
public static final int notification_top_pad_large_text = 0x7f0700f3;
}
public static final class drawable {
private drawable() {}
public static final int notification_action_background = 0x7f08006c;
public static final int notification_bg = 0x7f08006e;
public static final int notification_bg_low = 0x7f08006f;
public static final int notification_bg_low_normal = 0x7f080070;
public static final int notification_bg_low_pressed = 0x7f080071;
public static final int notification_bg_normal = 0x7f080072;
public static final int notification_bg_normal_pressed = 0x7f080073;
public static final int notification_icon_background = 0x7f080074;
public static final int notification_template_icon_bg = 0x7f080075;
public static final int notification_template_icon_low_bg = 0x7f080076;
public static final int notification_tile_bg = 0x7f080077;
public static final int notify_panel_notification_icon_bg = 0x7f080078;
}
public static final class id {
private id() {}
public static final int action_container = 0x7f090010;
public static final int action_divider = 0x7f090012;
public static final int action_image = 0x7f090013;
public static final int action_text = 0x7f090019;
public static final int actions = 0x7f09001a;
public static final int async = 0x7f090020;
public static final int blocking = 0x7f090023;
public static final int chronometer = 0x7f090035;
public static final int forever = 0x7f09005c;
public static final int icon = 0x7f090063;
public static final int icon_group = 0x7f090064;
public static final int info = 0x7f090067;
public static final int italic = 0x7f090068;
public static final int line1 = 0x7f09006d;
public static final int line3 = 0x7f09006e;
public static final int normal = 0x7f09007d;
public static final int notification_background = 0x7f09007e;
public static final int notification_main_column = 0x7f09007f;
public static final int notification_main_column_container = 0x7f090080;
public static final int right_icon = 0x7f09008c;
public static final int right_side = 0x7f09008d;
public static final int tag_transition_group = 0x7f0900c1;
public static final int tag_unhandled_key_event_manager = 0x7f0900c2;
public static final int tag_unhandled_key_listeners = 0x7f0900c3;
public static final int text = 0x7f0900c4;
public static final int text2 = 0x7f0900c5;
public static final int time = 0x7f0900cd;
public static final int title = 0x7f0900ce;
}
public static final class integer {
private integer() {}
public static final int status_bar_notification_info_maxnum = 0x7f0a000e;
}
public static final class layout {
private layout() {}
public static final int notification_action = 0x7f0c0030;
public static final int notification_action_tombstone = 0x7f0c0031;
public static final int notification_template_custom_big = 0x7f0c0038;
public static final int notification_template_icon_group = 0x7f0c0039;
public static final int notification_template_part_chronometer = 0x7f0c003d;
public static final int notification_template_part_time = 0x7f0c003e;
}
public static final class string {
private string() {}
public static final int status_bar_notification_info_overflow = 0x7f0e0056;
}
public static final class style {
private style() {}
public static final int TextAppearance_Compat_Notification = 0x7f0f0121;
public static final int TextAppearance_Compat_Notification_Info = 0x7f0f0122;
public static final int TextAppearance_Compat_Notification_Line2 = 0x7f0f0124;
public static final int TextAppearance_Compat_Notification_Time = 0x7f0f0127;
public static final int TextAppearance_Compat_Notification_Title = 0x7f0f0129;
public static final int Widget_Compat_NotificationActionContainer = 0x7f0f01d9;
public static final int Widget_Compat_NotificationActionText = 0x7f0f01da;
}
public static final class styleable {
private styleable() {}
public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f04002b };
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 = { 0x7f0400f2, 0x7f0400f3, 0x7f0400f4, 0x7f0400f5, 0x7f0400f6, 0x7f0400f7 };
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, 0x7f0400f0, 0x7f0400f8, 0x7f0400f9, 0x7f0400fa, 0x7f040231 };
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;
}
}
| [
"torcoste@gmail.com"
] | torcoste@gmail.com |
39c566cbfd88b38f9d09592ba3aac2c928ce885d | 185c7e7c6d26483c583466ba5c4ea789ed01eecd | /src/main/java/com/booknara/problem/hash/ContainsDuplicateII.java | acd9f4104cac5fee8c26a2baa1fd3d0f5fe8d207 | [
"MIT"
] | permissive | booknara/playground | 49d92d450438f6e7912e85c82e010cc4f1631891 | 60e2097d00097956132688a404c4de3def19c549 | refs/heads/master | 2023-08-17T06:30:55.874388 | 2023-08-11T15:16:45 | 2023-08-11T15:16:45 | 226,968,158 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,806 | java | package com.booknara.problem.hash;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
/**
* 219. Contains Duplicate II (Easy)
* https://leetcode.com/problems/contains-duplicate-ii/
*/
public class ContainsDuplicateII {
// 04/27/2020 version
public boolean containsNearbyDuplicate(int[] nums, int k) {
if (nums == null || nums.length == 0) {
return false;
}
Map<Integer, Integer> map = new HashMap<>();
for (int i = 0; i < nums.length; i++) {
int num = nums[i];
if (map.containsKey(num)) {
int diff = i - map.get(num);
// at most k btw previous and current index
if (diff <= k) {
return true;
}
}
map.put(num, i);
}
return false;
}
// 04/02/2020 version
public boolean containsNearbyDuplicate1(int[] nums, int k) {
if (nums == null || nums.length == 0) {
return false;
}
Set<Integer> set = new HashSet<>();
for (int i = 0; i < nums.length; i++) {
if (i > k) {
set.remove(nums[i - k - 1]);
}
if (!set.add(nums[i])) return true;
}
return false;
}
public boolean containsNearbyDuplicate2(int[] nums, int k) {
if (nums == null || nums.length == 0) {
return false;
}
Set<Integer> set = new HashSet<>();
for (int i = 0; i < nums.length; i++) {
int n = nums[i];
if (set.contains(n)) return true;
set.add(nums[i]);
if (set.size() > k) {
set.remove(nums[i - k]);
}
}
return false;
}
}
| [
"bookdori81@gmail.com"
] | bookdori81@gmail.com |
99dce348367146e06386155b5f9d296b8de9f477 | 3ef7f7dbeb694fcba2eb58874c20aa4c6695f22b | /week-02/day-3/Shifter.java | 7070f271780e168cee02c5f9d2387c6c60d4ecf8 | [] | no_license | green-fox-academy/ramapriyan912001 | 7bf8d21b5f70feed804911956f8f260537f9f3f5 | 9f9142425cf610a1219488c56fc93ad0cba9389d | refs/heads/master | 2023-02-02T13:42:46.412832 | 2020-12-20T12:54:17 | 2020-12-20T12:54:17 | 317,513,081 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 612 | java | public class Shifter implements CharSequence{
private String field;
private int shift;
public Shifter(String field, int shift) {
this.field = field;
this.shift = shift;
}
@Override
public int length() {
return 0;
}
public String shift() {
return field.substring(shift) + field.substring(0, shift);
}
@Override
public char charAt(int index) {
return this.shift().toCharArray()[index];
}
@Override
public CharSequence subSequence(int start, int end) {
return this.shift().substring(start, end);
}
}
| [
"ramapriyan912001@gmail.com"
] | ramapriyan912001@gmail.com |
8e9fe2da1c03f7de8479674a77e631a531164779 | 455741c438ed73bfa5443eefbfe7e5ba551539e0 | /src/com/healingtjx/cold/service/GenerateService.java | 8a196dd071fab17f05bdd4828469aed0127a896a | [] | no_license | healingtjx/tjx-cold | bc7e13cd17782f6c42f0cedb51f9a8665247d6a3 | 5abcba0c0bd28e903858cb335b2cd4c722ed3beb | refs/heads/master | 2023-02-26T00:03:49.487929 | 2021-02-02T02:58:17 | 2021-02-02T02:58:17 | 328,534,679 | 19 | 2 | null | null | null | null | UTF-8 | Java | false | false | 727 | java | package com.healingtjx.cold.service;
import com.healingtjx.cold.storage.SettingsStorage;
/**
* @Author: tjx
* @Description: 生成代码service
* @Date: 创建于16:46 2021-01-15
**/
public interface GenerateService {
/**
* 生成模块代码
*
* @param filePath 生成文件路径
* @param name 模块名称
* @param packageName 包名
* @param patternKey
* @param model 模式选择
* @param generationStrategy 生成策略
* @param settingsStorage
*/
void createTemplateCode(String filePath, String name, String packageName, String patternKey, int model, int generationStrategy, SettingsStorage settingsStorage);
}
| [
"1095288440@qq.com"
] | 1095288440@qq.com |
37a5ed044087f85deae87f333167d832e339f409 | 42ee004aab4b846531e111181ab0e1d0f2b185e7 | /src/test/java/seedu/itlogger/DeleteFunctionTest.java | 67daa38085049e39dec9daa65a2c7ccacfe47eb8 | [] | no_license | AY2021S1-TIC4001-3/tp | 68d36e5b2dd8db84930913fc9052aee07e177d39 | c3a759a38df28599fda7bf8a74940f64978982ea | refs/heads/master | 2023-01-07T22:03:59.701025 | 2020-11-14T12:54:06 | 2020-11-14T12:54:06 | 296,615,187 | 0 | 4 | null | 2020-11-14T12:31:06 | 2020-09-18T12:29:25 | Java | UTF-8 | Java | false | false | 1,551 | java | package seedu.itlogger;
import org.junit.jupiter.api.Test;
import java.text.SimpleDateFormat;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class DeleteFunctionTest {
@Test
public void deleteFunctionTest() {
IssueList issueList = new IssueList();
try {
issueList.addIssue(new Defect("cannot launch", "new", 1,
new SimpleDateFormat("dd/MM/yyyy").parse("20/10/2020"),
"Jack"));
issueList.addIssue(new Defect("cannot login", "new", 1,
new SimpleDateFormat("dd/MM/yyyy").parse("20/10/2020"),
"Jack"));
issueList.addIssue(new Defect("cannot exit", "new", 1,
new SimpleDateFormat("dd/MM/yyyy").parse("20/10/2020"),
"Jack"));
} catch (Exception e) {
System.out.println(e);
}
//checks number of tasks created.
assertEquals(3, issueList.getSize());
//deletes the first item
issueList.deleteIssue(0);
//check that title of the next item
assertEquals("cannot login", issueList.getDefect(0).title);
//deletes the next item which is now index 0
issueList.deleteIssue(0);
//check that title of the next item
assertEquals("cannot exit", issueList.getDefect(0).title);
//deletes the next item which is now index 0
issueList.deleteIssue(0);
//checks number of tasks left.
assertEquals(0, issueList.getSize());
}
}
| [
""
] | |
b63cd385fa360f44c9a88ad599940b39d25e6724 | 6c7be09761a0a039bdeb44eaa5f9370835222554 | /src/main/java/com/acme/exception/RegisterNoExistException.java | f56d546223be87f59b67494417ba4f0bfed00c90 | [] | no_license | sgavmp/ACME | 65d30e1e8f6b4608739cc929e3abf8ce08f3ede8 | 4281fb4868a2fa45035f5d783848d18d4a4ead2e | refs/heads/master | 2020-04-04T12:21:17.672048 | 2013-06-26T12:01:13 | 2013-06-26T12:01:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 247 | java | package com.acme.exception;
public class RegisterNoExistException extends Exception {
/**
*
*/
private static final long serialVersionUID = 4163768100431778271L;
public RegisterNoExistException(String mensaje) {
super(mensaje);
}
}
| [
"sga.vmp@gmail.com"
] | sga.vmp@gmail.com |
b21c101ac7a92ccf8ce601e22a299348166b7eb4 | b070c8014e1c2a5dbd6982df647a829d3c92aa30 | /src/org/opengts/util/Accelerometer.java | d142fb07cde028109eaf0ba5f73272495105f486 | [] | no_license | parinya2/ChapptersGPSServerSocket | d8231de4814068cfc2e016e4b6611c91c12579fa | a782a00acffdefe27998aca0d6b1325a815ff080 | refs/heads/master | 2020-05-30T14:03:15.412361 | 2015-08-31T06:55:17 | 2015-08-31T06:55:17 | 41,654,724 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 31,416 | java | // ----------------------------------------------------------------------------
// Copyright 2007-2015, GeoTelematic Solutions, Inc.
// All rights reserved
// ----------------------------------------------------------------------------
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ----------------------------------------------------------------------------
// Description:
// Accelerometer information container
// ----------------------------------------------------------------------------
// Change History:
// 2013/03/01 Martin D. Flynn
// -Initial release
// ----------------------------------------------------------------------------
package org.opengts.util;
import java.lang.*;
import java.util.*;
import java.math.*;
/**
*** Accerometer XYZ-axis container.
**/
public class Accelerometer
{
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
private static final int X_AXIS = 0;
private static final int Y_AXIS = 1;
private static final int Z_AXIS = 2;
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
// -- Accelerometer list support
// - (used for impact reconstruction, etc)
private static final String LIST_START[] = { "[", "(" };
private static final String LIST_END[] = { "]", ")" };
private static final char LIST_SEPARATOR_CHAR = '|';
private static final char SCALAR_SEPARATOR_CHAR = ',';
/**
*** Gets the index of the start-of-list character
**/
public static int IndexOfListStartChar(String xyzListStr, int fromNdx)
{
return StringTools.indexOf(xyzListStr, fromNdx, LIST_START);
}
/**
*** Gets the index of the end-of-list character
**/
public static int IndexOfListEndChar(String xyzListStr, int fromNdx)
{
return StringTools.indexOf(xyzListStr, fromNdx, LIST_END);
}
/**
*** Returns true if the specified list starts with a Accelerometer list character
**/
public static boolean startsWithListChar(String xyzListStr)
{
if (xyzListStr == null) {
return false;
} else {
for (String sol : LIST_START) {
if (xyzListStr.startsWith(sol)) {
return true;
}
}
return false;
}
}
// ------------------------------------------------------------------------
/**
*** Parse Accelerometer list.
*** Leading/Trailing list characters (..) or [..] MUST NOT be specified.
*** Does not return null.
**/
private static Accelerometer[] _ParseAccelerometer(String xyzListStr)
{
// "0.00,0.00,0.00|0.50,0.50,0.00|1.00,1.00,0.00"
char listSep = LIST_SEPARATOR_CHAR;
/* profile string not specified */
if (StringTools.isBlank(xyzListStr)) {
// -- no list specified
return new Accelerometer[0];
}
/* parse */
String P[] = StringTools.split(xyzListStr,listSep);
Vector<Accelerometer> accList = new Vector<Accelerometer>();
for (int i = 0; i < P.length; i++) {
Accelerometer acc = new Accelerometer(P[i]);
accList.add(acc);
}
/* return array */
if (accList.size() >= 1) {
return accList.toArray(new Accelerometer[accList.size()]);
} else {
// -- list is empty
return new Accelerometer[0];
}
}
/**
*** Parse Accelerometer list.
*** Leading/Trailing list characters (..) or [..], are optional.
*** Does not return null.
**/
public static Accelerometer[] ParseAccelerometer(String xyzListStr)
{
// "0.00,0.00|0.50,0.50|1.00,1.00"
/* remove optional leading trailing list characters */
int sNdx = IndexOfListStartChar(xyzListStr,0/*fromNdx*/);
int eNdx = (sNdx >= 0)? IndexOfListEndChar(xyzListStr,sNdx+1) : -1;
if ((sNdx >= 0) || (eNdx >= 0)) {
// -- trim to list only
int S = (sNdx >= 0)? (sNdx + 1) : 0;
int E = (eNdx >= 0)? eNdx : xyzListStr.length();
xyzListStr = xyzListStr.substring(S,E).trim(); // just the list
}
/* parse/return */
return _ParseAccelerometer(xyzListStr);
}
/**
*** Parse Accelerometer list.
*** Leading/Trailing list characters (..) or [..], are required.
*** Does not return null.
**/
public static Accelerometer[] ParseAccelerometer(String xyzListStr, int fromNdx)
{
// "xyz:(0.00,0.00|0.50,0.50|1.00,1.00)"
/* find/remove leading/trailing brackets */
// -- leading/trailing list characters required
if (fromNdx < 0) { fromNdx = 0; }
int sNdx = IndexOfListStartChar(xyzListStr,fromNdx);
int eNdx = (sNdx >= 0)? IndexOfListEndChar(xyzListStr,sNdx+1) : -1;
if ((sNdx >= 0) && (eNdx > (sNdx + 1))) {
// -- trim to list only
xyzListStr = xyzListStr.substring(sNdx+1,eNdx).trim(); // just the list
} else {
// -- invalid list, no list specified
xyzListStr = null;
}
/* parse */
return _ParseAccelerometer(xyzListStr);
}
// ------------------------------------------------------------------------
/**
*** Appends a properly formatted Accelerometer list to the specified StringBuffer
**/
public static StringBuffer ToListString(Accelerometer accList[], StringBuffer sb)
{
if (sb == null) { sb = new StringBuffer(); }
sb.append(LIST_START[0]);
if (accList != null) {
int len = accList.length;
for (int i = 0; i < len; i++) {
if (i > 0) { sb.append(LIST_SEPARATOR_CHAR); }
Accelerometer A = accList[i];
A.toString(sb);
}
}
sb.append(LIST_END[0]);
return sb;
}
/**
*** Returns a properly formatted Accelerometer list String
**/
public static String ToListString(Accelerometer accList[])
{
return Accelerometer.ToListString(accList,null).toString();
}
// --------------------------------
/**
*** Appends a properly formatted Accelerometer list to the specified StringBuffer
**/
public static StringBuffer ToListString(java.util.List<Accelerometer> accList, StringBuffer sb)
{
if (sb == null) { sb = new StringBuffer(); }
sb.append(LIST_START[0]);
if (accList != null) {
int len = accList.size();
for (int i = 0; i < len; i++) {
if (i > 0) { sb.append(LIST_SEPARATOR_CHAR); }
Accelerometer A = accList.get(i);
A.toString(sb);
}
}
sb.append(LIST_END[0]);
return sb;
}
/**
*** Returns a properly formatted Accelerometer list String
**/
public static String ToListString(java.util.List<Accelerometer> accList)
{
return Accelerometer.ToListString(accList,null).toString();
}
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
public static final double METERS_PER_SEC_SQ_PER_G = 9.80665;
public static final double MPSS_PER_G_FORCE = METERS_PER_SEC_SQ_PER_G;
public static final double G_PER_MPSS_FORCE = 1.0 / METERS_PER_SEC_SQ_PER_G; // 0.101971621297793
public static final double MPH_PER_SEC_PER_MPSS = GeoPoint.METERS_PER_MILE / DateTime.SECONDS_PER_HOUR; // 0.44704
public static final double MPH_PER_SEC_PER_G = MPSS_PER_G_FORCE * DateTime.SECONDS_PER_HOUR * GeoPoint.MILES_PER_METER; // 21.9368512884753
public enum ForceUnits implements EnumTools.StringLocale {
MPSS (I18N.getString(Accelerometer.class,"Accelerometer.metersPerSecSquared","m/ss" ), 1.0 ),
CMPSS (I18N.getString(Accelerometer.class,"Accelerometer.centimPerSecSquared","cm/ss"), 100.0 ),
G (I18N.getString(Accelerometer.class,"Accelerometer.gForce" ,"G" ), G_PER_MPSS_FORCE ),
MPHPS (I18N.getString(Accelerometer.class,"Accelerometer.milesPerHourPerSec" ,"mph/s"), MPH_PER_SEC_PER_MPSS );
// ---
private I18N.Text aa = null;
private double mm = 1.0;
ForceUnits(I18N.Text a, double m) { aa=a; mm=m; }
public String toString() { return aa.toString(); }
public String toString(Locale loc) { return aa.toString(loc); }
public double getMultiplier() { return mm; }
public double convertFromMetersPerSS(double v) { return v * mm; }
public double convertToMetersPerSS(double v) { return v / mm; }
};
/**
*** Convert G-Force to Meters/Second/Second
**/
public static double Convert_G_to_MSS(double G)
{
if (Double.isNaN(G)) {
return Double.NaN;
} else {
return Accelerometer.ForceUnits.G.convertToMetersPerSS(G);
}
}
/**
*** Convert Meters/Second/Second to G-Force
**/
public static double Convert_MSS_to_G(double MSS)
{
if (Double.isNaN(MSS)) {
return Double.NaN;
} else {
return Accelerometer.ForceUnits.G.convertFromMetersPerSS(MSS);
}
}
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
/**
*** Gets the min/max values for the specified Axis.
*** Does not return null.
*** @param axis The desired axis (0=X, 1=Y, 2=Z)
*** @param G True to return value in G-force units, Meters/Second/Second otherwise
*** @param ACCList The Accelerometer array
*** @return A 2-element double array containing the min/max values.
**/
private static double[] _GetAxisMinMax(int axis, boolean G, Accelerometer... ACCList)
{
double min = Double.NaN;
double max = Double.NaN;
if (ListTools.size(ACCList) > 0) {
for (Accelerometer A : ACCList) {
if ((A != null) && A.hasAxis(axis)) {
double V = A.getAxis(axis, G);
// -- minimum
if (Double.isNaN(min) || (min < V)) {
min = V;
}
// -- maximum
if (Double.isNaN(max) || (max > V)) {
max = V;
}
}
}
}
return new double[] { min, max };
}
/**
*** Gets the X-Axis min/max values for the specified Axis.
*** Does not return null.
*** @param G True to return value in G-force units, Meters/Second/Second otherwise
*** @param ACCList The Accelerometer array
*** @return A 2-element double array containing the min/max values.
**/
public static double[] GetXAxisMinMax(boolean G, Accelerometer... ACCList)
{
return _GetAxisMinMax(X_AXIS, G, ACCList);
}
/**
*** Gets the Y-Axis min/max values for the specified Axis.
*** Does not return null.
*** @param G True to return value in G-force units, Meters/Second/Second otherwise
*** @param ACCList The Accelerometer array
*** @return A 2-element double array containing the min/max values.
**/
public static double[] GetYAxisMinMax(boolean G, Accelerometer... ACCList)
{
return _GetAxisMinMax(Y_AXIS, G, ACCList);
}
/**
*** Gets the Y-Axis min/max values for the specified Axis.
*** Does not return null.
*** @param G True to return value in G-force units, Meters/Second/Second otherwise
*** @param ACCList The Accelerometer array
*** @return A 2-element double array containing the min/max values.
**/
public static double[] GetZAxisMinMax(boolean G, Accelerometer... ACCList)
{
return _GetAxisMinMax(Z_AXIS, G, ACCList);
}
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
/**
*** Gets the maximum absolute-value Accelerometer magnitude
**/
public static Accelerometer GetMaximumMagnitude(Accelerometer... ACCList)
{
Accelerometer max = null;
if (!ListTools.isEmpty(ACCList)) {
// -- find maximum absolute-value magnitude
for (Accelerometer A : ACCList) {
if (!Accelerometer.isValid(A)) {
// -- skip this element
} else
if ((max == null) || (max.getMagnitude() < A.getMagnitude())) {
// -- latest maximum
max = A;
}
}
}
// -- return maximum maginitude
return max;
}
/**
*** Gets the maximum absolute-value Accelerometer magnitude
**/
public static Accelerometer GetMaximumMagnitude(java.util.List<Accelerometer> ACCList)
{
Accelerometer max = null;
if (!ListTools.isEmpty(ACCList)) {
// -- find maximum absolute-value magnitude
for (Accelerometer A : ACCList) {
if (!Accelerometer.isValid(A)) {
// -- skip this element
} else
if ((max == null) || (max.getMagnitude() < A.getMagnitude())) {
// -- latest maximum
max = A;
}
}
}
// -- return maximum maginitude
return max;
}
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
/**
*** Creates a Google DataTable JSON object containing the specified Accelerometer elements.
*** @param intervMS The time interval between accelerometer elements (in milliseconds).
*** @param G True to return the DataTable in G-force units.
*** @param ACCList The array of Accelerometer elements.
*** @return The Google DataTable JSON object
**/
public static String CreateGoogleDataTableJSON(int intervMS, boolean G, Accelerometer... ACCList)
{
// {
// cols: [
// { id: "time" , label: "Time" , type: "number" },
// { id: "x" , label: "X" , type: "number" },
// { id: "y" , label: "Y" , type: "number" },
// { id: "z" , label: "Z" , type: "number" },
// { id: "total", label: "Total", type: "number" }
// ],
// rows: [
// { c: [ { v: 0 }, { v: -12.6 }, { v: -18.1 }, { v: -18.1 }, { v: 18.1 } ] },
// { c: [ { v: 40 }, { v: -5.1 }, { v: -7.3 }, { v: -18.1 }, { v: 18.1 } ] },
// { c: [ { v: 80 }, { v: -5.1 }, { v: -2.1 }, { v: -18.1 }, { v: 18.1 } ] },
// { c: [ { v: 120 }, { v: -2.0 }, { v: -5.1 }, { v: -18.1 }, { v: 18.1 } ] },
// { c: [ { v: 160 }, { v: 5.8 }, { v: 6.7 }, { v: -18.1 }, { v: 18.1 } ] }
// ]
// }
/* init */
StringBuffer sb = new StringBuffer();
sb.append("{").append("\n");
/* "cols" */
sb.append(" cols: [").append("\n");
// --
sb.append(" { id:\"time\" , label:\"Time\" , type:\"number\" },").append("\n");
sb.append(" { id:\"x\" , label:\"X\" , type:\"number\" },").append("\n");
sb.append(" { id:\"y\" , label:\"Y\" , type:\"number\" },").append("\n");
sb.append(" { id:\"z\" , label:\"Z\" , type:\"number\" },").append("\n");
sb.append(" { id:\"total\", label:\"Total\", type:\"number\" } ").append("\n");
// --
sb.append(" ],").append("\n");
/* "rows" */
// { c: [{v:40},{v:-12.6},{v:-18.1},{v:-18.1},{v:18.1}] },
sb.append(" rows: [").append("\n");
int rows = 0, rowCnt = ListTools.size(ACCList);
for (int a = 0; a < rowCnt; a++) {
Accelerometer A = ACCList[a];
sb.append(" { c: [");
sb.append("{v:"+(a*intervMS) +"},");
sb.append("{v:"+(A.hasXAxis() ?A.getXAxis(G) :"null")+"},");
sb.append("{v:"+(A.hasYAxis() ?A.getYAxis(G) :"null")+"},");
sb.append("{v:"+(A.hasZAxis() ?A.getZAxis(G) :"null")+"},");
sb.append("{v:"+(A.hasMagnitude()?A.getMagnitude(G):"null")+"}" );
sb.append("] }");
if (rows < (rowCnt - 1)) { sb.append(","); }
sb.append("\n");
rows++;
}
sb.append(" ]").append("\n");
/* return */
sb.append("}");
return sb.toString();
}
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
/**
*** A private function performing the 'square' of the argument
*** @param X The argument to 'square'
*** @return The square of X (ie. 'X' raised to the 2nd power)
**/
private static double SQ(double X) { return X * X; }
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
private double xAxis = Double.NaN; // NaN if invalid
private double yAxis = Double.NaN; // NaN if invalid
private double zAxis = Double.NaN; // NaN if invalid
private double magVal = Double.NaN;
/**
*** Constructor
**/
public Accelerometer()
{
this(Double.NaN,Double.NaN,Double.NaN);
}
/**
*** Constructor
*** @param x X-Axis acceleration (Meters/Second/Second)
*** @param y Y-Axis acceleration (Meters/Second/Second)
*** @param z Z-Axis acceleration (Meters/Second/Second)
**/
public Accelerometer(double x, double y, double z)
{
this.xAxis = x; // NaN if invalid/unavailable
this.yAxis = y; // NaN if invalid/unavailable
this.zAxis = z; // NaN if invalid/unavailable
this.magVal = Double.NaN; // clear maginitude
}
/**
*** Constructor
*** @param xyz Comma separated XYZ-Axis acceleration (in Meters/Second/Second)
**/
public Accelerometer(String xyz)
{
if (StringTools.isBlank(xyz)) {
this.xAxis = Double.NaN;
this.yAxis = Double.NaN;
this.zAxis = Double.NaN;
} else {
String A[];
if (xyz.indexOf(SCALAR_SEPARATOR_CHAR) >= 0) {
A = StringTools.split(xyz,SCALAR_SEPARATOR_CHAR); // "0.0,0.0,0.0"
} else
if (xyz.indexOf("/") >= 0) {
A = StringTools.split(xyz,'/'); // "0.0/0.0/0.0"
} else {
A = new String[] { xyz };
}
this.xAxis = (A.length > 0)? StringTools.parseDouble(A[0],Double.NaN) : Double.NaN;
this.yAxis = (A.length > 1)? StringTools.parseDouble(A[1],Double.NaN) : Double.NaN;
this.zAxis = (A.length > 2)? StringTools.parseDouble(A[2],Double.NaN) : Double.NaN;
}
this.magVal = Double.NaN; // clear maginitude
}
/**
*** Copy Constructor
**/
public Accelerometer(Accelerometer other)
{
this();
if (other != null) {
this.xAxis = other.xAxis;
this.yAxis = other.yAxis;
this.zAxis = other.zAxis;
this.magVal = other.magVal; // clear maginitude
}
}
// ------------------------------------------------------------------------
/**
*** Returns true if the X-Axis value is valid
**/
public boolean hasXAxis()
{
return !Double.isNaN(this.xAxis);
}
/**
*** Gets the X-Axis accelerometer value (Meters/Second/Second).
*** Returns NaN if axis data is not available.
*** @return The X-Axis accelerometer value (Meters/Second/Second)
**/
public double getXAxis()
{
return this.xAxis; // NaN if invalid
}
/**
*** Gets the X-Axis accelerometer value (G-Force).
*** Returns NaN if axis data is not available.
*** @return The X-Axis accelerometer value (G-Force)
**/
public double getXAxisG()
{
return Convert_MSS_to_G(this.getXAxis()); // NaN if invalid
}
/**
*** Gets the X-Axis accelerometer value.
*** Returns NaN if axis data is not available.
*** @param G True to return value in G-force units, Meters/Second/Second otherwise
*** @return The X-Axis accelerometer value
**/
public double getXAxis(boolean G)
{
return G? this.getXAxisG() : this.getXAxis(); // NaN if invalid
}
/**
*** Sets the X-Axis accelerometer value (Meters/Second/Second).
*** @param MSS The X-Axis accelerometer value (Meters/Second/Second)
**/
public void setXAxis(double MSS)
{
this.xAxis = MSS; // NaN if invalid
this.magVal = Double.NaN; // clear maginitude
}
/**
*** Sets the X-Axis accelerometer value (G-Force).
*** @param G The X-Axis accelerometer value (G-Force)
**/
public void setXAxisG(double G)
{
this.setXAxis(Convert_G_to_MSS(G)); // NaN if invalid
}
// ------------------------------------------------------------------------
/**
*** Returns true if the Y-Axis value is valid
**/
public boolean hasYAxis()
{
return !Double.isNaN(this.yAxis);
}
/**
*** Gets the Y-Axis accelerometer value (Meters/Second/Second).
*** Returns NaN if axis data is not available.
*** @return The Y-Axis accelerometer value (Meters/Second/Second)
**/
public double getYAxis()
{
return this.yAxis; // NaN if invalid
}
/**
*** Gets the Y-Axis accelerometer value (G-Force).
*** Returns NaN if axis data is not available.
*** @return The Y-Axis accelerometer value (G-Force)
**/
public double getYAxisG()
{
return Convert_MSS_to_G(this.getYAxis()); // NaN if invalid
}
/**
*** Gets the Y-Axis accelerometer value.
*** Returns NaN if axis data is not available.
*** @param G True to return value in G-force units, Meters/Second/Second otherwise
*** @return The Y-Axis accelerometer value
**/
public double getYAxis(boolean G)
{
return G? this.getYAxisG() : this.getYAxis(); // NaN if invalid
}
/**
*** Sets the Y-Axis accelerometer value (Meters/Second/Second).
*** @param MSS The Y-Axis accelerometer value (Meters/Second/Second)
**/
public void setYAxis(double MSS)
{
this.yAxis = MSS; // NaN if invalid
this.magVal = Double.NaN; // clear maginitude
}
/**
*** Sets the Y-Axis accelerometer value (G-Force).
*** @param G The Y-Axis accelerometer value (G-Force)
**/
public void setYAxisG(double G)
{
this.setYAxis(Convert_G_to_MSS(G)); // NaN if invalid
}
// ------------------------------------------------------------------------
/**
*** Returns true if the Z-Axis value is valid
**/
public boolean hasZAxis()
{
return !Double.isNaN(this.zAxis);
}
/**
*** Gets the Z-Axis accelerometer value (Meters/Second/Second).
*** Returns NaN if axis data is not available.
*** @return The Z-Axis accelerometer value (Meters/Second/Second)
**/
public double getZAxis()
{
return this.zAxis; // NaN if invalid
}
/**
*** Gets the Z-Axis accelerometer value (G-Force).
*** Returns NaN if axis data is not available.
*** @return The Z-Axis accelerometer value (G-Force)
**/
public double getZAxisG()
{
return Convert_MSS_to_G(this.getZAxis()); // NaN if invalid
}
/**
*** Gets the Z-Axis accelerometer value.
*** Returns NaN if axis data is not available.
*** @param G True to return value in G-force units, Meters/Second/Second otherwise
*** @return The Z-Axis accelerometer value
**/
public double getZAxis(boolean G)
{
return G? this.getZAxisG() : this.getZAxis(); // NaN if invalid
}
/**
*** Sets the Z-Axis accelerometer value (Meters/Second/Second).
*** @param MSS The Z-Axis accelerometer value (Meters/Second/Second)
**/
public void setZAxis(double MSS)
{
this.zAxis = MSS; // NaN if invalid
this.magVal = Double.NaN; // clear maginitude
}
/**
*** Sets the Z-Axis accelerometer value (G-Force).
*** @param G The Z-Axis accelerometer value (G-Force)
**/
public void setZAxisG(double G)
{
this.setZAxis(Convert_G_to_MSS(G)); // NaN if invalid
}
// ------------------------------------------------------------------------
/**
*** Returns true if the specified axis is available
*** @param axis The desired axis (0=X, 1=Y, 2=Z)
*** @return True if the specified axis is available
**/
public boolean hasAxis(int axis)
{
switch (axis) {
case X_AXIS: return this.hasXAxis();
case Y_AXIS: return this.hasYAxis();
case Z_AXIS: return this.hasZAxis();
default : return false;
}
}
/**
*** Gets the specified axis accelerometer value.
*** Returns NaN if axis data is not available.
*** @param axis The desired axis (0=X, 1=Y, 2=Z)
*** @param G True to return value in G-force units, Meters/Second/Second otherwise
*** @return The Z-Axis accelerometer value
**/
public double getAxis(int axis, boolean G)
{
switch (axis) {
case X_AXIS: return G? this.getXAxisG() : this.getXAxis();
case Y_AXIS: return G? this.getYAxisG() : this.getYAxis();
case Z_AXIS: return G? this.getZAxisG() : this.getZAxis();
default : return Double.NaN;
}
}
// ------------------------------------------------------------------------
/**
*** Gets the valid axis bitmap
**/
public int getValidAxis()
{
int mask = 0;
if (this.hasXAxis()) { mask |= 0x01; }
if (this.hasYAxis()) { mask |= 0x02; }
if (this.hasZAxis()) { mask |= 0x04; }
return mask;
}
/**
*** Returns true if all axis' are valid
**/
public boolean isValid()
{
return (this.getValidAxis() == 0x07)? true : false;
}
/**
*** Returns true if the specified Accelerometer is valid
**/
public static boolean isValid(Accelerometer A)
{
return ((A != null) && A.isValid())? true : false;
}
// ------------------------------------------------------------------------
/**
*** Returns true if this Accelerometer instance has a valid magnitude
**/
public boolean hasMagnitude()
{
return this.isValid(); // magnitude can be calculated if this Accelerometer is valid
}
/**
*** Gets the vector magnitude (Meters/Second/Second)
*** @return The vector magnitude (Meters/Second/Second)
**/
public double getMagnitude()
{
if (Double.isNaN(this.magVal) && this.isValid()) {
// -- cache magnitude
this.magVal = Math.sqrt(SQ(this.getXAxis()) + SQ(this.getYAxis()) + SQ(this.getZAxis()));
}
return this.magVal;
}
/**
*** Gets the vector magnitude (G-Force)
*** @return The vector magnitude in (G-Force)
**/
public double getMagnitudeG()
{
return Convert_MSS_to_G(this.getMagnitude());
}
/**
*** Gets the vector magnitude.
*** @param G True to return value in G-force units, Meters/Second/Second otherwise
*** @return The vector magnitude.
**/
public double getMagnitude(boolean G)
{
return G? this.getMagnitudeG() : this.getMagnitude();
}
// ------------------------------------------------------------------------
/**
*** Returns true if the specified Accelerometer is equal to this instance.
*** @param other The other Accelerometer instance.
*** @return True if the specified Accelerometer is equal to this instance.
**/
public boolean equals(Object other)
{
if (other instanceof Accelerometer) {
Accelerometer A = (Accelerometer)other;
if (A.getValidAxis() != this.getValidAxis()) {
return false;
} else
if (this.hasXAxis() && (this.getXAxis() != A.getXAxis())) {
return false;
} else
if (this.hasYAxis() && (this.getYAxis() != A.getYAxis())) {
return false;
} else
if (this.hasZAxis() && (this.getZAxis() != A.getZAxis())) {
return false;
} else {
return true;
}
}
return false;
}
// ------------------------------------------------------------------------
/**
*** Gets the String representation of this instance
*** @return The String representation of this instance
**/
public String toString()
{
return this.toString(null);
}
/**
*** Gets the String representation of this instance
*** @return The String representation of this instance
**/
public String toString(StringBuffer sb)
{
// "<X>,<Y>,<Z>"
if (sb == null) { sb = new StringBuffer(); }
String NaN = "NaN";
// -- X
double X = this.getXAxis();
sb.append(Double.isNaN(X)? NaN: StringTools.format(X,"0.00000"));
sb.append(SCALAR_SEPARATOR_CHAR);
// -- Y
double Y = this.getYAxis();
sb.append(Double.isNaN(Y)? NaN: StringTools.format(Y,"0.00000"));
sb.append(SCALAR_SEPARATOR_CHAR);
// -- Z
double Z = this.getZAxis();
sb.append(Double.isNaN(Z)? NaN: StringTools.format(Z,"0.00000"));
return sb.toString();
}
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
}
| [
"prinya@throughwave.co.th"
] | prinya@throughwave.co.th |
fb01641beb669f6e48c27f43bf4966f22f53ff14 | afe93a33205fa314e6b15a420c59b30540f2c27b | /src/main/java/com/example/proyectUser/ProyectUserApplication.java | 038c1399646002468d96f23d6b42dadf635bcb83 | [] | no_license | anakarenluna/SpringBoot1 | 451dc38a2b3c66120a1cefaf2835e7b435b923de | dee864a39e6a647fd6ba73ec5986f6b879ef6dd5 | refs/heads/master | 2022-04-16T01:48:51.751206 | 2020-04-10T21:52:31 | 2020-04-10T21:52:31 | 254,740,317 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 326 | java | package com.example.proyectUser;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ProyectUserApplication {
public static void main(String[] args) {
SpringApplication.run(ProyectUserApplication.class, args);
}
}
| [
"ana.luna@stkprojects.com"
] | ana.luna@stkprojects.com |
0be92c719fb9e4a41f7464430f76028ce38d787d | dc81649732414dee4d552a240b25cb3d055799b1 | /src/test/java/org/assertj/core/api/classes/ClassAssert_isProtected_Test.java | b198dea37505c01b5156488cd08860f1fdf3f55f | [
"Apache-2.0"
] | permissive | darkliang/assertj-core | e40de697a5ac19db7a652178963a523dfe6f89ff | 4a25dab7b99f292d158dc8118ac84dc7b4933731 | refs/heads/integration | 2021-05-16T23:22:49.013854 | 2020-05-31T12:36:31 | 2020-05-31T12:36:31 | 250,513,505 | 1 | 0 | Apache-2.0 | 2020-06-02T09:25:54 | 2020-03-27T11:11:36 | Java | UTF-8 | Java | false | false | 1,173 | java | /*
* 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.
*
* Copyright 2012-2020 the original author or authors.
*/
package org.assertj.core.api.classes;
import org.assertj.core.api.ClassAssert;
import org.assertj.core.api.ClassAssertBaseTest;
import static org.mockito.Mockito.verify;
/**
* Tests for <code>{@link ClassAssert#isProtected()} ()}</code>.
*/
public class ClassAssert_isProtected_Test extends ClassAssertBaseTest {
@Override
protected ClassAssert invoke_api_method() {
return assertions.isProtected();
}
@Override
protected void verify_internal_effects() {
verify(classes).assertIsProtected(getInfo(assertions), getActual(assertions));
}
}
| [
"joel.costigliola@gmail.com"
] | joel.costigliola@gmail.com |
480c24c4220adbdec2cb8dbe98b38a662b097db8 | 191b13158876f190556bef2ccf6551cde0cd2374 | /fastjee-cloud-web/fastjee-cloud-web-admin/fastjee-cloud-web-admin/src/main/java/cn/chi365/fastjee/cloud/web/admin/AdminApplication.java | 86918a75de4f31510432a48900ab3a2eace3e0ee | [
"Apache-2.0"
] | permissive | why66666/FastJee-Cloud | 92d7950ae1a15e544c05a012a6b70d047753497a | 3586e34a3010f14a73fedc11b62634f885bf0c0a | refs/heads/master | 2023-08-09T13:04:31.436646 | 2019-08-21T18:18:33 | 2019-08-21T18:18:33 | 203,635,431 | 0 | 0 | Apache-2.0 | 2023-07-22T14:11:21 | 2019-08-21T17:45:03 | JavaScript | UTF-8 | Java | false | false | 715 | java | package cn.chi365.fastjee.cloud.web.admin;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
/***
*
* @author :YuSir Wang
* @date :Created in 0:47 2019/3/29
* @version :
*/
@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
@MapperScan("cn.chi365.fastjee.cloud.web.admin.dao")
public class AdminApplication {
public static void main(String[] args) {
SpringApplication.run(AdminApplication.class,args);
}
}
| [
"why_519@163.com"
] | why_519@163.com |
0841444395f1c8a1e93eece4ccf89724880e67b4 | ccd58c0fd505d131611e9c5f2fb3b01a60572eeb | /src/main/java/com/sugar/quartz/retry/RetryDot.java | ebba0f9ef1eef551407620c1f988e8cfc98607cd | [] | no_license | SugarTYY/quartz_demo | d394f9727397c3bd7ddec75c5a17f075666544a3 | 3f975680042ae0b925df8f9ef2778401bb906c32 | refs/heads/master | 2020-06-12T06:03:44.141820 | 2019-06-29T07:26:21 | 2019-06-29T07:26:21 | 194,215,463 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,152 | java | package com.sugar.quartz.retry;
import java.lang.annotation.*;
/**
* 重试机制注解
*
* @author: Sugar
* @Date: 2019/6/28
*/
@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface RetryDot {
/**
* 重试次数
* @param
* @return: int
* @Date: 2019/6/29
*/
int times() default 0;
/**
* 重试间隔
* @param
* @return: int
* @Date: 2019/6/29
*/
int sleep() default 0;
/**
* 重试时间递增间隔倍数
* multiplier大于0
* eg:sleep=100,multiplier=1
* 延时100ms进行下次重试
* eg1:sleep=100,multiplier=2
* 延时100ms第一次重试,延时200ms重试第二次,延时400ms重试第三次。。。
* eg2:sleep=100,multiplier=0.5
* 延时100ms第一次重试,延时50ms第二次重试,延时25ms重试第三次。。。
* @param
* @return: double
* @Date: 2019/6/29
*/
double multiplier() default 1;
/**
* 是否异步
* @param
* @return: boolean
* @Date: 2019/6/29
*/
boolean asyn() default false;
}
| [
"tangyangyang_18@live.com"
] | tangyangyang_18@live.com |
987797cc33cca35b90237e0a082520b2471a7c3a | 3a3cb6a1a0c60d9e7d325daf9ac654981a99d98a | /.svn/pristine/80/80a6d7afd4eb7d8845bde4bfe8851011c459ab30.svn-base | 52cbec4fed24e344cf2150ccedc561561e3d71eb | [] | no_license | sfw0807/evaluation | 0877e2f4c94ea1ae97cdef460e47d42eb9596bbb | 91ab5e2ebc03df35c0acc5b6dd6d07e593ee4b23 | refs/heads/master | 2021-01-19T07:09:46.970110 | 2017-04-13T08:20:28 | 2017-04-13T08:20:28 | 87,527,354 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 521 | package com.fykj.product.evaluation.api.filling.vo;
import java.util.List;
import com.fykj.product.evaluation.api.filling.model.RptRemark;
public class ReportQueAnsWraperVO {
private List<ReportQueAnsOutVO> outVO;
private RptRemark remark;
public List<ReportQueAnsOutVO> getOutVO() {
return outVO;
}
public void setOutVO(List<ReportQueAnsOutVO> outVO) {
this.outVO = outVO;
}
public RptRemark getRemark() {
return remark;
}
public void setRemark(RptRemark remark) {
this.remark = remark;
}
}
| [
"lixiaowang-007@163.com"
] | lixiaowang-007@163.com | |
750810629f64db38cadac9f402d2dceb9346379a | 2f5309a7a70902d1e7471e81b975853cdfe4c6ee | /app/src/main/java/com/luciayanicelli/icsalud/Services/AlertaVerdeJobService.java | a6c6d8ea6f8419148cd452d4e3197423b85b64cf | [] | no_license | lmyanicelli/ICsalud | 0fa2010de83a52f58dd0036647835bbcc7542b1f | c85523aa83dcfeebec5f3ff5f104888d3bb314f8 | refs/heads/master | 2020-03-22T04:21:49.736104 | 2018-12-04T21:51:25 | 2018-12-04T21:51:25 | 139,492,957 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,451 | java | package com.luciayanicelli.icsalud.Services;
import android.app.job.JobParameters;
import android.app.job.JobService;
import android.os.Build;
import android.os.Handler;
import android.support.annotation.RequiresApi;
import android.util.Log;
import com.luciayanicelli.icsalud.utils.PAFC;
import com.luciayanicelli.icsalud.utils.Peso;
import com.luciayanicelli.icsalud.utils.Sintomas;
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
public class AlertaVerdeJobService extends JobService {
private boolean isWorking=false;
@Override
public boolean onStartJob(final JobParameters params) {
Log.d(this.getClass().getSimpleName(),"onStartJobAV");
Handler mHandler = new Handler(getMainLooper());
mHandler.post(new Runnable() {
@Override
public void run() {
isWorking = true;
Peso mPeso = new Peso(getApplicationContext());
mPeso.alertaVerde();
PAFC mPAFC = new PAFC(getApplicationContext());
mPAFC.alertaVerde();
Sintomas mSintomas = new Sintomas(getApplicationContext());
mSintomas.alertaVerde();
}
});
return isWorking;
}
@Override
public boolean onStopJob(JobParameters jobParameters) {
boolean needsReschedule = isWorking;
jobFinished(jobParameters, needsReschedule);
return needsReschedule;
}
}
| [
"luciayanicelli@gmail.com"
] | luciayanicelli@gmail.com |
383ed489f8cc9784721d140f51c6eed708231797 | a330a7bcd8202ebb7c45967ff993278d9302ba96 | /Programa/src/Programa_asistencia/Principal.java | f2fdf76df87879d736d26d75104dada84c201ec8 | [] | no_license | LeonelYLuego/MultiSCID | f5dfa2c6111c0b1678e2adac3d59bc2dabb24940 | 2f79ea46f423500f044989e1d8dcf32c7e4d9cf2 | refs/heads/master | 2023-02-18T22:53:29.867733 | 2021-01-22T04:27:24 | 2021-01-22T04:27:24 | 331,797,375 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,021 | java | package Programa_asistencia;
import java.awt.Dimension;
import java.awt.Point;
import java.awt.Toolkit;
import java.util.Locale;
import javax.swing.ImageIcon;
public class Principal extends javax.swing.JFrame {
private boolean docente;
public Principal(int cargo) {
initComponents();
Dimension pantalla = Toolkit.getDefaultToolkit().getScreenSize();
int height = pantalla.height;
int width = pantalla.width;
int fheight = this.getHeight();
int fwidth = this.getWidth();
setLocation((width - fwidth) / 2, (height - fheight) / 2);
this.setResizable(false);
this.setSize(fwidth - 10, fheight - 10);
this.setTitle("MultiSCID");
setIconImage(new ImageIcon(getClass().getResource("/Imagenes/Icono.png")).getImage());
switch(cargo){
case 1:
btnUsuarios.setVisible(false);
break;
case 2:
btnUsuarios.setVisible(false);
btnAgregarAlumno.setVisible(false);
btnTelefonos.setLocation(new Point(20, 180));
btnDirecciones.setLocation(new Point(320, 180));
btnAsistencias.setLocation(new Point(170, 300));
docente = true;
break;
}
}
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
btnAsistencias = new javax.swing.JButton();
btnDirecciones = new javax.swing.JButton();
btnTutores = new javax.swing.JButton();
btnAgregarAlumno = new javax.swing.JButton();
btnAlumnos = new javax.swing.JButton();
btnTelefonos = new javax.swing.JButton();
btnUsuarios = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
getContentPane().setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
jPanel1.setBackground(new java.awt.Color(255, 255, 255));
jPanel1.setLayout(null);
btnAsistencias.setBackground(new java.awt.Color(204, 204, 255));
btnAsistencias.setFont(new java.awt.Font("Berlin Sans FB", 0, 28)); // NOI18N
btnAsistencias.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Imagenes/imgAsistencia.png"))); // NOI18N
btnAsistencias.setText(" Asistencias");
btnAsistencias.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnAsistenciasActionPerformed(evt);
}
});
jPanel1.add(btnAsistencias);
btnAsistencias.setBounds(20, 300, 290, 110);
btnDirecciones.setBackground(new java.awt.Color(204, 204, 255));
btnDirecciones.setFont(new java.awt.Font("Berlin Sans FB", 0, 24)); // NOI18N
btnDirecciones.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Imagenes/imgDirecciones.png"))); // NOI18N
btnDirecciones.setText(" Direcciones");
btnDirecciones.setActionCommand("Direcciones");
btnDirecciones.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnDireccionesActionPerformed(evt);
}
});
jPanel1.add(btnDirecciones);
btnDirecciones.setBounds(320, 300, 290, 110);
btnTutores.setBackground(new java.awt.Color(204, 204, 255));
btnTutores.setFont(new java.awt.Font("Berlin Sans FB", 0, 36)); // NOI18N
btnTutores.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Imagenes/imgTutores.png"))); // NOI18N
btnTutores.setText(" Tutores");
btnTutores.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnTutoresActionPerformed(evt);
}
});
jPanel1.add(btnTutores);
btnTutores.setBounds(320, 60, 290, 110);
btnAgregarAlumno.setBackground(new java.awt.Color(204, 204, 255));
btnAgregarAlumno.setFont(new java.awt.Font("Berlin Sans FB", 0, 20)); // NOI18N
btnAgregarAlumno.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Imagenes/imgAñadirAlumno.png"))); // NOI18N
btnAgregarAlumno.setText("Agregar alumno");
btnAgregarAlumno.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnAgregarAlumnoActionPerformed(evt);
}
});
jPanel1.add(btnAgregarAlumno);
btnAgregarAlumno.setBounds(20, 180, 290, 109);
btnAlumnos.setBackground(new java.awt.Color(204, 204, 255));
btnAlumnos.setFont(new java.awt.Font("Berlin Sans FB", 0, 36)); // NOI18N
btnAlumnos.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Imagenes/imgAlumno.png"))); // NOI18N
btnAlumnos.setText("Alumnos");
btnAlumnos.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnAlumnosActionPerformed(evt);
}
});
jPanel1.add(btnAlumnos);
btnAlumnos.setBounds(20, 60, 290, 110);
btnTelefonos.setBackground(new java.awt.Color(204, 204, 255));
btnTelefonos.setFont(new java.awt.Font("Berlin Sans FB", 0, 28)); // NOI18N
btnTelefonos.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Imagenes/imgTelefonos.png"))); // NOI18N
btnTelefonos.setText(" Teléfonos");
btnTelefonos.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnTelefonosActionPerformed(evt);
}
});
jPanel1.add(btnTelefonos);
btnTelefonos.setBounds(320, 180, 290, 109);
btnUsuarios.setBackground(new java.awt.Color(204, 204, 255));
btnUsuarios.setFont(new java.awt.Font("Berlin Sans FB", 0, 14)); // NOI18N
btnUsuarios.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Imagenes/imgUsuario2.png"))); // NOI18N
btnUsuarios.setText(" Usuarios");
btnUsuarios.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
btnUsuariosActionPerformed(evt);
}
});
jPanel1.add(btnUsuarios);
btnUsuarios.setBounds(460, 10, 150, 41);
jLabel1.setFont(new java.awt.Font("Berlin Sans FB", 0, 24)); // NOI18N
jLabel1.setForeground(new java.awt.Color(0, 116, 207));
jLabel1.setText("¡Bienvenido a MultiSCID!");
jPanel1.add(jLabel1);
jLabel1.setBounds(20, 10, 250, 40);
getContentPane().add(jPanel1, new org.netbeans.lib.awtextra.AbsoluteConstraints(0, 0, 630, 430));
pack();
}// </editor-fold>//GEN-END:initComponents
private void btnTutoresActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnTutoresActionPerformed
new Editar_tutor(this, true, docente).setVisible(true);
}//GEN-LAST:event_btnTutoresActionPerformed
private void btnAgregarAlumnoActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnAgregarAlumnoActionPerformed
new Agregar_alumno(this, true).setVisible(true);
}//GEN-LAST:event_btnAgregarAlumnoActionPerformed
private void btnAlumnosActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnAlumnosActionPerformed
new Editar_alumno(this, true, docente).setVisible(true);
}//GEN-LAST:event_btnAlumnosActionPerformed
private void btnDireccionesActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnDireccionesActionPerformed
new Editar_direccion(this, true, docente).setVisible(true);
}//GEN-LAST:event_btnDireccionesActionPerformed
private void btnAsistenciasActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnAsistenciasActionPerformed
new Asistencia(this, true).setVisible(true);
}//GEN-LAST:event_btnAsistenciasActionPerformed
private void btnTelefonosActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnTelefonosActionPerformed
new Editar_telefono(this, true, docente).setVisible(true);
}//GEN-LAST:event_btnTelefonosActionPerformed
private void btnUsuariosActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnUsuariosActionPerformed
new Editar_usuario(this, true).setVisible(true);
}//GEN-LAST:event_btnUsuariosActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(Principal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Principal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Principal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Principal.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Principal(0).setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton btnAgregarAlumno;
private javax.swing.JButton btnAlumnos;
private javax.swing.JButton btnAsistencias;
private javax.swing.JButton btnDirecciones;
private javax.swing.JButton btnTelefonos;
private javax.swing.JButton btnTutores;
private javax.swing.JButton btnUsuarios;
private javax.swing.JLabel jLabel1;
private javax.swing.JPanel jPanel1;
// End of variables declaration//GEN-END:variables
}
| [
"leonel-leonel-1@hotmail.com"
] | leonel-leonel-1@hotmail.com |
03a89d0269c244aa5411524b2b3c5cb84cc9e630 | 5c2a03cc7066891260eff65b8d5f75c2487fe519 | /src/main/java/net/proselyte/bookmanger/model/Book.java | 37a37e0a768b33c2c259a81d92e0c6716a0f8013 | [] | no_license | Vuk12345/BookManger1 | 1971e5050d08ed47c9c05f1e6889fe2e1d154583 | c48de60a7cc131b0024708d1010047b760179f4f | refs/heads/master | 2020-03-20T22:26:43.708050 | 2018-06-18T20:01:44 | 2018-06-18T20:01:44 | 137,799,199 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,262 | java | package net.proselyte.bookmanger.model;
import javax.persistence.*;
@Entity
@Table(name = "books")
public class Book {
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int id;
@Column(name = "book_title")
private String bookTitle;
@Column(name = "book_author")
private String bookAuthor;
@Column(name = "book_price")
private int price;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getBookTitle() {
return bookTitle;
}
public void setBookTitle(String bookTitle) {
this.bookTitle = bookTitle;
}
public String getBookAuthor() {
return bookAuthor;
}
public void setBookAuthor(String bookAuthor) {
this.bookAuthor = bookAuthor;
}
public int getPrice() {
return price;
}
public void setPrice(int price) {
this.price = price;
}
@Override
public String toString() {
return "Book{" +
"id=" + id +
", bookTitle='" + bookTitle + '\'' +
", bookAuthor='" + bookAuthor + '\'' +
", price=" + price +
'}';
}
}
| [
"vukkokotovic@gmail.com"
] | vukkokotovic@gmail.com |
c6403e79dfa63385e5257abe3f240e3465294f82 | bfdc22f1e2cecf0198107ae9e36dad14ef3d2f74 | /com.tsekas.metamodel.edit/src/language/foundation/datatype/provider/DatatypeItemProviderAdapterFactory.java | e5476cbd427eb816424ce653b434fd314f265a20 | [] | no_license | zoetsekas/xenia | e12dac6a5e3866643f7b6a1262f6569f71823516 | 4e34999fb8e35f3dbf142fd817e9631133ad5ee2 | refs/heads/master | 2021-01-01T04:29:20.366377 | 2018-06-05T12:05:01 | 2018-06-05T12:05:01 | 57,205,185 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,335 | java | /**
*/
package language.foundation.datatype.provider;
import java.util.ArrayList;
import java.util.Collection;
import language.foundation.datatype.util.DatatypeAdapterFactory;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.Notifier;
import org.eclipse.emf.edit.provider.ChangeNotifier;
import org.eclipse.emf.edit.provider.ComposeableAdapterFactory;
import org.eclipse.emf.edit.provider.ComposedAdapterFactory;
import org.eclipse.emf.edit.provider.IChangeNotifier;
import org.eclipse.emf.edit.provider.IDisposable;
import org.eclipse.emf.edit.provider.IEditingDomainItemProvider;
import org.eclipse.emf.edit.provider.IItemLabelProvider;
import org.eclipse.emf.edit.provider.IItemPropertySource;
import org.eclipse.emf.edit.provider.INotifyChangedListener;
import org.eclipse.emf.edit.provider.IStructuredItemContentProvider;
import org.eclipse.emf.edit.provider.ITreeItemContentProvider;
/**
* This is the factory that is used to provide the interfaces needed to support Viewers.
* The adapters generated by this factory convert EMF adapter notifications into calls to {@link #fireNotifyChanged fireNotifyChanged}.
* The adapters also support Eclipse property sheets.
* Note that most of the adapters are shared among multiple instances.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public class DatatypeItemProviderAdapterFactory extends DatatypeAdapterFactory implements ComposeableAdapterFactory, IChangeNotifier, IDisposable {
/**
* This keeps track of the root adapter factory that delegates to this adapter factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ComposedAdapterFactory parentAdapterFactory;
/**
* This is used to implement {@link org.eclipse.emf.edit.provider.IChangeNotifier}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected IChangeNotifier changeNotifier = new ChangeNotifier();
/**
* This keeps track of all the supported types checked by {@link #isFactoryForType isFactoryForType}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Collection<Object> supportedTypes = new ArrayList<Object>();
/**
* This constructs an instance.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public DatatypeItemProviderAdapterFactory() {
supportedTypes.add(IEditingDomainItemProvider.class);
supportedTypes.add(IStructuredItemContentProvider.class);
supportedTypes.add(ITreeItemContentProvider.class);
supportedTypes.add(IItemLabelProvider.class);
supportedTypes.add(IItemPropertySource.class);
}
/**
* This returns the root adapter factory that contains this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ComposeableAdapterFactory getRootAdapterFactory() {
return parentAdapterFactory == null ? this : parentAdapterFactory.getRootAdapterFactory();
}
/**
* This sets the composed adapter factory that contains this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setParentAdapterFactory(ComposedAdapterFactory parentAdapterFactory) {
this.parentAdapterFactory = parentAdapterFactory;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean isFactoryForType(Object type) {
return supportedTypes.contains(type) || super.isFactoryForType(type);
}
/**
* This implementation substitutes the factory itself as the key for the adapter.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Adapter adapt(Notifier notifier, Object type) {
return super.adapt(notifier, this);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object adapt(Object object, Object type) {
if (isFactoryForType(type)) {
Object adapter = super.adapt(object, type);
if (!(type instanceof Class<?>) || (((Class<?>)type).isInstance(adapter))) {
return adapter;
}
}
return null;
}
/**
* This adds a listener.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void addListener(INotifyChangedListener notifyChangedListener) {
changeNotifier.addListener(notifyChangedListener);
}
/**
* This removes a listener.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void removeListener(INotifyChangedListener notifyChangedListener) {
changeNotifier.removeListener(notifyChangedListener);
}
/**
* This delegates to {@link #changeNotifier} and to {@link #parentAdapterFactory}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void fireNotifyChanged(Notification notification) {
changeNotifier.fireNotifyChanged(notification);
if (parentAdapterFactory != null) {
parentAdapterFactory.fireNotifyChanged(notification);
}
}
/**
* This disposes all of the item providers created by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void dispose() {
}
}
| [
"Zoe@192.168.1.72"
] | Zoe@192.168.1.72 |
70516bbf9bf93784008df127a0cb9dd4562cba7d | 174e49e90c16fbda75d818f5c588f48d04a25c1c | /src/main/java/demo/client/CourseRank.java | e34bdf32bbc8976d1cf61b58cb6e68911ade53b1 | [] | no_license | farinim/Spark | 45e786879e9c7164aace0c80ec9f29e2e09e73f3 | 96e08b0aca0d069c6c032ed556e3e0d54c413196 | refs/heads/master | 2023-06-18T06:04:38.878582 | 2021-07-18T15:12:43 | 2021-07-18T15:12:43 | 377,199,245 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,992 | java | package demo.client;
import org.apache.log4j.Level;
import org.apache.log4j.Logger;
import org.apache.spark.SparkConf;
import org.apache.spark.api.java.JavaPairRDD;
import org.apache.spark.api.java.JavaRDD;
import org.apache.spark.api.java.JavaSparkContext;
import org.apache.spark.api.java.Optional;
import scala.Tuple2;
import java.util.ArrayList;
import java.util.List;
public class CourseRank {
public static void main( String[] args ) {
Logger.getLogger("org.apache").setLevel(Level.WARN);
System.setProperty("hadoop.home.dir", "d:/Installed/Hadoop/");
SparkConf sparkConf = new SparkConf().setAppName("startingSpark").setMaster("local[*]");
sparkConf.set("spark.testing.memory", "2147480000");
JavaSparkContext sc = new JavaSparkContext(sparkConf);
JavaPairRDD<Integer, String> courseTitles = loadCourseTitles(sc);
JavaPairRDD<Integer, Integer> courseChapters = loadCourseChapters(sc);
JavaPairRDD<String, Integer> visits = loadChapterVisited(sc);
/*
//Chapters per course:
JavaPairRDD<Integer, Long> chaptersPerCourse = courseChapters.mapToPair(tuple -> new Tuple2<>(tuple._1, 1L));
JavaPairRDD<Integer, Long> courseRanks = chaptersPerCourse.reduceByKey(( value1, value2 ) -> value1 + value2);
//courseRanks.collect().forEach(System.out::println);
JavaPairRDD<String, Long> titleRanks = courseTitles.leftOuterJoin(courseRanks).mapToPair(tuple -> new Tuple2<>(tuple._2._1, tuple._2._2.orElse(0L)));
JavaPairRDD<Long, String> switched = titleRanks.mapToPair(tuple -> new Tuple2<>(tuple._2, tuple._1));
switched.sortByKey(false).map(tuple -> tuple._2 + ": "+ tuple._1).collect().forEach(System.out::println);*/
//Distinc visits
JavaPairRDD<Integer, Long> chapterDistinctVisits = visits.distinct().mapToPair(tuple -> new Tuple2<>(tuple._2, 1L)).reduceByKey(( value1, value2 ) -> value1 + value2);
JavaPairRDD<Integer, Tuple2<Integer, Optional<Long>>> chapterCourseVisits = courseChapters.mapToPair(tuple -> new Tuple2(tuple._2,tuple._1)).leftOuterJoin(chapterDistinctVisits);
//chapterCourseVisits.collect().forEach(System.out::println);
JavaPairRDD<Integer, Long> courseVisits = chapterCourseVisits.mapToPair(tuple -> new Tuple2<>(tuple._2._1, tuple._2._2.orElse(0L))).reduceByKey(( value1, value2 ) -> value1 + value2);
JavaPairRDD<String, Long> coursePopularity = courseTitles.join(courseVisits).mapToPair(tuple -> new Tuple2<>(tuple._2._1, tuple._2._2));
coursePopularity.map(tuple -> tuple._1 + " : " + tuple._2).collect().forEach(System.out::println);
//TODO - compute % of course content visited by a users, how many of the total chapters of a course were attentended by users.
}
private static JavaPairRDD<String, Integer> loadChapterVisited( JavaSparkContext sc ) {
List<Tuple2<String,Integer>> visitedChapters = new ArrayList<>();
visitedChapters.add(new Tuple2<>("Alicia",14));
visitedChapters.add(new Tuple2<>("Alicia",10));
visitedChapters.add(new Tuple2<>("Alicia",1));
return sc.parallelizePairs(visitedChapters);
}
private static JavaPairRDD<Integer, Integer> loadCourseChapters( JavaSparkContext sc ) {
List<Tuple2<Integer,Integer>> courseChapters = new ArrayList<>();
courseChapters.add(new Tuple2<>(1,1));
courseChapters.add(new Tuple2<>(1,10));
courseChapters.add(new Tuple2<>(2,14));
courseChapters.add(new Tuple2<>(3,21));
return sc.parallelizePairs(courseChapters);
}
private static JavaPairRDD<Integer, String> loadCourseTitles( JavaSparkContext sc ) {
List<Tuple2<Integer,String>> courseTitles = new ArrayList<>();
courseTitles.add(new Tuple2(1, "Apache Spark"));
courseTitles.add(new Tuple2(2, "Hadoop"));
courseTitles.add(new Tuple2(3, "SparkSQL"));
return sc.parallelizePairs(courseTitles);
}
}
| [
"farinim@gmail.com"
] | farinim@gmail.com |
73cd1c1441f04a66878d84dc9815ee29af697dba | d7bd2cb1a581c63eb5ae622ffdaa305409500fc7 | /springProject/src/main/java/member/service/MemberServiceImpl.java | 3c3918f2059a3f61f69b796b8efd3f26e2027af4 | [] | no_license | bloodfinger8/spring-study | abe4f3fe0cae42d07c97fdb726a8b6ac08931fea | 0c756257480165567fdda76670bd12124d1f42fe | refs/heads/master | 2022-11-24T00:20:43.815942 | 2019-11-04T13:35:17 | 2019-11-04T13:35:17 | 213,396,396 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 802 | java | package member.service;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import member.bean.MemberDTO;
import member.bean.ZipcodeDTO;
import member.dao.MemberDAO;
@Service(value="memberService")
public class MemberServiceImpl implements MemberService {
@Autowired
private MemberDAO memberDAO;
@Override
public MemberDTO login(Map<String, String> map) {
return memberDAO.login(map);
}
@Override
public MemberDTO checkId(String id) {
return memberDAO.checkId(id);
}
@Override
public List<ZipcodeDTO> getZipcodeList(Map<String, String> map) {
return memberDAO.getZipcodeList(map);
}
@Override
public void write(MemberDTO memberDTO) {
memberDAO.write(memberDTO);
}
}
| [
"didwodn8822@gmail.com"
] | didwodn8822@gmail.com |
7a7aa50f6e98ca7a9193d01f7c9df1545b346d32 | dafe5d149c475c9e871c4604cd1068e18d216f5e | /src/main/java/com/backend/crud/folder/model/Surveyor.java | 8db89acf8c5ed340958714d7c3a8fb057e088712 | [] | no_license | Aishwarya408/Sprint2 | 93bfa4832116d2a5e4082c28389fc25388c6f7f4 | 823691582997ac8d415326f2ee75c8744793c754 | refs/heads/master | 2023-01-23T08:38:23.094689 | 2020-12-09T10:51:10 | 2020-12-09T10:51:10 | 319,918,504 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,417 | java | package com.backend.crud.folder.model;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.OneToMany;
import javax.persistence.OneToOne;
import javax.persistence.Table;
//import com.cg.model.Address;
//import com.cg.model.Address;
@Entity //One of the mandatory annotations. This annotation indicates that this class is a entity class
@Table(name="surveyor_main_table") // @Table annotation is used to declare the table name
public class Surveyor {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE)
private int id;
private String userName; //Username is declared as primary key
private String userPassword;
private String firstName;
private String Lastname;
private String role;
private String email;
private String phone;
public Surveyor() { // zero-parametized constructor
super();
}
public Surveyor(int id, String userName, String userPassword, String firstName, String lastname, String role) {
super();
this.id = id;
this.userName = userName;
this.userPassword = userPassword;
this.firstName = firstName;
Lastname = lastname;
this.role = role;
}
public Surveyor(String userName, String userPassword, String role) {
super();
this.userName = userName;
this.userPassword = userPassword;
this.role = role;
}
public Surveyor(String userName, String userPassword, String firstName, String lastname, String role) {
super();
this.userName = userName;
this.userPassword = userPassword;
this.firstName = firstName;
Lastname = lastname;
this.role = role;
}
public Surveyor(int id, String userName, String userPassword, String firstName, String lastname, String role,
String email, String phone) {
super();
this.id = id;
this.userName = userName;
this.userPassword = userPassword;
this.firstName = firstName;
Lastname = lastname;
this.role = role;
this.email = email;
this.phone = phone;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserPassword() {
return userPassword;
}
public void setUserPassword(String userPassword) {
this.userPassword = userPassword;
}
public String getRole() {
return role;
}
public void setRole(String role) {
this.role = role;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastname() {
return Lastname;
}
public void setLastname(String lastname) {
Lastname = lastname;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
@Override
public String toString() {
return "Surveyor [id=" + id + ", userName=" + userName + ", userPassword=" + userPassword + ", firstName="
+ firstName + ", Lastname=" + Lastname + ", role=" + role + ", email=" + email + ", phone=" + phone
+ "]";
}
}
| [
"aishu.doraemi@gmail.com"
] | aishu.doraemi@gmail.com |
2a04da5cdd74388b41bd31cd74379c36d40ccb81 | 50baf46a384bae0c291aee25428cb1b180a4ba5f | /java/ffmpeg-merge-video/src/main/java/com/heaven7/ve/colorgap/MediaPartItem.java | 676a31c86a7d227e6bcd0d7142a9f4a7c783f18d | [
"Apache-2.0"
] | permissive | LightSun/research-institute | 9c84b5e6bb3005614cc923007ef436c621d33190 | 48eb3500a00b69bca78242fd648cc1f818b394b0 | refs/heads/master | 2021-05-15T00:24:18.066470 | 2019-09-07T07:35:29 | 2019-09-07T07:35:29 | 103,363,180 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 23,971 | java | package com.heaven7.ve.colorgap;
import com.heaven7.java.base.anno.Nullable;
import com.heaven7.java.base.util.Predicates;
import com.heaven7.java.base.util.SparseArray;
import com.heaven7.java.base.util.Throwables;
import com.heaven7.java.image.ImageFactory;
import com.heaven7.java.image.detect.HighLightArea;
import com.heaven7.java.image.detect.IHighLightData;
import com.heaven7.java.image.detect.KeyPointData;
import com.heaven7.java.image.detect.LocationF;
import com.heaven7.java.image.detect.impl.SimpleKeyPointData;
import com.heaven7.java.visitor.PileVisitor;
import com.heaven7.java.visitor.PredicateVisitor;
import com.heaven7.java.visitor.ResultVisitor;
import com.heaven7.java.visitor.collection.KeyValuePair;
import com.heaven7.java.visitor.collection.VisitServices;
import com.heaven7.utils.CollectionUtils;
import com.heaven7.utils.CommonUtils;
import com.heaven7.utils.Context;
import com.heaven7.utils.TextUtils;
import com.heaven7.ve.SimpleCopyDelegate;
import com.heaven7.ve.cross_os.IMediaResourceItem;
import com.heaven7.ve.cross_os.ITimeTraveller;
import com.heaven7.ve.gap.ItemDelegate;
import com.heaven7.ve.kingdom.Kingdom;
import com.heaven7.ve.kingdom.ModuleData;
import com.heaven7.ve.kingdom.TagItem;
import java.util.*;
import java.util.concurrent.TimeUnit;
import static com.heaven7.utils.FileUtils.getFileName;
import static com.heaven7.ve.colorgap.DebugParam.FLAG_ASSIGN_FACE_COUNT;
import static com.heaven7.ve.colorgap.VEGapUtils.getAverMainFaceArea;
import static com.heaven7.ve.colorgap.VEGapUtils.getShotType;
/**
* the media part item, Equivalent to a video camera-shot
* @author heaven7
*/
public class MediaPartItem extends BaseContextOwner implements ItemDelegate , CutItemDelegate{
private static final KeyValuePair<Integer, List<IHighLightData>> NONE = KeyValuePair.create(null, null);
private static final Integer TAG_ID_BLACK = 20;
//private static final String TAG = "MediaPartItem";
final public MetaInfo.ImageMeta imageMeta;
final public IMediaResourceItem item;
final public ITimeTraveller videoPart;
private GapColorFilter.GapColorCondition mCondition;
private boolean hold; //是否已经被占用
private final MediaPartDetailInfo mDetailInfo;
private Scores mScores = new Scores();
private MarkFlags mMarkFlags = new MarkFlags();
/** used for story */
private int storyId = -1;
/** the chapter index. */
private int chapterIndex;
/** selected or not in story */
private boolean selectedInStory;
/** 偏差镜头标志 */
private boolean planed;
/** the cause be deleted from story */
private String cause = "";
private KeyValuePair<Integer, List<IHighLightData>> highLight = NONE;
private SimpleKeyPointData mKeyPointData;
/**
* create media part item.
* @param imageMeta the image meta
* @param item the media resource item
* @param videoPart the video part. will auto set max duration.
*/
public MediaPartItem(Context context, MetaInfo.ImageMeta imageMeta, IMediaResourceItem item, ITimeTraveller videoPart) {
super(context);
this.imageMeta = imageMeta;
this.item = item;
this.videoPart = videoPart;
//set shot-key
imageMeta.setShotKey(getFileName(item.getFilePath()) + "_" + videoPart.getStartTime() + "_" + videoPart.getEndTime());
//set max duration
videoPart.setMaxDuration(CommonUtils.timeToFrame(item.getDuration(), TimeUnit.MILLISECONDS));
setRawTags();
computeScore();
this.mDetailInfo = new MediaPartDetailInfo(this);
}
public MarkFlags getMarkFlags(){
return mMarkFlags;
}
public boolean isPlaned() {
return planed;
}
public void setPlaned(boolean planed) {
this.planed = planed;
this.selectedInStory = planed;
}
public void setSelectedInStory(boolean selectedInStory, String cause) {
this.selectedInStory = selectedInStory;
if(!selectedInStory) {
this.cause += cause + "\r\n";
}
}
public void addDetail(String desc){
this.cause += desc + "\r\n";
}
public String getDetail() {
return cause;
}
public boolean isSelectedInStory() {
return selectedInStory;
}
public int getStoryId() {
return storyId;
}
public void setStoryId(int storyId) {
this.storyId = storyId;
}
public void setChapterIndex(int chapterIndex) {
this.chapterIndex = chapterIndex;
}
public int getChapterIndex() {
return chapterIndex;
}
@Override
public GapColorFilter.GapColorCondition getColorCondition() {
if(mCondition == null){
mCondition = MetaInfoUtils.createColorCondition(imageMeta);
}
return mCondition;
}
public boolean isImage() {
return item.isImage();
}
@Override
public String toString() {
return "MediaPartItem{" +
"path =" + item.getFilePath() +
", part_time =" + videoPart.toString2() +
", selectedInStory =" + selectedInStory +
", planed =" + planed +
", cause_detail =" + getDetail() +
", scores = \n" + mScores +
", part_detail = \n" + mDetailInfo.toString() +
'}';
}
@Override
public String getVideoPath() {
return item.getFilePath();
}
@Override
public boolean isHold() {
return hold;
}
@Override
public void setHold(boolean hold) {
this.hold = hold;
}
@Override
public ItemDelegate copy() {
MediaPartItem mpi = new MediaPartItem(getContext(), (MetaInfo.ImageMeta) imageMeta.copy(), item, (ITimeTraveller) videoPart.copy());
mpi.mCondition = this.mCondition;
mpi.mScores = (Scores) this.mScores.copy();
mpi.storyId = this.storyId;
mpi.mKeyPointData = this.mKeyPointData;
mpi.chapterIndex = chapterIndex;
return mpi;
}
@Override
public long getMaxDuration() {
return CommonUtils.timeToFrame(item.getDuration(), TimeUnit.MILLISECONDS);
}
@Override
public boolean isVideo() {
return item.isVideo();
}
@Override
public float getTotalScore() {
return mScores.getTotalScore();
}
public void computeScore(){
final Kingdom kingdom = getKingdom();
//1. 增加人脸得分
if(imageMeta != null){
float score = kingdom.getPersonCountScore(imageMeta.getPersonCount());
mScores.setPersonNumberScore(score);
}
// 2. 增加镜头类型得分
if(imageMeta != null){
String shotType = imageMeta.getShotType();
if (!TextUtils.isEmpty(shotType)) {
float score = kingdom.getShotTypeScore(MetaInfoUtils.getShotTypeFrom(shotType));
mScores.setShotTypeScore(score);
}
}
//3, high-light score
KeyValuePair<Integer, List<IHighLightData>> pair = getHighLight();
if(pair != null){
Float highLightScore = VisitServices.from(pair.getValue()).pile(null,
new ResultVisitor<IHighLightData, Float>() {
@Override
public Float visit(IHighLightData data, Object param) {
ModuleData md = kingdom.getModuleData(data.getName());
return md != null ? md.getScore() : 0f;
}
}, PileVisitor.FLOAT_ADD);
mScores.setHighLightScore(highLightScore);
}
}
public List<FrameTags> getFramesTags(){
if(imageMeta == null){
return null;
}
return imageMeta.getVideoTags(videoPart.getStartTime(), videoPart.getEndTime());
}
public boolean isBlackShot(){
if(imageMeta != null){
List<List<Integer>> tags = imageMeta.getTags();
/*
* if tags.count == 0 || tags == [20] return true
*/
if(Predicates.isEmpty(tags)){
return true;
}else if(tags.size() == 1){
List<Integer> list = tags.get(0);
return list.size() == 1 && list.contains(TAG_ID_BLACK);
}
}
return false;
}
/** get start time (in mill-seconds) based on last modify time. */
public long getStartTime() {
Throwables.checkNull(imageMeta);
return imageMeta.getDate() + (long)CommonUtils.frameToTime(videoPart.getStartTime(), TimeUnit.MILLISECONDS);
}
/** get end time (in mill-seconds) based on last modify time. */
public long getEndTime() {
Throwables.checkNull(imageMeta);
return imageMeta.getDate() + (long) CommonUtils.frameToTime(videoPart.getEndTime(), TimeUnit.MILLISECONDS);
}
/** set tags with main face and shot type */
private void setRawTags() {
if(imageMeta == null){
return;
}
// video tags
List<FrameTags> framesTags = getFramesTags();
if(!Predicates.isEmpty(framesTags)){
imageMeta.setRawVideoTags(framesTags);
List<Integer> tags = calculateTags(framesTags, Kingdom.TYPE_ALL);
List<List<Integer>> tmp_tags = new ArrayList<>();
tmp_tags.add(tags);
imageMeta.setTags(tmp_tags);
imageMeta.setNounTags(calculateTags(framesTags, Kingdom.TYPE_NOUN));
imageMeta.setDomainTags(calculateTags(framesTags, Kingdom.TYPE_SCOPE));
imageMeta.setAdjTags(calculateTags(framesTags, Kingdom.TYPE_ADJECTIVE));
}
//face tags
List<FrameFaceRects> faceRectsList = imageMeta.getFaceRects(videoPart.getStartTime(), videoPart.getEndTime());
if(!Predicates.isEmpty(faceRectsList)){
imageMeta.setRawFaceRects(faceRectsList);
}
//face count and shot type
calculateMainFaces();
calculateShotType();
}
// 根据rawtags计算镜头类型
// 1. 人脸优先
// 2. 再尝试vidoe tags
private void calculateShotType() {
if(imageMeta == null){
return;
}
final Kingdom kingdom = getKingdom();
//1, face
if(!Predicates.isEmpty(imageMeta.getRawFaceRects()) && imageMeta.getMainFaceCount() > 0){
List<FrameFaceRects> faceRects = imageMeta.getRawFaceRects();
if(Predicates.isEmpty(faceRects)){
addDetail("no face rects.\r\n");
return;
}
List<FrameItem> fis = new ArrayList<>();
for(int i = 0 , size = faceRects.size() ; i < size ; i ++){
FrameFaceRects frameFaceRects = faceRects.get(i);
if(!frameFaceRects.hasRect()){
fis.add(new FrameItem(i, Collections.emptyList()));
}else {
List<Float> areas = new ArrayList<>();
//面积降序
VisitServices.from(frameFaceRects.getRects()).map(null,
new Comparator<Float>() {
@Override
public int compare(Float o1, Float o2) {
return Float.compare(o2, o1);
}
},
(faceRect, param) -> faceRect.getWidth() * faceRect.getHeight()
).save(areas);
fis.add(new FrameItem(i, areas));
}
}
float averMainFaceArea = getAverMainFaceArea(fis, imageMeta.getMainFaceCount());
//System.out.println("averMainFaceArea = " + averMainFaceArea);
String shotType = getShotType(averMainFaceArea);
if(shotType != null){
imageMeta.setShotType(shotType);
}
}
//only used for gelailiya
if(kingdom.isGeLaiLiYa()) {
//2, video tags. 分三类进行计算(noun, domain, adj),noun计3分,其余计1分,返回最终得分最高的镜头类型
if (!Predicates.isEmpty(imageMeta.getTags())) {
Map<String, Float> shotTypeDict = new HashMap<>();
List<Integer> shotTypeTags = new ArrayList<>();
shotTypeTags.addAll(imageMeta.getNounTags());
shotTypeTags.addAll(imageMeta.getDomainTags());
shotTypeTags.addAll(imageMeta.getAdjTags());
for (int tagIdx : shotTypeTags) {
TagItem item = kingdom.getTagItem(tagIdx, Kingdom.TYPE_ALL);
if (item == null) {
continue;
}
String st1 = item.getShotType1();
if (!TextUtils.isEmpty(st1)) {
Float val = shotTypeDict.get(st1);
if (val != null) {
shotTypeDict.put(st1, val + item.getShotTypeScore());
} else {
shotTypeDict.put(st1, item.getShotTypeScore());
}
}
String st2 = item.getShotType2();
if (!TextUtils.isEmpty(st2)) {
Float val = shotTypeDict.get(st2);
if (val != null) {
shotTypeDict.put(st2, val + item.getShotTypeScore());
} else {
shotTypeDict.put(st2, item.getShotTypeScore());
}
}
}
//dump shotTypeDict
//shot type
if (shotTypeDict.size() > 0) {
String shotType = null;
float maxVal = -1f;
for (Map.Entry<String, Float> en : shotTypeDict.entrySet()) {
Float value = en.getValue();
if (value > maxVal) {
maxVal = value;
shotType = en.getKey();
}
}
imageMeta.setShotType(shotType);
}
}
}
}
// 根据rawRects计算主人脸个数
private void calculateMainFaces() {
if(imageMeta == null){
return;
}
//assign face count
if(getDebugParam().hasFlags(FLAG_ASSIGN_FACE_COUNT)){
int mainFaceCount = getDebugParam().getShotAssigner().assignMainFaceCount(this);
imageMeta.setMainFaceCount(mainFaceCount);
return;
}
if(Predicates.isEmpty(imageMeta.getRawFaceRects())){
return;
}
//belong to self shot (face rects)
List<FrameFaceRects> faceRects = imageMeta.getRawFaceRects();
List<FrameFaceRects> ffrs = VisitServices.from(faceRects)
.visitForQueryList(new PredicateVisitor<FrameFaceRects>() {
@Override
public Boolean visit(FrameFaceRects ffr, Object param) {
return ffr.hasRect();
}
}, null);
//计算主人脸个数(有人脸的帧超过镜头帧1/3才生效)
if(ffrs.size() * 3 < faceRects.size()){
return;
}
//遍历rawFaceRects,计算主人脸个数
int total = 0;
int maxRects = -1;
int maxMainFaces = -1;
for(FrameFaceRects ffr: ffrs){
int rectsCount = ffr.getRectsCount();
if(rectsCount > maxRects){
maxRects = rectsCount;
}
//main face
int mainFaceCount = ffr.getMainFaceCount();
if(mainFaceCount > maxMainFaces){
maxMainFaces = mainFaceCount;
}
total += mainFaceCount;
}
int mainFaces = Math.round(total * 1f/ ffrs.size());
// 双人脸判断(最大主人脸个数为2,倾向将mainFace设置为2)
if(maxMainFaces == 2 && mainFaces == 1){
mainFaces = 2;
}
// 多人脸判断(若1<mainFace<3,切shot中的maxFace>3,则将mainFace提升到3
if(maxRects > 3 && mainFaces > 1 && mainFaces < 3){
mainFaces = 3;
}
imageMeta.setMainFaceCount(mainFaces);
}
private List<Integer> calculateTags(List<FrameTags> rawVideoTags,int vocabularyType) {
return calculateTags(rawVideoTags, 3, 0.1f, vocabularyType);
}
// 根据镜头的rawVideoTags统计计算tags. 得到对应的tag-index 数组
private List<Integer> calculateTags(List<FrameTags> rawVideoTags, int count,
float minPossibility, int vocabularyType) {
//mapDataDir: tag_index - > possibility
//统计 tag 出现的概率(整个镜头中)。 -- 指定tag个数, min 概率
final ColorGapContext context = getContext();
SparseArray<List<Float>> dict = new SparseArray<>();
for (FrameTags ft : rawVideoTags){
List<Tag> topTags = ft.getTopTags(context, count, minPossibility, vocabularyType);
for(Tag tag : topTags){
List<Float> value = dict.get(tag.getIndex());
if(value == null){
value = new ArrayList<>();
dict.put(tag.getIndex(), value);
}
value.add(tag.getPossibility());
}
}
// 统计dict中的tag概率 (平均)
List<Tag> tags = new ArrayList<>();
for(int i = 0 , size = dict.size() ; i < size ; i ++){
int tagIdx = dict.keyAt(i);
List<Float> values = dict.valueAt(i);
//compute average
float possibility = CollectionUtils.sum(values) / rawVideoTags.size();
tags.add(new Tag(tagIdx, possibility));
}
//build tag idx
List<Integer> result = new ArrayList<>();
VisitServices.from(tags).subService(new PredicateVisitor<Tag>() {
@Override
public Boolean visit(Tag tag, Object param) {
return tag.getPossibility() >= minPossibility;//平均概率 大于限定
}
}).asListService().sortService(
(o1, o2) -> Float.compare(o2.getPossibility(), o1.getPossibility()), true)
.map(null, new ResultVisitor<Tag, Integer>() {
@Override
public Integer visit(Tag tag, Object param) {
return tag.getIndex();
}
}).save(result);
if(result.size() <= count){
return result;
}else{
return result.subList(0, count);
}
}
public long getDate() {
return imageMeta.getDate();
}
public boolean isBiasShot() {
return isPlaned();
}
@Override
public MetaInfo.ImageMeta getImageMeta() {
return imageMeta;
}
@Override
public MediaPartItem asPart(Context context) {
return (MediaPartItem) copy();
}
@Override
public List<FrameTags> getVideoTags() {
return imageMeta.getVideoTags(videoPart);
}
@Override
public IMediaResourceItem getItem() {
return item;
}
/*** for debug */
public String getFullPath() {
return item.getFilePath() + " ," + videoPart.toString2();
}
public float getFacePercent() {
List<FrameFaceRects> rects = imageMeta.getFaceRects(videoPart);
if(Predicates.isEmpty(rects)){
return 0f;
}
List<FrameFaceRects> tempList = new ArrayList<>();
VisitServices.from(rects).visitForQueryList((ffr, param) -> ffr.hasRect(), tempList);
return tempList.size() * 1f / rects.size();
}
public void applyEffects(@Nullable ITimeTraveller nextShot){
getMarkFlags().applyEffects(getContext(), videoPart, nextShot);
}
/** indicate current media part can put after target or not. */
public boolean canPutAfter(MediaPartItem target) {
long shotTime;
long targetTime;
if(getVideoPath().equals(target.getVideoPath())){
shotTime = getStartTime();
targetTime = target.getEndTime();
}else{
shotTime = getDate();
targetTime = target.getDate();
}
return shotTime >= targetTime;
}
/** indicate current media part can put after target or not. */
public boolean canPutBefore(MediaPartItem target) {
long shotTime;
long targetTime;
if(getVideoPath().equals(target.getVideoPath())){
shotTime = getEndTime();
targetTime = target.getStartTime();
}else{
shotTime = getDate();
targetTime = target.getDate();
}
return shotTime <= targetTime;
}
public List<IHighLightData> getHighLightData(int time) {
KeyValuePair<Integer, List<IHighLightData>> pair = imageMeta.getHighLight(time);
if(pair == null){
return null;
}
return VEGapUtils.filterHighLightData(getKingdom(), pair.getValue());
}
public KeyValuePair<Integer, List<IHighLightData>> getHighLight(){
if(highLight == NONE){
highLight = VEGapUtils.filterHighLight(getKingdom(), imageMeta.getHighLight(getContext(), videoPart));
}
return highLight;
}
public ModuleData getHighLightModuleData(){
KeyValuePair<Integer, List<IHighLightData>> highLight = getHighLight();
if(highLight == null || Predicates.isEmpty(highLight.getValue())){
return null;
}
IHighLightData hld = VisitServices.from(highLight.getValue())
.pile(new PileVisitor<IHighLightData>() {
@Override
public IHighLightData visit(Object o, IHighLightData hd1, IHighLightData hd2) {
return hd1.getLocation().getArea() > hd2.getLocation().getArea() ? hd1 : hd2;
}
});
return getKingdom().getModuleData(hld.getName());
}
public float getBodyArea() {
if(mKeyPointData == null){
return -1f;
}
LocationF location = mKeyPointData.getLocation();
return location.getArea();
}
public int getKeyPointCount(){
return mKeyPointData != null ? mKeyPointData.getKeyPointCount() : 0;
}
/** get the key frame time ( in seconds). if has high light use high light time. */
public int getKeyFrameTime() {
if(item.isImage()){
return 0;
}
KeyValuePair<Integer, List<IHighLightData>> highLight = getHighLight();
if(highLight != null){
return highLight.getKey();
}
long start = videoPart.getStartTime();
long halfDuration = (videoPart.getDuration() / 2);
return (int) CommonUtils.frameToTime(start + halfDuration, TimeUnit.SECONDS);
}
/** get the key frame image path. if is image .return the direct image. */
public String getKeyFrameImagePath(){
if(item.isVideo()){
return ImageFactory.getImageInitializer().getVideoFrameDelegate().getFrameImagePath(
item.getFilePath(), getKeyFrameTime());
}
return item.getFilePath();
}
public void setKeyPointData(KeyPointData kpd) {
if(kpd instanceof SimpleKeyPointData){
this.mKeyPointData = (SimpleKeyPointData) kpd;
}else {
SimpleKeyPointData skp = new SimpleKeyPointData();
skp.setLocation(kpd.getLocation());
skp.setKeyPointCount(kpd.getKeyPointCount());
this.mKeyPointData = skp;
}
}
public HighLightArea getHighLightArea() {
return imageMeta.getHighLightArea(getContext(), videoPart);
}
} | [
"978136772@qq.com"
] | 978136772@qq.com |
2ba3b3ed4a5f3d0b6e9a03a03910b815e1f7ae1d | 257ea95e56757d7b4f4ec25488444fb03d3c92c9 | /src/main/java/com/microservice/fornecedor/model/PedidoStatus.java | 9654cbaec0eb1b4bd5001076af2098b3e70c40e0 | [] | no_license | luisgustavoullmann/floricultura-fornecedor-microservice | 646154bb1ac93da42195d8c7ffea52906d60bd18 | f81251f5a8e591509bda5e8d9c0d546c4dbd3b83 | refs/heads/master | 2022-11-12T03:53:33.913185 | 2020-07-01T18:11:19 | 2020-07-01T18:11:19 | 275,269,236 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 161 | java | package com.microservice.fornecedor.model;
/**
* Created by Luis Gustavo Ullmann on 27/06/2020
*/
public enum PedidoStatus {
RECEBIDO, PRONTO, ENVIADO;
}
| [
"luisgustavoullmann@gmail.com"
] | luisgustavoullmann@gmail.com |
881a01c6ed8e133eaf5c34bcb32bcdee11c8ed29 | a6190518a98dc30db059d6669e1ea58ff50d9cd8 | /src/java/controller/project/masterdata/partner/partnerdata/specificaddress/AddSpecificAddressController.java | bb9c8f89fa2af72eac342c7a9cda311345a11860 | [] | no_license | rukutuk/SBNG_ERP | d31e8d8b031383ecab1dfb4f9826603922d1c673 | 6595ea039f22a0fbc5474b8392e8c5a1f097556f | refs/heads/master | 2020-05-17T23:00:31.733540 | 2013-10-28T10:22:40 | 2013-10-28T10:22:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,807 | java | package controller.project.masterdata.partner.partnerdata.specificaddress;
import org.zkoss.zk.ui.Component;
import org.zkoss.zk.ui.util.GenericForwardComposer;
import java.util.Map;
import org.zkoss.zk.ui.Executions;
import org.zkoss.zul.Window;
import org.zkoss.zul.Textbox;
import org.zkoss.zul.Intbox;
import org.zkoss.zul.Toolbarbutton;
/* @author Tata */
public class AddSpecificAddressController extends GenericForwardComposer {
Window windowAddSpecificAddress;
Textbox addressname,city,country,fax1,phone1,province,street;
Intbox partnerindex,postalcode;
Toolbarbutton btnSaveSpecificAddress,btnCancelSpecificAddress;
ShowSpecificAddressController parent;
@Override
public void doAfterCompose(Component comp) throws Exception {
super.doAfterCompose(comp);
Map map = Executions.getCurrent().getArg();
parent = (ShowSpecificAddressController) map.get("parent");
windowAddSpecificAddress.doModal();
}
public void onClick$btnCancelSpecificAddress() {
closeWindow();
}
public void closeWindow() {
windowAddSpecificAddress.onClose();
}
public void onClick$btnSaveSpecificAddress() {
try
{
// SpecificAddress specificAddress = new SpecificAddress();
// specificAddress.setAddressname(addressname.getValue());
// specificAddress.setCity(city.getValue());
// specificAddress.setCountry(country.getValue());
// specificAddress.setFax1(fax1.getValue());
// specificAddress.setPartnerindex(partnerindex.getValue());
// specificAddress.setPhone1(phone1.getValue());
// specificAddress.setPostalcode(postalcode.getValue());
// specificAddress.setProvince(province.getValue());
// specificAddress.setStreet(street.getValue());
// NUNUNG
parent.prepareList();
closeWindow();
} catch (Exception ex) {
ex.printStackTrace();
}
}
} | [
"rukutuk@gmail.com"
] | rukutuk@gmail.com |
22aa430485fbe28e6169ef656200c98a5dfda2b0 | c3fbcbd732a89e50de84d99e0c94544d9d4262df | /app/src/main/java/br/com/devhernand/starwarsstore/model/json/Transact.java | 8228b48ffa9711706b07dab83dd25884c5144e4d | [
"Apache-2.0"
] | permissive | hernandazevedo/starwarsshop | fb9340cf342fdeff3de32519efdfd99ce6eb778e | 7531f09d262d4e7f38800b5ad1ccd9b1518163b5 | refs/heads/master | 2021-01-23T06:02:27.325772 | 2018-01-12T20:32:05 | 2018-01-12T20:32:05 | 93,008,144 | 3 | 1 | null | 2018-01-12T20:31:13 | 2017-06-01T02:28:30 | Java | UTF-8 | Java | false | false | 1,677 | java | package br.com.devhernand.starwarsstore.model.json;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
import javax.annotation.Generated;
/**
* Created by Nando on 28/05/2017.
*/
@Generated("org.jsonschema2pojo")
public class Transact implements Serializable {
@Expose
@SerializedName("value")
private Long value;
@Expose
@SerializedName("cvv")
private Long cvv;
@Expose
@SerializedName("card_number")
private String cardNumber;// ############9999
@Expose
@SerializedName("card_holder_name")
private String cardHolderName;
@Expose
@SerializedName("exp_date")
private String expDate;
private transient String dateTime;
public String getDateTime() {
return dateTime;
}
public void setDateTime(String dateTime) {
this.dateTime = dateTime;
}
public Long getValue() {
return value;
}
public void setValue(Long value) {
this.value = value;
}
public Long getCvv() {
return cvv;
}
public void setCvv(Long cvv) {
this.cvv = cvv;
}
public String getCardNumber() {
return cardNumber;
}
public void setCardNumber(String cardNumber) {
this.cardNumber = cardNumber;
}
public String getCardHolderName() {
return cardHolderName;
}
public void setCardHolderName(String cardHolderName) {
this.cardHolderName = cardHolderName;
}
public String getExpDate() {
return expDate;
}
public void setExpDate(String expDate) {
this.expDate = expDate;
}
}
| [
"hernand.azevedo@gmail.com"
] | hernand.azevedo@gmail.com |
dfd224be2985dc615c75d085a682d2afb6884f27 | 35ea610851421e3e357dd938c189acbab4a37df4 | /src/test/java/br/ce/wcaquino/taskbackend/utils/DateUtilsTest.java | 94418c0f12299fcc04994c7415bc60911aa73784 | [] | no_license | l-s-v/curso-ic-tasks-backend | 26db389e5122338d198064a6cfd0759c9946904c | e4789c2c76a0a38b5ac0129ffaac0135a50887d0 | refs/heads/master | 2022-11-23T12:09:37.911708 | 2020-07-28T17:34:07 | 2020-07-28T17:34:07 | 270,435,089 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 566 | java | package br.ce.wcaquino.taskbackend.utils;
import java.time.LocalDate;
import org.junit.Assert;
import org.junit.Test;
public class DateUtilsTest {
@Test
public void deveRetornarTrueParaDatasFuturas() {
Assert.assertTrue(DateUtils.isEqualOrFutureDate(LocalDate.of(2030, 01, 01)));
}
@Test
public void deveRetornarFalseParaDatasPassadas() {
Assert.assertFalse(DateUtils.isEqualOrFutureDate(LocalDate.of(2010, 01, 01)));
}
@Test
public void deveRetornarTrueParaDataAtual() {
Assert.assertTrue(DateUtils.isEqualOrFutureDate(LocalDate.now()));
}
}
| [
"leandrosilvavieir@gmail.com"
] | leandrosilvavieir@gmail.com |
34621a6801caa5184a8a59f426ee6063e7cfa271 | c1a8bee77c9de7c2648c1fef8f7e9fad95cc09c1 | /Gravity/Gravity/src/GravityConstant.java | da2f6c86823d1fccd8fec67b8e08272f8e30f4c6 | [] | no_license | mark-lester/Gravity | ce7c8f9899cd5fa88e43930b4bebdee157ca07fd | 1d849fb8f60338d70053623959542ce6749c5802 | refs/heads/master | 2021-01-19T07:41:11.753845 | 2014-01-16T08:17:24 | 2014-01-16T08:17:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 419 | java | public class GravityConstant extends Force {
public double force(double distance, double massA, double massB, double combined_radii){
return SCALE * massA * massB;
}
public double potential(double distance, double massA, double massB,double combined_radii){
return SCALE * massA * massB * distance;
}
public double centrifugal(double distance, double mass){
return Math.sqrt(SCALE*mass*distance);
}
}
| [
"mc_lester@yahoo.co.uk"
] | mc_lester@yahoo.co.uk |
4cd5af220e050516fc3a7f618ca494edf297e76d | 2a05d7aa3cca24f5953098084b44b09f5385147a | /ego-common/src/main/java/com/shsxt/ego/model/PictureResult.java | f02fe909591be8a5c4abea0671745f083989f2f6 | [] | no_license | wangzhijing4719/ego | 18dec267141f8193fedd3119cba18eff4837431d | 12fcfab7523071d2ff0f2e92d14287d223c4bd2a | refs/heads/master | 2020-06-24T12:15:36.130284 | 2019-07-03T13:03:19 | 2019-07-03T13:03:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 652 | java | package com.shsxt.ego.model;
public class PictureResult {
private Integer error; //状态 1 失败 0 成功
private String url; //上传图片后,图片在服务器的 url
private String message;//响应到客户端的提示消息
public Integer getError() {
return error;
}
public void setError(Integer error) {
this.error = error;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
}
| [
"lzj_0304@163.com"
] | lzj_0304@163.com |
c21aef051390bb10e3947cc385da94c02f0e5796 | dd59a5ddc2fdb840b5195688ab0b2075e3bbd875 | /spring-boot-html-fenli/src/main/java/com/home/lh/other/chat/po/ChatGoup.java | 24c23f60477bf8084b4b511bff6695c1c1884ca6 | [] | no_license | moshuiqing/spring-boot-Separation | 35a1078bbbea4bec40c6400f7a1bce601e72df7c | b8720d85d243cc4e677fbd39fa7f61ad91b90f45 | refs/heads/master | 2022-12-13T10:21:56.352100 | 2021-03-22T00:58:19 | 2021-03-22T00:58:19 | 214,917,693 | 0 | 0 | null | 2022-12-06T00:33:21 | 2019-10-14T00:54:39 | Java | UTF-8 | Java | false | false | 947 | java | package com.home.lh.other.chat.po;
import java.util.List;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @author ai996
* 群组 实体
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@ApiModel(value = "ChatGoup", description = "群组")
public class ChatGoup {
/**
* 群组id
*/
@ApiModelProperty("主键id")
private String id;
/**
* 群组名
*/
@ApiModelProperty("群组名")
private String groupname;
/**
* 群头像
*/
@ApiModelProperty("群头像")
private String avatar;
/**
* 群所属人
*/
@ApiModelProperty("群所属人")
private String userid;
/**
* 群说明
*/
@ApiModelProperty("群说明")
private String content;
private List<ChatUser> list;
private String username;
}
| [
"javaliuhao@126.com"
] | javaliuhao@126.com |
40651421e0b22363eae0edee894889a508c40b4a | ec3df9c3531330d5ab3284b5ded098917c92c10b | /src/main/java/com/microwise/uma/dao/impl/UserDaoImpl.java | f8c5cb719f677bbd251948f47b36820ac9635216 | [] | no_license | algsun/uma-daemon | b13f27867d0689efddb6c253d56b0ef5b3a0386d | 77c4676d22292aa7a18e73fabbffa25d1e8aae5f | refs/heads/master | 2020-03-16T01:08:16.502078 | 2018-05-07T09:01:46 | 2018-05-07T09:01:46 | 132,433,536 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,181 | java | package com.microwise.uma.dao.impl;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Repository;
import com.microwise.uma.dao.BaseDao;
import com.microwise.uma.dao.UserDao;
import com.microwise.uma.po.UserPO;
/**
* 用户信息 Dao 实现
*
* @author li.jianfei
* @date 2013-08-21
*/
@Repository
@Scope("prototype")
public class UserDaoImpl extends BaseDao implements UserDao {
@Override
public List<String> getUserPhoto() {
return getSqlSession().selectList("mybatis.UserInfoDao.getUserPhoto");
}
@Override
public UserPO getUserInfo(long userId) {
return getSqlSession().selectOne("mybatis.UserInfoDao.getUserInfo",userId);
}
@Override
public List<String> getUserLocations(String zoneId, String exciterSn, String cardNO) {
Map<String, Object> paramMap= new HashMap<String, Object>();
paramMap.put("zoneId", zoneId);
paramMap.put("exciterSn", exciterSn);
paramMap.put("cardNO", cardNO);
return getSqlSession().selectList("mybatis.UserInfoDao.getUserLocations",paramMap);
}
}
| [
"algtrue@163.com"
] | algtrue@163.com |
60f3ac3c4266896a0a974f5f92da9074867670ac | 70c612320e614392f136658cd028c76e0c688bb0 | /spark-java/src/main/java/de/tudarmstadt/thesis/jpf/spark/filter/SparkFilterExample.java | 238a1140c767f67617eb758aae1160a1eb69968d | [] | no_license | omrsin/thesis | cd576e08a6b85bcdac457fee37077f042617f7b8 | 8f5c76460ea30be4e9a61b2fd452053d2b0d25fc | refs/heads/master | 2021-03-27T11:59:27.523364 | 2017-04-09T17:21:28 | 2017-04-09T17:35:32 | 78,430,758 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 968 | java | package de.tudarmstadt.thesis.jpf.spark.filter;
import java.util.Arrays;
import java.util.List;
import org.apache.spark.SparkConf;
import org.apache.spark.api.java.JavaRDD;
import org.apache.spark.api.java.JavaSparkContext;
import org.apache.spark.api.java.function.Function;
public class SparkFilterExample {
public static void main(String[] args) {
System.out.println("Java Spark Filter Test");
SparkConf conf = new SparkConf()
.setAppName("JavaNumbers")
.setMaster("local");
JavaSparkContext spark = new JavaSparkContext(conf);
List<Integer> numberList = Arrays.asList(1,2,3,3,4);
JavaRDD<Integer> numbers = spark.parallelize(numberList);
JavaRDD<Integer> filteredNumbers = numbers.filter(new Function<Integer, Boolean>() {
@Override
public Boolean call(Integer v1) throws Exception {
return v1 > 1 && v1 <=3;
}
});
System.out.println(filteredNumbers.collect());
spark.stop();
spark.close();
}
}
| [
"omrsin@gmail.com"
] | omrsin@gmail.com |
52ba69438aad3258c2ea3e8ac023cda87938338e | 79d1d325d459a76829ce9df09c6d5b74b1fa800b | /PortalBase/src/com/web/bf/retail/modules/readmorepanel/ReadMoreBF.java | 2565dd0adce70ff28f029ae642cd7ca49581043c | [] | no_license | santlalvishwakarma/RootBranch | 809d924d45d681109ed881188e8a3411c8e20077 | 6fbd84678018562e375abaaadd309106e8149d7d | refs/heads/master | 2023-01-11T23:48:37.574218 | 2019-06-20T16:05:34 | 2019-06-20T16:05:34 | 57,985,878 | 0 | 0 | null | 2022-12-30T05:35:25 | 2016-05-03T16:55:28 | TSQL | UTF-8 | Java | false | false | 4,978 | java | package com.web.bf.retail.modules.readmorepanel;
import com.web.bc.retail.modules.readmorepanel.ReadMoreBC;
import com.web.common.dvo.opr.retail.ReadMoreOpr;
import com.web.common.dvo.util.OptionsDVO;
import com.web.common.parents.BusinessFacade;
import com.web.foundation.exception.BusinessException;
import com.web.foundation.exception.FrameworkException;
public class ReadMoreBF extends BusinessFacade {
private String propertiesLocation = "/com/web/bb/retail/module/readmorepanel/readmore";
public OptionsDVO getAllOptions(OptionsDVO options) throws FrameworkException, BusinessException {
// OptionsHelperBC optionsHelperBC = new OptionsHelperBC();
OptionsDVO optionsDVO = new OptionsDVO();
// HashMap<String, ArrayList<SelectItem>> allOptionsMap = new
// HashMap<String, ArrayList<SelectItem>>();
// allOptionsMap = optionsHelperBC.getAllCurrencies(new HashMap());
// optionsDVO.getAllOptionsValues().put(CommonConstant.CURRENCY_LIST,
// allOptionsMap.get(CommonConstant.CURRENCY_LIST));
//
// // fetch sizes mapped to this product
return optionsDVO;
}
public ReadMoreOpr getProductDetailsForReadMore(ReadMoreOpr readMoreOpr) throws FrameworkException,
BusinessException {
return new ReadMoreBC().getProductDetailsForReadMore(readMoreOpr);
}
public void saveProductForLater(ReadMoreOpr readMoreSaveOpr) throws FrameworkException, BusinessException {
// ShoppingCartIntegrationOpr shoppingCartIntegrationOpr = new
// ShoppingCartIntegrationOpr();
//
// ShoppingCartIntegration shoppingCartIntegration = new
// ShoppingCartIntegration();
// shoppingCartIntegrationOpr.setShoppingCartProductRecord(readMoreSaveOpr
// .getShoppingCartProduct());
// shoppingCartIntegration.saveProductForLater(shoppingCartIntegrationOpr);
//
// }
// public ReadMoreOpr makeEnquiry(ReadMoreOpr makeEnquiryProductRecord)
// throws FrameworkException {
// ReadMoreOpr readMoreOpr = new ReadMoreOpr();
// UserTransaction userTransaction = startUserTransaction();
// try {
// readMoreOpr = new ReadMoreBC()
// .makeEnquiry(makeEnquiryProductRecord);
// setCommitFlag(true);
// } catch (FrameworkException e) {
// setCommitFlag(false);
// handleUserTransaction(userTransaction);
// throw e;
// }
// handleUserTransaction(userTransaction);
//
// PropertiesReader propertiesReader = new PropertiesReader(
// propertiesLocation);
// if ((propertiesReader.getValueOfKey("send_enquiry_mail_enabled") !=
// null)
// && propertiesReader.getValueOfKey("send_enquiry_mail_enabled")
// .equals("1")) {
// PropertiesReader propertiesReaderCommon = new PropertiesReader(
// CommonConstant.COMMON_MESSAGE_LOCATION);
// MailParameters mailParameters = new MailParameters();
//
// InternetAddress[] addressTo = new InternetAddress[1];
//
// InternetAddress ia = new InternetAddress();
// ia.setAddress(propertiesReaderCommon
// .getValueOfKey("system_owner_email_id"));
// addressTo[0] = ia;
//
// mailParameters.setMailRecipients(addressTo);
//
// mailParameters
// .setMailSubject(MessageFormatter.getFormattedMessage(
// propertiesReader
// .getValueOfKey("send_enquiry_mail_subject"),
// new String[]{makeEnquiryProductRecord
// .getProductRecord().getName()}));
// mailParameters.setMailMessage(MessageFormatter.getFormattedMessage(
// propertiesReader.getValueOfKey("send_enquiry_mail_body"),
// new String[]{
// makeEnquiryProductRecord.getProductRecord()
// .getCode(),
// makeEnquiryProductRecord.getSendEnquiryRecord()
// .getAddress().getFirstName(),
// makeEnquiryProductRecord.getSendEnquiryRecord()
// .getAddress().getEmail(),
// makeEnquiryProductRecord.getSendEnquiryRecord()
// .getComments()}));
//
// mailParameters.setCustomerKey(propertiesReaderCommon
// .getValueOfKey("customer_key"));
// mailParameters.setMailFormat(CommonConstant.MIME_TYPE_TEXT_PLAIN);
//
// try {
// PortalMail portalMail = new PortalMail(mailParameters);
// portalMail.sendMultipleMail();
// } catch (MessagingException e) {
// throw new FrameworkException("messaging_exception",
// e.getCause());
// }
// }
//
// return readMoreOpr;
}
public ReadMoreOpr getCountryDependentData(ReadMoreOpr readMoreOpr) throws FrameworkException {
return new ReadMoreBC().getCountryDependantData(readMoreOpr);
}
public ReadMoreOpr getProductAlternativeImages(ReadMoreOpr readMoreOpr) throws FrameworkException {
return new ReadMoreBC().getProductAlternativeImages(readMoreOpr);
}
public ReadMoreOpr getProductProperties(ReadMoreOpr readMoreOpr) throws FrameworkException {
return new ReadMoreBC().getProductProperties(readMoreOpr);
}
public ReadMoreOpr getCategoriesForProduct(ReadMoreOpr readMoreOpr) throws FrameworkException {
return new ReadMoreBC().getCategoriesForProduct(readMoreOpr);
}
}
| [
"vsantlal@yahoo.com"
] | vsantlal@yahoo.com |
a999e06de76588d2abbce07ad32d9787da08fc48 | 12a22b2a7d9bdf17d1d493207e6648959a1e83b6 | /pfg-backend/src/main/java/com/javi/uned/pfgbackend/adapters/api/specs/model/GeneticSpecsDTO.java | e091bdd4edb906b41b24ff1aa3063d1488d84ef2 | [] | no_license | javierolmo/pfg | 9e95260c8ce1a7537cfc6319bb36fc4550de4c2d | 4b80d9992e0a49cd3c22a98918fb028badc86b01 | refs/heads/main | 2023-08-02T14:29:12.887636 | 2021-09-19T16:13:39 | 2021-09-19T16:13:39 | 341,608,060 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,543 | java | package com.javi.uned.pfgbackend.adapters.api.specs.model;
import com.javi.uned.pfgbackend.adapters.api.tonalities.model.TonalityDTO;
import com.javi.uned.pfgcommons.model.Compas;
import com.javi.uned.pfgcommons.model.Figura;
import com.javi.uned.pfgcommons.model.Instrumento;
import com.javi.uned.pfgcommons.model.Tonalidad;
public class GeneticSpecsDTO {
private int requesterId;
private String movementTitle;
private String movementNumber;
private String[] authors;
private int measures;
private Compas compas;
private Instrumento[] instrumentos;
private TonalityDTO tonalidad;
private int phraseLength;
private Figura minFigura;
private Figura maxFigura;
public int getRequesterId() {
return requesterId;
}
public void setRequesterId(int requesterId) {
this.requesterId = requesterId;
}
public String getMovementTitle() {
return movementTitle;
}
public void setMovementTitle(String movementTitle) {
this.movementTitle = movementTitle;
}
public String getMovementNumber() {
return movementNumber;
}
public void setMovementNumber(String movementNumber) {
this.movementNumber = movementNumber;
}
public String[] getAuthors() {
return authors;
}
public void setAuthors(String[] authors) {
this.authors = authors;
}
public int getMeasures() {
return measures;
}
public void setMeasures(int measures) {
this.measures = measures;
}
public Compas getCompas() {
return compas;
}
public void setCompas(Compas compas) {
this.compas = compas;
}
public Instrumento[] getInstrumentos() {
return instrumentos;
}
public void setInstrumentos(Instrumento[] instrumentos) {
this.instrumentos = instrumentos;
}
public TonalityDTO getTonalidad() {
return tonalidad;
}
public void setTonalidad(TonalityDTO tonalidad) {
this.tonalidad = tonalidad;
}
public int getPhraseLength() {
return phraseLength;
}
public void setPhraseLength(int phraseLength) {
this.phraseLength = phraseLength;
}
public Figura getMinFigura() {
return minFigura;
}
public void setMinFigura(Figura minFigura) {
this.minFigura = minFigura;
}
public Figura getMaxFigura() {
return maxFigura;
}
public void setMaxFigura(Figura maxFigura) {
this.maxFigura = maxFigura;
}
}
| [
"44966721+JaviOlmoI@users.noreply.github.com"
] | 44966721+JaviOlmoI@users.noreply.github.com |
808173081bd8fe86f3c00fbaadc2d53542db0a19 | 1a56914232922eeb5e994e823c13b95e9edb0837 | /IntellijPro/MyProForTomcat/MyProForTomcat/src/bookeCode/thinkingInJava/annotations/AtUnitExternalTest.java | cf083ea88faeb9dec4e28bdd91cdd3936204aca2 | [] | no_license | konfer/MyIntellijDir | b3d43f24b6d29b63ed4208798058c86d63dd7429 | 4b0671ef3665a23d26511d9e5379d81104b29860 | refs/heads/master | 2021-01-20T10:41:23.212453 | 2014-12-11T12:26:54 | 2014-12-11T12:26:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 706 | java | // : annotations/AtUnitExternalTest.java
// Creating non-embedded tests.
package bookeCode.thinkingInJava.annotations;
import bookeCode.thinkingInJava.net.mindview.atunit.*;
import bookeCode.thinkingInJava.net.mindview.util.*;
public class AtUnitExternalTest extends AtUnitExample1
{
@Test
boolean _methodOne()
{
return methodOne().equals("This is methodOne");
}
@Test
boolean _methodTwo()
{
return methodTwo() == 2;
}
public static void main(String[] args) throws Exception
{
OSExecute.command("java net.mindview.atunit.AtUnit AtUnitExternalTest");
}
} /*
* Output: annotations.AtUnitExternalTest . _methodOne . _methodTwo This is
* methodTwo
*
* OK (2 tests)
*/// :~
| [
"ly_kof@sina.com"
] | ly_kof@sina.com |
7374b093d4f6b78df221f2189851ac3a6980c6b2 | 1036fb3db08ed67eca2ca4604899f89ebde01e24 | /src/test/java/org/example/action/MultipleJSONRequestAction.java | a4fdfb4f7dfba059a16eaf45cf4a46df62c360f8 | [
"Apache-2.0"
] | permissive | trex/prime-mvc | 73a5886788ce280a2b8e75ca91096a502fc58fb1 | f16cb00e44edc3152f02bb26fed34c0a24286263 | refs/heads/master | 2020-06-26T19:55:31.295587 | 2019-07-10T21:08:53 | 2019-07-10T21:08:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,499 | java | /*
* Copyright (c) 2017, Inversoft Inc., All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the License.
*/
package org.example.action;
import org.primeframework.mvc.action.annotation.Action;
import org.primeframework.mvc.action.result.annotation.Status;
import org.primeframework.mvc.content.json.annotation.JSONRequest;
import org.primeframework.mvc.servlet.HTTPMethod;
/**
* Multiple JSON Request fields
*
* @author Daniel DeGroff
*/
@Action
@Status.List({
@Status(code = "success", status = 200),
@Status(code = "foo", status = 201),
@Status(code = "bar", status = 202)
})
public class MultipleJSONRequestAction {
@JSONRequest(httpMethods = {HTTPMethod.DELETE})
public Object bar;
@JSONRequest(httpMethods = {HTTPMethod.POST})
public Object foo;
public String delete() {
if (bar != null) {
return "bar";
}
return "success";
}
public String post() {
if (foo != null) {
return "foo";
}
return "success";
}
}
| [
"djdegroff@gmail.com"
] | djdegroff@gmail.com |
1246bb8fcd38ccf48b1a4241314e2b95fe63bc37 | f7bafd21d10ecadd27bd513f61a1ca0198eb29c8 | /Saket/src/com/uiuc/adm/btree/DBCacheRef.java | defd7c3ac1eda1ac6afc543a1c36eccb5acdedd9 | [] | no_license | nehapawar/Saket | 171ba6e1f66f199db4616423e42e317cdd5369f8 | 75182eceb857afda36e1df8656db329616734d7b | refs/heads/master | 2021-01-23T06:49:57.048800 | 2014-03-29T23:49:48 | 2014-03-29T23:49:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,134 | java | package com.uiuc.adm.btree;
import javax.crypto.Cipher;
import java.io.IOException;
import java.lang.ref.ReferenceQueue;
import java.lang.ref.SoftReference;
import java.lang.ref.WeakReference;
import java.util.Iterator;
import java.util.concurrent.atomic.AtomicInteger;
/**
* A DB wrapping and caching another DB.
*
* @author Jan Kotek
* @author Alex Boisvert
* @author Cees de Groot
*
* TODO add 'cache miss' statistics
*/
public class DBCacheRef
extends DBCache {
private static final boolean debug = false;
/**
* If Soft Cache is enabled, this contains softly referenced clean entries.
* If entry became dirty, it is moved to _hash with limited size.
* This map is accessed from SoftCache Disposer thread, so all access must be
* synchronized
*/
protected LongHashMap _softHash;
/**
* Reference queue used to collect Soft Cache entries
*/
protected ReferenceQueue<ReferenceCacheEntry> _refQueue;
/**
* Thread in which Soft Cache references are disposed
*/
protected Thread _softRefThread;
protected static AtomicInteger threadCounter = new AtomicInteger(0);
/** counter which counts number of insert since last 'action'*/
protected int insertCounter = 0;
private final boolean _autoClearReferenceCacheOnLowMem;
private final byte _cacheType;
/**
* Construct a CacheRecordManager wrapping another DB and
* using a given cache policy.
*/
public DBCacheRef(String filename, boolean readonly, boolean transactionDisabled,
Cipher cipherIn, Cipher cipherOut, boolean useRandomAccessFile,
boolean deleteFilesAfterClose,
byte cacheType, boolean cacheAutoClearOnLowMem, boolean lockingDisabled) {
super(filename, readonly, transactionDisabled,
cipherIn, cipherOut, useRandomAccessFile,
deleteFilesAfterClose, lockingDisabled);
this._cacheType = cacheType;
_autoClearReferenceCacheOnLowMem = cacheAutoClearOnLowMem;
_softHash = new LongHashMap<ReferenceCacheEntry>();
_refQueue = new ReferenceQueue<ReferenceCacheEntry>();
_softRefThread = new Thread(
new SoftRunnable(this, _refQueue),
"JDBM Soft Cache Disposer " + (threadCounter.incrementAndGet()));
_softRefThread.setDaemon(true);
_softRefThread.start();
}
void clearCacheIfLowOnMem() {
insertCounter = 0;
if(!_autoClearReferenceCacheOnLowMem)
return;
Runtime r = Runtime.getRuntime();
long max = r.maxMemory();
if(max == Long.MAX_VALUE)
return;
double free = r.freeMemory();
double total = r.totalMemory();
//We believe that free refers to total not max.
//Increasing heap size to max would increase to max
free = free + (max-total);
if(debug)
System.err.println("DBCache: freemem = " +free + " = "+(free/max)+"%");
if(free<1e7 || free*4 <max)
clearCache();
}
public synchronized <A> A fetch(long recid, Serializer<A> serializer, boolean disableCache) throws IOException {
if (disableCache)
return super.fetch(recid, serializer, disableCache);
else
return fetch(recid, serializer);
}
public synchronized void delete(long recid)
throws IOException {
checkNotClosed();
super.delete(recid);
synchronized (_hashDirties){
_hashDirties.remove(recid);
}
synchronized (_softHash) {
Object e = _softHash.remove(recid);
if (e != null && e instanceof ReferenceCacheEntry) {
((ReferenceCacheEntry)e).clear();
}
}
if(needsAutoCommit())
commit();
}
public synchronized <A> void update(final long recid, A obj, Serializer<A> serializer) throws IOException {
checkNotClosed();
synchronized (_softHash) {
//soft cache can not contain dirty objects
Object e = _softHash.remove(recid);
if (e != null && e instanceof ReferenceCacheEntry) {
((ReferenceCacheEntry)e).clear();
}
}
synchronized (_hashDirties){
//put into dirty cache
final DirtyCacheEntry e = new DirtyCacheEntry();
e._recid = recid;
e._obj = obj;
e._serializer = serializer;
_hashDirties.put(recid,e);
}
if(needsAutoCommit())
commit();
}
public synchronized <A> A fetch(long recid, Serializer<A> serializer)
throws IOException {
checkNotClosed();
synchronized (_softHash) {
Object e = _softHash.get(recid);
if (e != null) {
if(e instanceof ReferenceCacheEntry)
e = ((ReferenceCacheEntry)e).get();
if (e != null) {
return (A) e;
}
}
}
synchronized (_hashDirties){
DirtyCacheEntry e2 = _hashDirties.get(recid);
if(e2!=null){
return (A) e2._obj;
}
}
A value = super.fetch(recid, serializer);
if(needsAutoCommit())
commit();
synchronized (_softHash) {
if (_cacheType == SOFT)
_softHash.put(recid, new SoftCacheEntry(recid, value, _refQueue));
else if (_cacheType == WEAK)
_softHash.put(recid, new WeakCacheEntry(recid, value, _refQueue));
else
_softHash.put(recid,value);
}
return value;
}
public synchronized void close() {
checkNotClosed();
updateCacheEntries();
super.close();
_softHash = null;
_softRefThread.interrupt();
}
public synchronized void rollback() {
checkNotClosed();
// discard all cache entries since we don't know which entries
// where part of the transaction
synchronized (_softHash) {
Iterator<ReferenceCacheEntry> iter = _softHash.valuesIterator();
while (iter.hasNext()) {
ReferenceCacheEntry e = iter.next();
e.clear();
}
_softHash.clear();
}
super.rollback();
}
protected boolean isCacheEntryDirty(DirtyCacheEntry entry) {
return _hashDirties.get(entry._recid) != null;
}
protected void setCacheEntryDirty(DirtyCacheEntry entry, boolean dirty) {
if (dirty) {
_hashDirties.put(entry._recid, entry);
} else {
_hashDirties.remove(entry._recid);
}
}
interface ReferenceCacheEntry {
long getRecid();
void clear();
Object get();
}
@SuppressWarnings("unchecked")
static final class SoftCacheEntry extends SoftReference implements ReferenceCacheEntry {
protected final long _recid;
public long getRecid() {
return _recid;
}
SoftCacheEntry(long recid, Object obj, ReferenceQueue queue) {
super(obj, queue);
_recid = recid;
}
}
@SuppressWarnings("unchecked")
static final class WeakCacheEntry extends WeakReference implements ReferenceCacheEntry {
protected final long _recid;
public long getRecid() {
return _recid;
}
WeakCacheEntry(long recid, Object obj, ReferenceQueue queue) {
super(obj, queue);
_recid = recid;
}
}
/**
* Runs in separate thread and cleans SoftCache.
* Runnable auto exists when CacheRecordManager is GCed
*
* @author Jan Kotek
*/
static final class SoftRunnable implements Runnable {
private ReferenceQueue<ReferenceCacheEntry> entryQueue;
private WeakReference<DBCacheRef> db2;
public SoftRunnable(DBCacheRef db,
ReferenceQueue<ReferenceCacheEntry> entryQueue) {
this.db2 = new WeakReference<DBCacheRef>(db);
this.entryQueue = entryQueue;
}
public void run() {
while (true) try {
//collect next item from cache,
//limit 10000 ms is to keep periodically checking if db was GCed
ReferenceCacheEntry e = (ReferenceCacheEntry) entryQueue.remove(10000);
//check if db was GCed, cancel in that case
DBCacheRef db = db2.get();
if (db == null)
return;
if (e != null) {
synchronized (db._softHash) {
int counter = 0;
while (e != null) {
db._softHash.remove(e.getRecid());
e = (SoftCacheEntry) entryQueue.poll();
if(debug)
counter++;
}
if(debug)
System.err.println("DBCache: "+counter+" objects released from ref cache.");
}
}else{
//check memory consumption every 10 seconds
db.clearCacheIfLowOnMem();
}
} catch (InterruptedException e) {
return;
} catch (Throwable e) {
//this thread must keep spinning,
//otherwise SoftCacheEntries would not be disposed
e.printStackTrace();
}
}
}
public void clearCache() {
if(debug)
System.err.println("DBCache: Clear cache");
synchronized (_softHash) {
if(_cacheType!=HARD){
Iterator<ReferenceCacheEntry> iter = _softHash.valuesIterator();
while (iter.hasNext()) {
ReferenceCacheEntry e = iter.next();
e.clear();
}
}
_softHash.clear();
}
}
}
| [
"pawar2@illinois.edu"
] | pawar2@illinois.edu |
f04e6e59397840f49cd0938ca69bd4f9cdd272d5 | 1f190e39cf392722823f4d193fe9f00f52d799ba | /src/com/yqmac/exam/util/InitServlet.java | 65b002f2301f4ce2ed5ed122527078e55117d4ac | [] | no_license | yqMac/Exam-Web | 69c26215a39adeb1aa7039fa18d9c9c8aa98f1e2 | 567031a0314cf4592195e7745d02a509e0476cff | refs/heads/master | 2020-12-24T08:09:15.552689 | 2016-06-03T05:18:35 | 2016-06-03T05:18:35 | 60,023,705 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,078 | java | package com.yqmac.exam.util;
import com.yqmac.exam.auth.AuthUtil;
import com.yqmac.exam.auth.EnumAuth;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import java.util.Map;
import java.util.Set;
/**
* Created by yqmac on 2016/5/20 0020.
*/
public class InitServlet extends HttpServlet {
public static WebApplicationContext wc ;
@Override
public void init(ServletConfig config) throws ServletException {
super.init(config);
//初始化Spring工程
wc = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
//初始化权限信息
Map<EnumAuth, Set<String>> auths = AuthUtil.initAuthRightMethod("com.yqmac.exam.action");
this.getServletContext().setAttribute("allAuths", auths);
System.out.println("--------系统初始化成功 ["+auths+"] -------------------");
}
}
| [
"yqmac163@163.com"
] | yqmac163@163.com |
19aba0bb045c18c54e73e34a5ba38326eeb120ac | dbf6767e2d3fcb5f54df8de752ad3cf4544da621 | /yabench-commons/src/main/java/io/github/yabench/engines/commons/Query.java | 970d21cb8442d9770cf31e856a66ff270c870bfd | [] | no_license | libo-gao/yabench | be2aec593d282f2ba4b78df8da753748ec634fc9 | 75a66659912eab75a39178051bec83f597a70607 | refs/heads/master | 2022-05-25T19:51:13.566025 | 2017-11-04T21:12:03 | 2017-11-04T21:12:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 213 | java | package io.github.yabench.engines.commons;
import java.time.Duration;
public interface Query {
public String getQueryString();
public Duration getWindowSize();
public Duration getWindowSlide();
}
| [
"kolchinmax@gmail.com"
] | kolchinmax@gmail.com |
c5dc58c3b3dac90cfa20cde22f46d87dc82c1b8b | c88bd924e0d1f687fb60a74db82ae81f3702b016 | /Leaflets/src/main/java/org/wheat/leaflets/activity/TestUploadPhotoActivity.java | 6dc889ff75f8639d6464f2d62a20f3bf5ac7d0a3 | [] | no_license | mhhwheat/ElectronicLeafletsProject | df3de402fb5cb083093d8979652d58d6990d0e8c | 20af31204ea28309236f653554b35f56229e8ef3 | refs/heads/master | 2020-03-26T17:14:07.434210 | 2015-05-03T11:05:46 | 2015-05-03T11:05:46 | 34,519,176 | 0 | 0 | null | null | null | null | IBM852 | Java | false | false | 1,944 | java | /**
* descriptionú║
* @author wheat
* date: 2015-4-10
* time: ¤┬╬š8:23:30
*/
package org.wheat.leaflets.activity;
import java.io.File;
import java.util.Date;
import org.wheat.leaflets.R;
import org.wheat.leaflets.loader.HttpUploadMethods;
import android.app.Activity;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.Environment;
import android.view.View;
import android.widget.Button;
/**
* description:
* @author wheat
* date: 2015-4-10
* time: ¤┬╬š8:23:30
*/
public class TestUploadPhotoActivity extends Activity
{
private Button bt;
private String photoPath;
private File photo;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test_upload_photo);
bt=(Button)findViewById(R.id.upload);
photoPath=Environment.getExternalStorageDirectory()+"/DCIM/Camera/Ë▓┼╠╝ý▓Ô1.png";
photo=new File(photoPath);
bt.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
new UploadPhotoTask(photo, "abc@qq.com", "primary").execute();
}
});
}
private class UploadPhotoTask extends AsyncTask<Void, Void, Integer>
{
private File photo;
private String photoName;
private String photoType;
public UploadPhotoTask(File photo,String photoName,String photoType)
{
Date date=new Date();
this.photo=photo;
this.photoName=photoName+date.getTime();
this.photoType=photoType;
}
@Override
protected Integer doInBackground(Void... params) {
int returnCode=-1;
try
{
returnCode=HttpUploadMethods.uploadPhoto(photo, photoName, photoType);
}
catch(Exception e)
{
e.printStackTrace();
}
return returnCode;
}
@Override
protected void onPostExecute(Integer result) {
// TODO Auto-generated method stub
super.onPostExecute(result);
}
}
}
| [
"1057251411@qq.com"
] | 1057251411@qq.com |
02a41b71ededc4ace3e268a1b8c330ed0d46aed0 | e6044d6ba6ca8c8987df3ca6f95bb63457c8e545 | /web/src/main/java/com/thread/MyContainer2.java | b1764ae2c5522fe3a84dc579921651d693ef965c | [] | no_license | DongJJCode/web | 4d8212d73800be5c4dce215ada05bcd5516bba7b | aab835eede2113864adbebbaa7345f6826e86cf2 | refs/heads/master | 2020-04-14T11:00:57.881367 | 2019-01-26T06:00:46 | 2019-01-26T06:00:46 | 163,802,354 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,226 | java | package com.thread;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.TimeUnit;
/**
* * 实现一个容器,提供两个方法,add,size
* * 写两个线程,线程1添加10个元素到容器,线程2实现监控元素的个数,当个数到5的时候,线程2给出提示并结束
*/
public class MyContainer2 {
volatile List<Object> list = new ArrayList<>();
public void add(Object object) {
list.add(object);
}
public int size() {
return list.size();
}
public static void main(String[] args) {
MyContainer2 c = new MyContainer2();
new Thread(() -> {
for (int i = 0; i < 10 ; i++) {
c.add(new Object());
System.out.println("add " + i);
try {
TimeUnit.SECONDS.sleep(1);
}catch (Exception e) {
e.printStackTrace();
}
}
}, "t1").start();
new Thread(() -> {
while (true) {
if (c.size() == 5) {
break;
}
}
System.out.println("t2 结束" );
}, "t2").start();
}
}
| [
"kangdongjie@cmhi.chinamobile.com"
] | kangdongjie@cmhi.chinamobile.com |
1ff13c7ce3796f51fc07461b1f7d11f053a07ba3 | 80caaec15dfc25f3bdc4aa8d801b8bd7f6dd168d | /final/src/main/java/com/lucius/entity/RoleTreeExample.java | 380ff76c6b15431bf70c2dae3f460740e6b7e392 | [] | no_license | 1879306946/project | 4c46d4c1ebcf74b2004e5f895f84934f984d8820 | 78f18032e5e69660ab1c45019f89174e6084b9a2 | refs/heads/master | 2020-05-13T17:11:54.431475 | 2019-04-16T08:38:41 | 2019-04-16T08:38:41 | 181,642,772 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,563 | java | package com.lucius.entity;
import java.util.ArrayList;
import java.util.List;
public class RoleTreeExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
protected String orderByClause;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
protected boolean distinct;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
protected List<Criteria> oredCriteria;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
public RoleTreeExample() {
oredCriteria = new ArrayList<Criteria>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
public String getOrderByClause() {
return orderByClause;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
public boolean isDistinct() {
return distinct;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
protected abstract static class GeneratedCriteria {
protected List<Criterion> criteria;
protected GeneratedCriteria() {
super();
criteria = new ArrayList<Criterion>();
}
public boolean isValid() {
return criteria.size() > 0;
}
public List<Criterion> getAllCriteria() {
return criteria;
}
public List<Criterion> getCriteria() {
return criteria;
}
protected void addCriterion(String condition) {
if (condition == null) {
throw new RuntimeException("Value for condition cannot be null");
}
criteria.add(new Criterion(condition));
}
protected void addCriterion(String condition, Object value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value));
}
protected void addCriterion(String condition, Object value1, Object value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
criteria.add(new Criterion(condition, value1, value2));
}
public Criteria andRidIsNull() {
addCriterion("rid is null");
return (Criteria) this;
}
public Criteria andRidIsNotNull() {
addCriterion("rid is not null");
return (Criteria) this;
}
public Criteria andRidEqualTo(Integer value) {
addCriterion("rid =", value, "rid");
return (Criteria) this;
}
public Criteria andRidNotEqualTo(Integer value) {
addCriterion("rid <>", value, "rid");
return (Criteria) this;
}
public Criteria andRidGreaterThan(Integer value) {
addCriterion("rid >", value, "rid");
return (Criteria) this;
}
public Criteria andRidGreaterThanOrEqualTo(Integer value) {
addCriterion("rid >=", value, "rid");
return (Criteria) this;
}
public Criteria andRidLessThan(Integer value) {
addCriterion("rid <", value, "rid");
return (Criteria) this;
}
public Criteria andRidLessThanOrEqualTo(Integer value) {
addCriterion("rid <=", value, "rid");
return (Criteria) this;
}
public Criteria andRidIn(List<Integer> values) {
addCriterion("rid in", values, "rid");
return (Criteria) this;
}
public Criteria andRidNotIn(List<Integer> values) {
addCriterion("rid not in", values, "rid");
return (Criteria) this;
}
public Criteria andRidBetween(Integer value1, Integer value2) {
addCriterion("rid between", value1, value2, "rid");
return (Criteria) this;
}
public Criteria andRidNotBetween(Integer value1, Integer value2) {
addCriterion("rid not between", value1, value2, "rid");
return (Criteria) this;
}
public Criteria andTidIsNull() {
addCriterion("tid is null");
return (Criteria) this;
}
public Criteria andTidIsNotNull() {
addCriterion("tid is not null");
return (Criteria) this;
}
public Criteria andTidEqualTo(Integer value) {
addCriterion("tid =", value, "tid");
return (Criteria) this;
}
public Criteria andTidNotEqualTo(Integer value) {
addCriterion("tid <>", value, "tid");
return (Criteria) this;
}
public Criteria andTidGreaterThan(Integer value) {
addCriterion("tid >", value, "tid");
return (Criteria) this;
}
public Criteria andTidGreaterThanOrEqualTo(Integer value) {
addCriterion("tid >=", value, "tid");
return (Criteria) this;
}
public Criteria andTidLessThan(Integer value) {
addCriterion("tid <", value, "tid");
return (Criteria) this;
}
public Criteria andTidLessThanOrEqualTo(Integer value) {
addCriterion("tid <=", value, "tid");
return (Criteria) this;
}
public Criteria andTidIn(List<Integer> values) {
addCriterion("tid in", values, "tid");
return (Criteria) this;
}
public Criteria andTidNotIn(List<Integer> values) {
addCriterion("tid not in", values, "tid");
return (Criteria) this;
}
public Criteria andTidBetween(Integer value1, Integer value2) {
addCriterion("tid between", value1, value2, "tid");
return (Criteria) this;
}
public Criteria andTidNotBetween(Integer value1, Integer value2) {
addCriterion("tid not between", value1, value2, "tid");
return (Criteria) this;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table role_tree
*
* @mbggenerated do_not_delete_during_merge Mon Apr 15 20:24:22 CST 2019
*/
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table role_tree
*
* @mbggenerated Mon Apr 15 20:24:22 CST 2019
*/
public static class Criterion {
private String condition;
private Object value;
private Object secondValue;
private boolean noValue;
private boolean singleValue;
private boolean betweenValue;
private boolean listValue;
private String typeHandler;
public String getCondition() {
return condition;
}
public Object getValue() {
return value;
}
public Object getSecondValue() {
return secondValue;
}
public boolean isNoValue() {
return noValue;
}
public boolean isSingleValue() {
return singleValue;
}
public boolean isBetweenValue() {
return betweenValue;
}
public boolean isListValue() {
return listValue;
}
public String getTypeHandler() {
return typeHandler;
}
protected Criterion(String condition) {
super();
this.condition = condition;
this.typeHandler = null;
this.noValue = true;
}
protected Criterion(String condition, Object value, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.typeHandler = typeHandler;
if (value instanceof List<?>) {
this.listValue = true;
} else {
this.singleValue = true;
}
}
protected Criterion(String condition, Object value) {
this(condition, value, null);
}
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
super();
this.condition = condition;
this.value = value;
this.secondValue = secondValue;
this.typeHandler = typeHandler;
this.betweenValue = true;
}
protected Criterion(String condition, Object value, Object secondValue) {
this(condition, value, secondValue, null);
}
}
} | [
"q1879306946@gmail.com"
] | q1879306946@gmail.com |
261cd17c8ce2b28b3bdae91e5af94c1dafcad6a2 | c24e883bba5235840239de3bd5640d92e0c8db66 | /commons/core/src/main/java/com/smart/website/common/core/utils/AesUtil.java | 17f75ca4d3151a04c70934aa2c3c351bfa4d00b6 | [] | no_license | hotHeart48156/mallwebsite | 12fe2f7d4e108ceabe89b82eacca75898d479357 | ba865c7ea22955009e2de7b688038ddd8bc9febf | refs/heads/master | 2022-11-23T23:22:28.967449 | 2020-01-07T15:27:27 | 2020-01-07T15:27:27 | 231,905,626 | 0 | 0 | null | 2022-11-15T23:54:56 | 2020-01-05T11:14:43 | Java | UTF-8 | Java | false | false | 4,200 | java | package com.smart.website.common.core.utils;
import lombok.experimental.UtilityClass;
import org.springframework.util.Assert;
import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.nio.charset.Charset;
import java.util.Arrays;
/**
* 完全兼容微信所使用的AES加密方式。
* aes的key必须是256byte长(比如32个字符),可以使用AesKit.genAesKey()来生成一组key
* <p>
* 参考自:jFinal AESKit,优化,方便使用
*
* @author L.cm
*/
@UtilityClass
public class AesUtil {
public static String genAesKey() {
return StringUtil.random(32);
}
public static byte[] encrypt(byte[] content, String aesTextKey) {
return encrypt(content, aesTextKey.getBytes(Charsets.UTF_8));
}
public static byte[] encrypt(String content, String aesTextKey) {
return encrypt(content.getBytes(Charsets.UTF_8), aesTextKey.getBytes(Charsets.UTF_8));
}
public static byte[] encrypt(String content, Charset charset, String aesTextKey) {
return encrypt(content.getBytes(charset), aesTextKey.getBytes(Charsets.UTF_8));
}
public static byte[] decrypt(byte[] content, String aesTextKey) {
return decrypt(content, aesTextKey.getBytes(Charsets.UTF_8));
}
public static String decryptToStr(byte[] content, String aesTextKey) {
return new String(decrypt(content, aesTextKey.getBytes(Charsets.UTF_8)), Charsets.UTF_8);
}
public static String decryptToStr(byte[] content, String aesTextKey, Charset charset) {
return new String(decrypt(content, aesTextKey.getBytes(Charsets.UTF_8)), charset);
}
public static byte[] encrypt(byte[] content, byte[] aesKey) {
Assert.isTrue(aesKey.length == 32, "IllegalAesKey, aesKey's length must be 32");
try {
Cipher cipher = Cipher.getInstance("AES/CBC/NoPadding");
SecretKeySpec keySpec = new SecretKeySpec(aesKey, "AES");
IvParameterSpec iv = new IvParameterSpec(aesKey, 0, 16);
cipher.init(Cipher.ENCRYPT_MODE, keySpec, iv);
return cipher.doFinal(Pkcs7Encoder.encode(content));
} catch (Exception e) {
throw Exceptions.unchecked(e);
}
}
public static byte[] decrypt(byte[] encrypted, byte[] aesKey) {
Assert.isTrue(aesKey.length == 32, "IllegalAesKey, aesKey's length must be 32");
try {
Cipher cipher = Cipher.getInstance("AES/CBC/NoPadding");
SecretKeySpec keySpec = new SecretKeySpec(aesKey, "AES");
IvParameterSpec iv = new IvParameterSpec(Arrays.copyOfRange(aesKey, 0, 16));
cipher.init(Cipher.DECRYPT_MODE, keySpec, iv);
return Pkcs7Encoder.decode(cipher.doFinal(encrypted));
} catch (Exception e) {
throw Exceptions.unchecked(e);
}
}
/**
* 提供基于PKCS7算法的加解密接口.
*/
private static class Pkcs7Encoder {
private static int BLOCK_SIZE = 32;
private static byte[] encode(byte[] src) {
int count = src.length;
// 计算需要填充的位数
int amountToPad = BLOCK_SIZE - (count % BLOCK_SIZE);
if (amountToPad == 0) {
amountToPad = BLOCK_SIZE;
}
// 获得补位所用的字符
byte pad = (byte) (amountToPad & 0xFF);
byte[] pads = new byte[amountToPad];
for (int index = 0; index < amountToPad; index++) {
pads[index] = pad;
}
int length = count + amountToPad;
byte[] dest = new byte[length];
System.arraycopy(src, 0, dest, 0, count);
System.arraycopy(pads, 0, dest, count, amountToPad);
return dest;
}
private static byte[] decode(byte[] decrypted) {
int pad = decrypted[decrypted.length - 1];
if (pad < 1 || pad > BLOCK_SIZE) {
pad = 0;
}
if (pad > 0) {
return Arrays.copyOfRange(decrypted, 0, decrypted.length - pad);
}
return decrypted;
}
}
}
| [
"2680323775@qq.com"
] | 2680323775@qq.com |
f4ab4c7466e190893a65f16fb356480c177ac68a | 90f3611fdf749d0c925ed626275888c7f0d1e7bb | /common-auth/src/main/java/com/github/acehjm/solbycloud/auth/AuthApplication.java | a275dcf32860c1db17a3bfda5c5f6b2187f64280 | [
"Apache-2.0"
] | permissive | acehjm/solbycloud | db6c116607c54c69ae68028de2cbe1b90e787c8d | 7f3b39d587a26bea794aa917f3fa40987062fda4 | refs/heads/master | 2020-06-02T16:41:49.530624 | 2020-01-14T15:04:58 | 2020-01-14T15:04:58 | 191,231,971 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 736 | java | package com.github.acehjm.solbycloud.auth;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.security.oauth2.config.annotation.web.configuration.EnableAuthorizationServer;
/**
* com.github.acehjm.solbycloud.auth
*
* @author majhdk
* @date 2019/11/25
*/
@EnableAuthorizationServer
@RefreshScope
@EnableDiscoveryClient
@SpringBootApplication
public class AuthApplication {
public static void main(String[] args) {
SpringApplication.run(AuthApplication.class, args);
}
}
| [
"majhdkl@gmail.com"
] | majhdkl@gmail.com |
cdd861f23c4e770a1f8d41b91b8826637266fa7f | 09171166d8be8e35a4b6dbde8beacd27460dabbb | /lib/src/main/java/com/dyh/common/lib/weigit/seekbar/BubbleUtils.java | e23ccb5d3d060f3670489fc93201073d2486dd8b | [
"Apache-2.0"
] | permissive | dongyonghui/CommonLib | d51c99f15258e54344fed6dfdacc0c3aa0c08017 | a57fb995898644bb7b4bcd259417aca1e11944c9 | refs/heads/master | 2021-07-20T06:58:19.536087 | 2021-01-11T09:05:26 | 2021-01-11T09:05:26 | 233,981,794 | 12 | 2 | null | null | null | null | UTF-8 | Java | false | false | 2,105 | java | package com.dyh.common.lib.weigit.seekbar;
import android.content.res.Resources;
import android.os.Build;
import android.os.Environment;
import android.text.TextUtils;
import android.util.TypedValue;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.lang.reflect.Method;
import java.util.Properties;
class BubbleUtils {
private static final String KEY_MIUI_MANE = "ro.miui.ui.version.name";
private static Properties sProperties = new Properties();
private static Boolean miui;
static boolean isMIUI() {
if (miui != null) {
return miui;
}
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) {
FileInputStream fis = null;
try {
fis = new FileInputStream(new File(Environment.getRootDirectory(), "build.prop"));
sProperties.load(fis);
} catch (IOException e) {
e.printStackTrace();
} finally {
if (fis != null) {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
miui = sProperties.containsKey(KEY_MIUI_MANE);
} else {
Class<?> clazz;
try {
clazz = Class.forName("android.os.SystemProperties");
Method getMethod = clazz.getDeclaredMethod("get", String.class);
String name = (String) getMethod.invoke(null, KEY_MIUI_MANE);
miui = !TextUtils.isEmpty(name);
} catch (Exception e) {
miui = false;
}
}
return miui;
}
static int dp2px(int dp) {
return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp,
Resources.getSystem().getDisplayMetrics());
}
static int sp2px(int sp) {
return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, sp,
Resources.getSystem().getDisplayMetrics());
}
} | [
"648731994@qq.com"
] | 648731994@qq.com |
83971f21cc131549d8773b5de81a1143c31529d5 | 60f9dd5ab7e0cea8b47f2f62f9d0f74bf3da206a | /TeamCode/src/main/java/org/firstinspires/ftc/teamcode/OpModes/Auto/StoneFarBlue.java | 402d4ac684fe5c9078d4567d32b073ba6792f47e | [
"BSD-3-Clause"
] | permissive | FTC3486/SkyStone | 9f7815756bd223b5dcb36f3cfff00c928e6bb2c2 | 42b0b37d9ed8bbecc58b65a9e0729ff878b0a754 | refs/heads/master | 2020-07-16T03:46:45.306723 | 2020-07-15T01:43:11 | 2020-07-15T01:43:11 | 205,711,783 | 0 | 0 | null | 2019-09-01T17:46:27 | 2019-09-01T17:46:27 | null | UTF-8 | Java | false | false | 2,837 | java | package org.firstinspires.ftc.teamcode.OpModes.Auto;
import com.qualcomm.robotcore.eventloop.opmode.Autonomous;
import com.qualcomm.robotcore.eventloop.opmode.Disabled;
import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode;
import org.firstinspires.ftc.robotcore.external.navigation.AngleUnit;
import org.firstinspires.ftc.robotcore.external.navigation.AxesOrder;
import org.firstinspires.ftc.robotcore.external.navigation.AxesReference;
import org.firstinspires.ftc.robotcore.external.navigation.DistanceUnit;
import org.firstinspires.ftc.robotcore.external.navigation.Orientation;
import org.firstinspires.ftc.robotcore.external.navigation.Position;
import org.firstinspires.ftc.robotcore.external.navigation.VuforiaLocalizer;
import org.firstinspires.ftc.robotcore.external.navigation.VuforiaSkyStone;
import org.firstinspires.ftc.teamcode.RobotConfiguration.Skystone.SkystoneRobot;
import org.firstinspires.ftc.teamcode.RobotCoreExtensions.EncoderAutoDriver;
import org.firstinspires.ftc.teamcode.RobotCoreExtensions.VuforiaDriver;
import java.util.Arrays;
@Disabled
@Autonomous(group = "Blue" )
public class StoneFarBlue extends LinearOpMode {
private VuforiaDriver vuforiaDriver;
@Override
public void runOpMode() {
final SkystoneRobot skystoneRobot = new SkystoneRobot(this.hardwareMap);
final EncoderAutoDriver encoderAutoDriver = new EncoderAutoDriver(skystoneRobot, this);
skystoneRobot.initialize();
waitForStart();
/*
encoderAutoDriver.setPower(1);
skystoneRobot.platformServo.open();
skystoneRobot.releaseServo.open();
// Stone collection
skystoneRobot.pickup1.run(1);
skystoneRobot.pickup2.run(1);
encoderAutoDriver.driveToDistance(-15);
encoderAutoDriver.setPower(.1);
encoderAutoDriver.driveToDistance(-15);
encoderAutoDriver.setPower(1);
encoderAutoDriver.driveToDistance(18);
// Stone delivery
encoderAutoDriver.spinLeft(-8,8);
encoderAutoDriver.driveToDistance(-32);
skystoneRobot.pickup1.reverse(-1);
skystoneRobot.pickup2.reverse(-1);
// Returning for another stone
encoderAutoDriver.driveToDistance(48);
encoderAutoDriver.spinRight(8, -8);
skystoneRobot.pickup1.run(1);
skystoneRobot.pickup2.run(1);
encoderAutoDriver.setPower(.1);
encoderAutoDriver.driveToDistance(-15);
encoderAutoDriver.driveToDistance(15);
// Delivering the second stone
encoderAutoDriver.setPower(1);
encoderAutoDriver.spinLeft(-8, 8);
encoderAutoDriver.driveToDistance(-52);
skystoneRobot.pickup1.reverse(1);
skystoneRobot.pickup2.reverse(1);
//Parking on the line
encoderAutoDriver.driveToDistance(12);
*/
}
}
| [
"jefflanum@yahoo.com"
] | jefflanum@yahoo.com |
5a13cfcf8843f0874625b3d5cbccc715a2a7ac81 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/8/8_c38bc9a111085c0d65bf606e9c72650f4fdb9f76/CollisionDetectionWorker/8_c38bc9a111085c0d65bf606e9c72650f4fdb9f76_CollisionDetectionWorker_t.java | 5bdab216dc87cf7c094eff7ba055f1e04fb3c128 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 3,805 | java | package com.github.joukojo.testgame;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.github.joukojo.testgame.world.core.Moveable;
import com.github.joukojo.testgame.world.core.WorldCore;
import com.github.joukojo.testgame.world.core.WorldCoreFactory;
public class CollisionDetectionWorker implements Runnable {
private final static Logger LOG = LoggerFactory.getLogger(CollisionDetectionWorker.class);
private volatile boolean isRunning;
@Override
public void run() {
final WorldCore worldCore = WorldCoreFactory.getWorld();
setRunning(true);
while (isRunning()) {
handleBulletCollisions(worldCore);
handlePlayerCollisions(worldCore);
Thread.yield();
}
}
private void handleBulletCollisions(final WorldCore worldCore) {
final List<Moveable> bullets = worldCore.getMoveableObjects(Constants.BULLETS);
if (bullets != null && !bullets.isEmpty()) {
for (final Moveable moveableBullet : bullets) {
final Bullet bullet = (Bullet) moveableBullet;
isBulletInCollisionWithMonster(worldCore, bullet);
}
}
}
private void handlePlayerCollisions(final WorldCore worldCore) {
final Player player = (Player) worldCore.getMoveable(Constants.PLAYER);
final List<Moveable> monsters = worldCore.getMoveableObjects(Constants.MONSTERS);
for (final Moveable moveable : monsters) {
final Monster monster = (Monster) moveable;
if (monster != null && !monster.isDestroyed() && player != null) {
isPlayerAndMonsterInCollision(worldCore, player, monster);
}
}
}
private void isBulletInCollisionWithMonster(final WorldCore worldCore, final Bullet bullet) {
final List<Moveable> monsters = worldCore.getMoveableObjects(Constants.MONSTERS);
if (monsters != null && !monsters.isEmpty()) {
for (final Moveable moveableMonster : monsters) {
final Monster monster = (Monster) moveableMonster;
if (monster != null && bullet != null) {
isBulletAndMonsterInCollision(worldCore, bullet, monster);
}
}
}
}
private void isBulletAndMonsterInCollision(final WorldCore worldCore, final Bullet bullet, final Monster monster) {
if (!monster.isDestroyed() && !bullet.isDestroyed()) {
// correct the monster location
final int monsterRealX = monster.getLocationX() + 34;
final int monsterRealY = monster.getLocationY() + 34;
final int deltaX = Math.abs(bullet.getLocationX() - monsterRealX);
final int deltaY = Math.abs(bullet.getLocationY() - monsterRealY);
if (LOG.isTraceEnabled()) {
LOG.trace("deltaX {}", deltaX);
LOG.trace("deltaY {}", deltaY);
}
if (deltaX < 30 && deltaY < 30) {
LOG.debug("we have a hit");
monster.setDestroyed(true);
bullet.setDestroyed(true);
final Player player = (Player) worldCore.getMoveable(Constants.PLAYER);
player.setScore(player.getScore() + 100);
}
}
}
private void isPlayerAndMonsterInCollision(final WorldCore worldCore, final Player player, final Monster monster) {
if (!monster.isDestroyed()) {
// correct the monster location
final int monsterRealX = monster.getLocationX() + 34;
final int monsterRealY = monster.getLocationY() + 13;
final int deltaX = Math.abs(player.getPositionX() - monsterRealX);
final int deltaY = Math.abs(player.getPositionY() - monsterRealY);
LOG.trace("deltaX {}", deltaX);
LOG.trace("deltaY {}", deltaY);
if (deltaX < 20 && deltaY < 20) {
LOG.debug("we have a hit with monster");
monster.setDestroyed(true);
player.setHealth(player.getHealth() - 1);
}
}
}
public boolean isRunning() {
return isRunning;
}
public void setRunning(final boolean isRunning) {
this.isRunning = isRunning;
}
}
| [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.