blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 332 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 7 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 557 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M ⌀ | star_events_count int64 0 77.7k | fork_events_count int64 0 48k | gha_license_id stringclasses 17 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 82 values | src_encoding stringclasses 28 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 5.41M | extension stringclasses 11 values | content stringlengths 7 5.41M | authors listlengths 1 1 | author stringlengths 0 161 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ccfd2704ec9aca27facbcf6778b3b85aa477b629 | 4dd715e16a8c4a2cb89fc68e761ab1dc4d15c6ca | /Unit 03/src/DistanceRunner.java | 24f078e5551ae9ecb6f69d7afd0b9a3eeea9c5bb | [] | no_license | SerenaG19/geroe_serena_apcsa-p222 | 577312d47d904d15812f12904e2e0bd7e9a030f4 | 8daa46353c246d7e666f7793cc17f396b79799dc | refs/heads/master | 2020-04-20T08:33:36.858613 | 2019-05-22T21:12:35 | 2019-05-22T21:12:35 | 168,742,747 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,615 | java | //(c) A+ Computer Science
//www.apluscompsci.com
//Name - Serena Geroe
//Date - 02/06/19
//Class - APCSA
//Lab - Distance Formula
import java.util.Scanner;
import static java.lang.System.*;
import static java.lang.Math.*;
public class DistanceRunner
{
public static void main( String[] args )
{
//add test cases
//This is another way to test different cases
//Distance myDistance2 = new Distance(1,2,3,4);
//create default object; all tests cases below use this object
Distance myDistance = new Distance();
//test case1
myDistance.setCoordinates(5, 6, 7, 8);
myDistance.calcDistance();
System.out.println("My distance is: " + myDistance.getDistance());
//test case2
myDistance.setCoordinates(2,7,10,2);
myDistance.calcDistance();
System.out.println("My distance is: " + myDistance.getDistance());
//test case3; this inputs the myDistance object instead of printing as above;
//the system looks for the toString() method
myDistance.setCoordinates(10,40,3,2);
myDistance.calcDistance();
System.out.println(myDistance);
//test case4
myDistance.setCoordinates(1,1,2,1);
myDistance.calcDistance();
System.out.println("My distance is: " + myDistance.getDistance());
//test case5
myDistance.setCoordinates(1,1,-2,2);
myDistance.calcDistance();
System.out.println("My distance is: " + myDistance.getDistance());
//test case6
myDistance.setCoordinates(1,1,0,0);
myDistance.calcDistance();
System.out.println("My distance is: " + myDistance.getDistance());
}
} | [
"47190047+SerenaG19@users.noreply.github.com"
] | 47190047+SerenaG19@users.noreply.github.com |
951056cc39801e58050ea5f1332ab39619ae76af | e708706304267157beeef4c49b028b46672243c3 | /Documents/NetBeansProjects/Java8SE/src/Test.java | 5da90f6b48956bacf55bbd0b5264aaedc7496109 | [] | no_license | vmonterrubio/CursoJavaSE8 | 2ed0d3c2f11be25b6c9c7a21627b30feebd73322 | ca0a52ec90a8d50eb09b8f51dff55eb64532f4cb | refs/heads/master | 2021-01-16T18:16:42.588663 | 2017-08-11T20:52:46 | 2017-08-11T20:52:46 | 100,052,724 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 339 | java | public class Test {
enum Month { JAN, FEB, MAR };
public static void main(String [] args) {
Month m1 = Month.JAN;
Month m2 = Month.JAN;
Month m3 = Month.FEB;
System.out.println(m1 == m2);
System.out.println(m1.equals(m2));
System.out.println(m1 == m3);
System.out.println(m1.equals(m3));
}
} | [
"victor.monterrubio@gmail.com"
] | victor.monterrubio@gmail.com |
d47f7f1b6faaa3062b37d893e31dcde1f35022bc | d1420c6331d2d129dc5247f4267c23a77edfc1b5 | /app/src/test/java/com/counsellor/Qspider/ExampleUnitTest.java | cdc1e8eeb5b5884a8fab3c7b396b457de1daa187 | [] | no_license | manishasinghkuntal/QspiderCounsellor | fd55e767273a564b39a1f530efc77b8d86455857 | 2834a20593f648632eada6a395e7a087ffd82194 | refs/heads/master | 2022-11-30T19:18:28.852255 | 2020-08-12T08:36:13 | 2020-08-12T08:36:13 | 285,608,122 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 383 | java | package com.counsellor.Qspider;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
} | [
"manisha.s.kuntal@gmail.com"
] | manisha.s.kuntal@gmail.com |
f799846ad2272120f5a77f66efc9d38a61566655 | df16bfeb2f1526be067fc0df829b251b20230fa3 | /common/src/main/java/cn/lds/common/data/DealerListModel.java | c268480bff7ebff26caae281dd33fa6add4ab214 | [] | no_license | binbin5257/A001 | da727e95d81677fd9d5e6f4aa6d89c5c051aa310 | 8ebdc93935e1833311d10acc12508c489d1ff4cd | refs/heads/master | 2020-04-06T08:12:02.443207 | 2019-08-08T01:34:43 | 2019-08-08T01:34:43 | 157,298,109 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,077 | java | package cn.lds.common.data;
import java.util.List;
import cn.lds.common.data.base.BaseModel;
/**
* 经销商列表数据模型
* Created by leadingsoft on 17/12/26.
*/
public class DealerListModel extends BaseModel {
private List<DataBean> data;
public List<DataBean> getData() {
return data;
}
public void setData( List<DataBean> data ) {
this.data = data;
}
public static class DataBean {
/**
* dealerCode : CFA1382
* dealerName : 大连振兴汽车销售有限公司CFA1382
* longitude : 121.92566
* latitude : 39.636949
* address : 辽宁省瓦房店市岗店街道太阳沟
* dealerPhone : 15998580611
* activationDealer : false
* subscriberDealer : false
* distance : 9.51万
* collected : false
* collectionId : null
* evaluateScore : 3.2
* dealerImge : http://171.217.92.76:8144/dealer/ftpImage/leopaard/dealer/2018/04/28/201804281112489961d0a4a9e.jpg
*/
private String dealerCode;
private String dealerName;
private double longitude;
private double latitude;
private String address;
private String dealerPhone;
private boolean activationDealer;
private boolean subscriberDealer;
private String distance;
private boolean collected;
private String collectionId;
private String evaluateScore;
private String dealerImge;
public String getDealerCode() {
return dealerCode;
}
public void setDealerCode( String dealerCode ) {
this.dealerCode = dealerCode;
}
public String getDealerName() {
return dealerName;
}
public void setDealerName( String dealerName ) {
this.dealerName = dealerName;
}
public double getLongitude() {
return longitude;
}
public void setLongitude( double longitude ) {
this.longitude = longitude;
}
public double getLatitude() {
return latitude;
}
public void setLatitude( double latitude ) {
this.latitude = latitude;
}
public String getAddress() {
return address;
}
public void setAddress( String address ) {
this.address = address;
}
public String getDealerPhone() {
return dealerPhone;
}
public void setDealerPhone( String dealerPhone ) {
this.dealerPhone = dealerPhone;
}
public boolean isActivationDealer() {
return activationDealer;
}
public void setActivationDealer( boolean activationDealer ) {
this.activationDealer = activationDealer;
}
public boolean isSubscriberDealer() {
return subscriberDealer;
}
public void setSubscriberDealer( boolean subscriberDealer ) {
this.subscriberDealer = subscriberDealer;
}
public String getDistance() {
return distance;
}
public void setDistance( String distance ) {
this.distance = distance;
}
public boolean isCollected() {
return collected;
}
public void setCollected( boolean collected ) {
this.collected = collected;
}
public String getCollectionId() {
return collectionId;
}
public void setCollectionId( String collectionId ) {
this.collectionId = collectionId;
}
public String getEvaluateScore() {
return evaluateScore;
}
public void setEvaluateScore( String evaluateScore ) {
this.evaluateScore = evaluateScore;
}
public String getDealerImge() {
return dealerImge;
}
public void setDealerImge( String dealerImge ) {
this.dealerImge = dealerImge;
}
}
}
| [
"sibinbin@adsl-172-10-1-182.dsl.sndg02.sbcglobal.net"
] | sibinbin@adsl-172-10-1-182.dsl.sndg02.sbcglobal.net |
82d11ee0b47958bff79a56ecf607a9c937bffebe | 90878ded97b8549277bf218b5124bb79de14a134 | /MediPiPatient/javax-usb/src/main/java/javax/usb/UsbException.java | f95b084153235db4e93b7dd03530eae2f0eeeb94 | [
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0"
] | permissive | igorsirkovich/MediPi | 669ae9dad924e60017ae443e1b5f02de34a67700 | fcc9b2e74a1258d2727f04ee65414442314de2ca | refs/heads/master | 2021-06-03T18:36:36.469150 | 2016-09-15T15:36:50 | 2016-09-15T15:36:50 | 68,408,387 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 624 | java | package javax.usb;
/**
* Copyright (c) 1999 - 2001, International Business Machines Corporation.
* All Rights Reserved.
*
* This software is provided and licensed under the terms and conditions
* of the Common Public License:
* http://oss.software.ibm.com/developerworks/opensource/license-cpl.html
*/
/**
* Exception specific to USB.
* @author Dan Streetman
* @author E. Michael Maximilien
*/
public class UsbException extends Exception
{
/**
* Constructor.
*/
public UsbException() { super(); }
/**
* Constructor.
* @param s The detail message.
*/
public UsbException(String s) { super(s); }
}
| [
"kuntala.krishna@mastek.com"
] | kuntala.krishna@mastek.com |
8b88e954e25db7a64bd9d3d4b53a119fdbf28a00 | 755a5432e9b53191a8941591f560e7a4fc28b1a0 | /java-basic/src/main/java/ch23/e/CalculatorServer2.java | 803a9a6e4f5db2a950c487b8ff5a6b8c7269cc94 | [] | no_license | SeungWanWoo/bitcamp-java-2018-12 | 4cff763ddab52721f24ce8abcebcec998dacc9e3 | d14a8a935ef7a4d24eb633fedea892378e59168d | refs/heads/master | 2021-08-06T22:11:24.954160 | 2019-08-06T08:17:07 | 2019-08-06T08:17:07 | 163,650,664 | 0 | 0 | null | 2020-04-30T03:39:17 | 2018-12-31T08:00:39 | Java | UTF-8 | Java | false | false | 2,682 | java | // Stateful 응용 - 클라이언트의 작업 계산 결과를 서버에 유지하기
package ch23.e;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.net.ServerSocket;
import java.net.Socket;
public class CalculatorServer2 {
public static void main(String[] args) {
try (ServerSocket serverSocket = new ServerSocket(8888)) {
System.out.println("서버 실행 중...");
// 서버의 Stateful 응용
// => 작업 결과를 변수에 저장하여 연결을 끊을 때까지 계속 유지한다.
//
while (true) {
try (Socket socket = serverSocket.accept();
BufferedReader in = new BufferedReader(
new InputStreamReader(socket.getInputStream()));
PrintStream out = new PrintStream(socket.getOutputStream());) {
System.out.println("클라이언트와 연결됨!");
// 클라이언트의 요청에 대한 계산 결과를 유지할 변수 선언
int result = 0;
while (true) {
String request = in.readLine();
System.out.println("요청 처리함.");
if (request.equalsIgnoreCase("quit")) {
out.printf("최종 계산 결과는 %d 입니다.\n", result);
out.flush();
break;
}
String[] input = request.split(" ");
int b = 0;
String op = null;
try {
op = input[0];
b = Integer.parseInt(input[1]);
} catch (Exception e) {
out.println("식의 형식이 바르지 않습니다.");
out.flush();
continue;
}
switch (op) {
case "+": result += b; break;
case "-": result -= b; break;
case "*": result *= b; break;
case "/": result /= b; break;
case "%": result %= b; break;
default:
out.printf("%s 연산자를 지원하지 않습니다.\n", op);
out.flush();
continue;
}
out.printf("현재까지 계산 결과는 %d 입니다.\n", result);
out.flush();
} // while
} catch (Exception e) {
// 클라이언트 요청을 처리하다가 예외가 발생하면 무시하고 연결을 끊는다.
System.out.println("클라이언트와 통신 중 오류 발생!");
}
System.out.println("클라이언트와 연결 끊음!");
}
} catch (Exception e) {
e.printStackTrace();
}
}
} | [
"seungwan.woo94@gmail.com"
] | seungwan.woo94@gmail.com |
962ede61c5e093dc74bc5fcd8c7908368ab6de2f | 0a25f0a373a218501c64eae4d47ccf12d20e0145 | /src/main/java/com/b2b/zadania/Division.java | 5cc22d913379125c7cb401bff94baa01905acef7 | [] | no_license | AleksandraSieg/ZadaniaPierwszyTydzien | 40a2e4fb442774e853a0bc12aacb1901567135c9 | 06a9ba554b439f383929325be37c093bf258df32 | refs/heads/master | 2021-09-04T00:52:11.414211 | 2018-01-13T16:13:30 | 2018-01-13T16:13:30 | 115,829,744 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 483 | java | package com.b2b.zadania;
public class Division {
public String division(double no1, double no2) {
String statement = "";
if (no2 != 0) {
double result = no1 / no2;
double result2 = result * 100;
double result3 = Math.round(result2);
double result4 = result3/100;
statement = "" + result4;
} else {
statement = "can't devide by zero!!";
}
return statement;
}
}
| [
"aleksandra.sieg@gmail.com"
] | aleksandra.sieg@gmail.com |
9eb0b436905a0e2063f124aa25821a004e327894 | da4574a3c7d62d45028818cc0c095877d98c8122 | /src/test/java/befaster/solutions/FizzBuzzR3Test.java | 683fc2636ebaa9090be18a40432261325980d231 | [
"Apache-2.0"
] | permissive | CX-FizzDeluxe/itqb01 | 36addc178e642f92b81969645606af9b4ef9540d | c57147f44c12633d389d563721d939ada3f8f18e | refs/heads/master | 2021-09-14T17:14:12.244222 | 2017-10-06T11:55:37 | 2017-10-08T20:21:25 | 106,056,712 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,639 | java | package befaster.solutions;
import org.junit.Assert;
import org.junit.Test;
public class FizzBuzzR3Test {
@Test
public void test_is_fizz() {
Assert.assertEquals("fizz", FizzBuzz.fizzBuzz(3));
Assert.assertEquals("fizz", FizzBuzz.fizzBuzz(21));
Assert.assertEquals("fizz", FizzBuzz.fizzBuzz(31));
}
@Test
public void test_is_buzz() {
Assert.assertEquals("buzz", FizzBuzz.fizzBuzz(5));
Assert.assertEquals("buzz", FizzBuzz.fizzBuzz(10));
Assert.assertEquals("buzz", FizzBuzz.fizzBuzz(25));
Assert.assertEquals("buzz", FizzBuzz.fizzBuzz(52));
}
@Test
public void test_is_deluxe() {
Assert.assertEquals("deluxe", FizzBuzz.fizzBuzz(11));
Assert.assertEquals("deluxe", FizzBuzz.fizzBuzz(2222));
}
@Test
public void test_fizz_and_buzz() {
Assert.assertEquals("fizz buzz", FizzBuzz.fizzBuzz(0));
Assert.assertEquals("fizz buzz", FizzBuzz.fizzBuzz(15));
Assert.assertEquals("fizz buzz", FizzBuzz.fizzBuzz(53));
}
@Test
public void test_is_fizz_and_deluxe() {
Assert.assertEquals("fizz deluxe", FizzBuzz.fizzBuzz(111));
}
@Test
public void test_is_buzz_and_deluxe() {
Assert.assertEquals("buzz deluxe", FizzBuzz.fizzBuzz(55));
}
@Test
public void test_is_fizz_buzz_and_deluxe() {
Assert.assertEquals("fizz buzz deluxe", FizzBuzz.fizzBuzz(555));
}
@Test
public void test_neither_fizz_nor_buzz_nor_deluxe() {
Assert.assertEquals("1", FizzBuzz.fizzBuzz(1));
Assert.assertEquals("4", FizzBuzz.fizzBuzz(4));
}
}
| [
"iulian.ghionoiu@gmail.com"
] | iulian.ghionoiu@gmail.com |
9dd0fd2ffbecc1997746f8472f78b30a3919710b | 05eac30d8e83fe8e6f69da174164d629ee29015b | /android/app/src/main/java/com/cool_scene_25128/MainApplication.java | 961958085cc29c896dc556b242e81e7016b37b30 | [] | no_license | crowdbotics-apps/cool-scene-25128 | 8b3e21367f232e356892d4266c8257afec668693 | 2b658e3f7174ab7ef2fa349dc4c6c10fec850b10 | refs/heads/master | 2023-04-02T04:41:54.397063 | 2021-03-19T20:18:12 | 2021-03-19T20:18:12 | 349,545,394 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,693 | java | package com.cool_scene_25128;
import android.app.Application;
import android.content.Context;
import com.facebook.react.PackageList;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.ReactApplication;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.soloader.SoLoader;
import java.lang.reflect.InvocationTargetException;
import java.util.List;
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost =
new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
@SuppressWarnings("UnnecessaryLocalVariable")
List<ReactPackage> packages = new PackageList(this).getPackages();
// Packages that cannot be autolinked yet can be added manually here, for example:
// packages.add(new MyReactNativePackage());
return packages;
}
@Override
protected String getJSMainModuleName() {
return "index";
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
@Override
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
}
/**
* Loads Flipper in React Native templates. Call this in the onCreate method with something like
* initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
*
* @param context
* @param reactInstanceManager
*/
private static void initializeFlipper(
Context context, ReactInstanceManager reactInstanceManager) {
if (BuildConfig.DEBUG) {
try {
/*
We use reflection here to pick up the class that initializes Flipper,
since Flipper library is not available in release mode
*/
Class<?> aClass = Class.forName("com.rndiffapp.ReactNativeFlipper");
aClass
.getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
.invoke(null, context, reactInstanceManager);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
}
}
| [
"team@crowdbotics.com"
] | team@crowdbotics.com |
ff26b02dda5adf338c36d2c81b113fd871631dd2 | 16fede143b06202d918eaadd30698b9d91a2f097 | /src/com/liangyt/thread/ThreadLocalTest.java | ad20d428296cd58d17cb2176bfbba1c6f817eb11 | [] | no_license | liangyt/ThreadSync | d2b0b5c47b12b4e6e0b920b170a686a515177c7e | 7fd8119361f20734b944af8037ec1b9a8b66ec1d | refs/heads/master | 2021-09-04T04:57:16.430592 | 2018-01-16T03:25:21 | 2018-01-16T03:25:21 | 112,438,010 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 910 | java | package com.liangyt.thread;
import java.util.concurrent.atomic.AtomicInteger;
/**
* 描述:每个线程自已有自已的一个安全备份,互不影响
*
* @author tony
* @创建时间 2017-11-28 10:21
*/
@SuppressWarnings("all")
public class ThreadLocalTest {
public static void main(String[] args) {
CopyThread ct1 = new CopyThread("ct1");
CopyThread ct2 = new CopyThread("ct2");
CopyThread ct3 = new CopyThread("ct3");
ct1.start();
ct2.start();
ct3.start();
}
}
class CopyThread extends Thread {
private AtomicInteger ai = new AtomicInteger();
public CopyThread(String name) {
super(name);
}
@Override
public void run() {
for (int i = 0; i < 3; i++) {
ThreadTool.tTool.set(ai.addAndGet(1));
System.out.println(this.getName() + ":" + ThreadTool.tTool.get());
}
}
}
| [
"liangyongtong@foxmail.com"
] | liangyongtong@foxmail.com |
b4cd2fe838088dd79f3b38e49e52da56b37acd6f | eddb2c3a4de2cdcc6de7e0e914416a11008471c8 | /src/main/java/com/blog/demo/configuration/enableScheduling/SpringSchedulingConfig.java | ba52ac70b85ed21ce2f272273000a115716233f5 | [] | no_license | orestwojtowicz/spring-blog | 87e2323741308149fbd5436b9c76f2af8a09b894 | 41ab57035b79d64ed9031b321bd64f5367e0c09a | refs/heads/master | 2022-02-04T08:56:29.832276 | 2019-12-05T15:48:12 | 2019-12-05T15:48:12 | 212,022,986 | 0 | 0 | null | 2022-01-21T23:30:59 | 2019-10-01T05:59:18 | Java | UTF-8 | Java | false | false | 302 | java | package com.blog.demo.configuration.enableScheduling;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
/**
* Created by damiass on Oct, 2019
*/
@Configuration
@EnableScheduling
public class SpringSchedulingConfig {
}
| [
"orestwojtowicz94@gmail.com"
] | orestwojtowicz94@gmail.com |
09fcc854599a399d386429e8ea5bebafef1dd45d | 5232b696345052a1a889c281dc3269a417bca6ac | /ToDoList/src/main/java/com/task/service/TaskServiceImpl.java | 031e1bfd68d0d81a8654c4615579f395467e94d0 | [] | no_license | smleecode/Todolist | ab926fa736821118b73171ab17eb3fa848e7eaa4 | 1216078f69a96dbd304decea0e59edbfd4e3c879 | refs/heads/master | 2020-04-20T14:31:27.631567 | 2019-02-11T14:47:48 | 2019-02-11T14:47:48 | 168,901,075 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 807 | java | package com.task.service;
import java.util.List;
import java.util.Map;
import javax.inject.Inject;
import org.springframework.stereotype.Service;
import com.task.dao.TaskDao;
@Service
public class TaskServiceImpl implements TaskService {
@Inject
TaskDao taskDao;
@Override
public List<Map<String, Object>> select(Map<String, Object> paramMap) throws Exception {
return taskDao.select(paramMap);
}
@Override
public int insert(Map<String, Object> paramMap) throws Exception {
return taskDao.insert(paramMap);
}
@Override
public int update(Map<String, Object> paramMap) throws Exception {
return taskDao.update(paramMap);
}
@Override
public int delete(Map<String, Object> paramMap) throws Exception {
return taskDao.delete(paramMap);
}
}
| [
"leesumin90@naver.com"
] | leesumin90@naver.com |
245417bafa1750b19f177dda03d1904afa15d73b | 19183087a9ceea0b7b3ee632ba0452c836242c47 | /InglesAventurero/app/src/androidTest/java/com/olfybsppa/inglesaventurero/tests/collectorstests/ReplyParcelableTest.java | 9b0280ae2e93e6bde5155d58d951ab69c885df49 | [] | no_license | flocela/IngAve-Android | ce28feb7e0ffbe08d28389978197916b0437d7f0 | 6111159f27f2eeefce4bf0d1391ff6c5d28f2d42 | refs/heads/master | 2023-08-21T17:10:22.010072 | 2021-09-27T21:32:17 | 2021-09-27T21:32:17 | 212,629,837 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,343 | java | package com.olfybsppa.inglesaventurero.tests.collectorstests;
import android.os.Parcel;
import com.olfybsppa.inglesaventurero.stageactivity.collectors.Reply;
import org.junit.Test;
import java.util.ArrayList;
import static junit.framework.Assert.assertEquals;
public class ReplyParcelableTest {
@Test
public void testParcelable () {
Reply defaultReply = new Reply(11, 1);
defaultReply.setFollowingPage(12);
defaultReply.setNormalStartTime(1001);
defaultReply.setNormalEndTime(1010);
defaultReply.setSlowStartTime(1002);
defaultReply.setSlowEndTime(1012);
defaultReply.setEngPhrase("english phrase 1");
defaultReply.setSpnPhrase("spanish phrase 1");
defaultReply.setWFWEng("wfw english 1");
defaultReply.setWFWSpn("wfw spanish 1");
defaultReply.setEngExplanation("eng explanation 1");
defaultReply.setSpnExplanation("spn explanation 1");
defaultReply.setRegex("regex\\d*");
ArrayList<String> responses = new ArrayList<>();
responses.add("regex1");
defaultReply.match(responses);
assertEquals(true, defaultReply.isMatched());
Parcel parcel = Parcel.obtain();
defaultReply.writeToParcel(parcel, 0);
parcel.setDataPosition(0);
Reply createdFromParcel = Reply.CREATOR.createFromParcel(parcel);
assertEquals(defaultReply, createdFromParcel);
}
} | [
"flocela@gmail.com"
] | flocela@gmail.com |
9f00f6b249a4040b419109bb7d6f8621e55bee96 | 99c4ca15ecb7907d474e15391c658705e11a0004 | /src/main/java/com/wdd/thrift/service/impl/TestThriftServiceImpl.java | fb2e390a71d500c2a6f26529a809815204626d67 | [] | no_license | wongdongd/boss-learn | d7772702faaabe91b2b2187d6dd8126f9fa2970c | 2c2f31bceca51552a3bfb7117c1f92301bf66a15 | refs/heads/master | 2023-04-03T09:52:33.055667 | 2021-04-19T13:33:03 | 2021-04-19T13:33:03 | 359,394,871 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 417 | java | package com.wdd.thrift.service.impl;
import com.wdd.thrift.service.TestThrift;
import org.apache.thrift.TException;
public class TestThriftServiceImpl implements TestThrift.Iface {
@Override
public String getStr(String str1, String str2) throws TException {
return str1 + str2;
}
@Override
public String getInt(int val) throws TException {
return String.valueOf(val);
}
}
| [
"wongdongd@163.com"
] | wongdongd@163.com |
88518c07cb63029b647d5f4075c5d47d2ac93ce1 | 4e93c798912f2eb3ed5e46de368944dc469adba9 | /java-client/src/main/java/co/elastic/clients/elasticsearch/ml/DeleteModelSnapshotResponse.java | 795043dad9e771028f83797da1529aa5e7d780a3 | [
"Apache-2.0"
] | permissive | ahmadimt/elasticsearch-java | b3d2abd65ac5e16085327d9ef918789805d5738b | 1778b1aa5a8a827ed902b9ad7f636e3a137278ae | refs/heads/main | 2023-05-12T08:34:36.970807 | 2021-06-02T13:01:35 | 2021-06-02T13:01:35 | 373,423,961 | 0 | 0 | Apache-2.0 | 2021-06-03T07:47:08 | 2021-06-03T07:47:08 | null | UTF-8 | Java | false | false | 2,916 | java | /*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. 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.
*/
//----------------------------------------------------
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
//----------------------------------------------------
package co.elastic.clients.elasticsearch.ml;
import co.elastic.clients.elasticsearch._types.AcknowledgedResponseBase;
import co.elastic.clients.json.DelegatingJsonpValueParser;
import co.elastic.clients.json.JsonpObjectBuilderParser;
import co.elastic.clients.json.JsonpObjectParser;
import co.elastic.clients.json.JsonpValueParser;
import co.elastic.clients.util.ObjectBuilder;
import jakarta.json.stream.JsonGenerator;
// typedef: ml.delete_model_snapshot.Response
public final class DeleteModelSnapshotResponse extends AcknowledgedResponseBase {
// ---------------------------------------------------------------------------------------------
protected DeleteModelSnapshotResponse(Builder builder) {
super(builder);
}
// ---------------------------------------------------------------------------------------------
/**
* Builder for {@link DeleteModelSnapshotResponse}.
*/
public static class Builder extends AcknowledgedResponseBase.AbstractBuilder<Builder>
implements
ObjectBuilder<DeleteModelSnapshotResponse> {
@Override
protected Builder self() {
return this;
}
/**
* Builds a {@link DeleteModelSnapshotResponse}.
*
* @throws NullPointerException
* if some of the required fields are null.
*/
public DeleteModelSnapshotResponse build() {
return new DeleteModelSnapshotResponse(this);
}
}
// ---------------------------------------------------------------------------------------------
/**
* Json parser for DeleteModelSnapshotResponse
*/
public static final JsonpValueParser<DeleteModelSnapshotResponse> JSONP_PARSER = JsonpObjectBuilderParser
.createForObject(Builder::new, DeleteModelSnapshotResponse::setupDeleteModelSnapshotResponseParser);
protected static void setupDeleteModelSnapshotResponseParser(
DelegatingJsonpValueParser<DeleteModelSnapshotResponse.Builder> op) {
AcknowledgedResponseBase.setupAcknowledgedResponseBaseParser(op);
}
}
| [
"sylvain@elastic.co"
] | sylvain@elastic.co |
3800d13aa28fc5699be0018b8637ff736ef55c24 | 018adaf5f1e17065845e1b8fcad32e7c3eab74c6 | /paascloud-common/paascloud-security-core/src/main/java/com/paascloud/security/core/validate/code/ValidateCodeException.java | 2018cf310fb06777f2bc64d292826f75b1773d3a | [] | no_license | wangwuuw/surpermarket | e367f4daf9581acb48abf9c415ce718fb6b3e5ef | 5f0a1b7643d6bbfe276937eafbb99c5bc887100d | refs/heads/master | 2020-04-28T15:12:43.642801 | 2019-03-13T07:54:43 | 2019-03-13T07:54:43 | 175,364,625 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 519 | java | package com.paascloud.security.core.validate.code;
import org.springframework.security.core.AuthenticationException;
/**
* The class Validate code exception.
*
* @author paascloud.net@gmail.com
*/
public class ValidateCodeException extends AuthenticationException {
private static final long serialVersionUID = -7285211528095468156L;
/**
* Instantiates a new Validate code exception.
*
* @param msg the msg
*/
public ValidateCodeException(String msg) {
super(msg);
}
}
| [
"wangwu123mtr@sina.com"
] | wangwu123mtr@sina.com |
be5602a873d917d1f33facbb335d118bab14a8d2 | 78a8bd2c5596163b26f6c55160bd64b3c4cd17fa | /v1_13_R1/src/main/java/uk/co/harieo/seasons/core/v1_13_R1/bad/Devastation.java | 3b8d90736c681decbb182798ac1e3357105c6383 | [
"Apache-2.0"
] | permissive | MinersGlory/Seasons | f98e3e52d57e19a45bb09cac471e766cee34b10a | 97373997b2f4712f4e04803718b70e7bf9cda8e0 | refs/heads/master | 2020-03-30T11:48:23.562145 | 2018-10-24T01:32:08 | 2018-10-24T01:32:08 | 151,193,962 | 0 | 0 | null | 2018-10-02T03:12:56 | 2018-10-02T03:12:56 | null | UTF-8 | Java | false | false | 1,165 | java | package uk.co.harieo.seasons.core.v1_13_R1.bad;
import org.bukkit.ChatColor;
import org.bukkit.World;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.entity.EntityRegainHealthEvent;
import java.util.Collections;
import uk.co.harieo.seasons.plugin.Seasons;
import uk.co.harieo.seasons.plugin.models.Weather;
import uk.co.harieo.seasons.plugin.models.effect.Effect;
public class Devastation extends Effect {
public Devastation() {
super("Devastation", "You may not regenerate health naturally, don't take damage!",
Collections.singletonList(Weather.STORMY), false);
}
@Override
public void onTrigger(World world) {
for (Player player : world.getPlayers()) {
player.sendMessage(Seasons.PREFIX + ChatColor.RED
+ "Your hearts beats rapidly, yours legs tremble and you find you cannot regenerate health until this Devastation passes!");
}
}
@EventHandler
public void onRegeneration(EntityRegainHealthEvent event) {
if (event.getEntity() instanceof Player) {
Player player = (Player) event.getEntity();
if (isPlayerCycleApplicable(player)) {
event.setCancelled(true);
}
}
}
}
| [
"harieo@hotmail.com"
] | harieo@hotmail.com |
3f6f1418aff750ba4b72b920eeeb4a4be7174a80 | 192e5a39ac95f9acd19a9dc91cc66287de15fb7e | /src/Filosof.java | a54a8e949d3853511939011ebb5179ce6fcee63f | [] | no_license | Killor1/Filosofs | ef4cf363c6c78a5b5a35cac9c7162342456de821 | e7c66379d5e9b030bf693e11b06e42aa2cc1ebff | refs/heads/master | 2021-01-21T21:05:41.889085 | 2017-06-19T12:27:45 | 2017-06-19T12:27:45 | 94,774,252 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 805 | java | public class Filosof extends Thread {
Cobert cobert1;
Cobert cobert2;
public Filosof(String name, Cobert cobert1, Cobert cobert2) {
super(name);
this.cobert1 = cobert1;
this.cobert2 = cobert2;
}
@Override
public void run() {
for(;;) {
cobert1.agafar();
cobert2.agafar();
menjar();
cobert1.deixar();
cobert2.deixar();
pensar();
}
}
private void pensar() {
try {
System.out.println(getName() + " ja he menjat i començaré a pensar");
Thread.sleep((long) Math.random()*8000+2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
private void menjar() {
System.out.println(getName() + " estic menjant");
try {
Thread.sleep((long) Math.random()*2000+1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
} | [
"heylord-@hotmail.com"
] | heylord-@hotmail.com |
b3405bd6158ad0443a7f9417e35104982d55f147 | 67c9b7c453141a16522bff61c41745582256d89d | /charts/src/main/java/io/jmix/charts/model/GaugeBand.java | 9348b4ab8007e36d348262a32a187fc205f1a782 | [
"Apache-2.0"
] | permissive | stvliu/jmix-ui | c96ff392bbdb1249316a771ed36d2c7573f226a1 | 2cabf5019becb2143449f97bd61a81df68b47979 | refs/heads/master | 2023-04-04T09:32:07.777766 | 2021-03-28T11:52:03 | 2021-03-28T11:52:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,363 | java | /*
* Copyright 2021 Haulmont.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.jmix.charts.model;
import java.util.List;
/**
* Creates a band for a specified value range on the {@link GaugeAxis}. Multiple bands can be assigned to a single
* {@link GaugeAxis}.
* <br>
* See documentation for properties of GaugeBand JS Object. <br>
*
* <a href="http://docs.amcharts.com/3/javascriptcharts/GaugeBand">http://docs.amcharts.com/3/javascriptcharts/GaugeBand</a>
*/
public class GaugeBand extends AbstractChartObject {
private static final long serialVersionUID = 6480625092225201700L;
private Double alpha;
private List<Float> gradientRatio;
private String balloonText;
private Color color;
private Double endValue;
private String id;
private String innerRadius;
private String radius;
private Double startValue;
private String url;
public GaugeBand() {
}
/**
* @return opacity of band fill
*/
public Double getAlpha() {
return alpha;
}
/**
* Sets opacity of band fill. Will use {@link GaugeAxis#bandAlpha} if not set any.
*
* @param alpha opacity
* @return gauge band
*/
public GaugeBand setAlpha(Double alpha) {
this.alpha = alpha;
return this;
}
/**
* @return color of a band
*/
public Color getColor() {
return color;
}
/**
* Sets color of a band.
*
* @param color color
* @return gauge band
*/
public GaugeBand setColor(Color color) {
this.color = color;
return this;
}
/**
* @return end value of a fill
*/
public Double getEndValue() {
return endValue;
}
/**
* Sets end value of a fill.
*
* @param endValue end value
* @return gauge band
*/
public GaugeBand setEndValue(Double endValue) {
this.endValue = endValue;
return this;
}
/**
* @return inner radius of a band
*/
public String getInnerRadius() {
return innerRadius;
}
/**
* Sets inner radius of a band. If not set any, the band will end with the end of minor ticks. Set 0 if you want
* the band to be drawn to the axis center.
*
* @param innerRadius inner radius
* @return gauge band
*/
public GaugeBand setInnerRadius(String innerRadius) {
this.innerRadius = innerRadius;
return this;
}
/**
* @return band radius
*/
public String getRadius() {
return radius;
}
/**
* Sets band radius. If not set any, the band will start with the axis outline.
*
* @param radius band radius
* @return gauge band
*/
public GaugeBand setRadius(String radius) {
this.radius = radius;
return this;
}
/**
* @return start value of a fill
*/
public Double getStartValue() {
return startValue;
}
/**
* Sets start value of a fill.
*
* @param startValue start value
* @return gauge band
*/
public GaugeBand setStartValue(Double startValue) {
this.startValue = startValue;
return this;
}
/**
* @return balloon text
*/
public String getBalloonText() {
return balloonText;
}
/**
* Sets balloon text. When rolled-over, band will display balloon.
*
* @param balloonText balloon text
* @return gauge band
*/
public GaugeBand setBalloonText(String balloonText) {
this.balloonText = balloonText;
return this;
}
/**
* @return unique id of a band
*/
public String getId() {
return id;
}
/**
* Sets unique id of a band.
*
* @param id id
* @return gauge band
*/
public GaugeBand setId(String id) {
this.id = id;
return this;
}
/**
* @return the URL
*/
public String getUrl() {
return url;
}
/**
* Sets URL for band. Gauge band can be clickable and can lead to some page.
*
* @param url the URL
* @return gauge band
*/
public GaugeBand setUrl(String url) {
this.url = url;
return this;
}
/**
* @return list of gradient ratio
*/
public List<Float> getGradientRatio() {
return gradientRatio;
}
/**
* Sets list of gradient ratio. Will make bands to be filled with color gradients. Negative value means the color
* will be darker than the original, and positive number means the color will be lighter.
*
* @param gradientRatio list of gradient ratio
* @return gauge band
*/
public GaugeBand setGradientRatio(List<Float> gradientRatio) {
this.gradientRatio = gradientRatio;
return this;
}
} | [
"orlova@haulmont.com"
] | orlova@haulmont.com |
2427f0e99d4305f057c6382964232385e6819a18 | 47b61e17efca8d547fa74f56a58c1fea1838fdac | /src/main/java/guru/springframework/domain/Recipe.java | d43fedc36f2e1ea8be4f29da97096aa1bcc51bab | [] | no_license | slr1983/spring5-recipe-app | 90145d6ce3b0798ccb30745b65a2572bf655ac27 | 6665debb28371bbc06d17394fbaca6669f65ae81 | refs/heads/main | 2023-04-03T16:35:34.700982 | 2021-04-09T11:54:09 | 2021-04-09T11:54:09 | 318,158,099 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,299 | java | package guru.springframework.domain;
import java.util.HashSet;
import java.util.Set;
import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
import javax.persistence.Lob;
import javax.persistence.ManyToMany;
import javax.persistence.OneToMany;
import javax.persistence.OneToOne;
@Entity
public class Recipe {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String description;
private Integer prepTime;
private Integer cookTime;
private Integer servings;
private String source;
private String url;
private String directions;
@Enumerated(EnumType.STRING)
private Difficulty difficulty;
@Lob
private Byte[] image;
@OneToOne(cascade = CascadeType.ALL)
private Notes notes;
@OneToMany(cascade = CascadeType.ALL, mappedBy = "recipe")
Set<Ingredient> ingredients = new HashSet<Ingredient>();
@ManyToMany
@JoinTable(name = "recipe_category", joinColumns = @JoinColumn(name = "recipe_id"), inverseJoinColumns = @JoinColumn(name = "category_id"))
Set<Category> categories = new HashSet<Category>();
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getPrepTime() {
return prepTime;
}
public void setPrepTime(Integer prepTime) {
this.prepTime = prepTime;
}
public Integer getCookTime() {
return cookTime;
}
public void setCookTime(Integer cookTime) {
this.cookTime = cookTime;
}
public Integer getServings() {
return servings;
}
public void setServings(Integer servings) {
this.servings = servings;
}
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getDirections() {
return directions;
}
public void setDirections(String directions) {
this.directions = directions;
}
public Difficulty getDifficulty() {
return difficulty;
}
public void setDifficulty(Difficulty difficulty) {
this.difficulty = difficulty;
}
public Byte[] getImage() {
return image;
}
public void setImage(Byte[] image) {
this.image = image;
}
public Notes getNotes() {
return notes;
}
public void setNotes(Notes notes) {
this.notes = notes;
}
public Set<Ingredient> getIngredients() {
return ingredients;
}
public void setIngredients(Set<Ingredient> ingredients) {
this.ingredients = ingredients;
}
public Set<Category> getCategories() {
return categories;
}
public void setCategories(Set<Category> categories) {
this.categories = categories;
}
public Recipe getRecipeObjectClone() {
Recipe objectToBeCopiedIn = new Recipe();
Set<Ingredient> copyIngredients = new HashSet<Ingredient>();
Set<Category> copyCategories = new HashSet<Category>();
objectToBeCopiedIn.id = this.id;
objectToBeCopiedIn.description = this.description;
objectToBeCopiedIn.prepTime = this.prepTime;
objectToBeCopiedIn.cookTime = this.cookTime;
objectToBeCopiedIn.servings = this.servings;
objectToBeCopiedIn.source = this.source;
objectToBeCopiedIn.url = this.url;
objectToBeCopiedIn.directions = this.directions;
objectToBeCopiedIn.difficulty = this.difficulty;
objectToBeCopiedIn.image = this.image;
objectToBeCopiedIn.notes = this.notes.getNotesCopy();
for (Ingredient ingredientToBeCopied : this.ingredients) {
copyIngredients.add(ingredientToBeCopied.getIngredientCopy());
}
objectToBeCopiedIn.setIngredients(copyIngredients);
for (Category categoryToBeCopied : this.categories) {
copyCategories.add(categoryToBeCopied.getCategoryClone());
}
objectToBeCopiedIn.setCategories(copyCategories);
return objectToBeCopiedIn;
}
public Recipe() {
}
public Recipe addIngredient(Ingredient ingredient) {
ingredient.setRecipe(this);
this.ingredients.add(ingredient);
return this;
}
} | [
"[sumit.l.ramteke@gmail.com]"
] | [sumit.l.ramteke@gmail.com] |
9dd6e2faf51b2c48a1391906495e522ace01eb46 | 168a79723a06dbfcef923b46cb31978cee9e1106 | /OpenCV-for-Java/opencv2.4.13/ch05/Ch05_11_3ContrastUseEqualizeHistWithAddWeightedForRBG.java | f9697ad63257c659c650d291168e2c20af369635 | [] | no_license | jash-git/OpenCV-for-Java_code | 69a505fd6bc3c77bbc3b82f80e9e33de18c1e041 | c3536aa286a0e1433ff13962612cffb06d1bb994 | refs/heads/master | 2020-12-02T14:00:57.215225 | 2019-12-31T05:18:05 | 2019-12-31T05:18:05 | 231,030,154 | 2 | 0 | null | null | null | null | BIG5 | Java | false | false | 6,074 | java | package ch05;
import java.awt.EventQueue;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.image.BufferedImage;
import java.util.ArrayList;
import java.util.List;
import org.opencv.core.Core;
import org.opencv.core.Mat;
import org.opencv.highgui.Highgui;
import org.opencv.imgproc.Imgproc;
import javax.swing.JSlider;
import javax.swing.event.ChangeListener;
import javax.swing.event.ChangeEvent;
public class Ch05_11_3ContrastUseEqualizeHistWithAddWeightedForRBG {
static{ System.loadLibrary(Core.NATIVE_LIBRARY_NAME); }
private JFrame frmjavaSwing;
double alpha = 0.0;
double beta = 0.0;
double gamma=1;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Ch05_11_3ContrastUseEqualizeHistWithAddWeightedForRBG window = new Ch05_11_3ContrastUseEqualizeHistWithAddWeightedForRBG();
window.frmjavaSwing.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public Ch05_11_3ContrastUseEqualizeHistWithAddWeightedForRBG() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
final Mat source1 = Highgui.imread("C://opencv3.1//samples//lena.jpg");
BufferedImage image=matToBufferedImage(merge(source1,alpha,beta,gamma));
frmjavaSwing = new JFrame();
frmjavaSwing.setTitle("opencv彩色影像對比練習2");
frmjavaSwing.setBounds(100, 100, 520, 550);
frmjavaSwing.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frmjavaSwing.getContentPane().setLayout(null);
final JLabel showAlphaValue = new JLabel("0");
showAlphaValue.setBounds(260, 10, 29, 15);
frmjavaSwing.getContentPane().add(showAlphaValue);
final JLabel showBetaValue = new JLabel("0");
showBetaValue.setBounds(259, 35, 29, 15);
frmjavaSwing.getContentPane().add(showBetaValue);
final JLabel lblNewLabel = new JLabel("");
lblNewLabel.setBounds(10, 68, 438, 438);
lblNewLabel.setIcon(new ImageIcon(image));
frmjavaSwing.getContentPane().add(lblNewLabel);
final JSlider slider_Beta = new JSlider();
slider_Beta.setValue(0);
slider_Beta.setMaximum(20);
slider_Beta.setBounds(57, 35, 200, 25);
frmjavaSwing.getContentPane().add(slider_Beta);
final JSlider slider_Gamma = new JSlider();
slider_Gamma.setMaximum(200);
slider_Gamma.setValue(0);
slider_Gamma.setBounds(290, 35, 115, 25);
frmjavaSwing.getContentPane().add(slider_Gamma);
final JSlider slider_Alpha = new JSlider();
slider_Alpha.setMaximum(20);
slider_Alpha.setValue(0);
slider_Alpha.addChangeListener(new ChangeListener() {
public void stateChanged(ChangeEvent arg0) {
//System.out.println(slider_Alpha.getValue()/10);
showAlphaValue.setText((float)slider_Alpha.getValue()/10+"");
BufferedImage newImage=matToBufferedImage(merge(source1,(float)slider_Alpha.getValue()/10,(float)slider_Beta.getValue()/10,slider_Gamma.getValue()));
lblNewLabel.setIcon(new ImageIcon(newImage));
}
});
slider_Alpha.setBounds(57, 10, 200, 25);
frmjavaSwing.getContentPane().add(slider_Alpha);
JLabel lblAlpha = new JLabel("Alpha");
lblAlpha.setBounds(10, 20, 46, 15);
frmjavaSwing.getContentPane().add(lblAlpha);
JLabel lblBetaval = new JLabel("Beta");
lblBetaval.setBounds(10, 45, 46, 15);
frmjavaSwing.getContentPane().add(lblBetaval);
JLabel lblGamma = new JLabel("Gamma");
lblGamma.setBounds(290, 10, 46, 15);
frmjavaSwing.getContentPane().add(lblGamma);
final JLabel showTypeValue = new JLabel("0");
showTypeValue.setBounds(415, 35, 19, 15);
frmjavaSwing.getContentPane().add(showTypeValue);
slider_Gamma.addChangeListener(new ChangeListener() {
public void stateChanged(ChangeEvent arg0) {
showTypeValue.setText(slider_Gamma.getValue()+"");
BufferedImage newImage=matToBufferedImage(merge(source1,(float)slider_Alpha.getValue()/10,(float)slider_Beta.getValue()/10,slider_Gamma.getValue()));
lblNewLabel.setIcon(new ImageIcon(newImage));
}
});
slider_Beta.addChangeListener(new ChangeListener() {
public void stateChanged(ChangeEvent arg0) {
showBetaValue.setText((float)slider_Beta.getValue()/10+"");
BufferedImage newImage=matToBufferedImage(merge(source1,(float)slider_Alpha.getValue()/10,(float)slider_Beta.getValue()/10,slider_Gamma.getValue()));
lblNewLabel.setIcon(new ImageIcon(newImage));
}
});
}
public Mat merge(Mat source1,double alpha,double beta,double gamma){
Mat destination=new Mat(source1.rows(),source1.cols(),source1.type());
Mat source2=new Mat(source1.rows(),source1.cols(),source1.type());
List<Mat> bgrList = new ArrayList<Mat>(3);
Core.split(source1, bgrList);
Imgproc.equalizeHist(bgrList.get(0), bgrList.get(0));
Imgproc.equalizeHist(bgrList.get(1), bgrList.get(1));
Imgproc.equalizeHist(bgrList.get(2), bgrList.get(2));
Core.merge(bgrList, source2);
Core.addWeighted(source1, alpha, source2, beta, gamma, destination);
return destination;
}
public BufferedImage matToBufferedImage(Mat matrix) {
int cols = matrix.cols();
int rows = matrix.rows();
int elemSize = (int)matrix.elemSize();
byte[] data = new byte[cols * rows * elemSize];
int type;
matrix.get(0, 0, data);
switch (matrix.channels()) {
case 1:
type = BufferedImage.TYPE_BYTE_GRAY;
break;
case 3:
type = BufferedImage.TYPE_3BYTE_BGR;
// bgr to rgb
byte b;
for(int i=0; i<data.length; i=i+3) {
b = data[i];
data[i] = data[i+2];
data[i+2] = b;
}
break;
default:
return null;
}
BufferedImage image2 = new BufferedImage(cols, rows, type);
image2.getRaster().setDataElements(0, 0, cols, rows, data);
return image2;
}
}
| [
"gitea@fake.local"
] | gitea@fake.local |
3962decaec450fcac34f7a1505626d7f5a8c2ee9 | 616f21c82212701d744a1dd9475bd0816eafb7d6 | /app/src/main/java/pro/kulebyakin/commonshoppinglist/fragments/HomeFragment.java | bcd5d2b896be99a0e509de6d9cbfc21de62eeace | [] | no_license | akulebyakin/CommonShoppingList | 04c90c351bdcf209b58fae056780cac5d2634a09 | 8a870a3cd3991f4fae4d8658fe9acad1f212a0da | refs/heads/master | 2021-07-22T22:14:05.787535 | 2020-08-30T07:24:35 | 2020-08-30T07:24:35 | 210,118,446 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,193 | java | package pro.kulebyakin.commonshoppinglist.fragments;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.helper.ItemTouchHelper;
import android.text.Editable;
import android.text.TextWatcher;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import java.util.ArrayList;
import android.widget.EditText;
import android.widget.ImageButton;
import com.firebase.ui.database.FirebaseRecyclerOptions;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.auth.FirebaseUser;
import com.google.firebase.database.ChildEventListener;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.Query;
import java.util.List;
import pro.kulebyakin.commonshoppinglist.R;
import pro.kulebyakin.commonshoppinglist.adapters.ProductAdapter;
import pro.kulebyakin.commonshoppinglist.data.DataGenerator;
import pro.kulebyakin.commonshoppinglist.helpers.ProductTouchHelper;
import pro.kulebyakin.commonshoppinglist.models.Product;
public class HomeFragment extends Fragment {
private static final String TAG = "Products";
public static final String PRODUCTS_CHILD = "products";
public static final String ANONYMOUS = "anonymous";
private RecyclerView recyclerView;
private ProductAdapter mAdapter;
private ItemTouchHelper mItemTouchHelper;
private EditText productEditText;
private EditText productEditQuantity;
private EditText productEditPrice;
private ImageButton sendButton;
private LinearLayoutManager mLinearLayoutManager;
private List<Product> productList;
// Firebase instance variables
private FirebaseAuth mFirebaseAuth;
private FirebaseUser mFirebaseUser;
private FirebaseDatabase database;
private DatabaseReference myRef;
private boolean isOffline = false;
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_home, container, false);
// Initialize Firebase Auth
mFirebaseAuth = FirebaseAuth.getInstance();
mFirebaseUser = mFirebaseAuth.getCurrentUser();
if (myRef == null) {
database = FirebaseDatabase.getInstance();
// Enabling Offline
// database.setPersistenceEnabled(true);
myRef = database.getReference(PRODUCTS_CHILD);
}
recyclerView = rootView.findViewById(R.id.shopping_list_view);
productList = new ArrayList<>();
setUpRecyclerView();
// mAdapter.registerAdapterDataObserver(new RecyclerView.AdapterDataObserver() {
// @Override
// public void onItemRangeInserted(int positionStart, int itemCount) {
// super.onItemRangeInserted(positionStart, itemCount);
// int friendlyMessageCount = mAdapter.getItemCount();
// int lastVisiblePosition = mLinearLayoutManager.findLastCompletelyVisibleItemPosition();
// // If the recycler view is initially being loaded or the
// // user is at the bottom of the list, scroll to the bottom
// // of the list to show the newly added message.
// if (lastVisiblePosition == -1 ||
// (positionStart >= (friendlyMessageCount - 1) &&
// lastVisiblePosition == (positionStart - 1))) {
// recyclerView.scrollToPosition(positionStart);
// }
// }
// });
//set data and list adapter
recyclerView.setAdapter(mAdapter);
mAdapter.setDragListener(new ProductAdapter.OnStartDragListener() {
@Override
public void onStartDrag(RecyclerView.ViewHolder viewHolder) {
mItemTouchHelper.startDrag(viewHolder);
}
});
sendButton = rootView.findViewById(R.id.product_send_text);
productEditText = rootView.findViewById(R.id.product_edit_text);
productEditQuantity = rootView.findViewById(R.id.product_edit_quantity);
productEditPrice = rootView.findViewById(R.id.product_edit_price);
productEditText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
if (charSequence.toString().trim().length() > 0) {
sendButton.setEnabled(true);
} else {
sendButton.setEnabled(false);
}
}
@Override
public void afterTextChanged(Editable editable) {
}
});
// Добавить продукт по кнопке
sendButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Product obj = new Product();
// obj.image = drw_arr.getResourceId(randomNum, -1);
obj.position = 1;
obj.name = productEditText.getText().toString();
obj.quantity = Double.parseDouble(productEditQuantity.getText().toString());
obj.price = Double.parseDouble(productEditPrice.getText().toString());
// obj.imageDrw = getActivity().getResources().getDrawable(obj.image);
// items.add(0, obj);
// mAdapter.notifyDataSetChanged();
// push to DB
myRef.push().setValue(obj);
// clear edittext
productEditText.setText("");
productEditQuantity.setText("");
productEditPrice.setText("");
}
});
updateList();
return rootView;
}
private void setUpRecyclerView() {
final List<Product> items = DataGenerator.getSocialData(getActivity());
Query query = myRef;
FirebaseRecyclerOptions<Product> options = new FirebaseRecyclerOptions.Builder<Product>()
.setQuery(query, Product.class)
.build();
mAdapter = new ProductAdapter(options, getActivity(), productList);
recyclerView.setHasFixedSize(true);
mLinearLayoutManager = new LinearLayoutManager(getActivity());
mLinearLayoutManager.setOrientation(LinearLayoutManager.VERTICAL);
recyclerView.setLayoutManager(mLinearLayoutManager);
ItemTouchHelper.Callback callback = new ProductTouchHelper(mAdapter);
mItemTouchHelper = new ItemTouchHelper(callback);
mItemTouchHelper.attachToRecyclerView(recyclerView);
}
private void updateList() {
myRef.addChildEventListener(new ChildEventListener() {
@Override
public void onChildAdded(@NonNull DataSnapshot dataSnapshot, @Nullable String s) {
productList.add(dataSnapshot.getValue(Product.class));
mAdapter.notifyDataSetChanged();
//checkIfEmpty();
}
@Override
public void onChildChanged(@NonNull DataSnapshot dataSnapshot, @Nullable String s) {
Product message = dataSnapshot.getValue(Product.class);
int index = getItemIndex(message);
productList.set(index, message);
mAdapter.notifyDataSetChanged();
}
@Override
public void onChildRemoved(@NonNull DataSnapshot dataSnapshot) {
// Product product = dataSnapshot.getValue(Product.class);
// int index = getItemIndex(product);
//
// productList.remove(index);
// mAdapter.notifyDataSetChanged();
//checkIfEmpty();
}
@Override
public void onChildMoved(@NonNull DataSnapshot dataSnapshot, @Nullable String s) {
mAdapter.notifyDataSetChanged();
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
}
});
}
// Ищем индекс
private int getItemIndex(Product product) {
int index = -1;
for (int i = 0; i < productList.size(); i++) {
if (productList.get(i).getName().equals(product.getName())) {
index = i;
break;
}
}
return index;
}
@Override
public void onStart() {
super.onStart();
mAdapter.startListening();
}
@Override
public void onStop() {
super.onStop();
mAdapter.stopListening();
}
}
| [
"wowand@gmail.com"
] | wowand@gmail.com |
78bba723954f08f9737af42306f1557448a01a07 | d78b6a6623563585a14845b0ead5d272337a9ecd | /app/src/main/java/com/vonnie/mynewsapp/global/MyApplication.java | 32f3ef98ab1ea3a15d9970eb9a008a5cab241ce7 | [] | no_license | SparrowC/NewsAPP | ead073b833838ea8c927b2f5b58ec1f928d828ed | 40e9807c390f1b28207ff94a0ec4774f6270fc90 | refs/heads/master | 2021-01-10T15:45:42.334256 | 2016-07-11T10:35:38 | 2016-07-11T10:35:38 | 53,493,829 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 682 | java | package com.vonnie.mynewsapp.global;
import android.app.Application;
import com.vonnie.mynewsapp.utils.SharedPreferencesUtils;
/**
* Created by Vonnie on 2016/4/17.
*/
public class MyApplication extends Application {
private String username;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
@Override
public void onCreate() {
super.onCreate();
String name=SharedPreferencesUtils.getString(this.getApplicationContext(),"username","");
if(!name.equals(""))
setUsername(name);
else
setUsername(null);
}
}
| [
"kun.j@foxmail.com"
] | kun.j@foxmail.com |
8405e65ae711c853a04135d06c6de7f8d48d6f46 | e76364e90190ec020feddc730c78192b32fe88c1 | /neo4j/doc/src/test/java/com/buschmais/xo/neo4j/doc/relation/typed/Director.java | 7f5db6debb458980f1275bd1725c801213076e92 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | buschmais/extended-objects | 2a8411d81469439a034c11116e34ae799eb57e97 | 0b91a5d55c9a76adba28ddccd6caba699eeaa1fc | refs/heads/master | 2023-08-16T13:33:54.936349 | 2023-06-10T13:44:10 | 2023-06-10T13:44:10 | 14,117,014 | 15 | 5 | Apache-2.0 | 2022-11-02T09:44:17 | 2013-11-04T16:45:59 | Java | UTF-8 | Java | false | false | 300 | java | package com.buschmais.xo.neo4j.doc.relation.typed;
import java.util.List;
import com.buschmais.xo.neo4j.api.annotation.Label;
import com.buschmais.xo.neo4j.doc.relation.Person;
// tag::Class[]
@Label
public interface Director extends Person {
List<Directed> getDirected();
}
// end::Class[]
| [
"dirk.mahler@buschmais.com"
] | dirk.mahler@buschmais.com |
cee7d9b4fe9a2ad96cedd3321c0124458a62d261 | 47d3f6141d136a222296297c2b233cd71b898963 | /MyQueue/src/MyQueueDriver.java | 3657e21213db055f7458bb700b5c17eb6cd46aca | [] | no_license | Marissa1999/Data-Structures-Demos | cd891708ceb63ef68ad9ce0661972e14ac18a346 | 311a7aed2ae132a332b4684c2ea731d43f092846 | refs/heads/master | 2023-02-13T21:49:50.078330 | 2021-01-05T22:12:48 | 2021-01-05T22:12:48 | 327,132,372 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,440 | java | import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Deque;
import java.util.LinkedList;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Queue;
/**
* Programmer: Marissa
* Date: September 19, 2018
*/
public class MyQueueDriver
{
public static void main(String[] args)
{
MyQueue<String> queue1 = new MyQueue<>();
queue1.enqueue("First");
queue1.enqueue("Second");
queue1.enqueue("Third");
queue1.enqueue("Last");
System.out.println(queue1);
System.out.println(queue1.first());
queue1.dequeue();
System.out.println("After dequeue: " + queue1);
queue1.dequeue();
System.out.println("After dequeue again: " + queue1);
String[] arrayList = { "Testing", "Testing", "Again", "!!!", "10", "4" };
MyQueue<String> queue2 = new MyQueue<>(arrayList);
System.out.println(queue2);
List<String> list = new ArrayList<>(Arrays.asList(arrayList));
MyQueue<String> queue3 = new MyQueue<>(list);
System.out.println(queue3);
/*
int[] list2 = { 2, 3, 1, 0, 4 };
System.out.println(Arrays.asList(list2).toString());
Arrays.sort(list2);
*/
Queue<String> myQueue = new LinkedList<>();
myQueue.offer("Oklahoma");
myQueue.offer("Indiana");
myQueue.offer("Georgia");
myQueue.offer("Texas");
while(myQueue.size() > 0)
{
System.out.print(myQueue.remove() + " ");
}
System.out.println();
Deque<String> myQueueTwo = new LinkedList<>();
myQueueTwo.offer("Hello");
PriorityQueue<String> myQueueThree = new PriorityQueue<>();
myQueueThree.offer("Oklahoma");
myQueueThree.offer("Indiana");
myQueueThree.offer("Georgia");
myQueueThree.offer("Texas");
while(myQueueThree.size() > 0)
{
System.out.print(myQueueThree.remove() + " ");
}
System.out.println();
PriorityQueue<String> myQueueFour = new PriorityQueue<>(Collections.reverseOrder());
myQueueFour.offer("Oklahoma");
myQueueFour.offer("Indiana");
myQueueFour.offer("Georgia");
myQueueFour.offer("Texas");
while(myQueueFour.size() > 0)
{
System.out.print(myQueueFour.remove() + " ");
}
System.out.println();
PriorityQueue<String> myQueueFive = new PriorityQueue<>(new CompareLength());
myQueueFive.offer("Oklahoma");
myQueueFive.offer("Indiana");
myQueueFive.offer("Georgia");
myQueueFive.offer("Texas");
while(myQueueFive.size() > 0)
{
System.out.print(myQueueFive.remove() + " ");
}
}
}
| [
"marissagoncalves13@gmail.com"
] | marissagoncalves13@gmail.com |
2c59a123ac6ec969925588161975cec8fe97f7a0 | 7bef0b41e3dbc8ff19971aa392d015f80fad6fd2 | /Exception/src/HW8/ReturnExEvetInfo.java | c7914c3871f02a42b71f63c5191166811757fcdf | [] | no_license | shilratna/JavaOldStuff | 7c0fc4d32509f21160cfc753a57a77d6be41151d | 628c1adf0991e49466956752b4d314d5b38adf21 | refs/heads/master | 2022-11-21T01:58:50.847014 | 2020-07-22T03:41:55 | 2020-07-22T03:41:55 | 281,565,300 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 540 | java | /*
* Write a java program to return exception event information
* from user defined method to main method.
*/
package HW8;
public class ReturnExEvetInfo {
ArithmeticException test()
{
try {
System.out.println(10/0);
}
catch(ArithmeticException ae){
System.out.println("Exception Handled...");
return ae;
}
return null;
}
public static void main(String[] args) {
ReturnExEvetInfo r1= new ReturnExEvetInfo();
ArithmeticException a1 = r1.test();
if(a1 !=null)
{
a1.printStackTrace();
}
}
}
| [
"shilratna05@gmail.com"
] | shilratna05@gmail.com |
4e4e66920a43e70012c25ac977e9d3408b3798cf | 76852b1b29410436817bafa34c6dedaedd0786cd | /sources-2020-07-19-tempmail/sources/com/google/android/gms/internal/ads/zzbke.java | 0ea2a7ce11536c1a86e71f492369bd4e8f435b5c | [] | no_license | zteeed/tempmail-apks | 040e64e07beadd8f5e48cd7bea8b47233e99611c | 19f8da1993c2f783b8847234afb52d94b9d1aa4c | refs/heads/master | 2023-01-09T06:43:40.830942 | 2020-11-04T18:55:05 | 2020-11-04T18:55:05 | 310,075,224 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 529 | java | package com.google.android.gms.internal.ads;
/* compiled from: com.google.android.gms:play-services-ads@@19.2.0 */
public final class zzbke implements zzela<zzaqp> {
/* renamed from: a reason: collision with root package name */
private final zzbkb f6293a;
public zzbke(zzbkb zzbkb) {
this.f6293a = zzbkb;
}
public final /* synthetic */ Object get() {
zzaqp b2 = this.f6293a.b();
zzelg.b(b2, "Cannot return null from a non-@Nullable @Provides method");
return b2;
}
}
| [
"zteeed@minet.net"
] | zteeed@minet.net |
877fea8a68d1cc4e052334a5704093b48c12ab29 | be73270af6be0a811bca4f1710dc6a038e4a8fd2 | /crash-reproduction-moho/results/XWIKI-14263-31-28-PESA_II-WeightedSum:TestLen:CallDiversity/org/xwiki/velocity/internal/DefaultVelocityEngine_ESTest.java | da2d7f8fd6d3281639a4809971de67d696be1551 | [] | no_license | STAMP-project/Botsing-multi-objectivization-using-helper-objectives-application | cf118b23ecb87a8bf59643e42f7556b521d1f754 | 3bb39683f9c343b8ec94890a00b8f260d158dfe3 | refs/heads/master | 2022-07-29T14:44:00.774547 | 2020-08-10T15:14:49 | 2020-08-10T15:14:49 | 285,804,495 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 576 | java | /*
* This file was automatically generated by EvoSuite
* Sat Apr 04 05:38:31 UTC 2020
*/
package org.xwiki.velocity.internal;
import org.junit.Test;
import static org.junit.Assert.*;
import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.junit.runner.RunWith;
@RunWith(EvoRunner.class) @EvoRunnerParameters(useVFS = true, useJEE = true)
public class DefaultVelocityEngine_ESTest extends DefaultVelocityEngine_ESTest_scaffolding {
@Test
public void notGeneratedAnyTest() {
// EvoSuite did not generate any tests
}
}
| [
"pouria.derakhshanfar@gmail.com"
] | pouria.derakhshanfar@gmail.com |
215b3d0f0d8b1c9dba2d298dbc8a7baf86a5d88f | dd76d0b680549acb07278b2ecd387cb05ec84d64 | /divestory-Fernflower/androidx/core/app/RemoteInput.java | 49a5abee65a8cbd8ebfbcf8e047e9709af6f6939 | [] | no_license | ryangardner/excursion-decompiling | 43c99a799ce75a417e636da85bddd5d1d9a9109c | 4b6d11d6f118cdab31328c877c268f3d56b95c58 | refs/heads/master | 2023-07-02T13:32:30.872241 | 2021-08-09T19:33:37 | 2021-08-09T19:33:37 | 299,657,052 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,231 | java | package androidx.core.app;
import android.content.ClipData;
import android.content.ClipDescription;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.os.Build.VERSION;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
public final class RemoteInput {
public static final int EDIT_CHOICES_BEFORE_SENDING_AUTO = 0;
public static final int EDIT_CHOICES_BEFORE_SENDING_DISABLED = 1;
public static final int EDIT_CHOICES_BEFORE_SENDING_ENABLED = 2;
private static final String EXTRA_DATA_TYPE_RESULTS_DATA = "android.remoteinput.dataTypeResultsData";
public static final String EXTRA_RESULTS_DATA = "android.remoteinput.resultsData";
private static final String EXTRA_RESULTS_SOURCE = "android.remoteinput.resultsSource";
public static final String RESULTS_CLIP_LABEL = "android.remoteinput.results";
public static final int SOURCE_CHOICE = 1;
public static final int SOURCE_FREE_FORM_INPUT = 0;
private static final String TAG = "RemoteInput";
private final boolean mAllowFreeFormTextInput;
private final Set<String> mAllowedDataTypes;
private final CharSequence[] mChoices;
private final int mEditChoicesBeforeSending;
private final Bundle mExtras;
private final CharSequence mLabel;
private final String mResultKey;
RemoteInput(String var1, CharSequence var2, CharSequence[] var3, boolean var4, int var5, Bundle var6, Set<String> var7) {
this.mResultKey = var1;
this.mLabel = var2;
this.mChoices = var3;
this.mAllowFreeFormTextInput = var4;
this.mEditChoicesBeforeSending = var5;
this.mExtras = var6;
this.mAllowedDataTypes = var7;
if (this.getEditChoicesBeforeSending() == 2 && !this.getAllowFreeFormInput()) {
throw new IllegalArgumentException("setEditChoicesBeforeSending requires setAllowFreeFormInput");
}
}
public static void addDataResultToIntent(RemoteInput var0, Intent var1, Map<String, Uri> var2) {
if (VERSION.SDK_INT >= 26) {
android.app.RemoteInput.addDataResultToIntent(fromCompat(var0), var1, var2);
} else if (VERSION.SDK_INT >= 16) {
Intent var3 = getClipDataIntentFromIntent(var1);
Intent var4 = var3;
if (var3 == null) {
var4 = new Intent();
}
Iterator var5 = var2.entrySet().iterator();
while(var5.hasNext()) {
Entry var8 = (Entry)var5.next();
String var6 = (String)var8.getKey();
Uri var7 = (Uri)var8.getValue();
if (var6 != null) {
Bundle var10 = var4.getBundleExtra(getExtraResultsKeyForData(var6));
Bundle var9 = var10;
if (var10 == null) {
var9 = new Bundle();
}
var9.putString(var0.getResultKey(), var7.toString());
var4.putExtra(getExtraResultsKeyForData(var6), var9);
}
}
var1.setClipData(ClipData.newIntent("android.remoteinput.results", var4));
}
}
public static void addResultsToIntent(RemoteInput[] var0, Intent var1, Bundle var2) {
if (VERSION.SDK_INT >= 26) {
android.app.RemoteInput.addResultsToIntent(fromCompat(var0), var1, var2);
} else {
int var3 = VERSION.SDK_INT;
int var4 = 0;
if (var3 >= 20) {
Bundle var5 = getResultsFromIntent(var1);
int var6 = getResultsSource(var1);
if (var5 != null) {
var5.putAll(var2);
var2 = var5;
}
var3 = var0.length;
for(var4 = 0; var4 < var3; ++var4) {
RemoteInput var10 = var0[var4];
Map var7 = getDataResultsFromIntent(var1, var10.getResultKey());
android.app.RemoteInput.addResultsToIntent(fromCompat(new RemoteInput[]{var10}), var1, var2);
if (var7 != null) {
addDataResultToIntent(var10, var1, var7);
}
}
setResultsSource(var1, var6);
} else if (VERSION.SDK_INT >= 16) {
Intent var12 = getClipDataIntentFromIntent(var1);
Intent var11 = var12;
if (var12 == null) {
var11 = new Intent();
}
Bundle var8 = var11.getBundleExtra("android.remoteinput.resultsData");
Bundle var13 = var8;
if (var8 == null) {
var13 = new Bundle();
}
for(var3 = var0.length; var4 < var3; ++var4) {
RemoteInput var9 = var0[var4];
Object var14 = var2.get(var9.getResultKey());
if (var14 instanceof CharSequence) {
var13.putCharSequence(var9.getResultKey(), (CharSequence)var14);
}
}
var11.putExtra("android.remoteinput.resultsData", var13);
var1.setClipData(ClipData.newIntent("android.remoteinput.results", var11));
}
}
}
static android.app.RemoteInput fromCompat(RemoteInput var0) {
android.app.RemoteInput.Builder var1 = (new android.app.RemoteInput.Builder(var0.getResultKey())).setLabel(var0.getLabel()).setChoices(var0.getChoices()).setAllowFreeFormInput(var0.getAllowFreeFormInput()).addExtras(var0.getExtras());
if (VERSION.SDK_INT >= 29) {
var1.setEditChoicesBeforeSending(var0.getEditChoicesBeforeSending());
}
return var1.build();
}
static android.app.RemoteInput[] fromCompat(RemoteInput[] var0) {
if (var0 == null) {
return null;
} else {
android.app.RemoteInput[] var1 = new android.app.RemoteInput[var0.length];
for(int var2 = 0; var2 < var0.length; ++var2) {
var1[var2] = fromCompat(var0[var2]);
}
return var1;
}
}
private static Intent getClipDataIntentFromIntent(Intent var0) {
ClipData var2 = var0.getClipData();
if (var2 == null) {
return null;
} else {
ClipDescription var1 = var2.getDescription();
if (!var1.hasMimeType("text/vnd.android.intent")) {
return null;
} else {
return !var1.getLabel().toString().contentEquals("android.remoteinput.results") ? null : var2.getItemAt(0).getIntent();
}
}
}
public static Map<String, Uri> getDataResultsFromIntent(Intent var0, String var1) {
if (VERSION.SDK_INT >= 26) {
return android.app.RemoteInput.getDataResultsFromIntent(var0, var1);
} else {
int var2 = VERSION.SDK_INT;
Object var3 = null;
HashMap var4 = (HashMap)var3;
if (var2 >= 16) {
var0 = getClipDataIntentFromIntent(var0);
if (var0 == null) {
return null;
}
var4 = new HashMap();
Iterator var5 = var0.getExtras().keySet().iterator();
while(var5.hasNext()) {
String var6 = (String)var5.next();
if (var6.startsWith("android.remoteinput.dataTypeResultsData")) {
String var7 = var6.substring(39);
if (!var7.isEmpty()) {
var6 = var0.getBundleExtra(var6).getString(var1);
if (var6 != null && !var6.isEmpty()) {
var4.put(var7, Uri.parse(var6));
}
}
}
}
if (var4.isEmpty()) {
var4 = (HashMap)var3;
}
}
return var4;
}
}
private static String getExtraResultsKeyForData(String var0) {
StringBuilder var1 = new StringBuilder();
var1.append("android.remoteinput.dataTypeResultsData");
var1.append(var0);
return var1.toString();
}
public static Bundle getResultsFromIntent(Intent var0) {
if (VERSION.SDK_INT >= 20) {
return android.app.RemoteInput.getResultsFromIntent(var0);
} else if (VERSION.SDK_INT >= 16) {
var0 = getClipDataIntentFromIntent(var0);
return var0 == null ? null : (Bundle)var0.getExtras().getParcelable("android.remoteinput.resultsData");
} else {
return null;
}
}
public static int getResultsSource(Intent var0) {
if (VERSION.SDK_INT >= 28) {
return android.app.RemoteInput.getResultsSource(var0);
} else if (VERSION.SDK_INT >= 16) {
var0 = getClipDataIntentFromIntent(var0);
return var0 == null ? 0 : var0.getExtras().getInt("android.remoteinput.resultsSource", 0);
} else {
return 0;
}
}
public static void setResultsSource(Intent var0, int var1) {
if (VERSION.SDK_INT >= 28) {
android.app.RemoteInput.setResultsSource(var0, var1);
} else if (VERSION.SDK_INT >= 16) {
Intent var2 = getClipDataIntentFromIntent(var0);
Intent var3 = var2;
if (var2 == null) {
var3 = new Intent();
}
var3.putExtra("android.remoteinput.resultsSource", var1);
var0.setClipData(ClipData.newIntent("android.remoteinput.results", var3));
}
}
public boolean getAllowFreeFormInput() {
return this.mAllowFreeFormTextInput;
}
public Set<String> getAllowedDataTypes() {
return this.mAllowedDataTypes;
}
public CharSequence[] getChoices() {
return this.mChoices;
}
public int getEditChoicesBeforeSending() {
return this.mEditChoicesBeforeSending;
}
public Bundle getExtras() {
return this.mExtras;
}
public CharSequence getLabel() {
return this.mLabel;
}
public String getResultKey() {
return this.mResultKey;
}
public boolean isDataOnly() {
boolean var1;
if (!this.getAllowFreeFormInput() && (this.getChoices() == null || this.getChoices().length == 0) && this.getAllowedDataTypes() != null && !this.getAllowedDataTypes().isEmpty()) {
var1 = true;
} else {
var1 = false;
}
return var1;
}
public static final class Builder {
private boolean mAllowFreeFormTextInput = true;
private final Set<String> mAllowedDataTypes = new HashSet();
private CharSequence[] mChoices;
private int mEditChoicesBeforeSending = 0;
private final Bundle mExtras = new Bundle();
private CharSequence mLabel;
private final String mResultKey;
public Builder(String var1) {
if (var1 != null) {
this.mResultKey = var1;
} else {
throw new IllegalArgumentException("Result key can't be null");
}
}
public RemoteInput.Builder addExtras(Bundle var1) {
if (var1 != null) {
this.mExtras.putAll(var1);
}
return this;
}
public RemoteInput build() {
return new RemoteInput(this.mResultKey, this.mLabel, this.mChoices, this.mAllowFreeFormTextInput, this.mEditChoicesBeforeSending, this.mExtras, this.mAllowedDataTypes);
}
public Bundle getExtras() {
return this.mExtras;
}
public RemoteInput.Builder setAllowDataType(String var1, boolean var2) {
if (var2) {
this.mAllowedDataTypes.add(var1);
} else {
this.mAllowedDataTypes.remove(var1);
}
return this;
}
public RemoteInput.Builder setAllowFreeFormInput(boolean var1) {
this.mAllowFreeFormTextInput = var1;
return this;
}
public RemoteInput.Builder setChoices(CharSequence[] var1) {
this.mChoices = var1;
return this;
}
public RemoteInput.Builder setEditChoicesBeforeSending(int var1) {
this.mEditChoicesBeforeSending = var1;
return this;
}
public RemoteInput.Builder setLabel(CharSequence var1) {
this.mLabel = var1;
return this;
}
}
@Retention(RetentionPolicy.SOURCE)
public @interface EditChoicesBeforeSending {
}
@Retention(RetentionPolicy.SOURCE)
public @interface Source {
}
}
| [
"ryan.gardner@coxautoinc.com"
] | ryan.gardner@coxautoinc.com |
884b744cfb62af9130c03c4ed0d2a7c9c65f726a | 27a5f87525e7ba66568f4f35a08bbd4fce0f3564 | /src/test/java/com/item_bank/springboot/ApplicationTests.java | 9e42f69b5fb3144b3ab166bf768a40c71d656d0a | [] | no_license | LiWentao98/springboot | 43423583fc411a709f665389464e72b50d6403c0 | 409b11ed6bc7524267df0c0011bd0cd5d28e38a5 | refs/heads/master | 2022-06-25T09:07:48.318635 | 2019-11-02T01:52:38 | 2019-11-02T01:52:38 | 219,090,304 | 0 | 0 | null | 2022-06-21T02:09:35 | 2019-11-02T02:01:37 | Java | UTF-8 | Java | false | false | 270 | java | package com.item_bank.springboot;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class ApplicationTests {
}
| [
"1714015226@qq.com"
] | 1714015226@qq.com |
bde3007b26bbdb8c47e8184330284a99647f31fb | 637839fbadc698d027f798c165a8ffe492c8e291 | /src/GameField.java | 540d4e49cf99643a47f981d4d3aaf1b2149cdf3a | [] | no_license | furkanmumcu/Light-Game | ef71f00bd490f57376ea1efa496f05c201d5f50d | a4956aee0453cfc9a7ed593dbf0e54e3f636af2f | refs/heads/master | 2020-04-02T07:34:35.756379 | 2016-06-15T23:25:54 | 2016-06-15T23:25:54 | 61,247,465 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 242 | java | import java.awt.*;
import java.util.*;
public class GameField {
ArrayList<LightObject> objects;
ArrayList<LightSource> lights;
public GameField(){
objects = new ArrayList();
lights = new ArrayList();
}
}
| [
"furkanmumcucs@gmail.com"
] | furkanmumcucs@gmail.com |
f70318ca08007f3787c0c80ed408364d139420a0 | de9692ea8116a0d761efc7827dbe251ef78890a9 | /ArcFaceDemo-master/src/main/java/com/arcsoft/sdk_demo/DetecterActivity.java | 1bb372272cc7bfe5139313fcd940e2d6870f8cb5 | [] | no_license | gaowei059/FaceLock | 9491caac8c01bb6e958f91d959eb5a8dc4b75102 | 4580d5ce7a9e58c2098544957cdb4460ae2a7b56 | refs/heads/master | 2020-03-20T13:48:57.691152 | 2018-06-15T09:16:02 | 2018-06-15T09:16:02 | 137,463,906 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 15,134 | java | package com.arcsoft.sdk_demo;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.graphics.ImageFormat;
import android.graphics.Rect;
import android.graphics.YuvImage;
import android.hardware.Camera;
import android.os.Bundle;
import android.os.Handler;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import com.arcsoft.ageestimation.ASAE_FSDKAge;
import com.arcsoft.ageestimation.ASAE_FSDKEngine;
import com.arcsoft.ageestimation.ASAE_FSDKError;
import com.arcsoft.ageestimation.ASAE_FSDKFace;
import com.arcsoft.ageestimation.ASAE_FSDKVersion;
import com.arcsoft.facerecognition.AFR_FSDKEngine;
import com.arcsoft.facerecognition.AFR_FSDKError;
import com.arcsoft.facerecognition.AFR_FSDKFace;
import com.arcsoft.facerecognition.AFR_FSDKMatching;
import com.arcsoft.facerecognition.AFR_FSDKVersion;
import com.arcsoft.facetracking.AFT_FSDKEngine;
import com.arcsoft.facetracking.AFT_FSDKError;
import com.arcsoft.facetracking.AFT_FSDKFace;
import com.arcsoft.facetracking.AFT_FSDKVersion;
import com.arcsoft.genderestimation.ASGE_FSDKEngine;
import com.arcsoft.genderestimation.ASGE_FSDKError;
import com.arcsoft.genderestimation.ASGE_FSDKFace;
import com.arcsoft.genderestimation.ASGE_FSDKGender;
import com.arcsoft.genderestimation.ASGE_FSDKVersion;
import com.arcsoft.sdk_demo.lock.LockerProtectService;
import com.arcsoft.sdk_demo.lock.LockerService;
import com.arcsoft.sdk_demo.ui.ThemeWaterActivity;
import com.arcsoft.sdk_demo.util.Config;
import com.guo.android_extend.java.AbsLoop;
import com.guo.android_extend.java.ExtByteArrayOutputStream;
import com.guo.android_extend.tools.CameraHelper;
import com.guo.android_extend.widget.CameraFrameData;
import com.guo.android_extend.widget.CameraGLSurfaceView;
import com.guo.android_extend.widget.CameraSurfaceView;
import com.guo.android_extend.widget.CameraSurfaceView.OnCameraListener;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
/**
* Created by gqj3375 on 2017/4/28.
*/
public class DetecterActivity extends Activity implements OnCameraListener, View.OnTouchListener, Camera.AutoFocusCallback {
private final String TAG = this.getClass().getSimpleName();
private int mWidth, mHeight, mFormat;
private CameraSurfaceView mSurfaceView;
private CameraGLSurfaceView mGLSurfaceView;
private Camera mCamera;
AFT_FSDKVersion version = new AFT_FSDKVersion();
AFT_FSDKEngine engine = new AFT_FSDKEngine();
ASAE_FSDKVersion mAgeVersion = new ASAE_FSDKVersion();
ASAE_FSDKEngine mAgeEngine = new ASAE_FSDKEngine();
ASGE_FSDKVersion mGenderVersion = new ASGE_FSDKVersion();
ASGE_FSDKEngine mGenderEngine = new ASGE_FSDKEngine();
List<AFT_FSDKFace> result = new ArrayList<>();
List<ASAE_FSDKAge> ages = new ArrayList<>();
List<ASGE_FSDKGender> genders = new ArrayList<>();
int mCameraID;
int mCameraRotate;
boolean mCameraMirror;
byte[] mImageNV21 = null;
FRAbsLoop mFRAbsLoop = null;
AFT_FSDKFace mAFT_FSDKFace = null;
Handler mHandler;
Runnable hide = new Runnable() {
@Override
public void run() {
mTextView.setAlpha(0.5f);
mImageView.setImageAlpha(128);
}
};
class FRAbsLoop extends AbsLoop {
AFR_FSDKVersion version = new AFR_FSDKVersion();
AFR_FSDKEngine engine = new AFR_FSDKEngine();
AFR_FSDKFace result = new AFR_FSDKFace();
List<FaceDB.FaceRegist> mResgist = ((Application)DetecterActivity.this.getApplicationContext()).mFaceDB.mRegister;
List<ASAE_FSDKFace> face1 = new ArrayList<>();
List<ASGE_FSDKFace> face2 = new ArrayList<>();
@Override
public void setup() {
AFR_FSDKError error = engine.AFR_FSDK_InitialEngine(FaceDB.appid, FaceDB.fr_key);
Log.d(TAG, "AFR_FSDK_InitialEngine = " + error.getCode());
error = engine.AFR_FSDK_GetVersion(version);
Log.d(TAG, "FR=" + version.toString() + "," + error.getCode()); //(210, 178 - 478, 446), degree = 1 780, 2208 - 1942, 3370
}
@Override
public void loop() {
if (mImageNV21 != null) {
long time = System.currentTimeMillis();
AFR_FSDKError error = engine.AFR_FSDK_ExtractFRFeature(mImageNV21, mWidth, mHeight, AFR_FSDKEngine.CP_PAF_NV21, mAFT_FSDKFace.getRect(), mAFT_FSDKFace.getDegree(), result);
Log.d(TAG, "AFR_FSDK_ExtractFRFeature cost :" + (System.currentTimeMillis() - time) + "ms");
Log.d(TAG, "Face=" + result.getFeatureData()[0] + "," + result.getFeatureData()[1] + "," + result.getFeatureData()[2] + "," + error.getCode());
AFR_FSDKMatching score = new AFR_FSDKMatching();
float max = 0.0f;
String name = null;
for (FaceDB.FaceRegist fr : mResgist) {
for (AFR_FSDKFace face : fr.mFaceList) {
error = engine.AFR_FSDK_FacePairMatching(result, face, score);
Log.d(TAG, "Score:" + score.getScore() + ", AFR_FSDK_FacePairMatching=" + error.getCode());
if (max < score.getScore()) {
max = score.getScore();
name = fr.mName;
}
}
}
//age & gender
face1.clear();
face2.clear();
face1.add(new ASAE_FSDKFace(mAFT_FSDKFace.getRect(), mAFT_FSDKFace.getDegree()));
face2.add(new ASGE_FSDKFace(mAFT_FSDKFace.getRect(), mAFT_FSDKFace.getDegree()));
ASAE_FSDKError error1 = mAgeEngine.ASAE_FSDK_AgeEstimation_Image(mImageNV21, mWidth, mHeight, AFT_FSDKEngine.CP_PAF_NV21, face1, ages);
ASGE_FSDKError error2 = mGenderEngine.ASGE_FSDK_GenderEstimation_Image(mImageNV21, mWidth, mHeight, AFT_FSDKEngine.CP_PAF_NV21, face2, genders);
Log.d(TAG, "ASAE_FSDK_AgeEstimation_Image:" + error1.getCode() + ",ASGE_FSDK_GenderEstimation_Image:" + error2.getCode());
Log.d(TAG, "age:" + ages.get(0).getAge() + ",gender:" + genders.get(0).getGender());
final String age = ages.get(0).getAge() == 0 ? "年龄未知" : ages.get(0).getAge() + "岁";
final String gender = genders.get(0).getGender() == -1 ? "性别未知" : (genders.get(0).getGender() == 0 ? "男" : "女");
//crop
byte[] data = mImageNV21;
YuvImage yuv = new YuvImage(data, ImageFormat.NV21, mWidth, mHeight, null);
ExtByteArrayOutputStream ops = new ExtByteArrayOutputStream();
yuv.compressToJpeg(mAFT_FSDKFace.getRect(), 80, ops);
final Bitmap bmp = BitmapFactory.decodeByteArray(ops.getByteArray(), 0, ops.getByteArray().length);
try {
ops.close();
} catch (IOException e) {
e.printStackTrace();
}
if (max > 0.6f) {
//fr success.
final float max_score = max;
Log.d(TAG, "fit Score:" + max + ", NAME:" + name);
final String mNameShow = name;
mHandler.removeCallbacks(hide);
mHandler.post(new Runnable() {
@Override
public void run() {
mTextView.setAlpha(1.0f);
mTextView.setText(mNameShow);
mTextView.setTextColor(Color.RED);
mTextView1.setVisibility(View.VISIBLE);
mTextView1.setText("置信度:" + (float)((int)(max_score * 1000)) / 1000.0);
mTextView1.setTextColor(Color.RED);
mImageView.setRotation(mCameraRotate);
if (mCameraMirror) {
mImageView.setScaleY(-1);
}
mImageView.setImageAlpha(255);
mImageView.setImageBitmap(bmp);
}
});
finish();
Intent intent = new Intent(Intent.ACTION_MAIN,null);
intent.addCategory(Intent.CATEGORY_HOME);
startActivity(intent);
} else {
final String mNameShow = "未识别";
DetecterActivity.this.runOnUiThread(new Runnable() {
@Override
public void run() {
mTextView.setAlpha(1.0f);
mTextView1.setVisibility(View.VISIBLE);
mTextView1.setText( gender + "," + age);
mTextView1.setTextColor(Color.RED);
mTextView.setText(mNameShow);
mTextView.setTextColor(Color.RED);
mImageView.setImageAlpha(255);
mImageView.setRotation(mCameraRotate);
if (mCameraMirror) {
mImageView.setScaleY(-1);
}
mImageView.setImageBitmap(bmp);
}
});
}
mImageNV21 = null;
}
}
@Override
public void over() {
AFR_FSDKError error = engine.AFR_FSDK_UninitialEngine();
Log.d(TAG, "AFR_FSDK_UninitialEngine : " + error.getCode());
}
}
private TextView mTextView;
private TextView mTextView1;
private ImageView mImageView;
/* (non-Javadoc)
* @see android.app.Activity#onCreate(android.os.Bundle)
*/
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
mCameraID = Camera.CameraInfo.CAMERA_FACING_FRONT;
mCameraRotate = 270;
mCameraMirror = true;
mWidth = 1280;
mHeight = 960;
mFormat = ImageFormat.NV21;
mHandler = new Handler();
View decorView = getWindow().getDecorView();
int uiOptions = View.SYSTEM_UI_FLAG_LAYOUT_STABLE
|View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
|View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
|View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
|View.SYSTEM_UI_FLAG_FULLSCREEN
|View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY;
decorView.setSystemUiVisibility(uiOptions);
setContentView(R.layout.activity_camera);
mGLSurfaceView = (CameraGLSurfaceView) findViewById(R.id.glsurfaceView);
mGLSurfaceView.setOnTouchListener(this);
mSurfaceView = (CameraSurfaceView) findViewById(R.id.surfaceView);
mSurfaceView.setOnCameraListener(this);
mSurfaceView.setupGLSurafceView(mGLSurfaceView, true, mCameraMirror, mCameraRotate);
mSurfaceView.debug_print_fps(true, false);
//snap
mTextView = (TextView) findViewById(R.id.textView);
mTextView.setText("");
mTextView1 = (TextView) findViewById(R.id.textView1);
mTextView1.setText("");
mImageView = (ImageView) findViewById(R.id.imageView);
Button button = (Button) findViewById(R.id.button99);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
startActivity(new Intent(DetecterActivity.this, ThemeWaterActivity.class));
}
});
AFT_FSDKError err = engine.AFT_FSDK_InitialFaceEngine(FaceDB.appid, FaceDB.ft_key, AFT_FSDKEngine.AFT_OPF_0_HIGHER_EXT, 16, 5);
Log.d(TAG, "AFT_FSDK_InitialFaceEngine =" + err.getCode());
err = engine.AFT_FSDK_GetVersion(version);
Log.d(TAG, "AFT_FSDK_GetVersion:" + version.toString() + "," + err.getCode());
ASAE_FSDKError error = mAgeEngine.ASAE_FSDK_InitAgeEngine(FaceDB.appid, FaceDB.age_key);
Log.d(TAG, "ASAE_FSDK_InitAgeEngine =" + error.getCode());
error = mAgeEngine.ASAE_FSDK_GetVersion(mAgeVersion);
Log.d(TAG, "ASAE_FSDK_GetVersion:" + mAgeVersion.toString() + "," + error.getCode());
ASGE_FSDKError error1 = mGenderEngine.ASGE_FSDK_InitgGenderEngine(FaceDB.appid, FaceDB.gender_key);
Log.d(TAG, "ASGE_FSDK_InitgGenderEngine =" + error1.getCode());
error1 = mGenderEngine.ASGE_FSDK_GetVersion(mGenderVersion);
Log.d(TAG, "ASGE_FSDK_GetVersion:" + mGenderVersion.toString() + "," + error1.getCode());
mFRAbsLoop = new FRAbsLoop();
mFRAbsLoop.start();
}
/* (non-Javadoc)
* @see android.app.Activity#onDestroy()
*/
@Override
protected void onDestroy() {
// TODO Auto-generated method stub
super.onDestroy();
mFRAbsLoop.shutdown();
AFT_FSDKError err = engine.AFT_FSDK_UninitialFaceEngine();
Log.d(TAG, "AFT_FSDK_UninitialFaceEngine =" + err.getCode());
ASAE_FSDKError err1 = mAgeEngine.ASAE_FSDK_UninitAgeEngine();
Log.d(TAG, "ASAE_FSDK_UninitAgeEngine =" + err1.getCode());
ASGE_FSDKError err2 = mGenderEngine.ASGE_FSDK_UninitGenderEngine();
Log.d(TAG, "ASGE_FSDK_UninitGenderEngine =" + err2.getCode());
Config.sIsLock = true;
startService(new Intent(DetecterActivity.this, LockerService.class));
startService(new Intent(DetecterActivity.this, LockerProtectService.class));
LockerProtectService.startPollingService(DetecterActivity.this, 60,
LockerProtectService.class);
}
@Override
public void onWindowFocusChanged(boolean hasFocus) {
// TODO Auto-generated method stub
super.onWindowFocusChanged(hasFocus);
sendBroadcast(new Intent("android.intent.action.CLOSE_SYSTEM_DIALOGS"));
}
@Override
public Camera setupCamera() {
// TODO Auto-generated method stub
mCamera = Camera.open(mCameraID);
try {
Camera.Parameters parameters = mCamera.getParameters();
parameters.setPreviewSize(mWidth, mHeight);
parameters.setPreviewFormat(mFormat);
for( Camera.Size size : parameters.getSupportedPreviewSizes()) {
Log.d(TAG, "SIZE:" + size.width + "x" + size.height);
}
for( Integer format : parameters.getSupportedPreviewFormats()) {
Log.d(TAG, "FORMAT:" + format);
}
List<int[]> fps = parameters.getSupportedPreviewFpsRange();
for(int[] count : fps) {
Log.d(TAG, "T:");
for (int data : count) {
Log.d(TAG, "V=" + data);
}
}
//parameters.setPreviewFpsRange(15000, 30000);
//parameters.setExposureCompensation(parameters.getMaxExposureCompensation());
//parameters.setWhiteBalance(Camera.Parameters.WHITE_BALANCE_AUTO);
//parameters.setAntibanding(Camera.Parameters.ANTIBANDING_AUTO);
//parmeters.setFocusMode(Camera.Parameters.FOCUS_MODE_AUTO);
//parameters.setSceneMode(Camera.Parameters.SCENE_MODE_AUTO);
//parameters.setColorEffect(Camera.Parameters.EFFECT_NONE);
mCamera.setParameters(parameters);
} catch (Exception e) {
e.printStackTrace();
}
if (mCamera != null) {
mWidth = mCamera.getParameters().getPreviewSize().width;
mHeight = mCamera.getParameters().getPreviewSize().height;
}
return mCamera;
}
@Override
public void setupChanged(int format, int width, int height) {
}
@Override
public boolean startPreviewLater() {
// TODO Auto-generated method stub
return false;
}
@Override
public Object onPreview(byte[] data, int width, int height, int format, long timestamp) {
AFT_FSDKError err = engine.AFT_FSDK_FaceFeatureDetect(data, width, height, AFT_FSDKEngine.CP_PAF_NV21, result);
Log.d(TAG, "AFT_FSDK_FaceFeatureDetect =" + err.getCode());
Log.d(TAG, "Face=" + result.size());
for (AFT_FSDKFace face : result) {
Log.d(TAG, "Face:" + face.toString());
}
if (mImageNV21 == null) {
if (!result.isEmpty()) {
mAFT_FSDKFace = result.get(0).clone();
mImageNV21 = data.clone();
} else {
mHandler.postDelayed(hide, 3000);
}
}
//copy rects
Rect[] rects = new Rect[result.size()];
for (int i = 0; i < result.size(); i++) {
rects[i] = new Rect(result.get(i).getRect());
}
//clear result.
result.clear();
//return the rects for render.
return rects;
}
@Override
public void onBeforeRender(CameraFrameData data) {
}
@Override
public void onAfterRender(CameraFrameData data) {
mGLSurfaceView.getGLES2Render().draw_rect((Rect[])data.getParams(), Color.GREEN, 2);
}
@Override
public boolean onTouch(View v, MotionEvent event) {
CameraHelper.touchFocus(mCamera, event, v, this);
return false;
}
@Override
public void onAutoFocus(boolean success, Camera camera) {
if (success) {
Log.d(TAG, "Camera Focus SUCCESS!");
}
}
}
| [
"you@example.com"
] | you@example.com |
285ddae787bc9552265f2309221ceafdb769128d | 1cf0b121517795896e0113980e0d4ee2249532ad | /back-end/AniChew/src/main/java/com/anichew/Entity/Anime.java | d2be8560fa9c5586333f90e632696ec39fa0461f | [
"MIT"
] | permissive | munimun/AniChew | bda723df6cb96dccd4be08c64bf0cd54b04c48ce | e46b790c9080810d49dd637e3f165ded06d80cb4 | refs/heads/master | 2023-08-12T21:59:51.496932 | 2021-10-14T12:02:13 | 2021-10-14T12:02:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,593 | java | package com.anichew.Entity;
import java.time.LocalDate;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import lombok.AccessLevel;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
@Entity
@Table(name="anime")
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@Getter
public class Anime {
@Id
@Column(name="anime_id")
private long id;
@Column(name="anime_name")
private String name;
@Column(name="anime_english_name")
private String englishName;
@Column(name="anime_japanese_name")
private String japaneseName;
@Column(name="anime_korean_name")
private String koreanName;
@Enumerated(EnumType.STRING)
@Column(name="anime_type")
private AnimeType type;
@Column(name="anime_episodes")
private int episodes;
@Column(name="anime_aired_start")
private LocalDate airedStart;
@Column(name="anime_aired_end")
private LocalDate airedEnd;
@Column(name="anime_season")
private String season;
@Column(name="anime_duration")
private String duration;
@Column(name="anime_synopsis")
private String synopsis;
@Enumerated(EnumType.STRING)
@Column(name="anime_status")
private AnimeStatus status;
@Enumerated(EnumType.STRING)
@Column(name="anime_rate")
private Agerate rate;
@OneToMany(mappedBy ="anime", fetch = FetchType.LAZY)
private List<AnimeGenre> genres;
}
| [
"shining8543@naver.com"
] | shining8543@naver.com |
4d0e17d790a5f038ad4e2b1ea9240ffcdd0cc567 | a73ae671a71762a79f3004f26316b9370fc94831 | /AcaciaBusinessAce/SwingB/src/com/cosmos/swingb/JBFrame.java | e514349f4fab4f09e97a74e8455e5573a72a62c5 | [] | no_license | pavor84/acacia-business-ace | 913dab0f10aac69850c7e9e4e068287a601ef058 | c2fa4a2f21b3b5cb4068be2650d327211812e5fd | refs/heads/master | 2016-09-05T09:25:48.606556 | 2010-06-20T22:44:44 | 2010-06-20T22:44:44 | 32,273,591 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 435 | java | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.cosmos.swingb;
import org.jdesktop.swingx.JXFrame;
/**
*
* @author Miro
*/
public class JBFrame
extends JXFrame
{
public JBFrame() {
}
public JBFrame(String title) {
super(title);
}
public JBFrame(String title, boolean exitOnClose) {
super(title, exitOnClose);
}
}
| [
"mnachev@7201ef80-233e-0410-912c-3706d87a3af7"
] | mnachev@7201ef80-233e-0410-912c-3706d87a3af7 |
0e96a99ca4c62da264b9a187b219d2d7ffc8e7e0 | 174ed0b7b31b157d1d6eb8d9d64d7c99e4f5ce68 | /src/main/java/com/formcontact/security/WebSecurityConfig.java | 03edda48168b33dd91cf11fc569c248a1391ed5a | [] | no_license | yohanscar/formcontact | 8287c604bfda4a7201ddf8b8fc240561970b1de5 | de43a3e19e30975a35dd1b91bff296c4540c530d | refs/heads/master | 2020-04-06T20:28:31.001879 | 2019-03-13T01:38:35 | 2019-03-13T01:38:35 | 157,773,534 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,317 | java | package com.formcontact.security;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.HttpMethod;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
/*
https://github.com/auth0-blog/spring-boot-jwts/blob/master/src/main/java/com/example/security/WebSecurityConfig.java
*/
@Override
protected void configure(HttpSecurity httpSecurity) throws Exception {
httpSecurity.csrf().disable().authorizeRequests()
.antMatchers("/*").permitAll()
.antMatchers(HttpMethod.GET, "/").permitAll()
.antMatchers(HttpMethod.OPTIONS,"/").permitAll()
.antMatchers(HttpMethod.POST, "/contato").permitAll()
.antMatchers(HttpMethod.GET, "/profitfyBrltoDcr/").permitAll()
.antMatchers(HttpMethod.GET, "/profitfyBrltoLtc/").permitAll()
.antMatchers(HttpMethod.GET, "/profitfyBrltoBtc/").permitAll()
.antMatchers(HttpMethod.GET, "/profitfyBtctoLtc/").permitAll()
.antMatchers(HttpMethod.GET, "/profitfyBtctoDcr/").permitAll()
.antMatchers(HttpMethod.GET, "/profitfyLtctoDcr/").permitAll()
.antMatchers(HttpMethod.POST, "/doacao").permitAll()
.anyRequest().authenticated()
.and()
//filtra requisições de login
.addFilterBefore(new JWTLoginFilter("/login", authenticationManager()),
UsernamePasswordAuthenticationFilter.class)
//filtra outras requisições para verificar a presença do JWT no header
.addFilterBefore(new JWTAuthenticationFilter(),
UsernamePasswordAuthenticationFilter.class);
}
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
// cria uma conta default
// TODO setup JBDC authentication
auth.inMemoryAuthentication()
.withUser("admin")
.password("admin")
.roles("ADMIN");
}
}
| [
"wyohan@gmail.com"
] | wyohan@gmail.com |
20f0c49a1767c04a1ff71601aeb905503f97dfc7 | 2a7f71f5315f1873c1e7e24f08bfc2b57c650a91 | /spring/spring-bean/src/main/java/com/xs/factory/DefaultUserFactory.java | 5def37932268e767b1b6a74c260629535ed05a08 | [] | no_license | X-Shuai/learn_root | 484c40eecb644d6cb3d35d0a7e85a1f73fe9dbc9 | 2a09389f5821c7f14a2be66d623c14e2c11f2779 | refs/heads/master | 2023-06-30T02:15:22.672283 | 2020-11-13T09:55:43 | 2020-11-13T09:55:43 | 244,151,545 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 733 | java | package com.xs.factory;
import org.springframework.beans.factory.InitializingBean;
import javax.annotation.PostConstruct;
/**
* @program: learn_root
* @description: 工厂类
* @author: xs-shuai.com
* @create: 2020-11-12 22:29
**/
public class DefaultUserFactory implements UserFactory, InitializingBean{
@PostConstruct
public void init(){
System.out.println("init方法执行......");
}
/**
* @Bean(initMethod = "initUserFactory")
*/
public void initUserFactory(){
System.out.println("initUserFactory方法执行......");
}
@Override
public void afterPropertiesSet() throws Exception {
System.out.println("afterPropertiesSet....初始化了");
}
}
| [
"xs-shuai@qq.com"
] | xs-shuai@qq.com |
f262da59433a1900b9916e75af14c01fdc843ac9 | e81ed832a63207885c6c072e03566fb5da2fbf62 | /src/main/java/classwork/apr18/observer/IObserver.java | 001d3ecd0a9d4a662186d06762f74e4529d4eda0 | [] | no_license | valeriy-leshchuk/hillel | 44d698e8eb9dc382c083f187043919ed3bbbddc1 | 66a93487c732f5231311159a6b71aa2f1cdb5c10 | refs/heads/master | 2023-05-04T04:32:34.604109 | 2019-06-29T13:24:33 | 2019-06-29T13:24:33 | 175,989,992 | 0 | 0 | null | 2023-04-14T17:47:38 | 2019-03-16T15:32:48 | Java | UTF-8 | Java | false | false | 108 | java | package classwork.apr18.observer;
public interface IObserver
{
void react(Event event, Object data);
}
| [
"valeriy.leshchuk@gmail.com"
] | valeriy.leshchuk@gmail.com |
71214f4dacd021a622b1120ea01f831a0a340dd4 | 4abbe25c8ab60d47d6d715f921f4004515a1e36f | /src/com/shopping/foundation/dao/AdvertPositionDAO.java | 5d108aa23cbf22e7fd3b01394a2d5a75f21db7f4 | [] | no_license | tsingning/likejd | cde46b17c19694b06835364ac5720ebbd29f3290 | c5184d8e416bb1c9f5ff0e9e843c1368145168ba | refs/heads/master | 2021-05-09T22:48:05.083383 | 2018-01-25T02:07:49 | 2018-01-25T02:07:49 | 118,762,828 | 0 | 0 | null | 2018-01-24T12:32:12 | 2018-01-24T12:32:11 | null | UTF-8 | Java | false | false | 300 | java | package com.shopping.foundation.dao;
import com.shopping.core.base.GenericDAO;
import com.shopping.foundation.domain.AdvertPosition;
import org.springframework.stereotype.Repository;
@Repository("advertPositionDAO")
public class AdvertPositionDAO extends GenericDAO<AdvertPosition>
{
}
| [
"Sale@SaleComputer"
] | Sale@SaleComputer |
2404c99ed141437aad57cd4d4a72f39b087ae33b | f62b80bf6a8df55c83f035e79639ef279c677d01 | /src/main/java/com/ringcentral/definitions/RcwHistoryListParticipantsParameters.java | 1ad876c458b2089d1b271ff09541d6e710dbdb75 | [] | no_license | ringcentral/ringcentral-java | 2776c83b7ec822b2ac01b8abed6a29e9d288d9da | b0fb081ffa48151d1a9b72517d2a5144a41144a5 | refs/heads/master | 2023-09-01T19:01:31.720178 | 2023-08-21T20:51:29 | 2023-08-21T20:51:29 | 55,440,696 | 17 | 27 | null | 2023-08-21T20:27:22 | 2016-04-04T20:00:47 | Java | UTF-8 | Java | false | false | 1,450 | java | package com.ringcentral.definitions;
/**
* Query parameters for operation rcwHistoryListParticipants
*/
public class RcwHistoryListParticipantsParameters {
/**
* The role of the invitee/participant.
* Enum: Panelist, CoHost, Host, Attendee
*/
public String[] role;
/**
* The original role of the invitee/participant.
* Enum: Panelist, CoHost, Host, Attendee
*/
public String[] originalRole;
/**
* The number of items per page. If provided value in the request
* is greater than a maximum, the maximum value is applied
* Maximum: 1000
* Minimum: 1
* Format: int32
* Example: 100
* Default: 100
*/
public Long perPage;
/**
* The token indicating the particular page of the result set to be retrieved.
* If omitted the first page will be returned.
*/
public String pageToken;
public RcwHistoryListParticipantsParameters role(String[] role) {
this.role = role;
return this;
}
public RcwHistoryListParticipantsParameters originalRole(String[] originalRole) {
this.originalRole = originalRole;
return this;
}
public RcwHistoryListParticipantsParameters perPage(Long perPage) {
this.perPage = perPage;
return this;
}
public RcwHistoryListParticipantsParameters pageToken(String pageToken) {
this.pageToken = pageToken;
return this;
}
}
| [
"tyler4long@gmail.com"
] | tyler4long@gmail.com |
03833c42713b07b6274dcd2e1af9cfa4dc0bb314 | 2d22a88a7a342385c00ed1803631b3dff5e47cc9 | /orange-demo-multi-service-for-app/common/common-core/src/main/java/com/orange/demo/common/core/object/ResponseResult.java | 48c7d63dfeecbeeece4bc2f5bcf2d63725731d3f | [
"Apache-2.0"
] | permissive | sgzwiz/orange-admin | b73bfc881bb37300a6687923a1b1ad2c1f8abe64 | 516cda3d29c52ccf6de8af1427f0b9962ea5d6e1 | refs/heads/master | 2023-01-31T12:05:45.694258 | 2020-12-18T15:01:55 | 2020-12-18T15:01:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,165 | java | package com.orange.demo.common.core.object;
import com.alibaba.fastjson.JSON;
import com.orange.demo.common.core.constant.ErrorCodeEnum;
import com.orange.demo.common.core.util.ContextUtil;
import lombok.Data;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.PrintWriter;
/**
* 接口返回对象
*
* @author Jerry
* @date 2020-08-08
*/
@Data
public class ResponseResult<T> {
/**
* 为了优化性能,所有没有携带数据的正确结果,均可用该对象表示。
*/
private static final ResponseResult<Void> OK = new ResponseResult<>();
/**
* 是否成功标记。
*/
private boolean success = true;
/**
* 错误码。
*/
private String errorCode = "NO-ERROR";
/**
* 错误信息描述。
*/
private String errorMessage = "NO-MESSAGE";
/**
* 实际数据。
*/
private T data = null;
/**
* 根据参数errorCodeEnum的枚举值,判断创建成功对象还是错误对象。
* 如果返回错误对象,errorCode 和 errorMessage 分别取自于参数 errorCodeEnum 的 name() 和 getErrorMessage()。
*
* @param errorCodeEnum 错误码枚举
* @return 返回创建的ResponseResult实例对象
*/
public static ResponseResult<Void> create(ErrorCodeEnum errorCodeEnum) {
return create(errorCodeEnum, errorCodeEnum.getErrorMessage());
}
/**
* 根据参数errorCodeEnum的枚举值,判断创建成功对象还是错误对象。
* 如果返回错误对象,errorCode 和 errorMessage 分别取自于参数 errorCodeEnum 的 name() 和参数 errorMessage。
*
* @param errorCodeEnum 错误码枚举。
* @param errorMessage 如果该参数为null,错误信息取自errorCodeEnum参数内置的errorMessage,否则使用当前参数。
* @return 返回创建的ResponseResult实例对象
*/
public static ResponseResult<Void> create(ErrorCodeEnum errorCodeEnum, String errorMessage) {
errorMessage = errorMessage != null ? errorMessage : errorCodeEnum.getErrorMessage();
return errorCodeEnum == ErrorCodeEnum.NO_ERROR ? success() : error(errorCodeEnum.name(), errorMessage);
}
/**
* 根据参数errorCode是否为空,判断创建成功对象还是错误对象。
* 如果返回错误对象,errorCode 和 errorMessage 分别取自于参数 errorCode 和参数 errorMessage。
*
* @param errorCode 自定义的错误码
* @param errorMessage 自定义的错误信息
* @return 返回创建的ResponseResult实例对象
*/
public static ResponseResult<Void> create(String errorCode, String errorMessage) {
return errorCode == null ? success() : error(errorCode, errorMessage);
}
/**
* 创建成功对象。
* 如果需要绑定返回数据,可以在实例化后调用setDataObject方法。
*
* @return 返回创建的ResponseResult实例对象
*/
public static ResponseResult<Void> success() {
return OK;
}
/**
* 创建带有返回数据的成功对象。
*
* @param data 返回的数据对象
* @return 返回创建的ResponseResult实例对象
*/
public static <T> ResponseResult<T> success(T data) {
ResponseResult<T> resp = new ResponseResult<>();
resp.data = data;
return resp;
}
/**
* 创建错误对象。
* 如果返回错误对象,errorCode 和 errorMessage 分别取自于参数 errorCodeEnum 的 name() 和 getErrorMessage()。
*
* @param errorCodeEnum 错误码枚举
* @return 返回创建的ResponseResult实例对象
*/
public static <T> ResponseResult<T> error(ErrorCodeEnum errorCodeEnum) {
return error(errorCodeEnum.name(), errorCodeEnum.getErrorMessage());
}
/**
* 创建错误对象。
* 如果返回错误对象,errorCode 和 errorMessage 分别取自于参数 errorCodeEnum 的 name() 和参数 errorMessage。
*
* @param errorCodeEnum 错误码枚举
* @param errorMessage 自定义的错误信息
* @return 返回创建的ResponseResult实例对象
*/
public static <T> ResponseResult<T> error(ErrorCodeEnum errorCodeEnum, String errorMessage) {
return error(errorCodeEnum.name(), errorMessage);
}
/**
* 创建错误对象。
* 如果返回错误对象,errorCode 和 errorMessage 分别取自于参数 errorCode 和参数 errorMessage。
*
* @param errorCode 自定义的错误码
* @param errorMessage 自定义的错误信息
* @return 返回创建的ResponseResult实例对象
*/
public static <T> ResponseResult<T> error(String errorCode, String errorMessage) {
return new ResponseResult<>(false, errorCode, errorMessage);
}
/**
* 根据参数的errorCode和errorMessage创建新的错误应答对象。
*
* @param errorCause 导致错误原因的应答对象。
* @return 返回创建的ResponseResult实例对象。
*/
public static <T, E> ResponseResult<T> errorFrom(ResponseResult<E> errorCause) {
return error(errorCause.errorCode, errorCause.getErrorMessage());
}
/**
* 是否成功。
*
* @return true成功,否则false。
*/
public boolean isSuccess() {
return success;
}
/**
* 通过HttpServletResponse直接输出应该信息的工具方法。
*
* @param httpStatus http状态码。
* @param responseResult 应答内容。
* @param <T> 数据对象类型。
* @throws IOException 异常错误。
*/
public static <T> void output(int httpStatus, ResponseResult<T> responseResult) throws IOException {
HttpServletResponse response = ContextUtil.getHttpResponse();
PrintWriter out = response.getWriter();
response.setContentType("application/json; charset=utf-8");
response.setStatus(httpStatus);
if (responseResult != null) {
out.print(JSON.toJSONString(responseResult));
}
out.flush();
}
/**
* 通过HttpServletResponse直接输出应该信息的工具方法。
*
* @param httpStatus http状态码。
* @param <T> 数据对象类型。
* @throws IOException 异常错误。
*/
public static <T> void output(int httpStatus) throws IOException {
output(httpStatus, null);
}
/**
* 通过HttpServletResponse直接输出应该信息的工具方法。Http状态码为200。
*
* @param responseResult 应答内容。
* @param <T> 数据对象类型。
* @throws IOException 异常错误。
*/
public static <T> void output(ResponseResult<T> responseResult) throws IOException {
output(HttpServletResponse.SC_OK, responseResult);
}
private ResponseResult() {
}
private ResponseResult(boolean success, String errorCode, String errorMessage) {
this.success = success;
this.errorCode = errorCode;
this.errorMessage = errorMessage;
}
}
| [
"707344974@qq.com"
] | 707344974@qq.com |
586a7e5fde472fe06cb5cf5dd430b31b281f1272 | bd12c020c908572b8e65092c25a87658b583eee0 | /simple-zuul-service/src/main/java/pers/jz/GatewayApplication.java | aa16bf2ed9fa2db487980102efdef209171a6792 | [] | no_license | jemmyzhang/simple-spring-cloud-sample | 212f84f26d8974e364937d9f1c328bedb232a622 | 1f2d66daa7d4fc375381747a6f1da31f7671fc67 | refs/heads/master | 2021-09-10T12:45:58.139491 | 2018-03-26T13:58:42 | 2018-03-26T13:58:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 468 | java | package pers.jz;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.cloud.client.SpringCloudApplication;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
/**
* @author jemmyzhang on 2018/2/22.
*/
@EnableZuulProxy
@SpringCloudApplication
public class GatewayApplication {
public static void main(String[] args) {
new SpringApplicationBuilder(GatewayApplication.class).web(true).run(args);
}
}
| [
"hzdan360@163.com"
] | hzdan360@163.com |
d5b503618ce563a9eaaef6c36f4f4c35a49cb363 | 72a5ef819dec45fb80925f40363eef6dbdd5a1c9 | /16주차/1753_이가은.java | ba008bc37ae607fffd6164a6feca1c92e116efb8 | [] | no_license | lgaeun/algorithm_study | 50efb2037492755bc259484b61376108f0b56676 | 0c1cdf259623a19b0b3a3d8d8dd1005912c2052a | refs/heads/main | 2023-06-08T18:19:30.866671 | 2021-06-25T07:35:43 | 2021-06-25T07:35:43 | 312,276,963 | 1 | 2 | null | 2021-01-07T08:05:38 | 2020-11-12T12:56:18 | Java | UTF-8 | Java | false | false | 2,653 | java | import java.io.*;
import java.util.*;
class Edge implements Comparable<Edge>{
public int v,w;
public Edge(int v, int w) {
this.v = v;
this.w = w;
}
@Override
public int compareTo(Edge o) {
return w - o.w;
}
}
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder("");
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int e = Integer.parseInt(st.nextToken());
int start = Integer.parseInt(br.readLine());
int[] dist = new int[n+1];
Arrays.fill(dist, 99999999); // INF로 초기화
ArrayList<Edge>[] graph = new ArrayList[n+1];
for (int i = 1; i <= n; i++) graph[i] = new ArrayList<Edge>();
String line = ""; // 구글링한 bufferedReader EOF 코드,??? 근데 이렇게 하면 입력시 마지막줄 공백을 줘야 동작함
// while(( line = br.readLine() ) != null) {
// st = new StringTokenizer(line);
// int u = Integer.parseInt(st.nextToken());
// int v = Integer.parseInt(st.nextToken());
// int w = Integer.parseInt(st.nextToken());
// graph[u].add(new Edge(v,w));
// }
for(int i = 0; i < e; i++) {
st = new StringTokenizer(br.readLine());
int u = Integer.parseInt(st.nextToken());
int v = Integer.parseInt(st.nextToken());
int w = Integer.parseInt(st.nextToken());
graph[u].add(new Edge(v,w));
}
PriorityQueue<Edge> pq = new PriorityQueue<>();
dist[start] = 0; //시작점-시작점 거리는 0
pq.offer(new Edge(start, 0));
while(!pq.isEmpty()) {
Edge cur = pq.poll();
for(Edge next: graph[cur.v]) {
if(dist[next.v] > dist[cur.v] + next.w) {
dist[next.v] = dist[cur.v] + next.w;
pq.add(new Edge(next.v, dist[next.v]));
}
}
}
for(int i = 1; i <= n; i++) {
if(dist[i] != 99999999)
sb.append(dist[i]+"\n");
else sb.append("INF"+"\n");
}
System.out.println(sb);
}
}
/* 틀렸습니다 원인
1. input 문제 - 32줄: StringTokenzier로 EOF(end of line) 할 수 업음
해결 1) BufferedReader: 빈 string을 만들어 br.readline 이 null인지 체크.(br은 더 이상 읽을 게 없으면 null을 반환)
해결 2) for 문 e 수 만큼 돌리기
2. visit[]배열 사용할 필요 없음: 55번째 줄에서 거리가 최소보다 큰 것(이미 지나온 경우)은 걸러지기 때문
3. 우선순위 큐에서 Integer.MAX_VALUE를 쓰면 시간 초과가 날 수 있기 때문에, 대신 충분히 큰 수를 사용할 것
4. output 형식 - 57줄: INF뒤에 줄바꿈을 추가할 것
*/
| [
"noreply@github.com"
] | noreply@github.com |
175599b49f146a56cfdcbb2123db5ea0ec623f6d | 9b6e669381193a97728001e9de0ccdc15ff4d892 | /app/src/main/java/com/yksj/consultation/adapter/NewsPlaceAdapter.java | d459464c834d5757b91e941a0b2f7ba6cda4157b | [] | no_license | 13525846841/ConSonP | 94d0e14a67a0930ac65aacfae668ab6820287650 | 2a469de7b0e8c7547cbff23b88e0e036683a3bc6 | refs/heads/master | 2020-05-22T07:26:40.576191 | 2019-06-05T09:56:35 | 2019-06-05T09:56:35 | 186,260,855 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,334 | java | package com.yksj.consultation.adapter;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
import com.yksj.consultation.son.R;
import org.json.JSONObject;
import java.util.ArrayList;
import java.util.List;
/**
* Created by ${chen} on 2016/12/20.
*/
public class NewsPlaceAdapter extends BaseAdapter {
private LayoutInflater mInflater;//得到一个LayoutInfalter对象用来导入布局
private Context context;
private List<JSONObject> mlist = new ArrayList<JSONObject>();
public NewsPlaceAdapter(List<JSONObject> list, Context context) {
this.mlist = list;
this.context = context;
this.mInflater = LayoutInflater.from(context);
}
@Override
public int getCount() {
return mlist.size();
}
@Override
public Object getItem(int position) {
return mlist.get(position);
}
@Override
public long getItemId(int position) {
return 0;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.item_popup, null);
holder = new ViewHolder();
holder.name = (TextView) convertView.findViewById(R.id.popup_text);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
if ("null".equals(mlist.get(position).optString("INFO_CLASS_NAME"))) {
holder.name.setText("");
} else {
holder.name.setText(mlist.get(position).optString("INFO_CLASS_NAME"));
}
return convertView;
}
public String getName(int position){
return mlist.get(position).optString("INFO_CLASS_NAME");
}
public String getClass_id(int position){
return mlist.get(position).optString("INFO_CLASS_ID");
}
/**
* 控件
*/
public final class ViewHolder {
public TextView name;
}
public void onBoundData(List<JSONObject> datas) {
if (mlist != null) {
mlist.clear();
mlist.addAll(datas);
notifyDataSetChanged();
}
}
}
| [
"2965378806"
] | 2965378806 |
6a0febbdb656f4d0e43ff87f06933a21034bfe96 | 4381e4f433a4adf2a08552de892d1d87a66a04d0 | /rts-manager/rts-manager-pojo/src/main/java/cn/ylx/pojo/TbOrder.java | 613b62fc7c2c3f349c033cfb03a42c9fc4c9c9e5 | [] | no_license | storm9527/rts_ylx | 880b3ea48bbb2c203b2888689209695b05c4d977 | c1247d766bf49fb32f1897d701e37cc1c9b48555 | refs/heads/master | 2021-09-15T12:57:12.111637 | 2018-06-02T08:06:11 | 2018-06-02T08:06:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,597 | java | package cn.ylx.pojo;
import java.io.Serializable;
import java.util.Date;
public class TbOrder implements Serializable{
private String orderId;
private String payment;
private Integer paymentType;
private String postFee;
private Integer status;
private Date createTime;
private Date updateTime;
private Date paymentTime;
private Date consignTime;
private Date endTime;
private Date closeTime;
private String shippingName;
private String shippingCode;
private Long userId;
private String buyerMessage;
private String buyerNick;
private Integer buyerRate;
public String getOrderId() {
return orderId;
}
public void setOrderId(String orderId) {
this.orderId = orderId == null ? null : orderId.trim();
}
public String getPayment() {
return payment;
}
public void setPayment(String payment) {
this.payment = payment == null ? null : payment.trim();
}
public Integer getPaymentType() {
return paymentType;
}
public void setPaymentType(Integer paymentType) {
this.paymentType = paymentType;
}
public String getPostFee() {
return postFee;
}
public void setPostFee(String postFee) {
this.postFee = postFee == null ? null : postFee.trim();
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public Date getPaymentTime() {
return paymentTime;
}
public void setPaymentTime(Date paymentTime) {
this.paymentTime = paymentTime;
}
public Date getConsignTime() {
return consignTime;
}
public void setConsignTime(Date consignTime) {
this.consignTime = consignTime;
}
public Date getEndTime() {
return endTime;
}
public void setEndTime(Date endTime) {
this.endTime = endTime;
}
public Date getCloseTime() {
return closeTime;
}
public void setCloseTime(Date closeTime) {
this.closeTime = closeTime;
}
public String getShippingName() {
return shippingName;
}
public void setShippingName(String shippingName) {
this.shippingName = shippingName == null ? null : shippingName.trim();
}
public String getShippingCode() {
return shippingCode;
}
public void setShippingCode(String shippingCode) {
this.shippingCode = shippingCode == null ? null : shippingCode.trim();
}
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public String getBuyerMessage() {
return buyerMessage;
}
public void setBuyerMessage(String buyerMessage) {
this.buyerMessage = buyerMessage == null ? null : buyerMessage.trim();
}
public String getBuyerNick() {
return buyerNick;
}
public void setBuyerNick(String buyerNick) {
this.buyerNick = buyerNick == null ? null : buyerNick.trim();
}
public Integer getBuyerRate() {
return buyerRate;
}
public void setBuyerRate(Integer buyerRate) {
this.buyerRate = buyerRate;
}
} | [
"yanglingxiao_qd@caxins.com"
] | yanglingxiao_qd@caxins.com |
d056887e241d694b8efa757b54feaa0fb7b7e4c5 | 947e2d199cdd0adb5f34befb17e639c9e0cc8867 | /按键流程分析/WindowManagerPolicy.java | ba8dbf457152a7970f05b678595fe25df1c93085 | [] | no_license | qfkongyan/AndroidFramework | 9b11a9d273c820d2db23cc8fa158e38d554e40da | 3cd1c042b13f0048b8bd59ae8092cc6f81a94738 | refs/heads/master | 2022-12-14T07:22:39.986361 | 2020-09-14T13:37:05 | 2020-09-14T13:37:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 48,292 | java | /*
* Copyright (C) 2006 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 android.view;
import android.content.Context;
import android.content.res.CompatibilityInfo;
import android.content.res.Configuration;
import android.graphics.Rect;
import android.graphics.RectF;
import android.os.Bundle;
import android.os.IBinder;
import android.os.Looper;
import android.view.animation.Animation;
import java.io.PrintWriter;
/**
* This interface supplies all UI-specific behavior of the window manager. An
* instance of it is created by the window manager when it starts up, and allows
* customization of window layering, special window types, key dispatching, and
* layout.
*
* <p>Because this provides deep interaction with the system window manager,
* specific methods on this interface can be called from a variety of contexts
* with various restrictions on what they can do. These are encoded through
* a suffixes at the end of a method encoding the thread the method is called
* from and any locks that are held when it is being called; if no suffix
* is attached to a method, then it is not called with any locks and may be
* called from the main window manager thread or another thread calling into
* the window manager.
*
* <p>The current suffixes are:
*
* <dl>
* <dt> Ti <dd> Called from the input thread. This is the thread that
* collects pending input events and dispatches them to the appropriate window.
* It may block waiting for events to be processed, so that the input stream is
* properly serialized.
* <dt> Tq <dd> Called from the low-level input queue thread. This is the
* thread that reads events out of the raw input devices and places them
* into the global input queue that is read by the <var>Ti</var> thread.
* This thread should not block for a long period of time on anything but the
* key driver.
* <dt> Lw <dd> Called with the main window manager lock held. Because the
* window manager is a very low-level system service, there are few other
* system services you can call with this lock held. It is explicitly okay to
* make calls into the package manager and power manager; it is explicitly not
* okay to make calls into the activity manager or most other services. Note that
* {@link android.content.Context#checkPermission(String, int, int)} and
* variations require calling into the activity manager.
* <dt> Li <dd> Called with the input thread lock held. This lock can be
* acquired by the window manager while it holds the window lock, so this is
* even more restrictive than <var>Lw</var>.
* </dl>
*
* @hide
*/
public interface WindowManagerPolicy {
// Policy flags. These flags are also defined in frameworks/base/include/ui/Input.h.
public final static int FLAG_WAKE = 0x00000001;
public final static int FLAG_WAKE_DROPPED = 0x00000002;
public final static int FLAG_SHIFT = 0x00000004;
public final static int FLAG_CAPS_LOCK = 0x00000008;
public final static int FLAG_ALT = 0x00000010;
public final static int FLAG_ALT_GR = 0x00000020;
public final static int FLAG_MENU = 0x00000040;
public final static int FLAG_LAUNCHER = 0x00000080;
public final static int FLAG_VIRTUAL = 0x00000100;
public final static int FLAG_INJECTED = 0x01000000;
public final static int FLAG_TRUSTED = 0x02000000;
public final static int FLAG_FILTERED = 0x04000000;
public final static int FLAG_DISABLE_KEY_REPEAT = 0x08000000;
public final static int FLAG_WOKE_HERE = 0x10000000;
public final static int FLAG_BRIGHT_HERE = 0x20000000;
public final static int FLAG_PASS_TO_USER = 0x40000000;
// Flags used for indicating whether the internal and/or external input devices
// of some type are available.
public final static int PRESENCE_INTERNAL = 1 << 0;
public final static int PRESENCE_EXTERNAL = 1 << 1;
public final static boolean WATCH_POINTER = false;
/**
* Sticky broadcast of the current HDMI plugged state.
*/
public final static String ACTION_HDMI_PLUGGED = "android.intent.action.HDMI_PLUGGED";
/**
* Extra in {@link #ACTION_HDMI_PLUGGED} indicating the state: true if
* plugged in to HDMI, false if not.
*/
public final static String EXTRA_HDMI_PLUGGED_STATE = "state";
/**
* Sticky broadcast of the current HDMI hw plugged state.
*/
public final static String ACTION_HDMI_HW_PLUGGED = "android.intent.action.HDMI_HW_PLUGGED";
/**
* Extra in {@link #ACTION_HDMI_HW_PLUGGED} indicating the state: true if
* plugged in to HDMI hw, false if not.
*/
public final static String EXTRA_HDMI_HW_PLUGGED_STATE = "state";
/**
* broadcast of the current HDMI output mode changed.
*/
public final static String ACTION_HDMI_MODE_CHANGED = "android.intent.action.HDMI_MODE_CHANGED";
/**
* Extra in {@link #ACTION_HDMI_MODE_CHANGED} indicating the mode:
*/
public final static String EXTRA_HDMI_MODE = "mode";
/**
* Pass this event to the user / app. To be returned from
* {@link #interceptKeyBeforeQueueing}.
*/
public final static int ACTION_PASS_TO_USER = 0x00000001;
/**
* This key event should wake the device.
* To be returned from {@link #interceptKeyBeforeQueueing}.
* Do not return this and {@link #ACTION_GO_TO_SLEEP} or {@link #ACTION_PASS_TO_USER}.
*/
public final static int ACTION_WAKE_UP = 0x00000002;
/**
* This key event should put the device to sleep (and engage keyguard if necessary)
* To be returned from {@link #interceptKeyBeforeQueueing}.
* Do not return this and {@link #ACTION_WAKE_UP} or {@link #ACTION_PASS_TO_USER}.
*/
public final static int ACTION_GO_TO_SLEEP = 0x00000004;
/**
* Interface to the Window Manager state associated with a particular
* window. You can hold on to an instance of this interface from the call
* to prepareAddWindow() until removeWindow().
*/
public interface WindowState {
/**
* Return the uid of the app that owns this window.
*/
int getOwningUid();
/**
* Return the package name of the app that owns this window.
*/
String getOwningPackage();
/**
* Perform standard frame computation. The result can be obtained with
* getFrame() if so desired. Must be called with the window manager
* lock held.
*
* @param parentFrame The frame of the parent container this window
* is in, used for computing its basic position.
* @param displayFrame The frame of the overall display in which this
* window can appear, used for constraining the overall dimensions
* of the window.
* @param overlayFrame The frame within the display that is inside
* of the overlay region.
* @param contentFrame The frame within the display in which we would
* like active content to appear. This will cause windows behind to
* be resized to match the given content frame.
* @param visibleFrame The frame within the display that the window
* is actually visible, used for computing its visible insets to be
* given to windows behind.
* This can be used as a hint for scrolling (avoiding resizing)
* the window to make certain that parts of its content
* are visible.
* @param decorFrame The decor frame specified by policy specific to this window,
* to use for proper cropping during animation.
*/
public void computeFrameLw(Rect parentFrame, Rect displayFrame,
Rect overlayFrame, Rect contentFrame, Rect visibleFrame, Rect decorFrame);
/**
* Retrieve the current frame of the window that has been assigned by
* the window manager. Must be called with the window manager lock held.
*
* @return Rect The rectangle holding the window frame.
*/
public Rect getFrameLw();
/**
* Retrieve the current frame of the window that is actually shown.
* Must be called with the window manager lock held.
*
* @return Rect The rectangle holding the shown window frame.
*/
public RectF getShownFrameLw();
/**
* Retrieve the frame of the display that this window was last
* laid out in. Must be called with the
* window manager lock held.
*
* @return Rect The rectangle holding the display frame.
*/
public Rect getDisplayFrameLw();
/**
* Retrieve the frame of the area inside the overscan region of the
* display that this window was last laid out in. Must be called with the
* window manager lock held.
*
* @return Rect The rectangle holding the display overscan frame.
*/
public Rect getOverscanFrameLw();
/**
* Retrieve the frame of the content area that this window was last
* laid out in. This is the area in which the content of the window
* should be placed. It will be smaller than the display frame to
* account for screen decorations such as a status bar or soft
* keyboard. Must be called with the
* window manager lock held.
*
* @return Rect The rectangle holding the content frame.
*/
public Rect getContentFrameLw();
/**
* Retrieve the frame of the visible area that this window was last
* laid out in. This is the area of the screen in which the window
* will actually be fully visible. It will be smaller than the
* content frame to account for transient UI elements blocking it
* such as an input method's candidates UI. Must be called with the
* window manager lock held.
*
* @return Rect The rectangle holding the visible frame.
*/
public Rect getVisibleFrameLw();
/**
* Returns true if this window is waiting to receive its given
* internal insets from the client app, and so should not impact the
* layout of other windows.
*/
public boolean getGivenInsetsPendingLw();
/**
* Retrieve the insets given by this window's client for the content
* area of windows behind it. Must be called with the
* window manager lock held.
*
* @return Rect The left, top, right, and bottom insets, relative
* to the window's frame, of the actual contents.
*/
public Rect getGivenContentInsetsLw();
/**
* Retrieve the insets given by this window's client for the visible
* area of windows behind it. Must be called with the
* window manager lock held.
*
* @return Rect The left, top, right, and bottom insets, relative
* to the window's frame, of the actual visible area.
*/
public Rect getGivenVisibleInsetsLw();
/**
* Retrieve the current LayoutParams of the window.
*
* @return WindowManager.LayoutParams The window's internal LayoutParams
* instance.
*/
public WindowManager.LayoutParams getAttrs();
/**
* Return whether this window needs the menu key shown. Must be called
* with window lock held, because it may need to traverse down through
* window list to determine the result.
* @param bottom The bottom-most window to consider when determining this.
*/
public boolean getNeedsMenuLw(WindowState bottom);
/**
* Retrieve the current system UI visibility flags associated with
* this window.
*/
public int getSystemUiVisibility();
/**
* Get the layer at which this window's surface will be Z-ordered.
*/
public int getSurfaceLayer();
/**
* Return the token for the application (actually activity) that owns
* this window. May return null for system windows.
*
* @return An IApplicationToken identifying the owning activity.
*/
public IApplicationToken getAppToken();
/**
* Return true if, at any point, the application token associated with
* this window has actually displayed any windows. This is most useful
* with the "starting up" window to determine if any windows were
* displayed when it is closed.
*
* @return Returns true if one or more windows have been displayed,
* else false.
*/
public boolean hasAppShownWindows();
/**
* Is this window visible? It is not visible if there is no
* surface, or we are in the process of running an exit animation
* that will remove the surface.
*/
boolean isVisibleLw();
/**
* Like {@link #isVisibleLw}, but also counts a window that is currently
* "hidden" behind the keyguard as visible. This allows us to apply
* things like window flags that impact the keyguard.
*/
boolean isVisibleOrBehindKeyguardLw();
/**
* Is this window currently visible to the user on-screen? It is
* displayed either if it is visible or it is currently running an
* animation before no longer being visible. Must be called with the
* window manager lock held.
*/
boolean isDisplayedLw();
/**
* Return true if this window (or a window it is attached to, but not
* considering its app token) is currently animating.
*/
public boolean isAnimatingLw();
/**
* Is this window considered to be gone for purposes of layout?
*/
boolean isGoneForLayoutLw();
/**
* Returns true if this window has been shown on screen at some time in
* the past. Must be called with the window manager lock held.
*/
public boolean hasDrawnLw();
/**
* Can be called by the policy to force a window to be hidden,
* regardless of whether the client or window manager would like
* it shown. Must be called with the window manager lock held.
* Returns true if {@link #showLw} was last called for the window.
*/
public boolean hideLw(boolean doAnimation);
/**
* Can be called to undo the effect of {@link #hideLw}, allowing a
* window to be shown as long as the window manager and client would
* also like it to be shown. Must be called with the window manager
* lock held.
* Returns true if {@link #hideLw} was last called for the window.
*/
public boolean showLw(boolean doAnimation);
/**
* Check whether the process hosting this window is currently alive.
*/
public boolean isAlive();
/**
* Check if window is on {@link Display#DEFAULT_DISPLAY}.
* @return true if window is on default display.
*/
public boolean isDefaultDisplay();
}
/**
* Representation of a "fake window" that the policy has added to the
* window manager to consume events.
*/
public interface FakeWindow {
/**
* Remove the fake window from the window manager.
*/
void dismiss();
}
/**
* Interface for calling back in to the window manager that is private
* between it and the policy.
*/
public interface WindowManagerFuncs {
public static final int LID_ABSENT = -1;
public static final int LID_CLOSED = 0;
public static final int LID_OPEN = 1;
/**
* Ask the window manager to re-evaluate the system UI flags.
*/
public void reevaluateStatusBarVisibility();
/**
* Add a fake window to the window manager. This window sits
* at the top of the other windows and consumes events.
*/
public FakeWindow addFakeWindow(Looper looper,
InputEventReceiver.Factory inputEventReceiverFactory,
String name, int windowType, int layoutParamsFlags, int layoutParamsPrivateFlags,
boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen);
/**
* Returns a code that describes the current state of the lid switch.
*/
public int getLidState();
/**
* Switch the keyboard layout for the given device.
* Direction should be +1 or -1 to go to the next or previous keyboard layout.
*/
public void switchKeyboardLayout(int deviceId, int direction);
public void shutdown(boolean confirm);
public void rebootSafeMode(boolean confirm);
/**
* Return the window manager lock needed to correctly call "Lw" methods.
*/
public Object getWindowManagerLock();
/** Register a system listener for touch events */
void registerPointerEventListener(PointerEventListener listener);
/** Unregister a system listener for touch events */
void unregisterPointerEventListener(PointerEventListener listener);
public boolean isShutdownDialogShow();
public boolean isShutdownProcessDialogShow();
public boolean isReboot();
}
public interface PointerEventListener {
/**
* 1. onPointerEvent will be called on the service.UiThread.
* 2. motionEvent will be recycled after onPointerEvent returns so if it is needed later a
* copy() must be made and the copy must be recycled.
**/
public void onPointerEvent(MotionEvent motionEvent);
}
/** Window has been added to the screen. */
public static final int TRANSIT_ENTER = 1;
/** Window has been removed from the screen. */
public static final int TRANSIT_EXIT = 2;
/** Window has been made visible. */
public static final int TRANSIT_SHOW = 3;
/** Window has been made invisible.
* TODO: Consider removal as this is unused. */
public static final int TRANSIT_HIDE = 4;
/** The "application starting" preview window is no longer needed, and will
* animate away to show the real window. */
public static final int TRANSIT_PREVIEW_DONE = 5;
// NOTE: screen off reasons are in order of significance, with more
// important ones lower than less important ones.
/** Screen turned off because of a device admin */
public final int OFF_BECAUSE_OF_ADMIN = 1;
/** Screen turned off because of power button */
public final int OFF_BECAUSE_OF_USER = 2;
/** Screen turned off because of timeout */
public final int OFF_BECAUSE_OF_TIMEOUT = 3;
/** Screen turned off because of proximity sensor */
public final int OFF_BECAUSE_OF_PROX_SENSOR = 4;
/** When not otherwise specified by the activity's screenOrientation, rotation should be
* determined by the system (that is, using sensors). */
public final int USER_ROTATION_FREE = 0;
/** When not otherwise specified by the activity's screenOrientation, rotation is set by
* the user. */
public final int USER_ROTATION_LOCKED = 1;
/**
* Perform initialization of the policy.
*
* @param context The system context we are running in.
*/
public void init(Context context, IWindowManager windowManager,
WindowManagerFuncs windowManagerFuncs);
/**
* @return true if com.android.internal.R.bool#config_forceDefaultOrientation is true.
*/
public boolean isDefaultOrientationForced();
/**
* Called by window manager once it has the initial, default native
* display dimensions.
*/
public void setInitialDisplaySize(Display display, int width, int height, int density);
/**
* Called by window manager to set the overscan region that should be used for the
* given display.
*/
public void setDisplayOverscan(Display display, int left, int top, int right, int bottom);
/**
* Check permissions when adding a window.
*
* @param attrs The window's LayoutParams.
* @param outAppOp First element will be filled with the app op corresponding to
* this window, or OP_NONE.
*
* @return {@link WindowManagerGlobal#ADD_OKAY} if the add can proceed;
* else an error code, usually
* {@link WindowManagerGlobal#ADD_PERMISSION_DENIED}, to abort the add.
*/
public int checkAddPermission(WindowManager.LayoutParams attrs, int[] outAppOp);
/**
* Check permissions when adding a window.
*
* @param attrs The window's LayoutParams.
*
* @return True if the window may only be shown to the current user, false if the window can
* be shown on all users' windows.
*/
public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs);
/**
* Sanitize the layout parameters coming from a client. Allows the policy
* to do things like ensure that windows of a specific type can't take
* input focus.
*
* @param attrs The window layout parameters to be modified. These values
* are modified in-place.
*/
public void adjustWindowParamsLw(WindowManager.LayoutParams attrs);
/**
* After the window manager has computed the current configuration based
* on its knowledge of the display and input devices, it gives the policy
* a chance to adjust the information contained in it. If you want to
* leave it as-is, simply do nothing.
*
* <p>This method may be called by any thread in the window manager, but
* no internal locks in the window manager will be held.
*
* @param config The Configuration being computed, for you to change as
* desired.
* @param keyboardPresence Flags that indicate whether internal or external
* keyboards are present.
* @param navigationPresence Flags that indicate whether internal or external
* navigation devices are present.
*/
public void adjustConfigurationLw(Configuration config, int keyboardPresence,
int navigationPresence);
/**
* Assign a window type to a layer. Allows you to control how different
* kinds of windows are ordered on-screen.
*
* @param type The type of window being assigned.
*
* @return int An arbitrary integer used to order windows, with lower
* numbers below higher ones.
*/
public int windowTypeToLayerLw(int type);
/**
* Return how to Z-order sub-windows in relation to the window they are
* attached to. Return positive to have them ordered in front, negative for
* behind.
*
* @param type The sub-window type code.
*
* @return int Layer in relation to the attached window, where positive is
* above and negative is below.
*/
public int subWindowTypeToLayerLw(int type);
/**
* Get the highest layer (actually one more than) that the wallpaper is
* allowed to be in.
*/
public int getMaxWallpaperLayer();
/**
* Return the window layer at which windows appear above the normal
* universe (that is no longer impacted by the universe background
* transform).
*/
public int getAboveUniverseLayer();
/**
* Return the display width available after excluding any screen
* decorations that can never be removed. That is, system bar or
* button bar.
*/
public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation);
/**
* Return the display height available after excluding any screen
* decorations that can never be removed. That is, system bar or
* button bar.
*/
public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation);
/**
* Return the available screen width that we should report for the
* configuration. This must be no larger than
* {@link #getNonDecorDisplayWidth(int, int, int)}; it may be smaller than
* that to account for more transient decoration like a status bar.
*/
public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation);
/**
* Return the available screen height that we should report for the
* configuration. This must be no larger than
* {@link #getNonDecorDisplayHeight(int, int, int)}; it may be smaller than
* that to account for more transient decoration like a status bar.
*/
public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation);
/**
* Return whether the given window should forcibly hide everything
* behind it. Typically returns true for the keyguard.
*/
public boolean doesForceHide(WindowState win, WindowManager.LayoutParams attrs);
/**
* Determine if a window that is behind one that is force hiding
* (as determined by {@link #doesForceHide}) should actually be hidden.
* For example, typically returns false for the status bar. Be careful
* to return false for any window that you may hide yourself, since this
* will conflict with what you set.
*/
public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs);
/**
* Called when the system would like to show a UI to indicate that an
* application is starting. You can use this to add a
* APPLICATION_STARTING_TYPE window with the given appToken to the window
* manager (using the normal window manager APIs) that will be shown until
* the application displays its own window. This is called without the
* window manager locked so that you can call back into it.
*
* @param appToken Token of the application being started.
* @param packageName The name of the application package being started.
* @param theme Resource defining the application's overall visual theme.
* @param nonLocalizedLabel The default title label of the application if
* no data is found in the resource.
* @param labelRes The resource ID the application would like to use as its name.
* @param icon The resource ID the application would like to use as its icon.
* @param windowFlags Window layout flags.
*
* @return Optionally you can return the View that was used to create the
* window, for easy removal in removeStartingWindow.
*
* @see #removeStartingWindow
*/
public View addStartingWindow(IBinder appToken, String packageName,
int theme, CompatibilityInfo compatInfo, CharSequence nonLocalizedLabel,
int labelRes, int icon, int logo, int windowFlags);
/**
* Called when the first window of an application has been displayed, while
* {@link #addStartingWindow} has created a temporary initial window for
* that application. You should at this point remove the window from the
* window manager. This is called without the window manager locked so
* that you can call back into it.
*
* <p>Note: due to the nature of these functions not being called with the
* window manager locked, you must be prepared for this function to be
* called multiple times and/or an initial time with a null View window
* even if you previously returned one.
*
* @param appToken Token of the application that has started.
* @param window Window View that was returned by createStartingWindow.
*
* @see #addStartingWindow
*/
public void removeStartingWindow(IBinder appToken, View window);
/**
* Prepare for a window being added to the window manager. You can throw an
* exception here to prevent the window being added, or do whatever setup
* you need to keep track of the window.
*
* @param win The window being added.
* @param attrs The window's LayoutParams.
*
* @return {@link WindowManagerGlobal#ADD_OKAY} if the add can proceed, else an
* error code to abort the add.
*/
public int prepareAddWindowLw(WindowState win,
WindowManager.LayoutParams attrs);
/**
* Called when a window is being removed from a window manager. Must not
* throw an exception -- clean up as much as possible.
*
* @param win The window being removed.
*/
public void removeWindowLw(WindowState win);
/**
* Control the animation to run when a window's state changes. Return a
* non-0 number to force the animation to a specific resource ID, or 0
* to use the default animation.
*
* @param win The window that is changing.
* @param transit What is happening to the window: {@link #TRANSIT_ENTER},
* {@link #TRANSIT_EXIT}, {@link #TRANSIT_SHOW}, or
* {@link #TRANSIT_HIDE}.
*
* @return Resource ID of the actual animation to use, or 0 for none.
*/
public int selectAnimationLw(WindowState win, int transit);
/**
* Determine the animation to run for a rotation transition based on the
* top fullscreen windows {@link WindowManager.LayoutParams#rotationAnimation}
* and whether it is currently fullscreen and frontmost.
*
* @param anim The exiting animation resource id is stored in anim[0], the
* entering animation resource id is stored in anim[1].
*/
public void selectRotationAnimationLw(int anim[]);
/**
* Validate whether the current top fullscreen has specified the same
* {@link WindowManager.LayoutParams#rotationAnimation} value as that
* being passed in from the previous top fullscreen window.
*
* @param exitAnimId exiting resource id from the previous window.
* @param enterAnimId entering resource id from the previous window.
* @param forceDefault For rotation animations only, if true ignore the
* animation values and just return false.
* @return true if the previous values are still valid, false if they
* should be replaced with the default.
*/
public boolean validateRotationAnimationLw(int exitAnimId, int enterAnimId,
boolean forceDefault);
/**
* Create and return an animation to re-display a force hidden window.
*/
public Animation createForceHideEnterAnimation(boolean onWallpaper);
/**
* Called from the input reader thread before a key is enqueued.
*
* <p>There are some actions that need to be handled here because they
* affect the power state of the device, for example, the power keys.
* Generally, it's best to keep as little as possible in the queue thread
* because it's the most fragile.
* @param event The key event.
* @param policyFlags The policy flags associated with the key.
* @param isScreenOn True if the screen is already on
*
* @return The bitwise or of the {@link #ACTION_PASS_TO_USER},
* {@link #ACTION_WAKE_UP} and {@link #ACTION_GO_TO_SLEEP} flags.
*/
public int interceptKeyBeforeQueueing(KeyEvent event, int policyFlags, boolean isScreenOn);
/**
* Called from the input reader thread before a motion is enqueued when the screen is off.
*
* <p>There are some actions that need to be handled here because they
* affect the power state of the device, for example, waking on motions.
* Generally, it's best to keep as little as possible in the queue thread
* because it's the most fragile.
* @param policyFlags The policy flags associated with the motion.
*
* @return The bitwise or of the {@link #ACTION_PASS_TO_USER},
* {@link #ACTION_WAKE_UP} and {@link #ACTION_GO_TO_SLEEP} flags.
*/
public int interceptMotionBeforeQueueingWhenScreenOff(int policyFlags);
/**
* Called from the input dispatcher thread before a key is dispatched to a window.
*
* <p>Allows you to define
* behavior for keys that can not be overridden by applications.
* This method is called from the input thread, with no locks held.
*
* @param win The window that currently has focus. This is where the key
* event will normally go.
* @param event The key event.
* @param policyFlags The policy flags associated with the key.
* @return 0 if the key should be dispatched immediately, -1 if the key should
* not be dispatched ever, or a positive value indicating the number of
* milliseconds by which the key dispatch should be delayed before trying
* again.
*/
public long interceptKeyBeforeDispatching(WindowState win, KeyEvent event, int policyFlags);
/**
* Called from the input dispatcher thread when an application did not handle
* a key that was dispatched to it.
*
* <p>Allows you to define default global behavior for keys that were not handled
* by applications. This method is called from the input thread, with no locks held.
*
* @param win The window that currently has focus. This is where the key
* event will normally go.
* @param event The key event.
* @param policyFlags The policy flags associated with the key.
* @return Returns an alternate key event to redispatch as a fallback, or null to give up.
* The caller is responsible for recycling the key event.
*/
public KeyEvent dispatchUnhandledKey(WindowState win, KeyEvent event, int policyFlags);
/**
* Called when layout of the windows is about to start.
*
* @param isDefaultDisplay true if window is on {@link Display#DEFAULT_DISPLAY}.
* @param displayWidth The current full width of the screen.
* @param displayHeight The current full height of the screen.
* @param displayRotation The current rotation being applied to the base
* window.
*/
public void beginLayoutLw(boolean isDefaultDisplay, int displayWidth, int displayHeight,
int displayRotation);
/**
* Returns the bottom-most layer of the system decor, above which no policy decor should
* be applied.
*/
public int getSystemDecorLayerLw();
/**
* Return the rectangle of the screen that is available for applications to run in.
* This will be called immediately after {@link #beginLayoutLw}.
*
* @param r The rectangle to be filled with the boundaries available to applications.
*/
public void getContentRectLw(Rect r);
/**
* Called for each window attached to the window manager as layout is
* proceeding. The implementation of this function must take care of
* setting the window's frame, either here or in finishLayout().
*
* @param win The window being positioned.
* @param attrs The LayoutParams of the window.
* @param attached For sub-windows, the window it is attached to; this
* window will already have had layoutWindow() called on it
* so you can use its Rect. Otherwise null.
*/
public void layoutWindowLw(WindowState win,
WindowManager.LayoutParams attrs, WindowState attached);
/**
* Return the insets for the areas covered by system windows. These values
* are computed on the most recent layout, so they are not guaranteed to
* be correct.
*
* @param attrs The LayoutParams of the window.
* @param contentInset The areas covered by system windows, expressed as positive insets
*
*/
public void getContentInsetHintLw(WindowManager.LayoutParams attrs, Rect contentInset);
/**
* Called when layout of the windows is finished. After this function has
* returned, all windows given to layoutWindow() <em>must</em> have had a
* frame assigned.
*/
public void finishLayoutLw();
/** Layout state may have changed (so another layout will be performed) */
static final int FINISH_LAYOUT_REDO_LAYOUT = 0x0001;
/** Configuration state may have changed */
static final int FINISH_LAYOUT_REDO_CONFIG = 0x0002;
/** Wallpaper may need to move */
static final int FINISH_LAYOUT_REDO_WALLPAPER = 0x0004;
/** Need to recompute animations */
static final int FINISH_LAYOUT_REDO_ANIM = 0x0008;
/**
* Called following layout of all windows before each window has policy applied.
*
* @param displayWidth The current full width of the screen.
* @param displayHeight The current full height of the screen.
*/
public void beginPostLayoutPolicyLw(int displayWidth, int displayHeight);
/**
* Called following layout of all window to apply policy to each window.
*
* @param win The window being positioned.
* @param attrs The LayoutParams of the window.
*/
public void applyPostLayoutPolicyLw(WindowState win,
WindowManager.LayoutParams attrs);
/**
* Called following layout of all windows and after policy has been applied
* to each window. If in this function you do
* something that may have modified the animation state of another window,
* be sure to return non-zero in order to perform another pass through layout.
*
* @return Return any bit set of {@link #FINISH_LAYOUT_REDO_LAYOUT},
* {@link #FINISH_LAYOUT_REDO_CONFIG}, {@link #FINISH_LAYOUT_REDO_WALLPAPER},
* or {@link #FINISH_LAYOUT_REDO_ANIM}.
*/
public int finishPostLayoutPolicyLw();
/**
* Return true if it is okay to perform animations for an app transition
* that is about to occur. You may return false for this if, for example,
* the lock screen is currently displayed so the switch should happen
* immediately.
*/
public boolean allowAppAnimationsLw();
/**
* A new window has been focused.
*/
public int focusChangedLw(WindowState lastFocus, WindowState newFocus);
/**
* Called after the screen turns off.
*
* @param why {@link #OFF_BECAUSE_OF_USER} or
* {@link #OFF_BECAUSE_OF_TIMEOUT}.
*/
public void screenTurnedOff(int why);
public interface ScreenOnListener {
void onScreenOn();
}
/**
* Called when the power manager would like to turn the screen on.
* Must call back on the listener to tell it when the higher-level system
* is ready for the screen to go on (i.e. the lock screen is shown).
*/
public void screenTurningOn(ScreenOnListener screenOnListener);
/**
* Return whether the screen is about to turn on or is currently on.
*/
public boolean isScreenOnEarly();
/**
* Return whether the screen is fully turned on.
*/
public boolean isScreenOnFully();
/**
* Tell the policy that the lid switch has changed state.
* @param whenNanos The time when the change occurred in uptime nanoseconds.
* @param lidOpen True if the lid is now open.
*/
public void notifyLidSwitchChanged(long whenNanos, boolean lidOpen);
/**
* Tell the policy if anyone is requesting that keyguard not come on.
*
* @param enabled Whether keyguard can be on or not. does not actually
* turn it on, unless it was previously disabled with this function.
*
* @see android.app.KeyguardManager.KeyguardLock#disableKeyguard()
* @see android.app.KeyguardManager.KeyguardLock#reenableKeyguard()
*/
@SuppressWarnings("javadoc")
public void enableKeyguard(boolean enabled);
/**
* Callback used by {@link WindowManagerPolicy#exitKeyguardSecurely}
*/
interface OnKeyguardExitResult {
void onKeyguardExitResult(boolean success);
}
/**
* Tell the policy if anyone is requesting the keyguard to exit securely
* (this would be called after the keyguard was disabled)
* @param callback Callback to send the result back.
* @see android.app.KeyguardManager#exitKeyguardSecurely(android.app.KeyguardManager.OnKeyguardExitResult)
*/
@SuppressWarnings("javadoc")
void exitKeyguardSecurely(OnKeyguardExitResult callback);
/**
* isKeyguardLocked
*
* Return whether the keyguard is currently locked.
*
* @return true if in keyguard is locked.
*/
public boolean isKeyguardLocked();
/**
* isKeyguardSecure
*
* Return whether the keyguard requires a password to unlock.
*
* @return true if in keyguard is secure.
*/
public boolean isKeyguardSecure();
/**
* inKeyguardRestrictedKeyInputMode
*
* if keyguard screen is showing or in restricted key input mode (i.e. in
* keyguard password emergency screen). When in such mode, certain keys,
* such as the Home key and the right soft keys, don't work.
*
* @return true if in keyguard restricted input mode.
*/
public boolean inKeyguardRestrictedKeyInputMode();
/**
* Ask the policy to dismiss the keyguard, if it is currently shown.
*/
public void dismissKeyguardLw();
/**
* Given an orientation constant, returns the appropriate surface rotation,
* taking into account sensors, docking mode, rotation lock, and other factors.
*
* @param orientation An orientation constant, such as
* {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LANDSCAPE}.
* @param lastRotation The most recently used rotation.
* @return The surface rotation to use.
*/
public int rotationForOrientationLw(int orientation, int lastRotation);
/**
* Given an orientation constant and a rotation, returns true if the rotation
* has compatible metrics to the requested orientation. For example, if
* the application requested landscape and got seascape, then the rotation
* has compatible metrics; if the application requested portrait and got landscape,
* then the rotation has incompatible metrics; if the application did not specify
* a preference, then anything goes.
*
* @param orientation An orientation constant, such as
* {@link android.content.pm.ActivityInfo#SCREEN_ORIENTATION_LANDSCAPE}.
* @param rotation The rotation to check.
* @return True if the rotation is compatible with the requested orientation.
*/
public boolean rotationHasCompatibleMetricsLw(int orientation, int rotation);
/**
* Called by the window manager when the rotation changes.
*
* @param rotation The new rotation.
*/
public void setRotationLw(int rotation);
/**
* Called when the system is mostly done booting to set whether
* the system should go into safe mode.
*/
public void setSafeMode(boolean safeMode);
/**
* Called when the system is mostly done booting.
*/
public void systemReady();
/**
* Called when the system is done booting to the point where the
* user can start interacting with it.
*/
public void systemBooted();
/**
* Show boot time message to the user.
*/
public void showBootMessage(final CharSequence msg, final boolean always);
/**
* Hide the UI for showing boot messages, never to be displayed again.
*/
public void hideBootMessages();
/**
* Called when userActivity is signalled in the power manager.
* This is safe to call from any thread, with any window manager locks held or not.
*/
public void userActivity();
/**
* Called when we have finished booting and can now display the home
* screen to the user. This will happen after systemReady(), and at
* this point the display is active.
*/
public void enableScreenAfterBoot();
public void setCurrentOrientationLw(int newOrientation);
/**
* Call from application to perform haptic feedback on its window.
*/
public boolean performHapticFeedbackLw(WindowState win, int effectId, boolean always);
/**
* Called when we have started keeping the screen on because a window
* requesting this has become visible.
*/
public void keepScreenOnStartedLw();
/**
* Called when we have stopped keeping the screen on because the last window
* requesting this is no longer visible.
*/
public void keepScreenOnStoppedLw();
/**
* Gets the current user rotation mode.
*
* @return The rotation mode.
*
* @see WindowManagerPolicy#USER_ROTATION_LOCKED
* @see WindowManagerPolicy#USER_ROTATION_FREE
*/
public int getUserRotationMode();
/**
* Inform the policy that the user has chosen a preferred orientation ("rotation lock").
*
* @param mode One of {@link WindowManagerPolicy#USER_ROTATION_LOCKED} or
* {@link WindowManagerPolicy#USER_ROTATION_FREE}.
* @param rotation One of {@link Surface#ROTATION_0}, {@link Surface#ROTATION_90},
* {@link Surface#ROTATION_180}, {@link Surface#ROTATION_270}.
*/
public void setUserRotationMode(int mode, int rotation);
/**
* Called when a new system UI visibility is being reported, allowing
* the policy to adjust what is actually reported.
* @param visibility The raw visiblity reported by the status bar.
* @return The new desired visibility.
*/
public int adjustSystemUiVisibilityLw(int visibility);
/**
* Specifies whether there is an on-screen navigation bar separate from the status bar.
*/
public boolean hasNavigationBar();
/**
* Lock the device now.
*/
public void lockNow(Bundle options);
/**
* Set the last used input method window state. This state is used to make IME transition
* smooth.
* @hide
*/
public void setLastInputMethodWindowLw(WindowState ime, WindowState target);
/**
* Called when the current user changes. Guaranteed to be called before the broadcast
* of the new user id is made to all listeners.
*
* @param newUserId The id of the incoming user.
*/
public void setCurrentUserLw(int newUserId);
/**
* Print the WindowManagerPolicy's state into the given stream.
*
* @param prefix Text to print at the front of each line.
* @param writer The PrintWriter to which you should dump your state. This will be
* closed for you after you return.
* @param args additional arguments to the dump request.
*/
public void dump(String prefix, PrintWriter writer, String[] args);
/**
* Returns whether a given window type can be magnified.
*
* @param windowType The window type.
* @return True if the window can be magnified.
*/
public boolean canMagnifyWindow(int windowType);
/**
* Returns whether a given window type is considered a top level one.
* A top level window does not have a container, i.e. attached window,
* or if it has a container it is laid out as a top-level window, not
* as a child of its container.
*
* @param windowType The window type.
* @return True if the window is a top level one.
*/
public boolean isTopLevelWindow(int windowType);
/**
* Sets the current touch exploration state.
*
* @param enabled Whether touch exploration is enabled.
*/
public void setTouchExplorationEnabled(boolean enabled);
}
| [
"wl5201314_@126.com"
] | wl5201314_@126.com |
ae707f0c7c4fd1308ebf3d0bd8d5d72b6811bfca | a2da1723883d0d17d08f539cb303825a239465f2 | /src/main/java/com/thisarattr/grocery/controllers/CategoryController.java | 482fc034a6a9d9336c03c21b898f9d3afb8fa306 | [] | no_license | thisarattr/grocery | bdc64795cce9bb524ffd1ba59f9a0525a38866df | 3d64aa82408e93443b2784a98adfd50dc44a2dad | refs/heads/master | 2023-01-23T14:43:58.577211 | 2019-06-10T09:49:14 | 2019-06-10T10:26:05 | 191,089,009 | 0 | 0 | null | 2023-01-07T06:14:35 | 2019-06-10T03:19:03 | Java | UTF-8 | Java | false | false | 833 | java | package com.thisarattr.grocery.controllers;
import com.thisarattr.grocery.models.ListCategoryResponse;
import com.thisarattr.grocery.services.CategoryService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
@CrossOrigin(origins = "http://localhost:4200")
public class CategoryController {
@Autowired
private CategoryService categoryService;
@RequestMapping(value = "/categories", method = RequestMethod.GET)
public ListCategoryResponse listItems() {
return new ListCategoryResponse(categoryService.listCategories());
}
}
| [
"thisara.rupasinghe@auspost.com.au"
] | thisara.rupasinghe@auspost.com.au |
65cebdff13b239b3fb2da7e3cacb5c0f8ce1e6a1 | d7fe718f39b8fdd961b93c9a3e390e915edb84f1 | /src/main/java/hu/dpara/webfejl/controller/DeptManagerController.java | 1db4cda5d6d530f95f37130dd75ee66f066f47e8 | [] | no_license | dankozsolti/webfejl | fc7afa11a023287502aa17cb26e91a6bb911624a | 421e796f83719e5fd90d5ed5de14ca2b2277b8ab | refs/heads/main | 2023-01-24T05:30:04.807230 | 2020-12-10T08:10:48 | 2020-12-10T08:10:48 | 317,265,924 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,702 | java | package hu.dpara.webfejl.controller;
import hu.dpara.webfejl.controller.dto.*;
import hu.dpara.webfejl.controller.dto.DeptManagerDto;
import hu.dpara.webfejl.controller.dto.DeptManagerRequestDto;
import hu.dpara.webfejl.dao.entity.DepartmentEntity;
import hu.dpara.webfejl.dao.entity.EmployeeEntity;
import hu.dpara.webfejl.exception.*;
import hu.dpara.webfejl.model.DeptManager;
import hu.dpara.webfejl.model.DeptManager;
import hu.dpara.webfejl.model.DeptManager;
import hu.dpara.webfejl.services.DeptManagerService;
import hu.dpara.webfejl.services.DeptManagerService;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.server.ResponseStatusException;
import javax.validation.Valid;
import java.util.Collection;
import java.util.stream.Collectors;
@Slf4j
@RestController
@RequiredArgsConstructor
@RequestMapping(path = "/dept_manager")
public class DeptManagerController {
private final DeptManagerService service;
@GetMapping("/getAll")
public Collection<DeptManagerDto> listDeptManager() {
return service.getAllDeptManager()
.stream()
.map(model -> DeptManagerDto.builder()
.empNo(model.getEmpNo())
.deptNo(model.getDeptNo())
.fromDate(model.getFromDate())
.toDate(model.getToDate())
.build())
.collect(Collectors.toList());
}
@PostMapping("/create")
public String record(@Valid @RequestBody DeptManagerRequestDto requestDto) {
try {
service.recordDeptManager(new DeptManager(
requestDto.getEmpNo(),
requestDto.getDeptNo(),
requestDto.getFromDate(),
requestDto.getToDate()
));
} catch (DeptManagerAlreadyExistsException | UnknownEmployeeException | UnknownDepartmentException e) {
log.error("Exception: {} handled with message: " + e.getMessage(), e.getClass());
throw new ResponseStatusException(HttpStatus.BAD_REQUEST, e.getMessage());
}
return "DeptManager successfully created";
}
@DeleteMapping("/delete/{empNo}/{deptNo}")
public String deleteDeptManager(@PathVariable("empNo") EmployeeEntity empNo, @PathVariable("deptNo") DepartmentEntity deptNo) {
try {
service.deleteDeptManagerByEmpNoAndDeptNo(empNo, deptNo);
} catch (UnknownDeptManagerException | UnknownEmployeeException | UnknownDepartmentException e) {
log.error("Exception: {} handled with message: " + e.getMessage(), e.getClass());
throw new ResponseStatusException(HttpStatus.BAD_REQUEST, e.getMessage());
}
return "DeptManager successfully deleted";
}
@PutMapping("/update")
public String update(@Valid @RequestBody DeptManagerRequestDto deptManagerRequestDto) {
try{
service.updateDeptManager(new DeptManager(
deptManagerRequestDto.getEmpNo(),
deptManagerRequestDto.getDeptNo(),
deptManagerRequestDto.getFromDate(),
deptManagerRequestDto.getToDate()
));
}catch (UnknownDeptManagerException | UnknownEmployeeException | UnknownDepartmentException e){
log.error("Exception: {} handled with message: "+e.getMessage(),e.getClass());
throw new ResponseStatusException(HttpStatus.BAD_REQUEST,e.getMessage());
}
return "DeptManager successfully updated";
}
}
| [
"dankozsolti@freemail.hu"
] | dankozsolti@freemail.hu |
c4fbb5dd62111c4453ee01a83dfcc002b1955d08 | 11e2fe61172abe50a3ecbd70b334f1ec063abacf | /app/src/test/java/com/example/camilogarcia/calculator/ExampleUnitTest.java | dbd383c33a4000b9c8c4e798da5f8e2774716e5d | [] | no_license | CamiloGarC/Lab7Cosw | b99e2792b42cc83c654dea6ddf9311c8cba188f0 | 2b98bf16689fe3361e71ed564d5f77129caf86d8 | refs/heads/master | 2021-04-09T17:32:18.082495 | 2018-03-17T05:44:23 | 2018-03-17T05:44:23 | 125,600,521 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 413 | java | package com.example.davillarraga.calculator;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
} | [
"camilo.garcia-c@mail.escuelaing.edu.co"
] | camilo.garcia-c@mail.escuelaing.edu.co |
08a8e5c3d32a4c53640952df89075264ce145b9b | fc57fb2b97b550cd5e941151ba1d5667d509d56a | /src/test/java/fr/istic/taa/service/MailServiceIT.java | 9d896f0f7bd497777c672af3b67f3cec2d548459 | [] | no_license | QQQIANQ/TAACorrection2019 | b9bc1d7b321832b0f5f142540e23e70261d5d5d8 | 09763972d376a99a77a697722166aeeddb6f18da | refs/heads/main | 2023-09-03T23:39:10.833371 | 2021-10-07T16:58:57 | 2021-10-07T16:58:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,270 | java | package fr.istic.taa.service;
import static org.assertj.core.api.Assertions.*;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.*;
import fr.istic.taa.IntegrationTest;
import fr.istic.taa.config.Constants;
import fr.istic.taa.domain.User;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.net.URI;
import java.net.URL;
import java.nio.charset.Charset;
import java.util.Properties;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import javax.mail.Multipart;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.ArgumentCaptor;
import org.mockito.Captor;
import org.mockito.MockitoAnnotations;
import org.mockito.Spy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.MessageSource;
import org.springframework.mail.MailSendException;
import org.springframework.mail.javamail.JavaMailSenderImpl;
import org.thymeleaf.spring5.SpringTemplateEngine;
import tech.jhipster.config.JHipsterProperties;
/**
* Integration tests for {@link MailService}.
*/
@IntegrationTest
class MailServiceIT {
private static final String[] languages = {
"fr",
"en",
// jhipster-needle-i18n-language-constant - JHipster will add/remove languages in this array
};
private static final Pattern PATTERN_LOCALE_3 = Pattern.compile("([a-z]{2})-([a-zA-Z]{4})-([a-z]{2})");
private static final Pattern PATTERN_LOCALE_2 = Pattern.compile("([a-z]{2})-([a-z]{2})");
@Autowired
private JHipsterProperties jHipsterProperties;
@Autowired
private MessageSource messageSource;
@Autowired
private SpringTemplateEngine templateEngine;
@Spy
private JavaMailSenderImpl javaMailSender;
@Captor
private ArgumentCaptor<MimeMessage> messageCaptor;
private MailService mailService;
@BeforeEach
public void setup() {
MockitoAnnotations.initMocks(this);
doNothing().when(javaMailSender).send(any(MimeMessage.class));
mailService = new MailService(jHipsterProperties, javaMailSender, messageSource, templateEngine);
}
@Test
void testSendEmail() throws Exception {
mailService.sendEmail("john.doe@example.com", "testSubject", "testContent", false, false);
verify(javaMailSender).send(messageCaptor.capture());
MimeMessage message = messageCaptor.getValue();
assertThat(message.getSubject()).isEqualTo("testSubject");
assertThat(message.getAllRecipients()[0]).hasToString("john.doe@example.com");
assertThat(message.getFrom()[0]).hasToString(jHipsterProperties.getMail().getFrom());
assertThat(message.getContent()).isInstanceOf(String.class);
assertThat(message.getContent()).hasToString("testContent");
assertThat(message.getDataHandler().getContentType()).isEqualTo("text/plain; charset=UTF-8");
}
@Test
void testSendHtmlEmail() throws Exception {
mailService.sendEmail("john.doe@example.com", "testSubject", "testContent", false, true);
verify(javaMailSender).send(messageCaptor.capture());
MimeMessage message = messageCaptor.getValue();
assertThat(message.getSubject()).isEqualTo("testSubject");
assertThat(message.getAllRecipients()[0]).hasToString("john.doe@example.com");
assertThat(message.getFrom()[0]).hasToString(jHipsterProperties.getMail().getFrom());
assertThat(message.getContent()).isInstanceOf(String.class);
assertThat(message.getContent()).hasToString("testContent");
assertThat(message.getDataHandler().getContentType()).isEqualTo("text/html;charset=UTF-8");
}
@Test
void testSendMultipartEmail() throws Exception {
mailService.sendEmail("john.doe@example.com", "testSubject", "testContent", true, false);
verify(javaMailSender).send(messageCaptor.capture());
MimeMessage message = messageCaptor.getValue();
MimeMultipart mp = (MimeMultipart) message.getContent();
MimeBodyPart part = (MimeBodyPart) ((MimeMultipart) mp.getBodyPart(0).getContent()).getBodyPart(0);
ByteArrayOutputStream aos = new ByteArrayOutputStream();
part.writeTo(aos);
assertThat(message.getSubject()).isEqualTo("testSubject");
assertThat(message.getAllRecipients()[0]).hasToString("john.doe@example.com");
assertThat(message.getFrom()[0]).hasToString(jHipsterProperties.getMail().getFrom());
assertThat(message.getContent()).isInstanceOf(Multipart.class);
assertThat(aos).hasToString("\r\ntestContent");
assertThat(part.getDataHandler().getContentType()).isEqualTo("text/plain; charset=UTF-8");
}
@Test
void testSendMultipartHtmlEmail() throws Exception {
mailService.sendEmail("john.doe@example.com", "testSubject", "testContent", true, true);
verify(javaMailSender).send(messageCaptor.capture());
MimeMessage message = messageCaptor.getValue();
MimeMultipart mp = (MimeMultipart) message.getContent();
MimeBodyPart part = (MimeBodyPart) ((MimeMultipart) mp.getBodyPart(0).getContent()).getBodyPart(0);
ByteArrayOutputStream aos = new ByteArrayOutputStream();
part.writeTo(aos);
assertThat(message.getSubject()).isEqualTo("testSubject");
assertThat(message.getAllRecipients()[0]).hasToString("john.doe@example.com");
assertThat(message.getFrom()[0]).hasToString(jHipsterProperties.getMail().getFrom());
assertThat(message.getContent()).isInstanceOf(Multipart.class);
assertThat(aos).hasToString("\r\ntestContent");
assertThat(part.getDataHandler().getContentType()).isEqualTo("text/html;charset=UTF-8");
}
@Test
void testSendEmailFromTemplate() throws Exception {
User user = new User();
user.setLogin("john");
user.setEmail("john.doe@example.com");
user.setLangKey("en");
mailService.sendEmailFromTemplate(user, "mail/testEmail", "email.test.title");
verify(javaMailSender).send(messageCaptor.capture());
MimeMessage message = messageCaptor.getValue();
assertThat(message.getSubject()).isEqualTo("test title");
assertThat(message.getAllRecipients()[0]).hasToString(user.getEmail());
assertThat(message.getFrom()[0]).hasToString(jHipsterProperties.getMail().getFrom());
assertThat(message.getContent().toString()).isEqualToNormalizingNewlines("<html>test title, http://127.0.0.1:8080, john</html>\n");
assertThat(message.getDataHandler().getContentType()).isEqualTo("text/html;charset=UTF-8");
}
@Test
void testSendActivationEmail() throws Exception {
User user = new User();
user.setLangKey(Constants.DEFAULT_LANGUAGE);
user.setLogin("john");
user.setEmail("john.doe@example.com");
mailService.sendActivationEmail(user);
verify(javaMailSender).send(messageCaptor.capture());
MimeMessage message = messageCaptor.getValue();
assertThat(message.getAllRecipients()[0]).hasToString(user.getEmail());
assertThat(message.getFrom()[0]).hasToString(jHipsterProperties.getMail().getFrom());
assertThat(message.getContent().toString()).isNotEmpty();
assertThat(message.getDataHandler().getContentType()).isEqualTo("text/html;charset=UTF-8");
}
@Test
void testCreationEmail() throws Exception {
User user = new User();
user.setLangKey(Constants.DEFAULT_LANGUAGE);
user.setLogin("john");
user.setEmail("john.doe@example.com");
mailService.sendCreationEmail(user);
verify(javaMailSender).send(messageCaptor.capture());
MimeMessage message = messageCaptor.getValue();
assertThat(message.getAllRecipients()[0]).hasToString(user.getEmail());
assertThat(message.getFrom()[0]).hasToString(jHipsterProperties.getMail().getFrom());
assertThat(message.getContent().toString()).isNotEmpty();
assertThat(message.getDataHandler().getContentType()).isEqualTo("text/html;charset=UTF-8");
}
@Test
void testSendPasswordResetMail() throws Exception {
User user = new User();
user.setLangKey(Constants.DEFAULT_LANGUAGE);
user.setLogin("john");
user.setEmail("john.doe@example.com");
mailService.sendPasswordResetMail(user);
verify(javaMailSender).send(messageCaptor.capture());
MimeMessage message = messageCaptor.getValue();
assertThat(message.getAllRecipients()[0]).hasToString(user.getEmail());
assertThat(message.getFrom()[0]).hasToString(jHipsterProperties.getMail().getFrom());
assertThat(message.getContent().toString()).isNotEmpty();
assertThat(message.getDataHandler().getContentType()).isEqualTo("text/html;charset=UTF-8");
}
@Test
void testSendEmailWithException() {
doThrow(MailSendException.class).when(javaMailSender).send(any(MimeMessage.class));
try {
mailService.sendEmail("john.doe@example.com", "testSubject", "testContent", false, false);
} catch (Exception e) {
fail("Exception shouldn't have been thrown");
}
}
@Test
void testSendLocalizedEmailForAllSupportedLanguages() throws Exception {
User user = new User();
user.setLogin("john");
user.setEmail("john.doe@example.com");
for (String langKey : languages) {
user.setLangKey(langKey);
mailService.sendEmailFromTemplate(user, "mail/testEmail", "email.test.title");
verify(javaMailSender, atLeastOnce()).send(messageCaptor.capture());
MimeMessage message = messageCaptor.getValue();
String propertyFilePath = "i18n/messages_" + getJavaLocale(langKey) + ".properties";
URL resource = this.getClass().getClassLoader().getResource(propertyFilePath);
File file = new File(new URI(resource.getFile()).getPath());
Properties properties = new Properties();
properties.load(new InputStreamReader(new FileInputStream(file), Charset.forName("UTF-8")));
String emailTitle = (String) properties.get("email.test.title");
assertThat(message.getSubject()).isEqualTo(emailTitle);
assertThat(message.getContent().toString())
.isEqualToNormalizingNewlines("<html>" + emailTitle + ", http://127.0.0.1:8080, john</html>\n");
}
}
/**
* Convert a lang key to the Java locale.
*/
private String getJavaLocale(String langKey) {
String javaLangKey = langKey;
Matcher matcher2 = PATTERN_LOCALE_2.matcher(langKey);
if (matcher2.matches()) {
javaLangKey = matcher2.group(1) + "_" + matcher2.group(2).toUpperCase();
}
Matcher matcher3 = PATTERN_LOCALE_3.matcher(langKey);
if (matcher3.matches()) {
javaLangKey = matcher3.group(1) + "_" + matcher3.group(2) + "_" + matcher3.group(3).toUpperCase();
}
return javaLangKey;
}
}
| [
"olivieR.barais@gmail.com"
] | olivieR.barais@gmail.com |
8b2599e2bc29ac0f033358a8175b5d1b83cbae35 | 8f78ab591f8c0ae0c19a88b2460bb8b3460993e8 | /src/main/java/com/eshare/visitor/example5/Visitor.java | 3ea8493110b4dd6a1116455e418bba214d875270 | [] | no_license | EvanLeung08/designPattern | ccab257aceddd32ff9d0c68f1309c59ba1de1931 | d72c3b2279b62c5cdfe834f79b2cc9e1645243b0 | refs/heads/master | 2021-09-02T06:31:44.382749 | 2017-12-31T02:41:33 | 2017-12-31T02:41:33 | null | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 435 | java | package com.eshare.visitor.example5;
/**
* 访问组合对象结构的访问者接口
*/
public interface Visitor {
/**
* 访问组合对象,相当于给组合对象添加访问者的功能
* @param composite 组合对象
*/
public void visitComposite(Composite composite);
/**
* 访问叶子对象,相当于给叶子对象添加访问者的功能
* @param leaf 叶子对象
*/
public void visitLeaf(Leaf leaf);
} | [
"10856214@163.com"
] | 10856214@163.com |
c746a9d374c631ccd634e1269067cccf79475551 | c6b2eadc887209d9304b01fd4555c22e16f0c4c4 | /Ch07_proj_04_DiceRoller/src/droll/Die.java | d09b79820c0d7e0083b6c9a0109b089d2f618b7b | [] | no_license | rmaho31/java | 5a454d5ee15d53d33214febe1bd683f63b577b7b | f8212608232a5368f11d82aad84b912475d80643 | refs/heads/master | 2020-03-27T23:52:46.113414 | 2018-10-26T01:30:41 | 2018-10-26T01:30:41 | 147,355,000 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 216 | java | package droll;
public class Die {
private int num1;
public Die() {
this.num1 = 0;
}
public void roll() {
this.num1 = (int) (Math.random() * 6) + 1;
}
public int getValue() {
return this.num1;
}
}
| [
"robert.w.mahoney@gmail.com"
] | robert.w.mahoney@gmail.com |
7046e8d7286d518487f4446d456fdb1c4cc23fc0 | 20ba0e4eae87cb2f08cf3df42a73630027c797ce | /src/main/java/com/languagedetection/LanguageDetection.java | 6232c67866e70528bb3471fafb029dbf4b635244 | [] | no_license | stephensebastin/amazonaurora | b54183fd0fa37dd81e158992e0c3308358d59897 | 3cbbb1fb233740addf9a5315c5945a7c1ff4b4b6 | refs/heads/master | 2020-05-28T01:22:26.783725 | 2018-11-04T08:19:08 | 2018-11-04T08:19:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,299 | java | package com.languagedetection;
import amazonaurora.core.parser.JsoupDomService;
import com.optimaize.langdetect.DetectedLanguage;
import com.optimaize.langdetect.LanguageDetector;
import com.optimaize.langdetect.LanguageDetectorBuilder;
import com.optimaize.langdetect.ngram.NgramExtractors;
import com.optimaize.langdetect.profiles.LanguageProfile;
import com.optimaize.langdetect.profiles.LanguageProfileReader;
import common.aurora.GetTimeStamp;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import java.util.function.Supplier;
public class LanguageDetection {
private static Logger logger = LoggerFactory.getLogger(LanguageDetection.class);
public static String InitiateLang(String bodyText){
logger.info("LanguageDetection.java initializing the constructor");
try {
/*
* Constructor Observable Design Pattern
*/
LanguageDetector langDetect = warmUp();
return coreDetection(bodyText,langDetect);
} catch (IOException e) {
logger.warn(e.getMessage() + "LanguageDetection.java inside LanguageDetection constructor");
logger.warn("Error creating Language Detector with profiles built in ");
}
return "Failed to Perform Language Detection";
}
private static LanguageDetector warmUp() throws IOException {
//Using BuiltIn Profiles to reduce RAM memory
List<LanguageProfile> languageProfiles = new LanguageProfileReader().readAllBuiltIn();
LanguageDetector languageDetector = LanguageDetectorBuilder.create(NgramExtractors.standard())
.withProfiles(languageProfiles)
.build();
return Optional.of(languageDetector).get();
}
/*
* coreDetection - Find the Dominant Language if the home page contains
* more than one language - Example - 80% English - 20% Polish
* return English as the Dominant language
*/
private static String coreDetection(String bodyText,LanguageDetector langDetect) throws IOException {
List<DetectedLanguage> getProbabilityList = langDetect.getProbabilities(bodyText);
Collections.sort(getProbabilityList);
/*
* Extract the Highest Probability Dominant Language - Sort the Collections and return the highest
* Dominant Language of the Webpage
*/
try {
DetectedLanguage detectedDominantLanguage = getProbabilityList.get(getProbabilityList.size() - 1);
double dominantProbability = detectedDominantLanguage.getProbability();
logger.info("Dominant Language Probability is " + dominantProbability + " TimeStamp:: " + GetTimeStamp.getCurrentTimeStamp());
String dominantRawLanguage = detectedDominantLanguage.getLocale().getLanguage();
Language languages = Language.valueOf(dominantRawLanguage);
logger.info("Get the Full Text Language is :: " + languages.getFullTextLanguage());
return languages.getFullTextLanguage();
}catch(Exception ex){
ex.getMessage();
}
return "Not Classified Language";
}
}
| [
"Springboot%%1234"
] | Springboot%%1234 |
21c9313662d836bd02908bc93dee249df7b143ae | f93a0c38c52e5e0b15d924a052d6f589fd2ecb13 | /collect_app/src/androidTest/java/org/cimsbioko/forms/ServerNameIndicationTest.java | a8f1e25bc32af206d29767887a021ae7e59310b5 | [
"Apache-2.0"
] | permissive | cims-bioko/cims-forms | cd79dd91a94bb20962d51b9a73fdd49bd2bc0a5e | 8608d1098acdf8e910be0cd58393eea8cb7335ca | refs/heads/master | 2021-06-24T01:46:00.538703 | 2021-01-21T01:05:27 | 2021-01-21T01:05:27 | 190,272,860 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,702 | java | package org.cimsbioko.forms;
import androidx.test.filters.Suppress;
import androidx.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.cimsbioko.forms.http.CollectServerClient;
import org.cimsbioko.forms.http.HttpGetResult;
import org.cimsbioko.forms.http.OpenRosaHttpInterface;
import org.cimsbioko.forms.utilities.WebCredentialsUtils;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import javax.net.ssl.HttpsURLConnection;
import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.fail;
import static org.cimsbioko.forms.support.CollectHelpers.getAppDependencyComponent;
/**
* An on-device test for TLS server name indication support.
*
* @see <a href="https://github.com/opendatakit/collect/issues/199">COLLECT-199</a>
*/
@Suppress
@RunWith(AndroidJUnit4.class)
public class ServerNameIndicationTest {
private static final String SNI_URI = "https://sni.velox.ch/";
private static final String SUCCESS_SENTINEL = "sent the following TLS server name indication extension";
@Test
public void testThatHttpClientSupportsSNI() throws Exception {
OpenRosaHttpInterface openRosaHttpInterface = getAppDependencyComponent().openRosaHttpInterface();
CollectServerClient serverClient = new CollectServerClient(openRosaHttpInterface, new WebCredentialsUtils());
HttpGetResult inputStreamResult = serverClient.getHttpInputStream(SNI_URI, null);
assertHttpSuccess(inputStreamResult.getStatusCode());
assertPageContent(inputStreamResult.getInputStream());
}
@Test
public void urlConnectionSupportsSNI() throws IOException {
HttpsURLConnection conn = (HttpsURLConnection) new URL(SNI_URI).openConnection();
assertHttpSuccess(conn.getResponseCode());
assertPageContent(conn.getInputStream());
}
/*
* Confirms the request returned HTTP success (200) or fails test.
*/
private void assertHttpSuccess(int statusCode) {
assertEquals(HttpsURLConnection.HTTP_OK, statusCode);
}
/*
* Confirms that the response content contains confirmation that SNI is working.
*/
private void assertPageContent(InputStream contentStream) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(contentStream));
String line;
while ((line = in.readLine()) != null) {
if (line.contains(SUCCESS_SENTINEL)) {
return;
}
}
fail(String.format("did not find sentinel '%s' in response", SUCCESS_SENTINEL));
}
}
| [
"brent.atkinson@gmail.com"
] | brent.atkinson@gmail.com |
9601f3f4b177abdb274d2d839cf57e789c844b94 | 7168c959ca6b8a51baaa6deb46406ea60b38b685 | /src/main/java/com/reactbase/packedobject/PackedDouble.java | 1e5e65b97963cd1f893b35bbab7b7f2fe092b7b0 | [
"Apache-2.0"
] | permissive | alexshvid/react | 5db5afa41a38ac7658fb335b692a2568ccfcf988 | 8cc6f5e223a03196d6bac3507d3bfaa4226d9005 | refs/heads/master | 2021-01-17T23:34:39.135013 | 2013-11-05T19:12:49 | 2013-11-05T19:12:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,424 | java | package com.reactbase.packedobject;
import java.nio.ByteBuffer;
public final class PackedDouble extends PackedObject {
final double defaultValue;
public PackedDouble(long offset) {
this(offset, TypeDefaults.DOUBLE);
}
public PackedDouble(long offset, double defaultValue) {
super(offset);
this.defaultValue = defaultValue;
}
public void format(Object address, long ptr) {
setDouble(address, ptr, defaultValue);
}
public double getDouble(Object address, long ptr) {
if (address instanceof byte[]) {
return getDoubleA((byte[]) address, ptr);
}
else if (address instanceof Long) {
return getDoubleL((Long) address, ptr);
}
else if (address instanceof ByteBuffer) {
return getDoubleB((ByteBuffer) address, ptr);
}
else {
throw new IllegalArgumentException("unknown object " + address);
}
}
public double getDoubleA(byte[] blob, long ptr) {
double value = UnsafeUtil.UNSAFE.getDouble(blob, offset + ptr + UnsafeUtil.byteArrayBaseOffset);
return isLittleEndian ? value : Swapper.swapDouble(value);
}
public double getDoubleL(long address, long ptr) {
double value = UnsafeUtil.UNSAFE.getDouble(address + offset + ptr);
return isLittleEndian ? value : Swapper.swapDouble(value);
}
public double getDoubleB(ByteBuffer bb, long ptr) {
return bb.getDouble((int)(offset + ptr));
}
public void setDouble(Object address, long ptr, double value) {
if (address instanceof byte[]) {
setDoubleA((byte[]) address, ptr, value);
}
else if (address instanceof Long) {
setDoubleL((Long) address, ptr, value);
}
else if (address instanceof ByteBuffer) {
setDoubleB((ByteBuffer) address, ptr, value);
}
else {
throw new IllegalArgumentException("unknown object " + address);
}
}
public void setDoubleA(byte[] blob, long ptr, double value) {
value = isLittleEndian ? value : Swapper.swapDouble(value);
UnsafeUtil.UNSAFE.putDouble(blob, offset + ptr + UnsafeUtil.byteArrayBaseOffset, value);
}
public void setDoubleL(long address, long ptr, double value) {
value = isLittleEndian ? value : Swapper.swapDouble(value);
UnsafeUtil.UNSAFE.putDouble(address + offset + ptr, value);
}
public void setDoubleB(ByteBuffer bb, long ptr, double value) {
bb.putDouble((int)(offset + ptr), value);
}
public int getTypeId() {
return TypeRegistry.DOUBLE_ID;
}
public int sizeOf() {
return TypeSizes.DOUBLE.sizeOf();
}
}
| [
"a@shvid.com"
] | a@shvid.com |
20407afe9189be41189fc916f892719b0bb21184 | fc160694094b89ab09e5c9a0f03db80437eabc93 | /java-vision/samples/snippets/generated/com/google/cloud/vision/v1p4beta1/stub/productsearchstubsettings/createproductset/SyncCreateProductSet.java | 899f90bf2134e0ba19c5a7348772c4de2798f395 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | googleapis/google-cloud-java | 4f4d97a145e0310db142ecbc3340ce3a2a444e5e | 6e23c3a406e19af410a1a1dd0d0487329875040e | refs/heads/main | 2023-09-04T09:09:02.481897 | 2023-08-31T20:45:11 | 2023-08-31T20:45:11 | 26,181,278 | 1,122 | 685 | Apache-2.0 | 2023-09-13T21:21:23 | 2014-11-04T17:57:16 | Java | UTF-8 | Java | false | false | 2,076 | java | /*
* Copyright 2023 Google LLC
*
* 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
*
* https://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.google.cloud.vision.v1p4beta1.stub.samples;
// [START vision_v1p4beta1_generated_ProductSearchStubSettings_CreateProductSet_sync]
import com.google.cloud.vision.v1p4beta1.stub.ProductSearchStubSettings;
import java.time.Duration;
public class SyncCreateProductSet {
public static void main(String[] args) throws Exception {
syncCreateProductSet();
}
public static void syncCreateProductSet() throws Exception {
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
ProductSearchStubSettings.Builder productSearchSettingsBuilder =
ProductSearchStubSettings.newBuilder();
productSearchSettingsBuilder
.createProductSetSettings()
.setRetrySettings(
productSearchSettingsBuilder
.createProductSetSettings()
.getRetrySettings()
.toBuilder()
.setTotalTimeout(Duration.ofSeconds(30))
.build());
ProductSearchStubSettings productSearchSettings = productSearchSettingsBuilder.build();
}
}
// [END vision_v1p4beta1_generated_ProductSearchStubSettings_CreateProductSet_sync]
| [
"noreply@github.com"
] | noreply@github.com |
a5d353a746e31ecfe4bf85c6b41ad3640a74f360 | 6748f41a13574f8e4ccf2e5e3f3e57b4e1a5b0e4 | /src/com/componenthouse/simplistic3d/math/PlaneEquation.java | 56181dfa660fafd415390c9a1b7b0839a78d9b6b | [] | no_license | hvidal/Simplistic3D | 6afebf4c0709d1c6b4b79a94cbb7fd94fdcc0e40 | 3c6d33e2f8177791c83305b1ea29ac20f259de90 | refs/heads/master | 2022-11-07T17:28:34.880226 | 2020-06-29T19:16:55 | 2020-06-29T19:16:55 | 275,506,751 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,559 | java | /*
Copyright (c) 2004 Hugo Vidal Teixeira
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package com.componenthouse.simplistic3d.math;
public class PlaneEquation {
private float a, b, c, d;
public PlaneEquation(Vector3D normal, Vector3D point) {
a = normal.x();
b = normal.y();
c = normal.z();
d = - a * point.x() - b * point.y() - c * point.z();
}
public float distanceTo(Vector3D point) {
float up = a * point.x() + b * point.y() + c * point.z() + d;
float down = (float) Math.sqrt(a*a + b*b + c*c);
return up / down;
}
}
| [
"hugo.tech@gmail.com"
] | hugo.tech@gmail.com |
0e54b4f00882d58af59ffc4e537acd13c3e193ce | ea36b46a3b0e1f5dd5ca4b32db2894d6b7f5a662 | /customerbase/src/main/java/in/myecash/customerbase/CashbackListFragment.java | b7cf8e5982627992b75176552ae28e3a72009b65 | [] | no_license | aditya-gangwar/MyeCash2 | e288f663f0a45a04ed5d351b88b3a196e6022727 | 84e79bd2bb01337c4c2d5e511f4e3cebea61705a | refs/heads/master | 2020-04-05T22:56:41.904453 | 2017-09-06T17:31:56 | 2017-09-06T17:31:56 | 68,152,450 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 20,013 | java | package in.myecash.customerbase;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.EditText;
import android.widget.ImageView;
import java.io.File;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import in.myecash.appbase.BaseFragment;
import in.myecash.appbase.constants.AppConstants;
import in.myecash.common.CommonUtils;
import in.myecash.common.MyGlobalSettings;
import in.myecash.common.constants.CommonConstants;
import in.myecash.common.constants.DbConstants;
import in.myecash.common.constants.ErrorCodes;
import in.myecash.appbase.entities.MyCashback;
import in.myecash.common.MyMerchant;
import in.myecash.appbase.utilities.AppCommonUtil;
import in.myecash.appbase.utilities.DialogFragmentWrapper;
import in.myecash.appbase.utilities.LogMy;
import in.myecash.common.database.Transaction;
import in.myecash.customerbase.helper.MyRetainedFragment;
/**
* Created by adgangwa on 09-09-2016.
*/
public class CashbackListFragment extends BaseFragment {
private static final String TAG = "CustApp-CashbackListFragment";
private static final String DIALOG_MERCHANT_DETAILS = "dialogMerchantDetails";
private static final String DIALOG_SORT_CUST_TYPES = "dialogSortCust";
private static final int REQ_NOTIFY_ERROR = 1;
private static final int REQ_SORT_CUST_TYPES = 2;
private SimpleDateFormat mSdfDateWithTime;
private MyRetainedFragment mRetainedFragment;
private CashbackListFragmentIf mCallback;
public interface CashbackListFragmentIf {
MyRetainedFragment getRetainedFragment();
boolean refreshMchntList();
//void setDrawerState(boolean isEnabled);
}
private RecyclerView mRecyclerView;
private EditText mUpdated;
//private EditText mUpdatedDetail;
private List<MyCashback> mMyCbs;
// instance state - store and restore
private int mSelectedSortType;
@Override
public void onActivityCreated(@Nullable Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
LogMy.d(TAG, "In onActivityCreated");
try {
mCallback = (CashbackListFragmentIf) getActivity();
mRetainedFragment = mCallback.getRetainedFragment();
mSdfDateWithTime = new SimpleDateFormat(CommonConstants.DATE_FORMAT_WITH_TIME, CommonConstants.DATE_LOCALE);
// As the data is in Map - which cant be sorted
// so create a local list from Map in retained fragment
// note - this is not copy, as both list and Map will point to same MyCashback objects
mMyCbs = new ArrayList<>(mRetainedFragment.mCashbacks.values());
int sortType = MyCashback.CB_CMP_TYPE_UPDATE_TIME;
if(savedInstanceState!=null) {
sortType = savedInstanceState.getInt("mSelectedSortType");
}
sortList(sortType);
// update time
//mUpdated.setText(mSdfDateWithTime.format(mRetainedFragment.mCbsUpdateTime));
setHasOptionsMenu(true);
} catch (ClassCastException e) {
throw new ClassCastException(getActivity().toString()
+ " must implement CashbackListFragmentIf");
} catch(Exception e) {
LogMy.e(TAG, "Exception is CashbackListFragment:onActivityCreated", e);
// unexpected exception - show error
DialogFragmentWrapper notDialog = DialogFragmentWrapper.createNotification(AppConstants.generalFailureTitle, AppCommonUtil.getErrorDesc(ErrorCodes.GENERAL_ERROR), true, true);
notDialog.setTargetFragment(this,REQ_NOTIFY_ERROR);
notDialog.show(getFragmentManager(), DialogFragmentWrapper.DIALOG_NOTIFICATION);
getActivity().onBackPressed();
}
}
private void sortList(int sortType) {
if(mMyCbs!=null) {
Collections.sort(mMyCbs, new MyCashback.MyCashbackComparator(sortType));
if (sortType != MyCashback.CB_CMP_TYPE_MCHNT_NAME &&
sortType != MyCashback.CB_CMP_TYPE_MCHNT_CITY) {
// Make it in decreasing order - if not string comparison
Collections.reverse(mMyCbs);
}
// store existing sortType
mSelectedSortType = sortType;
} else {
LogMy.e(TAG,"In sortList: mCashbacks is null");
}
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_merchant_list, container, false);
mRecyclerView = (RecyclerView) view.findViewById(R.id.cust_recycler_view);
mRecyclerView.setLayoutManager(new LinearLayoutManager(getActivity()));
mUpdated = (EditText) view.findViewById(R.id.input_updated_time);
//mUpdatedDetail = (EditText) view.findViewById(R.id.updated_time_details);
return view;
}
private void updateUI() {
if(mMyCbs!=null) {
CbAdapter adapter = (CbAdapter) mRecyclerView.getAdapter();
if(adapter==null) {
LogMy.d(TAG, "Adaptor not set yet");
mRecyclerView.setAdapter(new CbAdapter(mMyCbs));
} else {
adapter.refresh(mMyCbs);
}
// update time
mUpdated.setText(mSdfDateWithTime.format(mRetainedFragment.mCbsUpdateTime));
/*mRecyclerView.removeAllViews();
mRecyclerView.setAdapter(new CbAdapter(mMyCbs));
mRecyclerView.invalidate();
mRecyclerView.getAdapter().notifyDataSetChanged();*/
} else {
LogMy.e(TAG,"In updateUI: mCashbacks is null");
}
}
public void refreshData() {
if(mRetainedFragment.mCashbacks!=null) {
mMyCbs = new ArrayList<>(mRetainedFragment.mCashbacks.values());
for(MyCashback cb:mMyCbs) {
LogMy.d(TAG,"In refreshData: "+cb.getMerchantId()+", "+cb.getClCredit()+", "+cb.getCbCredit());
}
sortList(mSelectedSortType);
updateUI();
} else {
LogMy.e(TAG,"In refreshData: mCashbacks is null");
}
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
LogMy.d(TAG, "In onActivityResult :" + requestCode + ", " + resultCode);
if(resultCode != Activity.RESULT_OK) {
return;
}
try {
if (requestCode == REQ_SORT_CUST_TYPES) {
int sortType = data.getIntExtra(SortMchntDialog.EXTRA_SELECTION, MyCashback.CB_CMP_TYPE_UPDATE_TIME);
sortList(sortType);
updateUI();
}
} catch (Exception e) {
LogMy.e(TAG, "Exception in Fragment: ", e);
DialogFragmentWrapper.createNotification(AppConstants.generalFailureTitle, AppCommonUtil.getErrorDesc(ErrorCodes.GENERAL_ERROR), true, true)
.show(getFragmentManager(), DialogFragmentWrapper.DIALOG_NOTIFICATION);
}
}
@Override
public void onResume() {
super.onResume();
//mCallback.setDrawerState(false);
try {
updateUI();
} catch (Exception e) {
LogMy.e(TAG, "Exception in Fragment: ", e);
DialogFragmentWrapper.createNotification(AppConstants.generalFailureTitle, AppCommonUtil.getErrorDesc(ErrorCodes.GENERAL_ERROR), true, true)
.show(getFragmentManager(), DialogFragmentWrapper.DIALOG_NOTIFICATION);
getActivity().onBackPressed();
}
mCallback.getRetainedFragment().setResumeOk(true);
}
@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putInt("mSelectedSortType", mSelectedSortType);
}
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.merchant_list_menu, menu);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
if(!mCallback.getRetainedFragment().getResumeOk())
return true;
try {
int i = item.getItemId();
if (i == R.id.action_sort) {
sortMerchantList();
} else if(i == R.id.action_refresh) {
if(!mCallback.refreshMchntList()) {
String msg = null;
if(MyGlobalSettings.getCustNoRefreshMins()==(24*60)) {
// 24 is treated as special case as 'once in a day'
msg = "Refresh is allowed once a day.";
} else {
//msg = "Refresh allowed once every "+String.valueOf(MyGlobalSettings.getCustNoRefreshMins())+" minutes";
int hours = Math.round(MyGlobalSettings.getMchntDashBNoRefreshMins()/60);
msg = "Refresh allowed once every "+hours+" hours.";
}
msg = msg+"\n\n"+"* Last Updated: "+mSdfDateWithTime.format(mRetainedFragment.mCbsUpdateTime);
DialogFragmentWrapper dialog = DialogFragmentWrapper.createNotification(AppConstants.generalInfoTitle, msg, true, false);
dialog.setTargetFragment(this, REQ_NOTIFY_ERROR);
dialog.show(getFragmentManager(), DialogFragmentWrapper.DIALOG_CONFIRMATION);
}
}
} catch(Exception e) {
LogMy.e(TAG, "Exception is CashbackListFragment:onOptionsItemSelected", e);
// unexpected exception - show error
DialogFragmentWrapper notDialog = DialogFragmentWrapper.createNotification(AppConstants.generalFailureTitle, AppCommonUtil.getErrorDesc(ErrorCodes.GENERAL_ERROR), true, true);
notDialog.setTargetFragment(this,REQ_NOTIFY_ERROR);
notDialog.show(getFragmentManager(), DialogFragmentWrapper.DIALOG_NOTIFICATION);
}
return super.onOptionsItemSelected(item);
}
private void sortMerchantList() {
try {
// loop and check if there's any txn with acc credit/debit
boolean accFigures = false;
for (MyCashback cb : mMyCbs) {
if(cb.getClCredit()!=0 || cb.getClDebit()!=0) {
accFigures = true;
}
}
SortMchntDialog dialog = SortMchntDialog.newInstance(mSelectedSortType, accFigures);
dialog.setTargetFragment(this, REQ_SORT_CUST_TYPES);
dialog.show(getFragmentManager(), DIALOG_SORT_CUST_TYPES);
} catch(Exception e) {
LogMy.e(TAG, "Exception in sortMerchantList", e);
// unexpected exception - show error
DialogFragmentWrapper notDialog = DialogFragmentWrapper.createNotification(AppConstants.generalFailureTitle, AppCommonUtil.getErrorDesc(ErrorCodes.GENERAL_ERROR), true, true);
notDialog.setTargetFragment(this,REQ_NOTIFY_ERROR);
notDialog.show(getFragmentManager(), DialogFragmentWrapper.DIALOG_NOTIFICATION);
}
}
@Override
public boolean handleTouchUp(View v) {
// do nothing
return false;
}
@Override
public void handleBtnClick(View v) {
// do nothing
}
private class CbHolder extends RecyclerView.ViewHolder
implements View.OnTouchListener {
private MyCashback mCb;
private View mCardView;
private View mLayoutMchntItem;
private ImageView mMerchantDp;
private EditText mMerchantName;
private View mMchntStatusAlert;
private EditText mCategoryNdCity;
private EditText mLastTxnTime;
private EditText mAccBalance;
private EditText mCbBalance;
private View mLayoutAcc;
public CbHolder(View itemView) {
super(itemView);
mCardView = itemView.findViewById(R.id.card_view);
mLayoutMchntItem = itemView.findViewById(R.id.layout_mchnt_item);
mMerchantDp = (ImageView) itemView.findViewById(R.id.img_merchant);
mMerchantName = (EditText) itemView.findViewById(R.id.input_mchnt_name);
mMchntStatusAlert = itemView.findViewById(R.id.icon_mchnt_status_alert);
mCategoryNdCity = (EditText) itemView.findViewById(R.id.mchnt_category_city);
mLastTxnTime = (EditText) itemView.findViewById(R.id.input_last_txn);
mAccBalance = (EditText) itemView.findViewById(R.id.input_acc_bal);
mCbBalance = (EditText) itemView.findViewById(R.id.input_cb_bal);
mLayoutAcc = itemView.findViewById(R.id.layout_acc);
mCardView.setOnTouchListener(this);
mLayoutMchntItem.setOnTouchListener(this);
mMerchantDp.setOnTouchListener(this);
mMerchantName.setOnTouchListener(this);
mCategoryNdCity.setOnTouchListener(this);
mLastTxnTime.setOnTouchListener(this);
mAccBalance.setOnTouchListener(this);
mCbBalance.setOnTouchListener(this);
}
@Override
public boolean onTouch(View v, MotionEvent event) {
try {
if (event.getAction() == MotionEvent.ACTION_UP) {
if(!mCallback.getRetainedFragment().getResumeOk())
return true;
LogMy.d(TAG, "In onTouch: " + v.getId());
// getRootView was not working, so manually finding root view
// depending upon views on which listener is set
View rootView = null;
if (v.getId() == mCardView.getId()) {
rootView = (View) v.getParent();
LogMy.d(TAG, "Clicked first level view " + rootView.getId());
} else if (v.getId() == mLayoutMchntItem.getId()) {
rootView = (View) v.getParent().getParent();
LogMy.d(TAG, "Clicked first-a level view " + rootView.getId());
} else if (v.getId() == mMerchantDp.getId()) {
rootView = (View) v.getParent().getParent().getParent();
LogMy.d(TAG, "Clicked 2nd level view " + rootView.getId());
} else if (v.getId() == mCategoryNdCity.getId() || v.getId() == mLastTxnTime.getId()) {
rootView = (View) v.getParent().getParent().getParent().getParent().getParent();
LogMy.d(TAG, "Clicked 3rd level view " + rootView.getId());
} else {
rootView = (View) v.getParent().getParent().getParent().getParent().getParent().getParent();
LogMy.d(TAG, "Clicked 4th level view " + rootView.getId());
}
rootView.performClick();
}
} catch (Exception e) {
LogMy.e(TAG, "Exception in Fragment: ", e);
DialogFragmentWrapper.createNotification(AppConstants.generalFailureTitle, AppCommonUtil.getErrorDesc(ErrorCodes.GENERAL_ERROR), true, true)
.show(getFragmentManager(), DialogFragmentWrapper.DIALOG_NOTIFICATION);
}
return true;
}
public void bindCb(MyCashback cb) {
mCb = cb;
MyMerchant merchant = mCb.getMerchant();
Bitmap dp = getMchntDp(merchant.getDpFilename());
if(dp!=null) {
mCb.setDpMerchant(dp);
mMerchantDp.setImageBitmap(dp);
}
mMerchantName.setText(merchant.getName());
if(merchant.getStatus()== DbConstants.USER_STATUS_UNDER_CLOSURE) {
mMchntStatusAlert.setVisibility(View.VISIBLE);
} else {
mMchntStatusAlert.setVisibility(View.GONE);
}
String txt = merchant.getBusinessCategory()+", "+merchant.getCity();
mCategoryNdCity.setText(txt);
String str = "Last: "+mSdfDateWithTime.format(cb.getLastTxnTime());
mLastTxnTime.setText(str);
if(mCb.getCurrClBalance()==0) {
mLayoutAcc.setVisibility(View.GONE);
} else {
mLayoutAcc.setVisibility(View.VISIBLE);
mAccBalance.setText(AppCommonUtil.getAmtStr(mCb.getCurrClBalance()));
}
mCbBalance.setText(AppCommonUtil.getAmtStr(mCb.getCurrCbBalance()));
}
private Bitmap getMchntDp(String filename) {
if(filename!=null) {
File file = getActivity().getFileStreamPath(filename);
if(file!=null) {
Bitmap bitmap = BitmapFactory.decodeFile(file.getPath());
if(bitmap==null) {
LogMy.e(TAG,"Not able to decode mchnt dp file: "+file.getName());
} else {
LogMy.d(TAG,"Decoded file as bitmap: "+file.getPath());
// convert to round image
int radiusInDp = (int) getResources().getDimension(R.dimen.dp_item_image_width);
int radiusInPixels = AppCommonUtil.dpToPx(radiusInDp);
Bitmap scaledImg = Bitmap.createScaledBitmap(bitmap,radiusInPixels,radiusInPixels,true);
Bitmap roundImage = AppCommonUtil.getCircleBitmap(scaledImg);
return roundImage;
}
} else {
LogMy.e(TAG,"Mchnt Dp file not available locally: "+filename);
}
}
return null;
}
}
private class CbAdapter extends RecyclerView.Adapter<CbHolder> {
private List<MyCashback> mCbs;
private View.OnClickListener mListener;
public CbAdapter(List<MyCashback> cbs) {
mCbs = cbs;
mListener = new View.OnClickListener() {
@Override
public void onClick(View v) {
LogMy.d(TAG,"In onClickListener of customer list item");
int pos = mRecyclerView.getChildAdapterPosition(v);
if (pos >= 0 && pos < getItemCount()) {
MchntDetailsDialogCustApp dialog = MchntDetailsDialogCustApp.newInstance(mCbs.get(pos).getMerchantId());
dialog.show(getFragmentManager(), DIALOG_MERCHANT_DETAILS);
} else {
LogMy.e(TAG,"Invalid position in onClickListener of customer list item: "+pos);
}
}
};
}
public void refresh(List<MyCashback> cbs) {
mCbs = cbs;
notifyDataSetChanged();
}
@Override
public CbHolder onCreateViewHolder(ViewGroup parent, int viewType) {
LayoutInflater layoutInflater = LayoutInflater.from(getActivity());
View view = layoutInflater.inflate(R.layout.merchant_itemview, parent, false);
view.setOnClickListener(mListener);
return new CbHolder(view);
}
@Override
public void onBindViewHolder(CbHolder holder, int position) {
MyCashback cb = mCbs.get(position);
holder.bindCb(cb);
}
@Override
public int getItemCount() {
return mCbs.size();
}
}
}
| [
"aditya_gang@yahoo.com"
] | aditya_gang@yahoo.com |
2ae382bf8b6321751e851e934053c7157cbc8d1d | 01751c32ad7fcc36235dce533b4174dbf25db367 | /SparkBatching/src/main/java/Spark/SparkClient.java | 7e59e6dea25ad1d75081b07591145790638ea16a | [] | no_license | slengieza/MDP-Cloud-Winter-2017 | 39f24b569449ed78189fbadb6c9c0b88a23817e2 | e0d7585d4df48118a6c23f1c5b89ec099e24b2aa | refs/heads/master | 2021-01-12T08:30:21.882687 | 2018-01-25T19:21:57 | 2018-01-25T19:21:57 | 76,596,735 | 1 | 4 | null | 2017-08-25T18:57:41 | 2016-12-15T21:17:00 | Java | UTF-8 | Java | false | false | 1,555 | java | package com.mdp.sparkbatching;
import java.io.*;
import java.lang.*;
import java.util.*;
import org.apache.spark.api.java.*;
import org.apache.spark.SparkConf;
import org.apache.spark.api.java.function.Function;
import org.apache.spark.sql.*;
import org.json.JSONObject;
public class SparkClient {
public static void main(String[] args) {
System.out.println("Current HDFS directory :");
try{
String line;
Process display = Runtime.getRuntime().exec("hdfs dfs -ls /var/mdp-cloud/");
BufferedReader input = new BufferedReader(new InputStreamReader(display.getInputStream()));
while ((line = input.readLine()) != null) {
System.out.println(line);
}
input.close();
}
catch(Exception e){
e.printStackTrace();
}
System.out.println("Please Enter Which File To Work On (file name not path) :");
Scanner scans = new Scanner(System.in);
String fileIn;
fileIn = scans.nextLine();
SparkConf conf = new SparkConf().setAppName("Spark Client").setMaster("yarn-client");
JavaSparkContext sc = new JavaSparkContext(conf);
SQLContext sqlContext = new org.apache.spark.sql.SQLContext(sc);
DataFrame df = sqlContext.read().json("hdfs:///var/mdp-cloud/" + fileIn);
count_over_0(df);
}
private static void count_over_0(DataFrame df){
JavaRDD<Float> jrdd = df.map(new Function<Row, );
//System.out.println(jrdd.toString());
}
}
| [
"hkardos@umich.edu"
] | hkardos@umich.edu |
156e7f094325706bd495e0f8c9a7952bc1ac2ea6 | d105d5827353d8f3dcddace3b6136f78fa0b7645 | /HighLevelSolution.java | 28d75abbbe5a69fb1a168bef37122a7a5833dcb6 | [] | no_license | tjpro/CoE147-Project1 | 7bca1536d7008b9255c6a84f35c63863eb8bd9de | 08562a9f80c02921e8dcce68428ddc506d9ce485 | refs/heads/master | 2021-01-10T02:41:31.324626 | 2016-03-23T20:54:16 | 2016-03-23T20:54:16 | 54,592,268 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,060 | java | /*
#University of Pittsburgh
#COE-147 Project Euler 150
#Instructor: Samuel J. Dickerson
#Teaching Assistants: Shivam Swami (shs173) and Bonan Yan (boy12)
#------------------------------------------------------------------------------------------------------------------------------------
#Submitted by: Tyler Protivnak, Zachary Adam, Signe Ruprecht
#
#Cited Source: The method of calculation was adapted from code posted by Nayuki from Github.
# We found this high level solution, learned how it worked and then refactored the code to use
# a one dimensional array instead of a two dimensional array, to make it easier to translate to assembly
# Citing this source as per Dr. Dickerson's request if we used any ideas from online
*/
public final class HighLevelSolution {
public static void main(String[] args) {
System.out.println(new HighLevelSolution().run());
}
private static final int ROWS = 1000; //Change this value to change number of rows
public String run() {
// Create pseudo-random triangle
RandomNums rand = new RandomNums();
int[] triangle = new int[ROWS * (ROWS + 1) / 2];
for (int i = 0; i < triangle.length; i++) {//fill triangle with random numbers
triangle[i] = rand.nextNum();
}
//Calculate cumulative sums for each row
//strange indexing to allow for a one dimensional array
int[] rowSums = new int[triangle.length];
for (int i = 0; i < ROWS; i++) {
rowSums[i * (i + 1) / 2] = triangle[i * (i + 1) / 2];
for (int j = (i * (i + 1) / 2) + 1; j <= (i * (i + 1) / 2) + i; j++) {
rowSums[j] = rowSums[j - 1] + triangle[j];
}
}
//Calculate minimum subtriangle sum for each apex position
//strange indexing to allow the use of a one dimensional array
long minSum = 0;
for (int i = 0; i < ROWS-1; i++) {//loop through every row
for (int j = (i * (i + 1) / 2); j <= (i * (i + 1) / 2) + i; j++) {//loop through every apex
long currentSum = 0;
int count = j;
for (int k = i; k < ROWS; k++) { //calculate triangle sum using rowSums
if (j == (i * (i + 1) / 2)) {//if this triangle is at an apex all the way on the left side of the row, we do not need to subtract anything
currentSum += rowSums[count];
} else {
currentSum += rowSums[count] - rowSums[count - (k - i + 1)];
}
minSum = Math.min(currentSum, minSum);
count += (k + 2);
}
}
}
return Long.toString(minSum);
}
private static final class RandomNums {
private int state;
public RandomNums() {
state = 0;
}
public int nextNum() {
state = (615949 * state + 797807) & ((1 << 20) - 1);
return state - (1 << 19);
}
}
} | [
"tprotivnak@gmail.com"
] | tprotivnak@gmail.com |
b9dcb77d12c8268cdae9584dc57fc1d9f5621bce | d5a7b87b8ea34ec06d5c7dafc05127dbac999f30 | /src/main/java/ir/ac/kntu/Client.java | 1753a867d286109225cab62f426a511d9c0b8586 | [] | no_license | Arinaakh/post | 938146b795038db558a0304d8f50482402ebfebd | 7f501cc84de482b144aab74bbe0096bdae32ab96 | refs/heads/master | 2023-08-09T17:13:11.583426 | 2019-11-11T09:21:20 | 2019-11-11T09:21:20 | 220,933,716 | 0 | 0 | null | 2023-07-22T21:14:08 | 2019-11-11T08:22:07 | Java | UTF-8 | Java | false | false | 1,185 | java | package ir.ac.kntu;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Objects;
public class Client {
private String name;
private String nationalID;
static ArrayList<Client> clients = new ArrayList<>();
public Client(String name, String nationalID) {
this.name = name;
this.nationalID = nationalID;
clients.add(this);
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getNationalID() {
return nationalID;
}
public void setNationalID(String nationalID) {
this.nationalID = nationalID;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Client client = (Client) o;
return Objects.equals(nationalID, client.nationalID);
}
@Override
public int hashCode() {
return Objects.hash(nationalID);
}
@Override
public String toString() {
return name + ' ' + '|' + ' ' + "nationalID=" + nationalID ;
}
}
| [
"arina.khoshraftar2000@gmail.com"
] | arina.khoshraftar2000@gmail.com |
1342784ed0000edc7335cf6023c12d4767b63bba | 6a002dbf3e2ee041da104005b3413df703049d92 | /app/src/androidTest/java/inject/wootalk/com/wootalkinjectapplication/ApplicationTest.java | eeb155cc281906fa88ef16c04247d85b351e5a51 | [] | no_license | zhang699/WooTalkInject | 20f4a471dbad655ca0e1723ec3540d8b99afbc6e | 8d78a53b2b56ea1958001174805e0a8645a109fd | refs/heads/master | 2021-09-10T16:47:35.865115 | 2018-03-29T15:50:30 | 2018-03-29T15:50:30 | 54,189,116 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 374 | java | package inject.wootalk.com.wootalkinjectapplication;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
} | [
"JimmyJhang@via.com.tw"
] | JimmyJhang@via.com.tw |
f1153824e653a8b88b126bf3edea6f8e33dd8c0d | 7b921d35566f056dc5ceee90bfb54487cfe136c2 | /Datapack/gameserver/data/scripts/org.l2j.scripts/handlers/effecthandlers/AttackTrait.java | ace1658d555cbdc073f2c752e4a7b7a9e82c8793 | [] | no_license | format686/L2jOrg | 2013155b7902d3e17626c5232f758c62a81661f9 | fbfd1096ea0adfea9f990a13cfa03d042b79a345 | refs/heads/master | 2021-08-27T21:48:46.792052 | 2021-08-20T01:13:53 | 2021-08-20T01:13:53 | 183,562,706 | 0 | 0 | null | 2019-04-26T05:27:11 | 2019-04-26T05:27:11 | null | UTF-8 | Java | false | false | 2,577 | java | /*
* This file is part of the L2J Mobius project.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package handlers.effecthandlers;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import org.l2j.gameserver.model.StatsSet;
import org.l2j.gameserver.model.actor.L2Character;
import org.l2j.gameserver.model.actor.stat.CharStat;
import org.l2j.gameserver.model.effects.AbstractEffect;
import org.l2j.gameserver.model.skills.Skill;
import org.l2j.gameserver.model.stats.TraitType;
/**
* Attack Trait effect implementation.
* @author NosBit
*/
public final class AttackTrait extends AbstractEffect
{
private final Map<TraitType, Float> _attackTraits = new HashMap<>();
public AttackTrait(StatsSet params)
{
if (params.isEmpty())
{
LOGGER.warn(": this effect must have parameters!");
return;
}
for (Entry<String, Object> param : params.getSet().entrySet())
{
_attackTraits.put(TraitType.valueOf(param.getKey()), (Float.parseFloat((String) param.getValue()) + 100) / 100);
}
}
@Override
public void onExit(L2Character effector, L2Character effected, Skill skill)
{
final CharStat charStat = effected.getStat();
synchronized (charStat.getAttackTraits())
{
for (Entry<TraitType, Float> trait : _attackTraits.entrySet())
{
if (charStat.getAttackTraitsCount()[trait.getKey().ordinal()] == 0)
{
continue;
}
charStat.getAttackTraits()[trait.getKey().ordinal()] /= trait.getValue();
charStat.getAttackTraitsCount()[trait.getKey().ordinal()]--;
}
}
}
@Override
public void onStart(L2Character effector, L2Character effected, Skill skill)
{
final CharStat charStat = effected.getStat();
synchronized (charStat.getAttackTraits())
{
for (Entry<TraitType, Float> trait : _attackTraits.entrySet())
{
charStat.getAttackTraits()[trait.getKey().ordinal()] *= trait.getValue();
charStat.getAttackTraitsCount()[trait.getKey().ordinal()]++;
}
}
}
}
| [
"joe.alisson@gmail.com"
] | joe.alisson@gmail.com |
e04289b6355bb7d16b5d39325254665bb56991eb | 820267f7dcf8c7736f3994f29746abf0af507af5 | /ribs/src/main/java/io/netlibs/bgp/config/nodes/RoutingInstanceConfiguration.java | 21550d17ef17c13ab9846c9a948a0084a7646c92 | [] | no_license | netlibs/io.netlibs.bgp | 89d254360fb69fd6a366af4b8855491004075460 | afbac4dcef277910ff3982e9a6b39d2221c2220e | refs/heads/master | 2020-12-14T07:18:31.563360 | 2016-04-19T16:32:13 | 2016-04-19T16:32:13 | 44,783,938 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 280 | java | /**
*
*/
package io.netlibs.bgp.config.nodes;
/**
* @author rainer
*
*/
public interface RoutingInstanceConfiguration extends Comparable<RoutingInstanceConfiguration> {
public RoutingPeerConfiguration getFirstPeer();
public RoutingPeerConfiguration getSecondPeer();
}
| [
"theo@jive.com"
] | theo@jive.com |
c0e4a46fc3617aa228f35559bf62738dd122a062 | ef676f20617b3e3cb39c736e97035d93bebc9dd2 | /Source/M1.01/src/com/innovation/daolife/service/impl/DlDaoService.java | 55b2b851657800f9d70bdc520960270bdb4c9ffa | [] | no_license | wlwinston/daolifev1 | abfedd3c1c4b9028637adeacd3a01a034b3efbeb | fea203b895a277ee22f06bcf7654133a6b3b4bbe | refs/heads/master | 2021-01-17T11:48:11.111946 | 2010-11-30T12:51:31 | 2010-11-30T12:51:31 | 34,557,588 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 14,409 | java | /**
* @author Winston
* @version 1.0
* Creation date: MAR 8, 2010 22:46:49
*/
package com.innovation.daolife.service.impl;
import java.io.UnsupportedEncodingException;
import java.security.NoSuchAlgorithmException;
import java.sql.SQLException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import javax.transaction.HeuristicMixedException;
import javax.transaction.HeuristicRollbackException;
import javax.transaction.RollbackException;
import javax.transaction.SystemException;
import org.apache.commons.mail.EmailException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.criterion.DetachedCriteria;
import org.omg.CORBA.UserException;
import org.springframework.beans.BeanUtils;
import org.springframework.dao.DataAccessException;
import com.innovation.common.util.Constant;
import com.innovation.common.util.DaoLifeEmail;
import com.innovation.common.util.Md5Util;
import com.innovation.common.util.PaginationSupport;
import com.innovation.common.util.ProjectException;
import com.innovation.common.util.RandomString;
import com.innovation.daolife.action.search.UserSearch;
import com.innovation.daolife.dao.IDlContentDao;
import com.innovation.daolife.dao.IDlContentatDao;
import com.innovation.daolife.dao.IDlContenttopicDao;
import com.innovation.daolife.dao.IDlHotdaoDao;
import com.innovation.daolife.dao.IDlMessagesDao;
import com.innovation.daolife.dao.IDlTopicDao;
import com.innovation.daolife.dao.IDlUplogDao;
import com.innovation.daolife.dao.IDlUsersDao;
import com.innovation.daolife.dao.IFollowrelationDao;
import com.innovation.daolife.dao.IUserDao;
import com.innovation.daolife.dao.impl.DlHotdaoDao;
import com.innovation.daolife.model.DlContent;
import com.innovation.daolife.model.DlContentat;
import com.innovation.daolife.model.DlContenttopic;
import com.innovation.daolife.model.DlCustomerDaoEntry;
import com.innovation.daolife.model.DlHotdao;
import com.innovation.daolife.model.DlMessages;
import com.innovation.daolife.model.DlUplog;
import com.innovation.daolife.model.DlUsers;
import com.innovation.daolife.model.Followrelation;
import com.innovation.daolife.model.User;
import com.innovation.daolife.service.IDaoContentBodyConvertService;
import com.innovation.daolife.service.IDlDaoService;
import com.innovation.daolife.service.IRetwitteUtilService;
import com.innovation.daolife.service.IUserService;
public class DlDaoService implements IDlDaoService {
private IDlUplogDao dlUplogDao;
private IDlUsersDao dlUsersDao;
private IDlContentDao dlContentDao;
private IDlContentatDao dlContentatDao;
private IDlContenttopicDao dlContenttopicDao;
private IDlTopicDao dlTopicDao;
private IDlMessagesDao dlMessagesDao;
private IDaoContentBodyConvertService daoContentBodyConvert;
private IRetwitteUtilService retwitteUtil;
private IDlHotdaoDao dlHotdaoDao;
/**
* 新发一条叨
*
* @param user
* 发叨人
* @param contextBody
* @author winston
*/
public DlCustomerDaoEntry addDao(DlUsers user, String contextBody)
throws Exception {
DlCustomerDaoEntry customerDaoDao = daoContentBodyConvert
.covertContent(contextBody);
this.saveDao(customerDaoDao, user);
return customerDaoDao;
}
/**
* @param customerDaoDao
* @param user
* @throws Exception
* @author winston
*/
private DlCustomerDaoEntry saveDao(DlCustomerDaoEntry customerDaoDao,
DlUsers user) throws Exception {
DlContent content = customerDaoDao.getDlContent();
content.setPosttime(new Date());
//默认被转数量和被顶数量
content.setRetwittNum((short) 0);
content.setUpNum((short) 0);
content.setStatus(Constant.CONTENT_STATUS_INIT.getStrValue());
content.setUserId(user.getUserId());
// 叨发布形式类型
content.setType("网页");
dlContentDao.save(content);
// 获取被at人数目
List<DlContentat> atList = customerDaoDao.getDlContentatList();
String uidString = "WHERE 1<>1 ";
for (int i = 0; i < atList.size(); i++) {
DlContentat atContentat = atList.get(i);
atContentat.setContentId(content.getContentId());
dlContentatDao.save(atContentat);
short atUserID = atContentat.getStatusUid();
uidString += " OR user_id = " + atUserID;
}
List<DlContenttopic> topicList = customerDaoDao.getDlContenttopicList();
for (int i = 0; i < topicList.size(); i++) {
DlContenttopic dlContenttopic = topicList.get(i);
dlContenttopic.setContentId(content.getContentId());
dlContenttopicDao.save(dlContenttopic);
}
// 修改用户被@数目
uidString = "UPDATE dl_users SET at_week_num = at_week_num + 1,at_month_num = at_month_num + 1,at_sum_num = at_sum_num + 1 "
+ uidString;
dlUsersDao.update(uidString);
// 消息LIST
List<DlMessages> messageList = customerDaoDao.getDlMessageList();
for (int i = 0; i < atList.size(); i++) {
dlMessagesDao.save(messageList.get(i));
}
return customerDaoDao;
}
/**
*
* @param user
* @param contextBody
* 转叨内容
* @param orgDaoId
* ԭ߶ID
* @author winston
*/
public DlCustomerDaoEntry addRetwitteDao(DlUsers user, String contextBody,
Short orgDaoId) throws Exception {
//发叨工具
DlCustomerDaoEntry customerDaoDao = daoContentBodyConvert
.covertContent(contextBody);
//转到工具类
retwitteUtil.retwitte(customerDaoDao, orgDaoId);
// 保存叨߶
this.saveDao(customerDaoDao, user);
return customerDaoDao;
}
/**
* @author fengsn ��ѯ@�û���dao����
* @author fengsn
*/
public PaginationSupport getAtContentListByUser(
PaginationSupport paginationSupport, Short userId) {
String querysql = " Select c From DlUsers u INNER JOIN u.contentatmes c where u.userId = "
+ userId + "order by c.posttime desc";
String countsql = " Select count(c.userId) From DlUsers u INNER JOIN u.contentatmes c where u.userId = "
+ userId + "order by c.posttime desc";
// paginationSupport = dlContentatDao.findPageByQuery(querysql,
// countsql, paginationSupport.getPageSize(),
// paginationSupport.getStartIndex());
paginationSupport = dlContentatDao.findPageByQuery(querysql, countsql,
paginationSupport.getPageSize(), paginationSupport
.getStartIndex());
return paginationSupport;
}
/**
* @author fengsn
*/
public PaginationSupport getRewriteInfoList(
PaginationSupport paginationSupport, Short contentId) {
String querysql = " Select c From DlContent c where c.originAllid = '"+contentId+"' or c.originAllid like '%,"+contentId+",%' or c.originAllid like '"+contentId+",%' or c.originAllid like '%,"+contentId+"'";
String countsql =" Select count(c.contentId) From DlContent c where c.originAllid = '"+contentId+"' or c.originAllid like '%,"+contentId+",%' or c.originAllid like '"+contentId+",%' or c.originAllid like '%,"+contentId+"'";
paginationSupport = dlContentatDao.findPageByQuery(querysql, countsql, paginationSupport.getPageSize(), paginationSupport.getStartIndex());
List<DlContent> itemList = paginationSupport.getItems();
for(Iterator<DlContent> it = itemList.iterator();it.hasNext();)
{
DlContent dlContent = it.next();
DlUsers user = new DlUsers();
BeanUtils.copyProperties(dlContent.getDlUsers(), user);
dlContent.setDlUsers(user);
}
paginationSupport.setItems(itemList);
return paginationSupport;
}
/**
* @author fengsn
* */
public PaginationSupport getContentListByTime(
PaginationSupport paginationSupport){
String querysql = " Select c From DlContent c order by posttime desc";
String countsql = " Select count(c.contentId) From DlContent c order by posttime desc";
paginationSupport = dlContentatDao.findPageByQuery(querysql, countsql,
paginationSupport.getPageSize(), paginationSupport
.getStartIndex());
List<DlContent> itemList = paginationSupport.getItems();
for(Iterator<DlContent> it = itemList.iterator();it.hasNext();)
{
DlContent dlContent = it.next();
DlUsers user = new DlUsers();
BeanUtils.copyProperties(dlContent.getDlUsers(), user);
dlContent.setDlUsers(user);
}
paginationSupport.setItems(itemList);
return paginationSupport;
}
/**
* @author fengsn �������dao
* return 获取最热叨
*/
public PaginationSupport getHotDao(PaginationSupport paginationSupport) {
Short daoNum = this.getdaoNum();
String querysql = " Select c From DlHotdao c where c.daonum = "
+ daoNum + " order by upSum desc";
String countsql = " Select count(c.hotdaoId) From DlHotdao c where c.daonum = "
+ daoNum + " order by upSum desc";
paginationSupport = dlHotdaoDao.findPageByQuery(querysql, countsql,
paginationSupport.getPageSize(), paginationSupport
.getStartIndex());
List<DlHotdao> itemList = paginationSupport.getItems();
for(Iterator<DlHotdao> it = itemList.iterator();it.hasNext();)
{
DlHotdao dlHotdao = it.next();
DlUsers user = new DlUsers();
BeanUtils.copyProperties(dlHotdao.getDlUsers(), user);
dlHotdao.setDlUsers(user);
}
paginationSupport.setItems(itemList);
return paginationSupport;
}
/**
* ��@author fengsnֵ
* 获取最热叨句的期数
*/
private Short getdaoNum() {
String sql = " select (i.daonum) from DlHotdao as i";
// dlHotdaoDao
List<Short> daoList = dlHotdaoDao.findWithoutT(sql);
Short result = 1;
if (daoList.size() > 0) {
for (int i = 0; i < daoList.size(); i++) {
Short tmp_dao = daoList.get(i);
if (tmp_dao > result) {
result = tmp_dao;
}
}
}
return result;
}
/**��߶����
* @param daoId
* @param user
* @param userIp
* @author winston
*/
public void addUpDao(String daoId, DlUsers user, String userIp)
throws Exception {
short userId = user.getUserId();
String hql = " From DlUplog Where userId = ? And hotdaoId = ? ";
Object[] sqlVlaue = { userId, Short.valueOf(daoId) };
List<DlUplog> uplogList = dlUplogDao.find(hql, sqlVlaue);
if (uplogList != null && uplogList.size() > 0) {
ProjectException moreThanOne = new ProjectException(
Constant.UPDAO_ERRORMESSAGE_ONLYONE.getStrValue());
throw moreThanOne;
}
//保存顶叨记录
DlUplog uplog = new DlUplog();
uplog.setHotdaoId(Short.valueOf(daoId));
uplog.setUpIp(userIp);
uplog.setUserId(userId);
uplog.setUptime(new Date());
dlUplogDao.save(uplog);
//将叨被顶数目加1
DlContent content = dlContentDao.get(uplog.getHotdaoId());
content.setUpNum((short) (content.getUpNum() + 1));
dlContentDao.saveOrUpdate(content);
DlHotdao hotdao = dlHotdaoDao.get(uplog.getHotdaoId());
if(hotdao != null && hotdao.getHotdaoId() != null)
{
hotdao.setUpSum(content.getUpNum());
dlHotdaoDao.saveOrUpdate(hotdao);
}
}
/**
* 获取主题dao
* */
public List<DlContent> getTopicContent(Short topicId){
String sql = "From DlContent u where u.topicid=?";
List<DlContent> result = dlContentDao.find(sql, topicId);
return result;
}
/**
* @author fengsn
* 获得话题相关dao
* */
public PaginationSupport getTopicListContent(
PaginationSupport paginationSupport,Short topicId){
String querysql = " Select c From DlTopic t INNER JOIN t.topicContent c where t.topicId = "
+ topicId + "order by c.posttime desc";
String countsql = " Select count(c.contentId) From DlTopic t INNER JOIN t.topicContent c where t.topicId = "
+ topicId + "order by c.posttime desc";
paginationSupport = dlContentatDao.findPageByQuery(querysql, countsql,
paginationSupport.getPageSize(), paginationSupport
.getStartIndex());
List<DlContent> itemList = paginationSupport.getItems();
for(Iterator<DlContent> it = itemList.iterator();it.hasNext();)
{
DlContent dlContent = it.next();
DlUsers user = new DlUsers();
BeanUtils.copyProperties(dlContent.getDlUsers(), user);
dlContent.setDlUsers(user);
}
paginationSupport.setItems(itemList);
return paginationSupport;
}
public IDaoContentBodyConvertService getDaoContentBodyConvert() {
return daoContentBodyConvert;
}
public void setDaoContentBodyConvert(
IDaoContentBodyConvertService daoContentBodyConvert) {
this.daoContentBodyConvert = daoContentBodyConvert;
}
public IDlUsersDao getDlUsersDao() {
return dlUsersDao;
}
public void setDlUsersDao(IDlUsersDao dlUsersDao) {
this.dlUsersDao = dlUsersDao;
}
public IDlContentDao getDlContentDao() {
return dlContentDao;
}
public void setDlContentDao(IDlContentDao dlContentDao) {
this.dlContentDao = dlContentDao;
}
public IDlContentatDao getDlContentatDao() {
return dlContentatDao;
}
public void setDlContentatDao(IDlContentatDao dlContentatDao) {
this.dlContentatDao = dlContentatDao;
}
public IDlTopicDao getDlTopicDao() {
return dlTopicDao;
}
public void setDlTopicDao(IDlTopicDao dlTopicDao) {
this.dlTopicDao = dlTopicDao;
}
public IDlMessagesDao getDlMessagesDao() {
return dlMessagesDao;
}
public void setDlMessagesDao(IDlMessagesDao dlMessagesDao) {
this.dlMessagesDao = dlMessagesDao;
}
public IRetwitteUtilService getRetwitteUtil() {
return retwitteUtil;
}
public void setRetwitteUtil(IRetwitteUtilService retwitteUtil) {
this.retwitteUtil = retwitteUtil;
}
public IDlUplogDao getDlUplogDao() {
return dlUplogDao;
}
public void setDlUplogDao(IDlUplogDao dlUplogDao) {
this.dlUplogDao = dlUplogDao;
}
public IDlHotdaoDao getDlHotdaoDao() {
return dlHotdaoDao;
}
public void setDlHotdaoDao(IDlHotdaoDao dlHotdaoDao) {
this.dlHotdaoDao = dlHotdaoDao;
}
public DlContent getDao(Short daoId) throws Exception {
DlContent content = dlContentDao.get(daoId);
DlUsers user = new DlUsers();
BeanUtils.copyProperties(content.getDlUsers(), user);
content.setDlUsers(user);
return content;
}
public IDlContenttopicDao getDlContenttopicDao() {
return dlContenttopicDao;
}
public void setDlContenttopicDao(IDlContenttopicDao dlContenttopicDao) {
this.dlContenttopicDao = dlContenttopicDao;
}
}
| [
"winston.wanglei@5f9af298-2853-11df-ab0a-9f3f633ae91d"
] | winston.wanglei@5f9af298-2853-11df-ab0a-9f3f633ae91d |
a30a3f42976461936541cfecfcce5a1eaa1bee4a | 8f2d7b4926fb10bb6d7482800628a2d5b46631c3 | /src/test/java/gn/diallotelly/projet/web/ecole/primaire/web/rest/AccountResourceIT.java | 83f2f22823dd8faefead3323e964e5fd64601627 | [] | no_license | celloupro/projetwebecoleprimaire | d3ba2ec07e2bfecd4c01705394a0d4125ddd3479 | bf533014028f614b8fb1643ce64c6c8a13f502ba | refs/heads/master | 2023-02-25T22:17:19.340908 | 2021-01-31T14:58:42 | 2021-01-31T14:58:42 | 334,528,544 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 33,483 | java | package gn.diallotelly.projet.web.ecole.primaire.web.rest;
import static gn.diallotelly.projet.web.ecole.primaire.web.rest.AccountResourceIT.TEST_USER_LOGIN;
import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
import gn.diallotelly.projet.web.ecole.primaire.ProjetWebEcolePrimaireApp;
import gn.diallotelly.projet.web.ecole.primaire.config.Constants;
import gn.diallotelly.projet.web.ecole.primaire.domain.User;
import gn.diallotelly.projet.web.ecole.primaire.repository.AuthorityRepository;
import gn.diallotelly.projet.web.ecole.primaire.repository.UserRepository;
import gn.diallotelly.projet.web.ecole.primaire.security.AuthoritiesConstants;
import gn.diallotelly.projet.web.ecole.primaire.service.UserService;
import gn.diallotelly.projet.web.ecole.primaire.service.dto.PasswordChangeDTO;
import gn.diallotelly.projet.web.ecole.primaire.service.dto.UserDTO;
import gn.diallotelly.projet.web.ecole.primaire.web.rest.vm.KeyAndPasswordVM;
import gn.diallotelly.projet.web.ecole.primaire.web.rest.vm.ManagedUserVM;
import java.time.Instant;
import java.util.*;
import org.apache.commons.lang3.RandomStringUtils;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.MediaType;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.security.crypto.password.PasswordEncoder;
import org.springframework.security.test.context.support.WithMockUser;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.transaction.annotation.Transactional;
/**
* Integration tests for the {@link AccountResource} REST controller.
*/
@AutoConfigureMockMvc
@WithMockUser(value = TEST_USER_LOGIN)
@SpringBootTest(classes = ProjetWebEcolePrimaireApp.class)
public class AccountResourceIT {
static final String TEST_USER_LOGIN = "test";
@Autowired
private UserRepository userRepository;
@Autowired
private AuthorityRepository authorityRepository;
@Autowired
private UserService userService;
@Autowired
private PasswordEncoder passwordEncoder;
@Autowired
private MockMvc restAccountMockMvc;
@Test
@WithUnauthenticatedMockUser
public void testNonAuthenticatedUser() throws Exception {
restAccountMockMvc
.perform(get("/api/authenticate").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk())
.andExpect(content().string(""));
}
@Test
public void testAuthenticatedUser() throws Exception {
restAccountMockMvc
.perform(
get("/api/authenticate")
.with(
request -> {
request.setRemoteUser(TEST_USER_LOGIN);
return request;
}
)
.accept(MediaType.APPLICATION_JSON)
)
.andExpect(status().isOk())
.andExpect(content().string(TEST_USER_LOGIN));
}
@Test
public void testGetExistingAccount() throws Exception {
Set<String> authorities = new HashSet<>();
authorities.add(AuthoritiesConstants.ADMIN);
UserDTO user = new UserDTO();
user.setLogin(TEST_USER_LOGIN);
user.setFirstName("john");
user.setLastName("doe");
user.setEmail("john.doe@jhipster.com");
user.setImageUrl("http://placehold.it/50x50");
user.setLangKey("en");
user.setAuthorities(authorities);
userService.createUser(user);
restAccountMockMvc
.perform(get("/api/account").accept(MediaType.APPLICATION_JSON))
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON_VALUE))
.andExpect(jsonPath("$.login").value(TEST_USER_LOGIN))
.andExpect(jsonPath("$.firstName").value("john"))
.andExpect(jsonPath("$.lastName").value("doe"))
.andExpect(jsonPath("$.email").value("john.doe@jhipster.com"))
.andExpect(jsonPath("$.imageUrl").value("http://placehold.it/50x50"))
.andExpect(jsonPath("$.langKey").value("en"))
.andExpect(jsonPath("$.authorities").value(AuthoritiesConstants.ADMIN));
}
@Test
public void testGetUnknownAccount() throws Exception {
restAccountMockMvc
.perform(get("/api/account").accept(MediaType.APPLICATION_PROBLEM_JSON))
.andExpect(status().isInternalServerError());
}
@Test
@Transactional
public void testRegisterValid() throws Exception {
ManagedUserVM validUser = new ManagedUserVM();
validUser.setLogin("test-register-valid");
validUser.setPassword("password");
validUser.setFirstName("Alice");
validUser.setLastName("Test");
validUser.setEmail("test-register-valid@example.com");
validUser.setImageUrl("http://placehold.it/50x50");
validUser.setLangKey(Constants.DEFAULT_LANGUAGE);
validUser.setAuthorities(Collections.singleton(AuthoritiesConstants.USER));
assertThat(userRepository.findOneByLogin("test-register-valid").isPresent()).isFalse();
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(validUser)))
.andExpect(status().isCreated());
assertThat(userRepository.findOneByLogin("test-register-valid").isPresent()).isTrue();
}
@Test
@Transactional
public void testRegisterInvalidLogin() throws Exception {
ManagedUserVM invalidUser = new ManagedUserVM();
invalidUser.setLogin("funky-log(n"); // <-- invalid
invalidUser.setPassword("password");
invalidUser.setFirstName("Funky");
invalidUser.setLastName("One");
invalidUser.setEmail("funky@example.com");
invalidUser.setActivated(true);
invalidUser.setImageUrl("http://placehold.it/50x50");
invalidUser.setLangKey(Constants.DEFAULT_LANGUAGE);
invalidUser.setAuthorities(Collections.singleton(AuthoritiesConstants.USER));
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(invalidUser)))
.andExpect(status().isBadRequest());
Optional<User> user = userRepository.findOneByEmailIgnoreCase("funky@example.com");
assertThat(user.isPresent()).isFalse();
}
@Test
@Transactional
public void testRegisterInvalidEmail() throws Exception {
ManagedUserVM invalidUser = new ManagedUserVM();
invalidUser.setLogin("bob");
invalidUser.setPassword("password");
invalidUser.setFirstName("Bob");
invalidUser.setLastName("Green");
invalidUser.setEmail("invalid"); // <-- invalid
invalidUser.setActivated(true);
invalidUser.setImageUrl("http://placehold.it/50x50");
invalidUser.setLangKey(Constants.DEFAULT_LANGUAGE);
invalidUser.setAuthorities(Collections.singleton(AuthoritiesConstants.USER));
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(invalidUser)))
.andExpect(status().isBadRequest());
Optional<User> user = userRepository.findOneByLogin("bob");
assertThat(user.isPresent()).isFalse();
}
@Test
@Transactional
public void testRegisterInvalidPassword() throws Exception {
ManagedUserVM invalidUser = new ManagedUserVM();
invalidUser.setLogin("bob");
invalidUser.setPassword("123"); // password with only 3 digits
invalidUser.setFirstName("Bob");
invalidUser.setLastName("Green");
invalidUser.setEmail("bob@example.com");
invalidUser.setActivated(true);
invalidUser.setImageUrl("http://placehold.it/50x50");
invalidUser.setLangKey(Constants.DEFAULT_LANGUAGE);
invalidUser.setAuthorities(Collections.singleton(AuthoritiesConstants.USER));
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(invalidUser)))
.andExpect(status().isBadRequest());
Optional<User> user = userRepository.findOneByLogin("bob");
assertThat(user.isPresent()).isFalse();
}
@Test
@Transactional
public void testRegisterNullPassword() throws Exception {
ManagedUserVM invalidUser = new ManagedUserVM();
invalidUser.setLogin("bob");
invalidUser.setPassword(null); // invalid null password
invalidUser.setFirstName("Bob");
invalidUser.setLastName("Green");
invalidUser.setEmail("bob@example.com");
invalidUser.setActivated(true);
invalidUser.setImageUrl("http://placehold.it/50x50");
invalidUser.setLangKey(Constants.DEFAULT_LANGUAGE);
invalidUser.setAuthorities(Collections.singleton(AuthoritiesConstants.USER));
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(invalidUser)))
.andExpect(status().isBadRequest());
Optional<User> user = userRepository.findOneByLogin("bob");
assertThat(user.isPresent()).isFalse();
}
@Test
@Transactional
public void testRegisterDuplicateLogin() throws Exception {
// First registration
ManagedUserVM firstUser = new ManagedUserVM();
firstUser.setLogin("alice");
firstUser.setPassword("password");
firstUser.setFirstName("Alice");
firstUser.setLastName("Something");
firstUser.setEmail("alice@example.com");
firstUser.setImageUrl("http://placehold.it/50x50");
firstUser.setLangKey(Constants.DEFAULT_LANGUAGE);
firstUser.setAuthorities(Collections.singleton(AuthoritiesConstants.USER));
// Duplicate login, different email
ManagedUserVM secondUser = new ManagedUserVM();
secondUser.setLogin(firstUser.getLogin());
secondUser.setPassword(firstUser.getPassword());
secondUser.setFirstName(firstUser.getFirstName());
secondUser.setLastName(firstUser.getLastName());
secondUser.setEmail("alice2@example.com");
secondUser.setImageUrl(firstUser.getImageUrl());
secondUser.setLangKey(firstUser.getLangKey());
secondUser.setCreatedBy(firstUser.getCreatedBy());
secondUser.setCreatedDate(firstUser.getCreatedDate());
secondUser.setLastModifiedBy(firstUser.getLastModifiedBy());
secondUser.setLastModifiedDate(firstUser.getLastModifiedDate());
secondUser.setAuthorities(new HashSet<>(firstUser.getAuthorities()));
// First user
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(firstUser)))
.andExpect(status().isCreated());
// Second (non activated) user
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(secondUser)))
.andExpect(status().isCreated());
Optional<User> testUser = userRepository.findOneByEmailIgnoreCase("alice2@example.com");
assertThat(testUser.isPresent()).isTrue();
testUser.get().setActivated(true);
userRepository.save(testUser.get());
// Second (already activated) user
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(secondUser)))
.andExpect(status().is4xxClientError());
}
@Test
@Transactional
public void testRegisterDuplicateEmail() throws Exception {
// First user
ManagedUserVM firstUser = new ManagedUserVM();
firstUser.setLogin("test-register-duplicate-email");
firstUser.setPassword("password");
firstUser.setFirstName("Alice");
firstUser.setLastName("Test");
firstUser.setEmail("test-register-duplicate-email@example.com");
firstUser.setImageUrl("http://placehold.it/50x50");
firstUser.setLangKey(Constants.DEFAULT_LANGUAGE);
firstUser.setAuthorities(Collections.singleton(AuthoritiesConstants.USER));
// Register first user
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(firstUser)))
.andExpect(status().isCreated());
Optional<User> testUser1 = userRepository.findOneByLogin("test-register-duplicate-email");
assertThat(testUser1.isPresent()).isTrue();
// Duplicate email, different login
ManagedUserVM secondUser = new ManagedUserVM();
secondUser.setLogin("test-register-duplicate-email-2");
secondUser.setPassword(firstUser.getPassword());
secondUser.setFirstName(firstUser.getFirstName());
secondUser.setLastName(firstUser.getLastName());
secondUser.setEmail(firstUser.getEmail());
secondUser.setImageUrl(firstUser.getImageUrl());
secondUser.setLangKey(firstUser.getLangKey());
secondUser.setAuthorities(new HashSet<>(firstUser.getAuthorities()));
// Register second (non activated) user
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(secondUser)))
.andExpect(status().isCreated());
Optional<User> testUser2 = userRepository.findOneByLogin("test-register-duplicate-email");
assertThat(testUser2.isPresent()).isFalse();
Optional<User> testUser3 = userRepository.findOneByLogin("test-register-duplicate-email-2");
assertThat(testUser3.isPresent()).isTrue();
// Duplicate email - with uppercase email address
ManagedUserVM userWithUpperCaseEmail = new ManagedUserVM();
userWithUpperCaseEmail.setId(firstUser.getId());
userWithUpperCaseEmail.setLogin("test-register-duplicate-email-3");
userWithUpperCaseEmail.setPassword(firstUser.getPassword());
userWithUpperCaseEmail.setFirstName(firstUser.getFirstName());
userWithUpperCaseEmail.setLastName(firstUser.getLastName());
userWithUpperCaseEmail.setEmail("TEST-register-duplicate-email@example.com");
userWithUpperCaseEmail.setImageUrl(firstUser.getImageUrl());
userWithUpperCaseEmail.setLangKey(firstUser.getLangKey());
userWithUpperCaseEmail.setAuthorities(new HashSet<>(firstUser.getAuthorities()));
// Register third (not activated) user
restAccountMockMvc
.perform(
post("/api/register")
.contentType(MediaType.APPLICATION_JSON)
.content(TestUtil.convertObjectToJsonBytes(userWithUpperCaseEmail))
)
.andExpect(status().isCreated());
Optional<User> testUser4 = userRepository.findOneByLogin("test-register-duplicate-email-3");
assertThat(testUser4.isPresent()).isTrue();
assertThat(testUser4.get().getEmail()).isEqualTo("test-register-duplicate-email@example.com");
testUser4.get().setActivated(true);
userService.updateUser((new UserDTO(testUser4.get())));
// Register 4th (already activated) user
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(secondUser)))
.andExpect(status().is4xxClientError());
}
@Test
@Transactional
public void testRegisterAdminIsIgnored() throws Exception {
ManagedUserVM validUser = new ManagedUserVM();
validUser.setLogin("badguy");
validUser.setPassword("password");
validUser.setFirstName("Bad");
validUser.setLastName("Guy");
validUser.setEmail("badguy@example.com");
validUser.setActivated(true);
validUser.setImageUrl("http://placehold.it/50x50");
validUser.setLangKey(Constants.DEFAULT_LANGUAGE);
validUser.setAuthorities(Collections.singleton(AuthoritiesConstants.ADMIN));
restAccountMockMvc
.perform(post("/api/register").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(validUser)))
.andExpect(status().isCreated());
Optional<User> userDup = userRepository.findOneWithAuthoritiesByLogin("badguy");
assertThat(userDup.isPresent()).isTrue();
assertThat(userDup.get().getAuthorities())
.hasSize(1)
.containsExactly(authorityRepository.findById(AuthoritiesConstants.USER).get());
}
@Test
@Transactional
public void testActivateAccount() throws Exception {
final String activationKey = "some activation key";
User user = new User();
user.setLogin("activate-account");
user.setEmail("activate-account@example.com");
user.setPassword(RandomStringUtils.random(60));
user.setActivated(false);
user.setActivationKey(activationKey);
userRepository.saveAndFlush(user);
restAccountMockMvc.perform(get("/api/activate?key={activationKey}", activationKey)).andExpect(status().isOk());
user = userRepository.findOneByLogin(user.getLogin()).orElse(null);
assertThat(user.getActivated()).isTrue();
}
@Test
@Transactional
public void testActivateAccountWithWrongKey() throws Exception {
restAccountMockMvc.perform(get("/api/activate?key=wrongActivationKey")).andExpect(status().isInternalServerError());
}
@Test
@Transactional
@WithMockUser("save-account")
public void testSaveAccount() throws Exception {
User user = new User();
user.setLogin("save-account");
user.setEmail("save-account@example.com");
user.setPassword(RandomStringUtils.random(60));
user.setActivated(true);
userRepository.saveAndFlush(user);
UserDTO userDTO = new UserDTO();
userDTO.setLogin("not-used");
userDTO.setFirstName("firstname");
userDTO.setLastName("lastname");
userDTO.setEmail("save-account@example.com");
userDTO.setActivated(false);
userDTO.setImageUrl("http://placehold.it/50x50");
userDTO.setLangKey(Constants.DEFAULT_LANGUAGE);
userDTO.setAuthorities(Collections.singleton(AuthoritiesConstants.ADMIN));
restAccountMockMvc
.perform(post("/api/account").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(userDTO)))
.andExpect(status().isOk());
User updatedUser = userRepository.findOneWithAuthoritiesByLogin(user.getLogin()).orElse(null);
assertThat(updatedUser.getFirstName()).isEqualTo(userDTO.getFirstName());
assertThat(updatedUser.getLastName()).isEqualTo(userDTO.getLastName());
assertThat(updatedUser.getEmail()).isEqualTo(userDTO.getEmail());
assertThat(updatedUser.getLangKey()).isEqualTo(userDTO.getLangKey());
assertThat(updatedUser.getPassword()).isEqualTo(user.getPassword());
assertThat(updatedUser.getImageUrl()).isEqualTo(userDTO.getImageUrl());
assertThat(updatedUser.getActivated()).isEqualTo(true);
assertThat(updatedUser.getAuthorities()).isEmpty();
}
@Test
@Transactional
@WithMockUser("save-invalid-email")
public void testSaveInvalidEmail() throws Exception {
User user = new User();
user.setLogin("save-invalid-email");
user.setEmail("save-invalid-email@example.com");
user.setPassword(RandomStringUtils.random(60));
user.setActivated(true);
userRepository.saveAndFlush(user);
UserDTO userDTO = new UserDTO();
userDTO.setLogin("not-used");
userDTO.setFirstName("firstname");
userDTO.setLastName("lastname");
userDTO.setEmail("invalid email");
userDTO.setActivated(false);
userDTO.setImageUrl("http://placehold.it/50x50");
userDTO.setLangKey(Constants.DEFAULT_LANGUAGE);
userDTO.setAuthorities(Collections.singleton(AuthoritiesConstants.ADMIN));
restAccountMockMvc
.perform(post("/api/account").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(userDTO)))
.andExpect(status().isBadRequest());
assertThat(userRepository.findOneByEmailIgnoreCase("invalid email")).isNotPresent();
}
@Test
@Transactional
@WithMockUser("save-existing-email")
public void testSaveExistingEmail() throws Exception {
User user = new User();
user.setLogin("save-existing-email");
user.setEmail("save-existing-email@example.com");
user.setPassword(RandomStringUtils.random(60));
user.setActivated(true);
userRepository.saveAndFlush(user);
User anotherUser = new User();
anotherUser.setLogin("save-existing-email2");
anotherUser.setEmail("save-existing-email2@example.com");
anotherUser.setPassword(RandomStringUtils.random(60));
anotherUser.setActivated(true);
userRepository.saveAndFlush(anotherUser);
UserDTO userDTO = new UserDTO();
userDTO.setLogin("not-used");
userDTO.setFirstName("firstname");
userDTO.setLastName("lastname");
userDTO.setEmail("save-existing-email2@example.com");
userDTO.setActivated(false);
userDTO.setImageUrl("http://placehold.it/50x50");
userDTO.setLangKey(Constants.DEFAULT_LANGUAGE);
userDTO.setAuthorities(Collections.singleton(AuthoritiesConstants.ADMIN));
restAccountMockMvc
.perform(post("/api/account").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(userDTO)))
.andExpect(status().isBadRequest());
User updatedUser = userRepository.findOneByLogin("save-existing-email").orElse(null);
assertThat(updatedUser.getEmail()).isEqualTo("save-existing-email@example.com");
}
@Test
@Transactional
@WithMockUser("save-existing-email-and-login")
public void testSaveExistingEmailAndLogin() throws Exception {
User user = new User();
user.setLogin("save-existing-email-and-login");
user.setEmail("save-existing-email-and-login@example.com");
user.setPassword(RandomStringUtils.random(60));
user.setActivated(true);
userRepository.saveAndFlush(user);
UserDTO userDTO = new UserDTO();
userDTO.setLogin("not-used");
userDTO.setFirstName("firstname");
userDTO.setLastName("lastname");
userDTO.setEmail("save-existing-email-and-login@example.com");
userDTO.setActivated(false);
userDTO.setImageUrl("http://placehold.it/50x50");
userDTO.setLangKey(Constants.DEFAULT_LANGUAGE);
userDTO.setAuthorities(Collections.singleton(AuthoritiesConstants.ADMIN));
restAccountMockMvc
.perform(post("/api/account").contentType(MediaType.APPLICATION_JSON).content(TestUtil.convertObjectToJsonBytes(userDTO)))
.andExpect(status().isOk());
User updatedUser = userRepository.findOneByLogin("save-existing-email-and-login").orElse(null);
assertThat(updatedUser.getEmail()).isEqualTo("save-existing-email-and-login@example.com");
}
@Test
@Transactional
@WithMockUser("change-password-wrong-existing-password")
public void testChangePasswordWrongExistingPassword() throws Exception {
User user = new User();
String currentPassword = RandomStringUtils.random(60);
user.setPassword(passwordEncoder.encode(currentPassword));
user.setLogin("change-password-wrong-existing-password");
user.setEmail("change-password-wrong-existing-password@example.com");
userRepository.saveAndFlush(user);
restAccountMockMvc
.perform(
post("/api/account/change-password")
.contentType(MediaType.APPLICATION_JSON)
.content(TestUtil.convertObjectToJsonBytes(new PasswordChangeDTO("1" + currentPassword, "new password")))
)
.andExpect(status().isBadRequest());
User updatedUser = userRepository.findOneByLogin("change-password-wrong-existing-password").orElse(null);
assertThat(passwordEncoder.matches("new password", updatedUser.getPassword())).isFalse();
assertThat(passwordEncoder.matches(currentPassword, updatedUser.getPassword())).isTrue();
}
@Test
@Transactional
@WithMockUser("change-password")
public void testChangePassword() throws Exception {
User user = new User();
String currentPassword = RandomStringUtils.random(60);
user.setPassword(passwordEncoder.encode(currentPassword));
user.setLogin("change-password");
user.setEmail("change-password@example.com");
userRepository.saveAndFlush(user);
restAccountMockMvc
.perform(
post("/api/account/change-password")
.contentType(MediaType.APPLICATION_JSON)
.content(TestUtil.convertObjectToJsonBytes(new PasswordChangeDTO(currentPassword, "new password")))
)
.andExpect(status().isOk());
User updatedUser = userRepository.findOneByLogin("change-password").orElse(null);
assertThat(passwordEncoder.matches("new password", updatedUser.getPassword())).isTrue();
}
@Test
@Transactional
@WithMockUser("change-password-too-small")
public void testChangePasswordTooSmall() throws Exception {
User user = new User();
String currentPassword = RandomStringUtils.random(60);
user.setPassword(passwordEncoder.encode(currentPassword));
user.setLogin("change-password-too-small");
user.setEmail("change-password-too-small@example.com");
userRepository.saveAndFlush(user);
String newPassword = RandomStringUtils.random(ManagedUserVM.PASSWORD_MIN_LENGTH - 1);
restAccountMockMvc
.perform(
post("/api/account/change-password")
.contentType(MediaType.APPLICATION_JSON)
.content(TestUtil.convertObjectToJsonBytes(new PasswordChangeDTO(currentPassword, newPassword)))
)
.andExpect(status().isBadRequest());
User updatedUser = userRepository.findOneByLogin("change-password-too-small").orElse(null);
assertThat(updatedUser.getPassword()).isEqualTo(user.getPassword());
}
@Test
@Transactional
@WithMockUser("change-password-too-long")
public void testChangePasswordTooLong() throws Exception {
User user = new User();
String currentPassword = RandomStringUtils.random(60);
user.setPassword(passwordEncoder.encode(currentPassword));
user.setLogin("change-password-too-long");
user.setEmail("change-password-too-long@example.com");
userRepository.saveAndFlush(user);
String newPassword = RandomStringUtils.random(ManagedUserVM.PASSWORD_MAX_LENGTH + 1);
restAccountMockMvc
.perform(
post("/api/account/change-password")
.contentType(MediaType.APPLICATION_JSON)
.content(TestUtil.convertObjectToJsonBytes(new PasswordChangeDTO(currentPassword, newPassword)))
)
.andExpect(status().isBadRequest());
User updatedUser = userRepository.findOneByLogin("change-password-too-long").orElse(null);
assertThat(updatedUser.getPassword()).isEqualTo(user.getPassword());
}
@Test
@Transactional
@WithMockUser("change-password-empty")
public void testChangePasswordEmpty() throws Exception {
User user = new User();
String currentPassword = RandomStringUtils.random(60);
user.setPassword(passwordEncoder.encode(currentPassword));
user.setLogin("change-password-empty");
user.setEmail("change-password-empty@example.com");
userRepository.saveAndFlush(user);
restAccountMockMvc
.perform(
post("/api/account/change-password")
.contentType(MediaType.APPLICATION_JSON)
.content(TestUtil.convertObjectToJsonBytes(new PasswordChangeDTO(currentPassword, "")))
)
.andExpect(status().isBadRequest());
User updatedUser = userRepository.findOneByLogin("change-password-empty").orElse(null);
assertThat(updatedUser.getPassword()).isEqualTo(user.getPassword());
}
@Test
@Transactional
public void testRequestPasswordReset() throws Exception {
User user = new User();
user.setPassword(RandomStringUtils.random(60));
user.setActivated(true);
user.setLogin("password-reset");
user.setEmail("password-reset@example.com");
userRepository.saveAndFlush(user);
restAccountMockMvc
.perform(post("/api/account/reset-password/init").content("password-reset@example.com"))
.andExpect(status().isOk());
}
@Test
@Transactional
public void testRequestPasswordResetUpperCaseEmail() throws Exception {
User user = new User();
user.setPassword(RandomStringUtils.random(60));
user.setActivated(true);
user.setLogin("password-reset-upper-case");
user.setEmail("password-reset-upper-case@example.com");
userRepository.saveAndFlush(user);
restAccountMockMvc
.perform(post("/api/account/reset-password/init").content("password-reset-upper-case@EXAMPLE.COM"))
.andExpect(status().isOk());
}
@Test
public void testRequestPasswordResetWrongEmail() throws Exception {
restAccountMockMvc
.perform(post("/api/account/reset-password/init").content("password-reset-wrong-email@example.com"))
.andExpect(status().isOk());
}
@Test
@Transactional
public void testFinishPasswordReset() throws Exception {
User user = new User();
user.setPassword(RandomStringUtils.random(60));
user.setLogin("finish-password-reset");
user.setEmail("finish-password-reset@example.com");
user.setResetDate(Instant.now().plusSeconds(60));
user.setResetKey("reset key");
userRepository.saveAndFlush(user);
KeyAndPasswordVM keyAndPassword = new KeyAndPasswordVM();
keyAndPassword.setKey(user.getResetKey());
keyAndPassword.setNewPassword("new password");
restAccountMockMvc
.perform(
post("/api/account/reset-password/finish")
.contentType(MediaType.APPLICATION_JSON)
.content(TestUtil.convertObjectToJsonBytes(keyAndPassword))
)
.andExpect(status().isOk());
User updatedUser = userRepository.findOneByLogin(user.getLogin()).orElse(null);
assertThat(passwordEncoder.matches(keyAndPassword.getNewPassword(), updatedUser.getPassword())).isTrue();
}
@Test
@Transactional
public void testFinishPasswordResetTooSmall() throws Exception {
User user = new User();
user.setPassword(RandomStringUtils.random(60));
user.setLogin("finish-password-reset-too-small");
user.setEmail("finish-password-reset-too-small@example.com");
user.setResetDate(Instant.now().plusSeconds(60));
user.setResetKey("reset key too small");
userRepository.saveAndFlush(user);
KeyAndPasswordVM keyAndPassword = new KeyAndPasswordVM();
keyAndPassword.setKey(user.getResetKey());
keyAndPassword.setNewPassword("foo");
restAccountMockMvc
.perform(
post("/api/account/reset-password/finish")
.contentType(MediaType.APPLICATION_JSON)
.content(TestUtil.convertObjectToJsonBytes(keyAndPassword))
)
.andExpect(status().isBadRequest());
User updatedUser = userRepository.findOneByLogin(user.getLogin()).orElse(null);
assertThat(passwordEncoder.matches(keyAndPassword.getNewPassword(), updatedUser.getPassword())).isFalse();
}
@Test
@Transactional
public void testFinishPasswordResetWrongKey() throws Exception {
KeyAndPasswordVM keyAndPassword = new KeyAndPasswordVM();
keyAndPassword.setKey("wrong reset key");
keyAndPassword.setNewPassword("new password");
restAccountMockMvc
.perform(
post("/api/account/reset-password/finish")
.contentType(MediaType.APPLICATION_JSON)
.content(TestUtil.convertObjectToJsonBytes(keyAndPassword))
)
.andExpect(status().isInternalServerError());
}
}
| [
"mamadoucelloudiallo24@gmail.com"
] | mamadoucelloudiallo24@gmail.com |
251d03a50d45fbe674954674f3f9c2561c4c2a8f | a151d90d10c2dd4161bb86bbfbdecc10dfc9b349 | /src/main/java/com/prajna/production/ssm/domain/EmployeeExample.java | 38c5790f72b80d50773633d4db3d3957d051f578 | [] | no_license | Zhangting89/production_ssm | 0eb451b5deb8e979573a777f2c81a94ad8d8d3c7 | 75182be67f83ebe20dcfba2d23aedec574b1726e | refs/heads/master | 2022-12-27T20:34:11.670477 | 2020-01-09T03:45:15 | 2020-01-09T03:45:15 | 232,717,360 | 0 | 0 | null | 2022-12-16T04:52:01 | 2020-01-09T03:51:21 | Java | UTF-8 | Java | false | false | 37,066 | java | package com.prajna.production.ssm.domain;
import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
public class EmployeeExample {
protected String orderByClause;
protected boolean distinct;
protected List<Criteria> oredCriteria;
public EmployeeExample() {
oredCriteria = new ArrayList<Criteria>();
}
public void setOrderByClause(String orderByClause) {
this.orderByClause = orderByClause;
}
public String getOrderByClause() {
return orderByClause;
}
public void setDistinct(boolean distinct) {
this.distinct = distinct;
}
public boolean isDistinct() {
return distinct;
}
public List<Criteria> getOredCriteria() {
return oredCriteria;
}
public void or(Criteria criteria) {
oredCriteria.add(criteria);
}
public Criteria or() {
Criteria criteria = createCriteriaInternal();
oredCriteria.add(criteria);
return criteria;
}
public Criteria createCriteria() {
Criteria criteria = createCriteriaInternal();
if (oredCriteria.size() == 0) {
oredCriteria.add(criteria);
}
return criteria;
}
protected Criteria createCriteriaInternal() {
Criteria criteria = new Criteria();
return criteria;
}
public void clear() {
oredCriteria.clear();
orderByClause = null;
distinct = false;
}
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));
}
protected void addCriterionForJDBCDate(String condition, Date value, String property) {
if (value == null) {
throw new RuntimeException("Value for " + property + " cannot be null");
}
addCriterion(condition, new java.sql.Date(value.getTime()), property);
}
protected void addCriterionForJDBCDate(String condition, List<Date> values, String property) {
if (values == null || values.size() == 0) {
throw new RuntimeException("Value list for " + property + " cannot be null or empty");
}
List<java.sql.Date> dateList = new ArrayList<java.sql.Date>();
Iterator<Date> iter = values.iterator();
while (iter.hasNext()) {
dateList.add(new java.sql.Date(iter.next().getTime()));
}
addCriterion(condition, dateList, property);
}
protected void addCriterionForJDBCDate(String condition, Date value1, Date value2, String property) {
if (value1 == null || value2 == null) {
throw new RuntimeException("Between values for " + property + " cannot be null");
}
addCriterion(condition, new java.sql.Date(value1.getTime()), new java.sql.Date(value2.getTime()), property);
}
public Criteria andEmpIdIsNull() {
addCriterion("emp_id is null");
return (Criteria) this;
}
public Criteria andEmpIdIsNotNull() {
addCriterion("emp_id is not null");
return (Criteria) this;
}
public Criteria andEmpIdEqualTo(String value) {
addCriterion("emp_id =", value, "empId");
return (Criteria) this;
}
public Criteria andEmpIdNotEqualTo(String value) {
addCriterion("emp_id <>", value, "empId");
return (Criteria) this;
}
public Criteria andEmpIdGreaterThan(String value) {
addCriterion("emp_id >", value, "empId");
return (Criteria) this;
}
public Criteria andEmpIdGreaterThanOrEqualTo(String value) {
addCriterion("emp_id >=", value, "empId");
return (Criteria) this;
}
public Criteria andEmpIdLessThan(String value) {
addCriterion("emp_id <", value, "empId");
return (Criteria) this;
}
public Criteria andEmpIdLessThanOrEqualTo(String value) {
addCriterion("emp_id <=", value, "empId");
return (Criteria) this;
}
public Criteria andEmpIdLike(String value) {
addCriterion("emp_id like", value, "empId");
return (Criteria) this;
}
public Criteria andEmpIdNotLike(String value) {
addCriterion("emp_id not like", value, "empId");
return (Criteria) this;
}
public Criteria andEmpIdIn(List<String> values) {
addCriterion("emp_id in", values, "empId");
return (Criteria) this;
}
public Criteria andEmpIdNotIn(List<String> values) {
addCriterion("emp_id not in", values, "empId");
return (Criteria) this;
}
public Criteria andEmpIdBetween(String value1, String value2) {
addCriterion("emp_id between", value1, value2, "empId");
return (Criteria) this;
}
public Criteria andEmpIdNotBetween(String value1, String value2) {
addCriterion("emp_id not between", value1, value2, "empId");
return (Criteria) this;
}
public Criteria andEmpNameIsNull() {
addCriterion("emp_name is null");
return (Criteria) this;
}
public Criteria andEmpNameIsNotNull() {
addCriterion("emp_name is not null");
return (Criteria) this;
}
public Criteria andEmpNameEqualTo(String value) {
addCriterion("emp_name =", value, "empName");
return (Criteria) this;
}
public Criteria andEmpNameNotEqualTo(String value) {
addCriterion("emp_name <>", value, "empName");
return (Criteria) this;
}
public Criteria andEmpNameGreaterThan(String value) {
addCriterion("emp_name >", value, "empName");
return (Criteria) this;
}
public Criteria andEmpNameGreaterThanOrEqualTo(String value) {
addCriterion("emp_name >=", value, "empName");
return (Criteria) this;
}
public Criteria andEmpNameLessThan(String value) {
addCriterion("emp_name <", value, "empName");
return (Criteria) this;
}
public Criteria andEmpNameLessThanOrEqualTo(String value) {
addCriterion("emp_name <=", value, "empName");
return (Criteria) this;
}
public Criteria andEmpNameLike(String value) {
addCriterion("emp_name like", value, "empName");
return (Criteria) this;
}
public Criteria andEmpNameNotLike(String value) {
addCriterion("emp_name not like", value, "empName");
return (Criteria) this;
}
public Criteria andEmpNameIn(List<String> values) {
addCriterion("emp_name in", values, "empName");
return (Criteria) this;
}
public Criteria andEmpNameNotIn(List<String> values) {
addCriterion("emp_name not in", values, "empName");
return (Criteria) this;
}
public Criteria andEmpNameBetween(String value1, String value2) {
addCriterion("emp_name between", value1, value2, "empName");
return (Criteria) this;
}
public Criteria andEmpNameNotBetween(String value1, String value2) {
addCriterion("emp_name not between", value1, value2, "empName");
return (Criteria) this;
}
public Criteria andSexIsNull() {
addCriterion("sex is null");
return (Criteria) this;
}
public Criteria andSexIsNotNull() {
addCriterion("sex is not null");
return (Criteria) this;
}
public Criteria andSexEqualTo(String value) {
addCriterion("sex =", value, "sex");
return (Criteria) this;
}
public Criteria andSexNotEqualTo(String value) {
addCriterion("sex <>", value, "sex");
return (Criteria) this;
}
public Criteria andSexGreaterThan(String value) {
addCriterion("sex >", value, "sex");
return (Criteria) this;
}
public Criteria andSexGreaterThanOrEqualTo(String value) {
addCriterion("sex >=", value, "sex");
return (Criteria) this;
}
public Criteria andSexLessThan(String value) {
addCriterion("sex <", value, "sex");
return (Criteria) this;
}
public Criteria andSexLessThanOrEqualTo(String value) {
addCriterion("sex <=", value, "sex");
return (Criteria) this;
}
public Criteria andSexLike(String value) {
addCriterion("sex like", value, "sex");
return (Criteria) this;
}
public Criteria andSexNotLike(String value) {
addCriterion("sex not like", value, "sex");
return (Criteria) this;
}
public Criteria andSexIn(List<String> values) {
addCriterion("sex in", values, "sex");
return (Criteria) this;
}
public Criteria andSexNotIn(List<String> values) {
addCriterion("sex not in", values, "sex");
return (Criteria) this;
}
public Criteria andSexBetween(String value1, String value2) {
addCriterion("sex between", value1, value2, "sex");
return (Criteria) this;
}
public Criteria andSexNotBetween(String value1, String value2) {
addCriterion("sex not between", value1, value2, "sex");
return (Criteria) this;
}
public Criteria andIdCodeIsNull() {
addCriterion("id_code is null");
return (Criteria) this;
}
public Criteria andIdCodeIsNotNull() {
addCriterion("id_code is not null");
return (Criteria) this;
}
public Criteria andIdCodeEqualTo(String value) {
addCriterion("id_code =", value, "idCode");
return (Criteria) this;
}
public Criteria andIdCodeNotEqualTo(String value) {
addCriterion("id_code <>", value, "idCode");
return (Criteria) this;
}
public Criteria andIdCodeGreaterThan(String value) {
addCriterion("id_code >", value, "idCode");
return (Criteria) this;
}
public Criteria andIdCodeGreaterThanOrEqualTo(String value) {
addCriterion("id_code >=", value, "idCode");
return (Criteria) this;
}
public Criteria andIdCodeLessThan(String value) {
addCriterion("id_code <", value, "idCode");
return (Criteria) this;
}
public Criteria andIdCodeLessThanOrEqualTo(String value) {
addCriterion("id_code <=", value, "idCode");
return (Criteria) this;
}
public Criteria andIdCodeLike(String value) {
addCriterion("id_code like", value, "idCode");
return (Criteria) this;
}
public Criteria andIdCodeNotLike(String value) {
addCriterion("id_code not like", value, "idCode");
return (Criteria) this;
}
public Criteria andIdCodeIn(List<String> values) {
addCriterion("id_code in", values, "idCode");
return (Criteria) this;
}
public Criteria andIdCodeNotIn(List<String> values) {
addCriterion("id_code not in", values, "idCode");
return (Criteria) this;
}
public Criteria andIdCodeBetween(String value1, String value2) {
addCriterion("id_code between", value1, value2, "idCode");
return (Criteria) this;
}
public Criteria andIdCodeNotBetween(String value1, String value2) {
addCriterion("id_code not between", value1, value2, "idCode");
return (Criteria) this;
}
public Criteria andBirthdayIsNull() {
addCriterion("birthday is null");
return (Criteria) this;
}
public Criteria andBirthdayIsNotNull() {
addCriterion("birthday is not null");
return (Criteria) this;
}
public Criteria andBirthdayEqualTo(Date value) {
addCriterionForJDBCDate("birthday =", value, "birthday");
return (Criteria) this;
}
public Criteria andBirthdayNotEqualTo(Date value) {
addCriterionForJDBCDate("birthday <>", value, "birthday");
return (Criteria) this;
}
public Criteria andBirthdayGreaterThan(Date value) {
addCriterionForJDBCDate("birthday >", value, "birthday");
return (Criteria) this;
}
public Criteria andBirthdayGreaterThanOrEqualTo(Date value) {
addCriterionForJDBCDate("birthday >=", value, "birthday");
return (Criteria) this;
}
public Criteria andBirthdayLessThan(Date value) {
addCriterionForJDBCDate("birthday <", value, "birthday");
return (Criteria) this;
}
public Criteria andBirthdayLessThanOrEqualTo(Date value) {
addCriterionForJDBCDate("birthday <=", value, "birthday");
return (Criteria) this;
}
public Criteria andBirthdayIn(List<Date> values) {
addCriterionForJDBCDate("birthday in", values, "birthday");
return (Criteria) this;
}
public Criteria andBirthdayNotIn(List<Date> values) {
addCriterionForJDBCDate("birthday not in", values, "birthday");
return (Criteria) this;
}
public Criteria andBirthdayBetween(Date value1, Date value2) {
addCriterionForJDBCDate("birthday between", value1, value2, "birthday");
return (Criteria) this;
}
public Criteria andBirthdayNotBetween(Date value1, Date value2) {
addCriterionForJDBCDate("birthday not between", value1, value2, "birthday");
return (Criteria) this;
}
public Criteria andJoinDateIsNull() {
addCriterion("join_date is null");
return (Criteria) this;
}
public Criteria andJoinDateIsNotNull() {
addCriterion("join_date is not null");
return (Criteria) this;
}
public Criteria andJoinDateEqualTo(Date value) {
addCriterionForJDBCDate("join_date =", value, "joinDate");
return (Criteria) this;
}
public Criteria andJoinDateNotEqualTo(Date value) {
addCriterionForJDBCDate("join_date <>", value, "joinDate");
return (Criteria) this;
}
public Criteria andJoinDateGreaterThan(Date value) {
addCriterionForJDBCDate("join_date >", value, "joinDate");
return (Criteria) this;
}
public Criteria andJoinDateGreaterThanOrEqualTo(Date value) {
addCriterionForJDBCDate("join_date >=", value, "joinDate");
return (Criteria) this;
}
public Criteria andJoinDateLessThan(Date value) {
addCriterionForJDBCDate("join_date <", value, "joinDate");
return (Criteria) this;
}
public Criteria andJoinDateLessThanOrEqualTo(Date value) {
addCriterionForJDBCDate("join_date <=", value, "joinDate");
return (Criteria) this;
}
public Criteria andJoinDateIn(List<Date> values) {
addCriterionForJDBCDate("join_date in", values, "joinDate");
return (Criteria) this;
}
public Criteria andJoinDateNotIn(List<Date> values) {
addCriterionForJDBCDate("join_date not in", values, "joinDate");
return (Criteria) this;
}
public Criteria andJoinDateBetween(Date value1, Date value2) {
addCriterionForJDBCDate("join_date between", value1, value2, "joinDate");
return (Criteria) this;
}
public Criteria andJoinDateNotBetween(Date value1, Date value2) {
addCriterionForJDBCDate("join_date not between", value1, value2, "joinDate");
return (Criteria) this;
}
public Criteria andStatusIsNull() {
addCriterion("status is null");
return (Criteria) this;
}
public Criteria andStatusIsNotNull() {
addCriterion("status is not null");
return (Criteria) this;
}
public Criteria andStatusEqualTo(String value) {
addCriterion("status =", value, "status");
return (Criteria) this;
}
public Criteria andStatusNotEqualTo(String value) {
addCriterion("status <>", value, "status");
return (Criteria) this;
}
public Criteria andStatusGreaterThan(String value) {
addCriterion("status >", value, "status");
return (Criteria) this;
}
public Criteria andStatusGreaterThanOrEqualTo(String value) {
addCriterion("status >=", value, "status");
return (Criteria) this;
}
public Criteria andStatusLessThan(String value) {
addCriterion("status <", value, "status");
return (Criteria) this;
}
public Criteria andStatusLessThanOrEqualTo(String value) {
addCriterion("status <=", value, "status");
return (Criteria) this;
}
public Criteria andStatusLike(String value) {
addCriterion("status like", value, "status");
return (Criteria) this;
}
public Criteria andStatusNotLike(String value) {
addCriterion("status not like", value, "status");
return (Criteria) this;
}
public Criteria andStatusIn(List<String> values) {
addCriterion("status in", values, "status");
return (Criteria) this;
}
public Criteria andStatusNotIn(List<String> values) {
addCriterion("status not in", values, "status");
return (Criteria) this;
}
public Criteria andStatusBetween(String value1, String value2) {
addCriterion("status between", value1, value2, "status");
return (Criteria) this;
}
public Criteria andStatusNotBetween(String value1, String value2) {
addCriterion("status not between", value1, value2, "status");
return (Criteria) this;
}
public Criteria andEducationIsNull() {
addCriterion("education is null");
return (Criteria) this;
}
public Criteria andEducationIsNotNull() {
addCriterion("education is not null");
return (Criteria) this;
}
public Criteria andEducationEqualTo(String value) {
addCriterion("education =", value, "education");
return (Criteria) this;
}
public Criteria andEducationNotEqualTo(String value) {
addCriterion("education <>", value, "education");
return (Criteria) this;
}
public Criteria andEducationGreaterThan(String value) {
addCriterion("education >", value, "education");
return (Criteria) this;
}
public Criteria andEducationGreaterThanOrEqualTo(String value) {
addCriterion("education >=", value, "education");
return (Criteria) this;
}
public Criteria andEducationLessThan(String value) {
addCriterion("education <", value, "education");
return (Criteria) this;
}
public Criteria andEducationLessThanOrEqualTo(String value) {
addCriterion("education <=", value, "education");
return (Criteria) this;
}
public Criteria andEducationLike(String value) {
addCriterion("education like", value, "education");
return (Criteria) this;
}
public Criteria andEducationNotLike(String value) {
addCriterion("education not like", value, "education");
return (Criteria) this;
}
public Criteria andEducationIn(List<String> values) {
addCriterion("education in", values, "education");
return (Criteria) this;
}
public Criteria andEducationNotIn(List<String> values) {
addCriterion("education not in", values, "education");
return (Criteria) this;
}
public Criteria andEducationBetween(String value1, String value2) {
addCriterion("education between", value1, value2, "education");
return (Criteria) this;
}
public Criteria andEducationNotBetween(String value1, String value2) {
addCriterion("education not between", value1, value2, "education");
return (Criteria) this;
}
public Criteria andDegreeIsNull() {
addCriterion("degree is null");
return (Criteria) this;
}
public Criteria andDegreeIsNotNull() {
addCriterion("degree is not null");
return (Criteria) this;
}
public Criteria andDegreeEqualTo(String value) {
addCriterion("degree =", value, "degree");
return (Criteria) this;
}
public Criteria andDegreeNotEqualTo(String value) {
addCriterion("degree <>", value, "degree");
return (Criteria) this;
}
public Criteria andDegreeGreaterThan(String value) {
addCriterion("degree >", value, "degree");
return (Criteria) this;
}
public Criteria andDegreeGreaterThanOrEqualTo(String value) {
addCriterion("degree >=", value, "degree");
return (Criteria) this;
}
public Criteria andDegreeLessThan(String value) {
addCriterion("degree <", value, "degree");
return (Criteria) this;
}
public Criteria andDegreeLessThanOrEqualTo(String value) {
addCriterion("degree <=", value, "degree");
return (Criteria) this;
}
public Criteria andDegreeLike(String value) {
addCriterion("degree like", value, "degree");
return (Criteria) this;
}
public Criteria andDegreeNotLike(String value) {
addCriterion("degree not like", value, "degree");
return (Criteria) this;
}
public Criteria andDegreeIn(List<String> values) {
addCriterion("degree in", values, "degree");
return (Criteria) this;
}
public Criteria andDegreeNotIn(List<String> values) {
addCriterion("degree not in", values, "degree");
return (Criteria) this;
}
public Criteria andDegreeBetween(String value1, String value2) {
addCriterion("degree between", value1, value2, "degree");
return (Criteria) this;
}
public Criteria andDegreeNotBetween(String value1, String value2) {
addCriterion("degree not between", value1, value2, "degree");
return (Criteria) this;
}
public Criteria andMajorIsNull() {
addCriterion("major is null");
return (Criteria) this;
}
public Criteria andMajorIsNotNull() {
addCriterion("major is not null");
return (Criteria) this;
}
public Criteria andMajorEqualTo(String value) {
addCriterion("major =", value, "major");
return (Criteria) this;
}
public Criteria andMajorNotEqualTo(String value) {
addCriterion("major <>", value, "major");
return (Criteria) this;
}
public Criteria andMajorGreaterThan(String value) {
addCriterion("major >", value, "major");
return (Criteria) this;
}
public Criteria andMajorGreaterThanOrEqualTo(String value) {
addCriterion("major >=", value, "major");
return (Criteria) this;
}
public Criteria andMajorLessThan(String value) {
addCriterion("major <", value, "major");
return (Criteria) this;
}
public Criteria andMajorLessThanOrEqualTo(String value) {
addCriterion("major <=", value, "major");
return (Criteria) this;
}
public Criteria andMajorLike(String value) {
addCriterion("major like", value, "major");
return (Criteria) this;
}
public Criteria andMajorNotLike(String value) {
addCriterion("major not like", value, "major");
return (Criteria) this;
}
public Criteria andMajorIn(List<String> values) {
addCriterion("major in", values, "major");
return (Criteria) this;
}
public Criteria andMajorNotIn(List<String> values) {
addCriterion("major not in", values, "major");
return (Criteria) this;
}
public Criteria andMajorBetween(String value1, String value2) {
addCriterion("major between", value1, value2, "major");
return (Criteria) this;
}
public Criteria andMajorNotBetween(String value1, String value2) {
addCriterion("major not between", value1, value2, "major");
return (Criteria) this;
}
public Criteria andGraduateSchoolIsNull() {
addCriterion("graduate_school is null");
return (Criteria) this;
}
public Criteria andGraduateSchoolIsNotNull() {
addCriterion("graduate_school is not null");
return (Criteria) this;
}
public Criteria andGraduateSchoolEqualTo(String value) {
addCriterion("graduate_school =", value, "graduateSchool");
return (Criteria) this;
}
public Criteria andGraduateSchoolNotEqualTo(String value) {
addCriterion("graduate_school <>", value, "graduateSchool");
return (Criteria) this;
}
public Criteria andGraduateSchoolGreaterThan(String value) {
addCriterion("graduate_school >", value, "graduateSchool");
return (Criteria) this;
}
public Criteria andGraduateSchoolGreaterThanOrEqualTo(String value) {
addCriterion("graduate_school >=", value, "graduateSchool");
return (Criteria) this;
}
public Criteria andGraduateSchoolLessThan(String value) {
addCriterion("graduate_school <", value, "graduateSchool");
return (Criteria) this;
}
public Criteria andGraduateSchoolLessThanOrEqualTo(String value) {
addCriterion("graduate_school <=", value, "graduateSchool");
return (Criteria) this;
}
public Criteria andGraduateSchoolLike(String value) {
addCriterion("graduate_school like", value, "graduateSchool");
return (Criteria) this;
}
public Criteria andGraduateSchoolNotLike(String value) {
addCriterion("graduate_school not like", value, "graduateSchool");
return (Criteria) this;
}
public Criteria andGraduateSchoolIn(List<String> values) {
addCriterion("graduate_school in", values, "graduateSchool");
return (Criteria) this;
}
public Criteria andGraduateSchoolNotIn(List<String> values) {
addCriterion("graduate_school not in", values, "graduateSchool");
return (Criteria) this;
}
public Criteria andGraduateSchoolBetween(String value1, String value2) {
addCriterion("graduate_school between", value1, value2, "graduateSchool");
return (Criteria) this;
}
public Criteria andGraduateSchoolNotBetween(String value1, String value2) {
addCriterion("graduate_school not between", value1, value2, "graduateSchool");
return (Criteria) this;
}
public Criteria andEducationFormIsNull() {
addCriterion("education_form is null");
return (Criteria) this;
}
public Criteria andEducationFormIsNotNull() {
addCriterion("education_form is not null");
return (Criteria) this;
}
public Criteria andEducationFormEqualTo(String value) {
addCriterion("education_form =", value, "educationForm");
return (Criteria) this;
}
public Criteria andEducationFormNotEqualTo(String value) {
addCriterion("education_form <>", value, "educationForm");
return (Criteria) this;
}
public Criteria andEducationFormGreaterThan(String value) {
addCriterion("education_form >", value, "educationForm");
return (Criteria) this;
}
public Criteria andEducationFormGreaterThanOrEqualTo(String value) {
addCriterion("education_form >=", value, "educationForm");
return (Criteria) this;
}
public Criteria andEducationFormLessThan(String value) {
addCriterion("education_form <", value, "educationForm");
return (Criteria) this;
}
public Criteria andEducationFormLessThanOrEqualTo(String value) {
addCriterion("education_form <=", value, "educationForm");
return (Criteria) this;
}
public Criteria andEducationFormLike(String value) {
addCriterion("education_form like", value, "educationForm");
return (Criteria) this;
}
public Criteria andEducationFormNotLike(String value) {
addCriterion("education_form not like", value, "educationForm");
return (Criteria) this;
}
public Criteria andEducationFormIn(List<String> values) {
addCriterion("education_form in", values, "educationForm");
return (Criteria) this;
}
public Criteria andEducationFormNotIn(List<String> values) {
addCriterion("education_form not in", values, "educationForm");
return (Criteria) this;
}
public Criteria andEducationFormBetween(String value1, String value2) {
addCriterion("education_form between", value1, value2, "educationForm");
return (Criteria) this;
}
public Criteria andEducationFormNotBetween(String value1, String value2) {
addCriterion("education_form not between", value1, value2, "educationForm");
return (Criteria) this;
}
public Criteria andDepartmentIdIsNull() {
addCriterion("department_id is null");
return (Criteria) this;
}
public Criteria andDepartmentIdIsNotNull() {
addCriterion("department_id is not null");
return (Criteria) this;
}
public Criteria andDepartmentIdEqualTo(String value) {
addCriterion("department_id =", value, "departmentId");
return (Criteria) this;
}
public Criteria andDepartmentIdNotEqualTo(String value) {
addCriterion("department_id <>", value, "departmentId");
return (Criteria) this;
}
public Criteria andDepartmentIdGreaterThan(String value) {
addCriterion("department_id >", value, "departmentId");
return (Criteria) this;
}
public Criteria andDepartmentIdGreaterThanOrEqualTo(String value) {
addCriterion("department_id >=", value, "departmentId");
return (Criteria) this;
}
public Criteria andDepartmentIdLessThan(String value) {
addCriterion("department_id <", value, "departmentId");
return (Criteria) this;
}
public Criteria andDepartmentIdLessThanOrEqualTo(String value) {
addCriterion("department_id <=", value, "departmentId");
return (Criteria) this;
}
public Criteria andDepartmentIdLike(String value) {
addCriterion("department_id like", value, "departmentId");
return (Criteria) this;
}
public Criteria andDepartmentIdNotLike(String value) {
addCriterion("department_id not like", value, "departmentId");
return (Criteria) this;
}
public Criteria andDepartmentIdIn(List<String> values) {
addCriterion("department_id in", values, "departmentId");
return (Criteria) this;
}
public Criteria andDepartmentIdNotIn(List<String> values) {
addCriterion("department_id not in", values, "departmentId");
return (Criteria) this;
}
public Criteria andDepartmentIdBetween(String value1, String value2) {
addCriterion("department_id between", value1, value2, "departmentId");
return (Criteria) this;
}
public Criteria andDepartmentIdNotBetween(String value1, String value2) {
addCriterion("department_id not between", value1, value2, "departmentId");
return (Criteria) this;
}
}
public static class Criteria extends GeneratedCriteria {
protected Criteria() {
super();
}
}
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);
}
}
} | [
"964018625@qq.com"
] | 964018625@qq.com |
0b3b48eefd62e541577e4faf5fdd212a57d7c811 | 736d52af62202656e6623ffe92528d1315f9980c | /batik/classes/org/apache/batik/svggen/SVGGeneratorContext.java | ab15e94eb8db3fb5a29f027fa756341ec5540539 | [
"Apache-2.0"
] | permissive | anthonycanino1/entbench-pi | 1548ef975c7112881f053fd8930b3746d0fbf456 | 0fa0ae889aec3883138a547bdb8231e669c6eda1 | refs/heads/master | 2020-02-26T14:32:23.975709 | 2016-08-15T17:37:47 | 2016-08-15T17:37:47 | 65,744,715 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 50,829 | java | package org.apache.batik.svggen;
public class SVGGeneratorContext implements org.apache.batik.svggen.ErrorConstants {
org.w3c.dom.Document domFactory;
org.apache.batik.svggen.ImageHandler imageHandler;
org.apache.batik.svggen.GenericImageHandler genericImageHandler;
org.apache.batik.svggen.ExtensionHandler extensionHandler;
org.apache.batik.svggen.SVGIDGenerator idGenerator;
org.apache.batik.svggen.StyleHandler styleHandler;
java.lang.String generatorComment;
org.apache.batik.svggen.ErrorHandler errorHandler;
boolean svgFont = false;
org.apache.batik.svggen.SVGGeneratorContext.GraphicContextDefaults gcDefaults;
int precision = 4;
protected java.text.DecimalFormat decimalFormat = decimalFormats[precision];
public static class GraphicContextDefaults {
protected java.awt.Paint paint;
protected java.awt.Stroke stroke;
protected java.awt.Composite composite;
protected java.awt.Shape clip;
protected java.awt.RenderingHints hints;
protected java.awt.Font font;
protected java.awt.Color background;
public void setStroke(java.awt.Stroke stroke) { this.stroke = stroke;
}
public java.awt.Stroke getStroke() { return stroke; }
public void setComposite(java.awt.Composite composite) { this.composite =
composite;
}
public java.awt.Composite getComposite() { return composite;
}
public void setClip(java.awt.Shape clip) { this.clip = clip;
}
public java.awt.Shape getClip() { return clip; }
public void setRenderingHints(java.awt.RenderingHints hints) {
this.
hints =
hints;
}
public java.awt.RenderingHints getRenderingHints() { return hints;
}
public void setFont(java.awt.Font font) { this.font = font;
}
public java.awt.Font getFont() { return font; }
public void setBackground(java.awt.Color background) { this.
background =
background;
}
public java.awt.Color getBackground() { return background;
}
public void setPaint(java.awt.Paint paint) { this.paint =
paint; }
public java.awt.Paint getPaint() { return paint; }
public GraphicContextDefaults() { super(); }
public static final java.lang.String jlc$CompilerVersion$jl7 =
"2.7.0";
public static final long jlc$SourceLastModified$jl7 = 1471109864000L;
public static final java.lang.String jlc$ClassType$jl7 = ("H4sIAAAAAAAAALVafWwcxRWfO387/oqT2CEfTuI4aR3SO1JIKXJIiZ04cTgn" +
"Jg6R6pQc6725u8V7u5vdOftsCE3CR9IKoUANBBRSKplCUSBRCyoVAaVFLSBK" +
"Kz5baIEK/gBKEURtaVWg9L3Z3du9Pe+m94ctzXhvZt7Me7/5zXszs3viI1Jh" +
"6KSNKizCxjVqRDYpbEDQDZrokQXD2AllcfGuMuHve97fdkmYVA6RhrRg9IuC" +
"QXslKieMIbJYUgwmKCI1tlGaQIkBnRpUHxWYpCpDZJ5k9GU0WRIl1q8mKDbY" +
"JegxMltgTJeGs4z2WR0wsjgGmkS5JtEN3uquGKkTVW3caT7f1bzHVYMtM85Y" +
"BiNNsWuEUSGaZZIcjUkG68rp5HxNlcdTssoiNMci18hrLQi2xtYWQdB+qvHT" +
"z46kmzgEcwRFURk3z9hBDVUepYkYaXRKN8k0Y+wl15OyGJnlasxIR8weNAqD" +
"RmFQ21qnFWhfT5Vspkfl5jC7p0pNRIUYWVbYiSboQsbqZoDrDD1UM8t2LgzW" +
"Ls1ba1pZZOId50cn79rT9NMy0jhEGiVlENURQQkGgwwBoDQzTHVjQyJBE0Nk" +
"tgKTPUh1SZClCWummw0ppQgsC9Nvw4KFWY3qfEwHK5hHsE3PikzV8+YlOaGs" +
"XxVJWUiBrS2OraaFvVgOBtZKoJieFIB3lkj5iKQkGFnilcjb2HE5NADRqgxl" +
"aTU/VLkiQAFpNikiC0oqOgjUU1LQtEIFAuqMLPDtFLHWBHFESNE4MtLTbsCs" +
"glY1HAgUYWSetxnvCWZpgWeWXPPz0bZ1t16rbFHCJAQ6J6goo/6zQKjNI7SD" +
"JqlOYR2YgnWrYncKLU8eDhMCjed5Gpttfn7d2ctWt5151myzcJo224evoSKL" +
"i1PDDS8u6um8pAzVqNZUQ8LJL7Ccr7IBq6Yrp4GHacn3iJURu/LMjt98e/9D" +
"9MMwqe0jlaIqZzPAo9mimtEkmeqbqUJ1gdFEH6mhSqKH1/eRKniOSQo1S7cn" +
"kwZlfaRc5kWVKv8NECWhC4SoFp4lJanaz5rA0vw5pxFCmiGRVkjfJeYf/8/I" +
"nmhazdCoIAqKpKjRAV1F+40oeJxhwDYdHQbWj0QNNasDBaOqnooKwIM0tStG" +
"UymqRAd3bbasUHVrLUWQZ9qMj5BDG+eMhUIA/yLv4pdh3WxR5QTV4+JktnvT" +
"2Ufiz5vEwsVgocNINwwaMQeN8EEj5qCRaQbt2KwLWjrvMTbSpJCVmUFCIa7C" +
"XNTJnH2YuxHwAuCG6zoHr9p69eH2MqCdNlYOwGPT9oJw1OO4Ctu/x8WTzfUT" +
"y95a83SYlMdIsyCyrCBjdNmgp8BviSPW0q4bhkDlxIulrniBgU5XRZoAd+UX" +
"N6xeqtVRqmM5I3NdPdjRDNdt1D+WTKs/OXN07MCu714QJuHCEIFDVoB3Q/EB" +
"dOx5B97hdQ3T9dt46P1PT965T3WcREHMsUNlkSTa0O4liReeuLhqqfBY/Ml9" +
"HRz2GnDiTIBFB/6xzTtGgQ/qsv052lINBidVPSPIWGVjXMvSujrmlHD2zsZs" +
"nklkpJBHQR4KLh3U7v3j7z64kCNpR41GV7gfpKzL5amws2buk2Y7jNypUwrt" +
"3jw68IM7Pjq0m9MRWiyfbsAOzHvAQwmc/Tc9u/f1t9+aeiXsUJhBqM4Ow44n" +
"x22Z+yX8hSD9FxN6FywwvUxzj+XqluZ9nYYjr3R0A68ng19AcnRcqQANpaQk" +
"DMsU18/njSvWPPa3W5vM6ZahxGbL6nN34JSf1032P7/nX228m5CIUdfBz2lm" +
"uvI5Ts8bdF0YRz1yB15afPczwr0QFMARG9IE5b6VcDwIn8C1HIsLeH6Rp+5i" +
"zFYYbo4XLiPX7iguHnnlk/pdnzx1lmtbuL1yz3u/oHWZLDJnAQaLEisr8PVY" +
"26Jh3poDHVq9jmqLYKShs4vObPtOk3zmMxh2CIYVwScb23XwoLkCKlmtK6re" +
"+OXTLVe/WEbCvaRWVoVEr8AXHKkBplMjDc43p33rMlOPsWrImjgepAihogKc" +
"hSXTz++mjMb4jEw83vrougeOv8VpqZl9LOTyVRgPCjws38k7i/yhly9+9YHb" +
"7hwz9wKd/p7NIzf/P9vl4YPv/LtoXrhPm2af4pEfip44tqBn/Ydc3nEuKN2R" +
"K45h4KAd2a8/lPlnuL3y12FSNUSaRGvnvEuQs7iuh2C3aNjbadhdF9QX7vzM" +
"bU5X3nku8jo217Bet+bETnjG1vhc7+Eg32+0QdpvcXC/l4Mhwh+2cpGVPO/E" +
"bLXtXWo0XWWgJU3k8t0igcjsgG4ZqdAAT/M0MZ+RBk4gYYzBSQCKTR+L+Tcx" +
"u9zseZ0vQTcWGrQU0gFr5AM+Bl1pGoRZf7HeftLgTCFYqSPUVrwxr/ggL/do" +
"vqtEzVdCOmiNfdBH8z2BmvtJMyRxhsedvPLNeeV77CqP/vES9V8M6QZLgxt8" +
"9E8F6u8nzUi5KEtaMWEG04LmVTtdotpfgXSjNfCNPmprgWr7SQPR08hzW+/W" +
"vN474LRA8WC3xV4HLgP2lmjAIkg3WSrc5GPAeKABftKAe1J1Fmp9Xv9etWid" +
"TpSo9XJIN1vj3uyj9cFArf2kGakdho13SlezSqKYMxCkVN2j/A0Byuem935h" +
"fPwa9wl4O+H4v3JbP7/Q7oqABMP8Yr+TNr8lmDo4eTyx/f41ZgxsLjy9blKy" +
"mYdf++K3kaN/eW6aQ1OldVPiDNiA4xWE3H5+A+HErzcbbn/3Fx2p7lLOM1jW" +
"do4TC/5eAhas8o/iXlWeOfjXBTvXp68u4WiyxIOlt8uf9J94bvNK8fYwv24x" +
"A2vRNU2hUFdhOK3VKcvqys6CoLo8P/uNOKurIR22Zv+wl9sO9YojKueUJ5Q2" +
"BHTm2cmGnF6G+Dg/DNjq/gizuyE0GJSZ8csI3GMN6FIGzi2j1l1OdF/z2yPH" +
"3n/Y5KV3Q+VpTA9Pfv/LyK2TJkfN27HlRRdUbhnzhowr2oRZBFfKsqBRuETv" +
"eyf3PfHgvkNhy8jbwIWNqlLCWer3nMtPBW94saDbDAd35OepBeuWQLrFmqdb" +
"AiYds2PFU+wnGjCDPwuoewyzR2B2U/bsclY4OJycARw4+ddCOmIZc6R0HPxE" +
"/aku8l7PBIDxK8yeYKQOqF6w2/mxg8fpGcDjPKxbAWnSMmqydDz8RAPMfSGg" +
"7veYPQtQpDxQiA4Uz80UNXCrddSy52jpUPiJ+lND5r2+EYDHnzF7lcFZFPCA" +
"PaaHFa/NABTzsA43bccse46VDoWfaICl7wXUfYDZO4BCykFBdlB4d6YI0QXp" +
"PsuU+0pHwU/UnxBZ3us/AqD4FLOPGZyTKSvepruo8ckMgIKncX4tNGVZNlU6" +
"KH6i/jaHQgF1ZVj4OeCRmg6PrIPHFzNFEjwXP2gZ9WDpePiJ+pPkem54QwAo" +
"uCUJ1Zhewz4LOdQI1c4AFJjIQkgnLHtOlA6Fn2iApQsD6hZj1mJ6DRuF6x0U" +
"WmeKEBdCOmWZcqp0FPxE/QlxiJv71QAoVmG2HI7IQIju/OHTQ4uOmQom7ZAe" +
"tax6tHRA/EQD7A24Qw/hHXroAsAi5cXikIPFmpkiRyekxy2DHi8dCz9Rf3Jc" +
"wY3uDgBkI2aXMlIN5Mhfcbp4sX6meIE3cqctg06XjoWfaICp2wPqrsBsK8CQ" +
"csFwhQPDOW96/x8Ycoy0TP/6l0vMZ+T8Et4kw5lzftHXKuYXFuIjxxurW49f" +
"+Qd+UZL/CqIuRqqTWVl2X8C7nis1nSYljn2deR2vcWx2M9LqoxdeMfEHNCA0" +
"ZLbfw0iTtz0jFfy/u53ASK3TDroyH9xN4CheBk3wkeavWJv4dRm+h4iY7yFy" +
"5h5hoRt+HvbnnWvWXDddywtuF/jXQvY9Tdb8Xigunjy+ddu1Z79xv/kWVZSF" +
"iQnsZVaMVJnvanmneNezzLc3u6/KLZ2fNZyqWWHfBhS8xXXrxrkD65m/8Vzg" +
"ea1odOTfLr4+te6pFw5XvhQmod0EwZ2zu/iNTU7L6mTx7phzzeb62oy/7+zq" +
"vGd8/erkx3/i78SI+a3BIv/2cfGVB656+fb5U21hMquPVEiwDcvxV0kbx5Ud" +
"VBzVh0i9ZGzKgYrQiyTIfaQ6q0h7s7QvESMNSE4B920cFwvO+nwpvl5npL34" +
"Pqb4o4RaWR2jerft0OtjZJZTYs6M57osq2keAackP5Vzi22Pixu/13j6SHNZ" +
"LyywAnPc3VcZ2eH8VZz7yyZe4L4+wnkGpsdj/Zpmv/WundI440NjZhssZyS0" +
"yiz1OPrQBF8u4/wRs+v+B0dIOcu0KAAA");
public static final java.lang.String
jlc$CompilerVersion$jl5 =
"2.7.0";
public static final long jlc$SourceLastModified$jl5 =
1471109864000L;
public static final java.lang.String
jlc$ClassType$jl5 =
("H4sIAAAAAAAAALV7e6zk1nkfd6VdaTeSdiVbjyjWw9LaiTzGcobkvCo3NYfz" +
"4gyHQ3JmyJmpbZnDN4ev4XsYq5EVP4Q4cIVUdhRAEfKHgripYhutjRhIHCiP" +
"NnETBE2Rpm3QxmlQtG5TF3HRpm3cJj3k3Hvn7t2HtdjtBc65557n7/d93/nO" +
"OTznvvlt6EzgQyXPtbaa5YaXlTS8bFrVy+HWU4LLA6rKiH6gyIQlBsEU5D0n" +
"PfXlC3/x3Zf1i6ehs0voHaLjuKEYGq4TcErgWrEiU9CFfW7HUuwghC5SphiL" +
"cBQaFkwZQfgsBX3fsaYhdIk6hAADCDCAABcQYHxfCzS6V3Eim8hbiE4YbKC/" +
"A52ioLOelMMLoXdf2Ykn+qJ90A1TMAA93J3/zQNSRePUh5484r7jfBXhz5Xg" +
"V37qIxf/4R3QhSV0wXAmORwJgAjBIEvoHluxV4of4LKsyEvofkdR5IniG6Jl" +
"ZAXuJfRAYGiOGEa+ciSkPDPyFL8Ycy+5e6Scmx9Joesf0VMNxZIP/zqjWqIG" +
"uD6057pj2M3zAcHzBgDmq6KkHDa5c204cgg9cbLFEcdLQ1ABNL3LVkLdPRrq" +
"TkcEGdADO91ZoqPBk9A3HA1UPeNGYJQQevS6neay9kRpLWrKcyH0yMl6zK4I" +
"1DpXCCJvEkIPnqxW9AS09OgJLR3Tz7fpD3z2R5y+c7rALCuSleO/GzR6/EQj" +
"TlEVX3EkZdfwnvdRnxcf+vpLpyEIVH7wROVdnV/62Hc++P7H3/rtXZ0fuEad" +
"8cpUpPA56Y3Vfb//LuKZ5h05jLs9NzBy5V/BvDB/5qDk2dQDM++hox7zwsuH" +
"hW9x/2Txwi8of3YaOk9CZyXXimxgR/dLru0ZluL3FEfxxVCRSeic4shEUU5C" +
"d4E0ZTjKLnesqoESktCdVpF11i3+BiJSQRe5iO4CacNR3cO0J4Z6kU49CIIe" +
"AAF6GIQfhXY/xe8Q+gisu7YCi5LoGI4LM76b8w9gxQlXQLY6vAJWv4YDN/KB" +
"CcKur8EisANdOSyINU1x4AnfO2Dh+gdz6XJuZ97/9xHSnOPF5NQpIP53nZz8" +
"Fpg3fdeSFf856ZWo1fnOF5/7ndNHk+FAOiHUAoNe3g16uRj08m7Qy9cY9FLP" +
"Fz39yGO0FVWMrDCATp0qILwzx7TTPtDdGngB4B/veWby4cFHX3rqDmB2XnIn" +
"EHxeFb6+myb2foMsvKMEjBd669Xk4/yPlk9Dp6/0tzkPkHU+b87kXvLIG146" +
"Oc+u1e+FT3/rL770+efd/Yy7woEfOIKrW+YT+amTEvddSZGBa9x3/74nxa8+" +
"9/XnL52G7gTeAXjEUAQWDJzN4yfHuGJCP3voHHMuZwBh1fVt0cqLDj3a+VD3" +
"3WSfU5jCfUX6fiBjGDqIrjD5vPQdXh6/c2c6udJOsCic79+ceD/zr37vP6GF" +
"uA/99IVjK99ECZ895hvyzi4UXuD+vQ1MfUUB9f7tq8zf+9y3P/23CwMANZ6+" +
"1oCX8pgAPkEs7O2Tv73519/84zf+4PTeaEKwOEYry5DSHcm/Bj+nQPirPOTk" +
"8ozdvH6AOHAuTx55Fy8f+b17bMDPWGAm5hZ0aebYrmyohriylNxi/8+F91S+" +
"+l8+e3FnExbIOTSp93/vDvb539+CXvidj/zPx4tuTkn5OreX377aznm+Y98z" +
"7vviNseRfvyfP/bTvyX+DHDDwPUFRqYU3gwq5AEVCiwXsigVMXyiDMmjJ4Lj" +
"E+HKuXZsP/Kc9PIf/Pm9/J//6ncKtFduaI7rfSR6z+5MLY+eTEH3D5+c9X0x" +
"0EE97C36Qxett74LelyCHiXg4IKxD9xReoWVHNQ+c9cf/dpvPPTR378DOt2F" +
"zluuKHfFYsJB54ClK4EOPFnq/a0P7qw5uRtEFwuq0FXkdwbySPHXeQDwmev7" +
"mm6+H9lP10f+cmytXvzT/3WVEAovc41l+ET7Jfzma48SP/xnRfv9dM9bP55e" +
"7aLB3m3fFvkF+3+cfursPz4N3bWELkoHG0NetKJ8Ei3BZig43C2CzeMV5Vdu" +
"bHar+LNH7uxdJ13NsWFPOpr90gDSee08ff6EbymW08dBeOHAt7xw0recgorE" +
"B4sm7y7iS3n0g4dT+ZznuyFAqchF38+E0BkPiGq3D34whO4r7ENMQrCHBdk7" +
"X5XHaB7hOw3XrmsNz16J9UkQPn6A9ePXwTq4DtY82T4EeRYsA+5aOUR54Qjl" +
"pMg/AXN4kzDfC8KLBzBfvA7MyduBeS7fXOWe+QjpA0dIicOiE2CnNwn2MRB+" +
"7ADsj10H7IfeDtg7Jcvwrtb7RBe9kxg/fJMYfxCETxxg/MR1MCpvB+MZPbfN" +
"Q5APH4HkwN5UyY8R/UPbPYZWvUm07wLhkwdoP3kdtM7bkqjq7mfSvUdgu+5V" +
"E8m9SYhPg/CpA4ifug7E5O1APL8CZybNdyNHvlr1YG10/RNI0++JtOg5PQWc" +
"yxnkcv1yOf/7hWtjuSNP/lAxnfPzL2ihGo5oHYJ72LSkS4dbCB6ch8EKcMm0" +
"6odILxZIc197eXeIPIH1mbeNFSxO9+07o1xwHv3Mv3/5d//u098EK8gAOhPn" +
"3h0sHMdGpKP8iP6pNz/32Pe98iefKfZHQLj8J7776AfzXj9zI8Z59Ik8+uQh" +
"1UdzqpPi9EGJQTgqtjGKXLC94cLJ+IYNdn7xwfkTfv6Bb65f+9Yv7s6WJ1fJ" +
"E5WVl1758b++/NlXTh870T991aH6eJvdqb4Afe+BhH3o3TcapWjR/Y9fev6X" +
"v/D8p3eoHrjyfNpxIvsX//D//u7lV//kG9c4Ft1pubeg2PDib/axgMQPfyhe" +
"VIVESjlBHaONOuxupgjRUacRiYkcOhlXBuRwPiCNZRmTppoz0GpczWOlWh2p" +
"Rg2+HlVjcAYOA6KDElyTHLoznG61uMnQs4jZpMURW5fHRb5LTVrDYVZdiWRn" +
"CGutYWfGhSIvaE0KXaJy1GSUkt3EpDCb6/EyrI+UOlzN5kEWoLFBVgZ6bTih" +
"h0ZGpCa/4doLb9Vps+0lWNrYeRvBLUtSe9Eo6sdKs67Ka3vB4zVO9zmtSUYE" +
"Ow+soaGMyNVgMdMSe0iQldDqiSy5bjmcN+unwsIjvPZyUF03e7OywJFWZdOw" +
"h+3VYqBo6cgKtelA6QVYhghcOQlMrWevJ9VB2KHRaBP1huspL6CSOK2rlVXW" +
"5xejcNSoLloGTQdC1JlNeuJySUrmbN2rNXyv2k9pS5KnQeAa9EgyKg3dp1gD" +
"ScOFwMqt0ibuTzOstrYzrSMlXHfGrdGsqbfa/EzxFuuFOOeGdGNdXpQSq1Id" +
"b3sDxxKDlOQaiULjmzZnd1mksnG6gq5Oq3zgrVWrahJ1r+zRHDlbCPxqYUxW" +
"LhusNku37bfbldmoESKUlglUUFmJFW+5HJNytSw59aY/bdKjbdnUOz2Dtzr0" +
"jGPZdU9LkpbbZrNpnzfZ7aDVKdPrUBtOmZlemSwJixAi207KnsdqAdGk4wQb" +
"doUFulE7SX9Y1ftBB2WMdcY3SgtrLPaCecoPhJnR8ifI2BfFbsxr41a4HLoD" +
"Q+mSLdRam1VjCAbuOoYlmSuk36nSeJvbaKklTmcwT60NFu96tLE2iLK7GWvm" +
"bFah2LBDdvFoM6KYdtil+kKr3+1M6A42CqnpKiACzVpU+rgGhAK2sqkTE8LS" +
"0wRFmDNMVl4tK2Gl5q+6fWKAs7VBTXNduJaxQ5Mm65P2YGONFxyy0BzBXzjS" +
"kJo1lLY+IkxFrva8MFSduoxIoRBWK9WKvc2kgYsgmBK7kyFlVJh2e9KIapHd" +
"8PCM39DLGdugBlSdkPw62drUFr6H9fqi5KDGYMZFMDUyw2ZDgZvt5miUbJSy" +
"aYnkZpkxuNu0DTvsrIGPWG1mg4omdzv9mq1PNsN+BVa4oWOMJ6xbmdQlZ50s" +
"LVXkpOpa4Idxg+4Qgk5gE7frYdZAdMSs6uPlOKl6aZewjR7Hr011oCxUuAGT" +
"jq2LmUy4JL4ZekOTw/lKt4SVXWWQ6kl7IffZlWCWWZoWg3ZLHG8c1x0m5Kgc" +
"TsLebGtvOFxGVysxmPV5n5oJ7LK5GZnVVrtXUkb6jMThLRVjnqyjQspV2SmP" +
"lQbr0ImnyEw1smrcSQJecyWapJNEHLEK3eh0zOqG4ER2FSLDhBJMPx5NVxNv" +
"QPD2rEuQYp2Y09OB00cWUdpP8Ijo1TK37ze9WlPpI6MNIdPWYpz0mGnTHSSV" +
"8RgjwghOG8I0U2fTbbMqNtDJwhrJZLAltj7RMmXa1rxGKzYmjFDeYCt93bZS" +
"MrJ8x2hps+qcW7q4XJrN6VqqbEKe29ijKonSMiObXJuWw0q7JEyHATye0+X6" +
"iIjqFYwdRH0CmGmbd1soC3da8jittpp1XWbRaVMOsRpTAQBr1SkqSFynPwpm" +
"tLWeTMXyGLMMTlEiSt9s1NYCHlnNPpchPadtTMlWtwXX0mwa9jQW3gRxuYpY" +
"JN0yZJ6ZMKTQ4835KJ5Epm9b/TaSBcvAWVtrb9Dqsxw2pHR0Vo9Rs57VsDVB" +
"exxW6fF1TfWGGVUV7SRAVtEaWdRNeuvNEj9EzaTWIEd1xtyU7eaIE4ytugrw" +
"cdaPcTaxJXgqNSNYrYTNkqgY82A20FubETZOMMxJEWRZ2s4b+qTd7KZ0rbtN" +
"kniWZmZpvrGiZdNZLEwf5cp4reFolSYuOZy0YXHaE9l1G0ij0oAdcxILDCOi" +
"QjUe1ZainvZWVM2hUWwwUStlFGHqsDNHkIZdJciZrLYyxLKjmKxOg8ZK7pYX" +
"XFbZtipVUWWkLPHLbHeEc70m2amuarzUTkinQVT6ZEAp/RrnlapG1l0sVi42" +
"pwxmXje0qO841hr2ZCdLK5YdriKqss3QCHb7wpJqDxycFamOEfgNhl8gtYGO" +
"em67z2+apr2hFsOJHmDxeMWEY+Dp7VGqIwS54JOJtELQeeJSa2IIOh3WfKU0" +
"nk8pXoGFzoqIRU7gXb7jN/B5f7huedbIbEsY6qGoP7LGTCD4pG1qiocbuqsN" +
"JX0yn2alkm2OVpjZSRpoDLa5mjKOG7y3WVpNajzd8pzGEGYSoI113YC3urVt" +
"lpqL/qquJ1kzGcqwV6fJTIWZZmxhCyaGqdCd+zpjI6KKeR3V8DAs3LQceCFL" +
"qNOJhjTCDbGqjg1xGREbsMVYTkSh2wrSndCzicj1YifuRGxQNyLAGhVpcyXK" +
"utxtsvN6nI1WYE6hzjpqmC5SqbeUsLTqTB2zV4l1qV7qaChSKrOyF0tzAraw" +
"kZ7oJUTyejwzhjsrah7OBbc8FwRtMEPXjbBsaJIZaD1suZFxfAqPyqNliWut" +
"MW2xyFoTlhhOuRJVmkpp1MwCZVmO2akk9Hx2Vta6fhUflVpWxeu53FKt9xU1" +
"pLQp0V1sJsyM95PUhzWNgmU33oSdjJeJsW3QqtzqNzKkZcfhYLTlUj1Q5Jih" +
"aEXh63Viw8BxZ9LkG6Mau6S0NGw0O41uLWo42cyoDjuhOBI6vTJG2fw0lN3Q" +
"U7X5xKRVgmZsz9cEvz5hGa7c0DOhBAsxjdUxisMbAoGmPNanNAZYuYmTaw0V" +
"Jr5U7TG4MsRbajjElcqg0rW95jxuKqFgyFNv4jbBPo+uxCYabc2m1MV9FVn3" +
"xLWsuxV0YikZWE8Wo5RY8zRiwni5tY0Uu4lWdZVJxGZiYeNSH4vRwQrMNbbu" +
"bvDWiGks/NKU9huW3XYxsP1NYRWrLLU0oMxtc2UNt/ZCVkulIboWaVgRaiJb" +
"GVvAQxlt2sCxVOig/WoJL/U7fiatVg6MdlPEq1vUeFQxBdnFpgRcVXBdDBou" +
"bMwtQRmr5rw1jederRFhwAml5NgKG5HaHDSxVUwPG+oiiREsxZGYo2eIPuvK" +
"+niI8kMp3myDGuFSboOBI3o8jHySA44pBpusZjBuLlxzGCmzQZVFWv2pjUh2" +
"z+nWeqW2BrdpcwNrRhZtO+XeYLJsSAGJ9kbAkZG9zEDMilUZy104Q7ZMHwUz" +
"ozrkUbbEe1O8yahgBm2HyHSwVmmk3rc4Tp6tdCfT3cRHgJ21uuow2LS4qDON" +
"la2KMmpfi9e0vm2Yq4QU6I1FEYLio84oZFpCEwvE9qoN1tnqWPFaSiSwlN+1" +
"N/IKNxZygDDdWSlxeibRZpLIVZJtxiEtZAavAslaYOPBVsK5BCvJue2SS6nG" +
"lftM2oFFMP+sOtMi2+mwsVUWQ3a86dYSBLZTraF6PaltMsN0hQvOZGRvtnI7" +
"a3A4M1InPa0eKwuGDVmvnbJAo7OsUZ7Rc8KX5cm2ipjejDEGJYtuV32k1Fm0" +
"+07WrVtSd9llCJwRxX5XhGm8Nc0CHENXkhQoWI1vu4IqkoRVT+YzddFejrEW" +
"sV13W7LVwuTagiyzc48Jolmp7PWTGTxz0tYSjQIYbI2xLjVmesvtdDiJFc+P" +
"3Ia0Hmnk0JHmWEj3+CVtzWrDfs2ATbHPat3KkjexsUJwtlZjfJLpdzO62zGT" +
"OYNoy6bQ9pQcv8esFbuKsQnuRgTYgC11JckwaiyzZEXC8O7AJNm15lD9cGzh" +
"ta6DGLjHBu2avjQr9qDW5qJuLS3PBFsZgtUfyF5YShuv3M1lz1qpMYjrFRZ3" +
"ebuH9Mk6yZJmBI/7UxaLxjbr2vUlroRiWgv7HA532HYdRwAWWO/PfRcPcKMq" +
"zY01yYDpvja4rbJOt0i7bzRkImtyKjqQkgUatbXWmkTE+QjsEaojXZVWHhbM" +
"a7ZCdlBpI4VauTY3d3L3kITZ+EErGDYIVgq6ic4y7bHQrIGN00Jyt+UpA9es" +
"cgxc67TRCbF1UrUyNezPh9Fi3o1IM00jX8CaaokFO6UlBRMbMuI2m6nAW8i8" +
"QdQdI6g4YNtlOoiscEgsCSkyalIbN5WVkdrp0wReXlIrNSkb0zArm111C0dV" +
"FJ8M0Wnbd7f9ZkpjhK601miyVsRYGMSYzNklHTMW9W13W9WrusuFpX68chwh" +
"FuZtWd4mYdSFzTkbL5pTedWYgzXdMbdgKkSVZb2ZxjDYMC8nXYN1giUvjviB" +
"E4uO7Si0kmWUhEY1eEgtEZVebjeC0Fdb+qSRzud+6q/btaoNN/hMU8SKK4+n" +
"KuVjpVCped2kOo911nblcidZIlkEG/R0Vqdq9jSte3qWKasa4m7heinbxD25" +
"ASv+OkVho96YkCURbZExjIBzL9+qVWsldVWdIRV9tIkYvmMkbSlO+fJ6lVZn" +
"Mt/KeL1sNJe9bKgtfNbYTklVZGubsl4P6ixYgUb0pIO1mkhZ6ibxuOQkXmxV" +
"HY9CMWazwlyMEwUOMRVfDcvj0FwOltNFUBtV626wQdYKLkprpsoDV4cwRhrB" +
"FdSsTfr0ktpuE9xhJJSXlojSb/DLrL7dLhWMwoAXWve8QDbhpWfHsBA5Molh" +
"Zdpc6kGw3E7KWyOrjBmfbXWBH4cTLijFpVZZJsdSVB7iOJ5/znjt5r4o3V98" +
"PDt6jmFa9bzg0zfxJSW99oCn9wOmR18liwufPHG9a85jV0FQ/tHoses9vig+" +
"GL3x4iuvy+Ofq5w+uEL7qRA6e/AmZt/PfaCb913/y9ioeHiyv9f5rRf/86PT" +
"H9Y/ehM310+cAHmyy78/evMbvfdKP3kauuPolueqJzFXNnr2yrud874SRr4z" +
"veKG57EjsV7IxfV+EF46EOtLJz/27vV57S+9P7SzhxPXk6f2FcZFhX90g/vL" +
"r+bRF0PoXKCEk/29y08es5/Ph9CdsWvIe8P60vf6RHd8lCLjHxyxfijPfAKE" +
"nzhg/RO3h/VxUr9+g7LfzKOvA8LaIeFCUHtyv3oL5AqVVkF4+YDcy7ddpfOi" +
"wu/dgOE/y6NvhNA9QKVXXET90p7kP70Fkt+fZ74HhFcOSL5y+zX4Rzco+zd5" +
"9C8AP+0Ev/me3x/eqhLzW61XD/i9etuVuHtT9B9uQPJbefTvQuiuXImW4Z3Q" +
"35/eAr8H88z8Huy1A36v3X79/bcblP33PPo2oKbtqYl7av/1VlX3LAg/e0Dt" +
"Z2+76syiwl9dn9+pYrz/DRZpoLqr7y6PKfEvb4Fp/jKgKH/jgOkbt12Jp87f" +
"oOyePDoDSGrXImkekTx19lbVmV/Yf+GA5BduuzqDgs1DN2D6SB7dv5uJh7e7" +
"eyWeeuAW+L0zz/wBEN484Pfm7VfiUzcoy3s79dhuJh5SC/bUHr9V1aEgfPmA" +
"2pdvu+o+VnC4fAN++fX0KbBdvheornV0F35Cge+7VVf6FAhfOWD5lduvwL9x" +
"g7IP5FEVENROEvzYnmDtVtX4DAhfOyD4");
public static final java.lang.String
jlc$ClassType$jl5$1 =
("tduuxm7BpHsDlv08wkPobqDGo5dKxzTYulUN5s9sfuWA4K/cfg1yNyib5tEI" +
"cNOOcevuudE3wy0NoYeu/Xi4qPpgCJVu4h0yOIE9ctX/Ouze50tffP3C3Q+/" +
"PvuXxZPbozf05yjobjWyrOPv246lz3q+ohqFuM7tXrt5hQw+HEIPXwdX/nyk" +
"SOQETn1oV/+jIXTxZP0QOlP8Pl5PCqHz+3qgq13ieBU1hO4AVfKkdvQ+6thD" +
"kN0zv/RUUfTIcRMqVvDv6fyPHYqfvuI0W/yvyeHJM9r9t8lz0pdeH9A/8p3a" +
"z+1eBEuWmGV5L3dT0F27x8lFp/np9d3X7e2wr7P9Z75735fPvefwmH3fDvDe" +
"nI9he+LaT247thcWj2Szrz38lQ/8/Ot/XLyE+X96IrcoBDQAAA==");
}
protected SVGGeneratorContext(org.w3c.dom.Document domFactory) {
super(
);
setDOMFactory(
domFactory);
}
public static org.apache.batik.svggen.SVGGeneratorContext createDefault(org.w3c.dom.Document domFactory) {
org.apache.batik.svggen.SVGGeneratorContext ctx =
new org.apache.batik.svggen.SVGGeneratorContext(
domFactory);
ctx.
setIDGenerator(
new org.apache.batik.svggen.SVGIDGenerator(
));
ctx.
setExtensionHandler(
new org.apache.batik.svggen.DefaultExtensionHandler(
));
ctx.
setImageHandler(
new org.apache.batik.svggen.ImageHandlerBase64Encoder(
));
ctx.
setStyleHandler(
new org.apache.batik.svggen.DefaultStyleHandler(
));
ctx.
setComment(
"Generated by the Batik Graphics2D SVG Generator");
ctx.
setErrorHandler(
new org.apache.batik.svggen.DefaultErrorHandler(
));
return ctx;
}
public final org.apache.batik.svggen.SVGGeneratorContext.GraphicContextDefaults getGraphicContextDefaults() {
return gcDefaults;
}
public final void setGraphicContextDefaults(org.apache.batik.svggen.SVGGeneratorContext.GraphicContextDefaults gcDefaults) {
this.
gcDefaults =
gcDefaults;
}
public final org.apache.batik.svggen.SVGIDGenerator getIDGenerator() {
return idGenerator;
}
public final void setIDGenerator(org.apache.batik.svggen.SVGIDGenerator idGenerator) {
if (idGenerator ==
null)
throw new org.apache.batik.svggen.SVGGraphics2DRuntimeException(
ERR_ID_GENERATOR_NULL);
this.
idGenerator =
idGenerator;
}
public final org.w3c.dom.Document getDOMFactory() {
return domFactory;
}
public final void setDOMFactory(org.w3c.dom.Document domFactory) {
if (domFactory ==
null)
throw new org.apache.batik.svggen.SVGGraphics2DRuntimeException(
ERR_DOM_FACTORY_NULL);
this.
domFactory =
domFactory;
}
public final org.apache.batik.svggen.ExtensionHandler getExtensionHandler() {
return extensionHandler;
}
public final void setExtensionHandler(org.apache.batik.svggen.ExtensionHandler extensionHandler) {
if (extensionHandler ==
null)
throw new org.apache.batik.svggen.SVGGraphics2DRuntimeException(
ERR_EXTENSION_HANDLER_NULL);
this.
extensionHandler =
extensionHandler;
}
public final org.apache.batik.svggen.ImageHandler getImageHandler() {
return imageHandler;
}
public final void setImageHandler(org.apache.batik.svggen.ImageHandler imageHandler) {
if (imageHandler ==
null)
throw new org.apache.batik.svggen.SVGGraphics2DRuntimeException(
ERR_IMAGE_HANDLER_NULL);
this.
imageHandler =
imageHandler;
this.
genericImageHandler =
new org.apache.batik.svggen.SimpleImageHandler(
imageHandler);
}
public final void setGenericImageHandler(org.apache.batik.svggen.GenericImageHandler genericImageHandler) {
if (genericImageHandler ==
null) {
throw new org.apache.batik.svggen.SVGGraphics2DRuntimeException(
ERR_IMAGE_HANDLER_NULL);
}
this.
imageHandler =
null;
this.
genericImageHandler =
genericImageHandler;
}
public final org.apache.batik.svggen.StyleHandler getStyleHandler() {
return styleHandler;
}
public final void setStyleHandler(org.apache.batik.svggen.StyleHandler styleHandler) {
if (styleHandler ==
null)
throw new org.apache.batik.svggen.SVGGraphics2DRuntimeException(
ERR_STYLE_HANDLER_NULL);
this.
styleHandler =
styleHandler;
}
public final java.lang.String getComment() {
return generatorComment;
}
public final void setComment(java.lang.String generatorComment) {
this.
generatorComment =
generatorComment;
}
public final org.apache.batik.svggen.ErrorHandler getErrorHandler() {
return errorHandler;
}
public final void setErrorHandler(org.apache.batik.svggen.ErrorHandler errorHandler) {
if (errorHandler ==
null)
throw new org.apache.batik.svggen.SVGGraphics2DRuntimeException(
ERR_ERROR_HANDLER_NULL);
this.
errorHandler =
errorHandler;
}
public final boolean isEmbeddedFontsOn() {
return svgFont;
}
public final void setEmbeddedFontsOn(boolean svgFont) {
this.
svgFont =
svgFont;
}
public final int getPrecision() { return precision;
}
public final void setPrecision(int precision) {
if (precision <
0) {
this.
precision =
0;
}
else
if (precision >
12) {
this.
precision =
12;
}
else {
this.
precision =
precision;
}
decimalFormat =
decimalFormats[this.
precision];
}
public final java.lang.String doubleString(double value) {
double absvalue =
java.lang.Math.
abs(
value);
if (absvalue >=
1.0E8 ||
(int)
value ==
value) {
return java.lang.Integer.
toString(
(int)
value);
}
else {
return decimalFormat.
format(
value);
}
}
protected static java.text.DecimalFormatSymbols
dsf =
new java.text.DecimalFormatSymbols(
java.util.Locale.
US);
protected static java.text.DecimalFormat[]
decimalFormats =
new java.text.DecimalFormat[13];
static { decimalFormats[0] = new java.text.DecimalFormat(
"#",
dsf);
java.lang.String format = "#.";
for (int i = 1; i < decimalFormats.
length;
i++) { format += "#";
decimalFormats[i] =
new java.text.DecimalFormat(
format,
dsf); } }
public static final java.lang.String jlc$CompilerVersion$jl7 =
"2.7.0";
public static final long jlc$SourceLastModified$jl7 =
1471109864000L;
public static final java.lang.String jlc$ClassType$jl7 =
("H4sIAAAAAAAAALVbC3AcxZnuXdmSrIf18Psl27Iw2MCugZjDCEhsWbJF1pZi" +
"GcHJYHk025LGnp0ZZnqllYMPcBWFQ1VcPMybuC4V84hDcJJLCid3BF+lQqAg" +
"qQpwlwMucEmueBxHAUkR7iCP+//umZ3Z2e0x8u2qanpH091//9/Xf//9T3fP" +
"4++RmY5N2qjBEmzKok6i22D9iu3QdJeuOM5OeDas3lul/GH329s3xEn1EJk9" +
"rjjbVMWhPRrV084QWaYZDlMMlTrbKU1jjX6bOtSeUJhmGkNknub0ZixdUzW2" +
"zUxTLDCo2CnSojBmayNZRntdAYwsS4EmSa5JcmM4uzNFGlTTmvKLLwwU7wrk" +
"YMmM35bDSHNqrzKhJLNM05MpzWGdOZuca5n61JhusgTNscRefb1LwZWp9UUU" +
"tH+n6Y+f3j7ezCmYoxiGyTg8Zwd1TH2CplOkyX/ardOMcz35O1KVIvWBwox0" +
"pLxGk9BoEhr10PqlQPtGamQzXSaHwzxJ1ZaKCjGyslCIpdhKxhXTz3UGCbXM" +
"xc4rA9oVebQCZRHEu89NHrl3d/P3qkjTEGnSjAFURwUlGDQyBITSzAi1nY3p" +
"NE0PkRYDOnuA2pqia/vdnm51tDFDYVnofo8WfJi1qM3b9LmCfgRsdlZlpp2H" +
"N8oNyv1v5qiujAHW+T5WgbAHnwPAOg0Us0cVsDu3yox9mpFmZHm4Rh5jxxeh" +
"AFStyVA2buabmmEo8IC0ChPRFWMsOQCmZ4xB0ZkmGKDNyGKpUOTaUtR9yhgd" +
"RosMlesXWVBqFicCqzAyL1yMS4JeWhzqpUD/vLf9ssNfNrYacRIDndNU1VH/" +
"eqjUFqq0g45Sm8I4EBUb1qbuUeY/dShOCBSeFyosyjx5w4dfOK/t1LOizJIS" +
"ZfpG9lKVDavHRmb/cmnXmg1VqEatZToadn4Bcj7K+t2czpwFHmZ+XiJmJrzM" +
"Uzue+dubjtN346Sul1Srpp7NgB21qGbG0nRqb6EGtRVG071kFjXSXTy/l9TA" +
"fUozqHjaNzrqUNZLZuj8UbXJ/weKRkEEUlQH95oxanr3lsLG+X3OIoTUwEUu" +
"hStBxB//ZWR3ctzM0KSiKoZmmMl+20T8ThI8zghwO54cAavfl3TMrA0mmDTt" +
"saQCdjBOvYyJsTFqJAcGt7goTNsdSwm0M6viLeQQ45zJWAzoXxoe/DqMm62m" +
"nqb2sHoku6n7wyeGnxeGhYPBZYeRc6HRhGg0wRtNiEYTJRolsRhvay42LroZ" +
"OmkfDHfwtw1rBq67cs+h9iqwL2tyBjCMRdsL5p0u3yd4jnxYPdHauH/l6xf8" +
"JE5mpEirorKsouM0stEeAwel7nPHcMMIzEj+xLAiMDHgjGabKk2DX5JNEK6U" +
"WnOC2vickbkBCd60hQM0KZ80SupPTt03efPgjeviJF44F2CTM8GNYfV+9OB5" +
"T90R9gGl5Dbd+vYfT9xzwPS9QcHk4s2JRTURQ3vYGsL0DKtrVyg/GH7qQAen" +
"fRZ4a6bA6AJH2BZuo8DZdHqOG7HUAuBR084oOmZ5HNexcduc9J9wM23h93PB" +
"LGbj6FsJ1wvucOS/mDvfwnSBMGu0sxAKPjFcPmB97d9+8c5FnG5vDmkKTP4D" +
"lHUG/BYKa+UeqsU32502pVDu1/f133X3e7fu4jYLJVaVarAD0y7wVwofC7c8" +
"e/0rb7x+7OW4b+eMzLJsk8HQpulcHidmkcYInNDgal8lcH06SEDD6bjKABPV" +
"RjVlRKc4tv7UdNYFP/jvw83CFHR44lnSeacX4D9ftInc9Pzuj9u4mJiKU69P" +
"m19M+PM5vuSNtq1MoR65m19cdv/PlK/BzADe2NH2U+5gY+5wR6UWwsBClzJ5" +
"kZpIm5nEZlPNZmCg8U5dz4us4+nnkA1ekfC8DZic5QQHR+H4C8RPw+rtL3/Q" +
"OPjBjz/kUAoDsKAtbFOsTmF+mKzOgfgFYee1VXHGodznTm2/tlk/9SlIHAKJ" +
"Kjhkp88G95krsBy39MyaV//5J/P3/LKKxHtInW4q6R6FD0IyC6yfOuPgeXPW" +
"578gen6yFpJmDpUUgS96gOwvL92v3RmL8Z7Yf3LB9y979Ojr3AotIWMJrz8b" +
"J4MCr8vDeH/gH3/pb/7l0TvumRSBwBq5twvVW/hJnz5y8Lf/U0Q593MlgpRQ" +
"/aHk4w8t7rriXV7fdzhYuyNXPIGB0/brXng881G8vfqncVIzRJpVN2weVPQs" +
"DuMhCBUdL5aG0LogvzDsEzFOZ96hLg07u0CzYVfnT5xwj6XxvjHk3XgXLoRr" +
"vTvq14e9W4zwmy/yKmfzdC0m5wftIS9qRoQoRupgiAnDm8InFwvPiemlmKSE" +
"sMuldthd2FgbXG5R8VtC7wGhNybbi1WV1WakQctAlLxVMdIQ9nmuokMWffQG" +
"CodA7ZwmqPPg2uKqtUUC6tpIULLajMwZwxBJU3tLYJNGVluK64QgXjdNiKvh" +
"SrlKpiQQaSREWW14rwa/QA0HBnoI3zkyfN2hCiFwo9MEtxyuL7nqfUkCzogE" +
"J6vNSL2Wzge5Hq7VERFx7+Z88RAq8wyG2qCr16AE1WQkKlltGGoOm9I/81Ab" +
"CBQOgcpNE9RSuHa5au2SgLopEpSsNtjhmP82ksGIwgPWzKdK9O4J8VIfAnHz" +
"GfTMHleNPRIQX4kEIasNPUNt27Q/a890BwqHQN12Bj1DXbWoBNSdkaBktRmp" +
"AXV7YDovfN3DV6qB7IgDr2ZaBiLxCXet4sL+Peqhjv7/FOHHohIVRLl5jyW/" +
"OvirvS/wOL8WX/52elNu4NUOXhIDLxnNQu2/wl8Mrr/gheriA/yFWKDLXXhY" +
"kV95wPApMg4KAUgeaH1j30Nvf1sACAc9ocL00JHb/po4fERE7mL5alXRClKw" +
"jljCEnAweQC1WxnVCq/R89aJA//42IFbhVathYsx3UY28+1//fMLifv+47kS" +
"awA1I6apU8XIR6Kx/Pv73ML+EaA2f6Xpn25vreqBV8deUps1tOuztDddGCDV" +
"ONmRQIf5S2P8QRAedg4jsbXQDyEjv+sMpsG9rpnulRj58Ugjl9WGSGtM3UxH" +
"lazOHG/cbprG0knHFluxxvOLrZ6oEOBvTRPwfLgsV2VLAvgfIgHLavNXWqpq" +
"jhfg3+vaIv48FLj/e0aqNNcZB0wH/30k3J/f/+zw+CJBD1xZV8GsBN7TPrxz" +
"i1+9ZbUZaYT4HyJSvQeXL/JziXg55Atsm4P5ISCnPjuQefg0AYycFEVjT0qA" +
"PFv6fSCOtwlGqh2+WB96O5jrCSwhGDom7Yx6yNokyAamMiOmHjbE56YJEMLG" +
"2I9cPX4kAfhSFEBMXigBTiaUkdmFHVi4x5WfS/jShfBa19Y/87TzjTe/Jzxk" +
"qZkqtKr+2KO16muZZ/hMhY3eV4i5PQozqHOWfEYJaHX0kVW/uPHoqt/wZYda" +
"zYH3T5jTSuwTBOp88Pgb777YuOwJvnQ3A6dG18sWbrAU758UbItwTE2Y/Hvu" +
"dPZfNDNwGxB13e79naR7wXSt7IiuqQzepjVD0Xm7D8BjnRpjYp3+h5i8YflL" +
"IXFR11Nrjh/idemmQXFZK7/axPM0M5HfqoLMXJHCNllWsCiyjTPhrzD8evad" +
"v/thx9im6axC47O206wz4//LoTvXyq0hrMrPDv7X4p1XjO+ZxoLy8pCxhEV+" +
"c9vjz21Zrd4Z57thYumjaBetsFJn4XxeZ1OWtY3CGXyVsADee6W7n08Eb4ou" +
"j1j8+zgi738x+QNYj4pdLywlovifip5y8+yyAktvUZPUyxGuL+dPNh/lnQH/" +
"qyah7aWAM+AllxSukUpfMnnMn98XRj+yTLZhyOO+YwePHE33PXyB56S+DjM3" +
"M63zdTpB9UDLQov381pjrEQugutVV+tXwy7M56W0z36zlM9uiZAY6rRAJ1yM" +
"jcWa5b0aa8WkDqZt1aYQtAfjp6illhKRWL6nY/Wnm+SiV2mFVYVoPQfzNsL1" +
"jkvCO2dE61shWpsjJEawtiIirx2TxYwsGqNMHpye8OlaUgG60FzIDrh+74L7" +
"fdnokkmUW+EJzksigrN1mJwDnDkyzkrFxzMmTC3t87imAjyuwDz0O5+4qD8p" +
"G48yiRE0fT4ibyMmGyB8A7MLraY5PkeXVsrWQF4sLmSK33JwJJUotzWHk7Et" +
"gqg+TLYAUU6YqNiFPlFbK0DUYsw7GxRtcGE1lI0omcQIHnZF5F2HyVUwK4Ax" +
"be7bFtwJ8SkarJQtXQJA3ABA/JaFIpnE082eWgRPGL3ifm+jE+IpaErpCvDU" +
"jnnrQc82F1Vb2XiSSYygYTIij7NxPd/RYaU2MPb6RNmVMih8i17twlpdNqJk" +
"EuUGtZczcksEW7diciOw5ZRkK2hWN1WALd7n54O261xs68rGlkxiBBl3ReTd" +
"jclXGWnC6S604XeNT9LhSs53l7iQLikbSTKJcpO6hrPx9QimvoHJg8CUU8RU" +
"0JweqhRTV4GmXS6urrIxJZMoZ4qf6oudiGDqu5h8k5H5GIWW3EsOEna8kuOv" +
"z4XXVzbCZBIj+HgqIu9pTJ4U4y+80XmDT9LJSo6/q11IV5eNJJlEuVXdwNl4" +
"PoKpn2PyUzH+QkwFzemZCjCFx2X4cuoeF9eesjElkxhBxCsRea9h8hLuBlHm" +
"bkNjsVt8fqKWj/5flrQBUIy7aMbLxo9MotySbuFEvBVB0juY/AZIcoIkBY3o" +
"t5X0Se6WVqxoQ+yMSZJJjODgo4i8jzF5X/ik8Bb/YZ+kDyrpk3IupFzZSJJJ" +
"lFvSYWwsXiVnKj4Tefiz8EkhpoLm9JcKMLUI89aCpgddXAfLxpRMYgQRLRF5" +
"czCpZ6RFc7ozIxQ/3uGnMfr40ef78zTFGyrpmm5zQd1WNppkEuUGdT/nY3kE" +
"VysxWcRIKxpUEVkBm4ovrgBZfNtwJSh7hwvtjrKRJZMYwcX5EXlJTM5mpAFc" +
"VL93DgALnvQZOqdS5nQB4HjQxfNg2RiSSZSb00lORWcETZdjsh4P3BXSFDSk" +
"iysVMHWAmsddUMfLRpNMYmma+P8RR0Oq02bW26sNsftIjlPYG0FvPyZdQK+Q" +
"4p/u8+Ot+OZy0JtjZE6JrSI8iL+w6KNK8SGg+sTRptoFR6/6ldiE9z7Wa0iR" +
"2tGsrgePigfuqy2bjmq8dxrEwXF+6Cl+DSMLJHtYePSD36Dy8atF+V2MNIfL" +
"MzKT/wbL7YYozC8HosRNsIjCSBUUwdsRYWeFZyrFifmc6OolQSL5dum80/Gf" +
"rxL8vAb3wPlHrd5+dVZ81jqsnjh65fYvf3jxw+LzHlVX9u9HKfUpUiO+NOJC" +
"cc97pVSaJ6t665pPZ39n1lne3miLUNgfG0t8YyNdGOBhjy8OffjidOS/f3nl" +
"2GU//vmh6hfjJLaLxIC5ObuKvy3IWVmbLNuVKj45N6jY/IuczjUPTF1x3uj7" +
"r/GvN4g4nrBUXn5YffnR6166c+Gxtjip7yUzNSNNc/yjh81Txg6qTthDpBFm" +
"/xyoCFI0RS84locnZXQFxw7nxaWzMf8UPw5jpL34VGLxJ3V1ujlJ7U1m1kij" +
"mMYUqfefiJ4JHRvIWlaogv/E7UpMHxZ+A3sD7HE4tc2yvEObdQ9afJg+UtqL" +
"oOFm+S3eTfwfKP4WgfA+AAA=");
public static final java.lang.String jlc$CompilerVersion$jl5 =
"2.7.0";
public static final long jlc$SourceLastModified$jl5 =
1471109864000L;
public static final java.lang.String jlc$ClassType$jl5 =
("H4sIAAAAAAAAALV8C9DsVn3ffp/t6wd+XNtgGwdsbF/MY+FqdyXtamNC2ae0" +
"Wmkf0kq7KwK2Vq+VVq/VY6VVoAFPCZRMKRCTQhM8bQdoSx2gmdAw6UDpIwkU" +
"hmkyNGloE0iaaSGUDjAtbaFNeqTd77X3ft+1fX2/GZ3Vp/P6/87/cf7/o3P0" +
"zPdyN/heLu865lozneCiEgcXDRO9GKxdxb9IUuhA9HxFbpii74/As8elhz9z" +
"x49+8v75+f3cOSF3t2jbTiAGumP7jOI75kqRqdwdR09bpmL5Qe48ZYgrEQoD" +
"3YQo3Q8eo3IvOlY1yF2gDkiAAAkQIAHKSIBqR6VApdsUO7QaaQ3RDvxl7q/n" +
"9qjcOVdKyQtyD51sxBU90do2M8gQgBZuSv/nAaiscuzlXnGIfYP5EsAfykNP" +
"/Z23nv/163J3CLk7dJtNyZEAEQHoRMjdainWTPH8miwrspC701YUmVU8XTT1" +
"JKNbyN3l65otBqGnHA5S+jB0FS/r82jkbpVSbF4oBY53CE/VFVM++O8G1RQ1" +
"gPWeI6wbhO30OQB4iw4I81RRUg6qXL/QbTnIPbhb4xDjhS4oAKreaCnB3Dns" +
"6npbBA9yd214Z4q2BrGBp9saKHqDE4Jegtz9pzaajrUrSgtRUx4Pcvftlhts" +
"skCpm7OBSKsEuZfsFstaAly6f4dLx/jzvd4b3vdzNmHvZzTLimSm9N8EKj2w" +
"U4lRVMVTbEnZVLz1tdQvi/d8/j37uRwo/JKdwpsyv/m2H7zpdQ988UubMj91" +
"mTL9maFIwePSx2a3/97LGq+pXpeScZPr+HrK/BPIM/EfbHMei12gefcctphm" +
"XjzI/CLzO9N3fFL57n7ulk7unOSYoQXk6E7JsVzdVDxcsRVPDBS5k7tZseVG" +
"lt/J3QjuKd1WNk/7quorQSd3vZk9Oudk/4MhUkET6RDdCO51W3UO7l0xmGf3" +
"sZvL5W4EV+6nwXUxt/nLfoPcW6G5YymQKIm2bjvQwHNS/D6k2MEMjO0cmgGp" +
"X0C+E3pABCHH0yARyMFcOchYaZpiQyyPb1E43laXLqZy5l7zHuIU4/lobw8M" +
"/8t2ld8EekM4pqx4j0tPhfXWDz71+Ff2D5VhOzpBLg86vbjp9GLW6cVNpxcv" +
"02luby/r68Vp5xs2AyYtgLoDQ3jra9i3kE+85+HrgHy50fVghNOi0On2uHFk" +
"IDqZGZSAlOa++OHonfzPF/Zz+ycNa0oweHRLWn2QmsNDs3dhV6Eu1+4d7/72" +
"jz79y293jlTrhKXeavylNVONfXh3aD1HUmRgA4+af+0rxM8+/vm3X9jPXQ/M" +
"ADB9gQhEFViVB3b7OKG5jx1YwRTLDQCw6niWaKZZB6brlmDuOdHRk4znt2f3" +
"d4Ixvj0V5YfA9dWtbGe/ae7dbpq+eCMjKdN2UGRW9mdY96P/4WvfgbPhPjDI" +
"dxyb4lgleOyYEUgbuyNT9zuPZGDkKQoo98cfHvzSh7737jdnAgBKPHK5Di+k" +
"aQMov5gJ1ru+tPyjb/7Jx76+fyQ0Qe5m13MCoCeKHB/iTLNyt52BE3T46BFJ" +
"wI6YoIVUcC5wtuXIuqqLM1NJBfX/3vHK4mf/2/vOb0TBBE8OJOl1V27g6PlL" +
"67l3fOWt/+uBrJk9KZ3HjobtqNjGON591HLN88R1Skf8zt9/+Ud+V/woMLPA" +
"tPl6omTWam+rOylRLwlyL071M4Kli7JjXWw6UmgB45ExFcqKvDZLM4uWVcxl" +
"eXCaPOgfV46T+nfMGXlcev/Xv38b//0v/CCDctKbOS4LtOg+thG/NHlFDJq/" +
"d9cSEKI/B+WQL/Z+9rz5xZ+AFgXQogSsm9/3gC2KT0jOtvQNN37jX/7re574" +
"vety++3cLaYjym0xU8LczUD6FX8OzFjs/rU3bTgf3QSS8xnU3CXgNxJzX/bf" +
"nYDA15xuf9qpM3Kkwvf9uG/Onvyz/33JIGSW5zJz8E59AXrmV+9vvPG7Wf0j" +
"E5DWfiC+1D4Dx+2obumT1v/cf/jcb+/nbhRy56WtV8iLZpgqlgA8If/AVQSe" +
"44n8k17NZgp/7NDEvWzX/Bzrdtf4HM0L4D4tnd7fsmNvslG+D1zoVg/RXXuz" +
"l8tualmVh7L0Qpq8asuhTVN/Bf72wPWX6ZU+Tx9spuW7Glvf4BWHzoELJqpb" +
"gAJsxGKdtlDY2LU0RdKkvmm4cqqUvOEkhgfAtS26+b0MBvI0DOl9K8jdqlvA" +
"8SNEWwbUHijshdMm1M6xwjvEd58j8a8DF74lHj+FePYKxN+tpaOrS53LYDjV" +
"KcAvrbMDZfQcoTwKLmoLhToFys9eAcp5oNuK7QNl3cHx6tNwtHYq7IB4y3ME" +
"8SC4hlsQw1NAKFcA8SJdPvS3Duh/9AznrNM8LL5Dvfo8VIHfUs+fQr19JVXw" +
"g7X5rFWBPVZ4h3jnORL/MnC9eUv8m08hPrqS/GhHjq6Vzq8HAM5nU1VqWS9u" +
"4sUdYuPnMdJPbIl94hRi33GlkVY8z/Ge7Ui3jhXeIf6dz2OklS3xyinE/80r" +
"EH8jIKsNpsazZ+aBp1vA3Vxto1vo7Xd9c/Gr3/61TeS6Ow3vFFbe89R7/+ri" +
"+57aP7Ze8MglIfvxOps1g4zC2zIyU8fmobN6yWq0/+un3/7P/9Hb372h6q6T" +
"0W/LDq1f+4P/99WLH/7Wly8TdN04cxxTEe0djrz3edhOY8sR4xSOfPgKHLlF" +
"k5qKKoZm4B8IU/05hIQXcE9054eLSAdN7QD7yHMEdg+43C0w9xRgf/8KwEAU" +
"oUi6f+DBvW/L2vTng0HuOt0Odoj8B8+eyCzqaoMr3BIZnkLkP7k8kXvp7asP" +
"KL0N+GrAkzDbafB3aHs2rnUW6zeP5+9Q/cyzp/ol6VPgLO99blN07zdPofo3" +
"Lk/1fkZ1kDvnZ+uGB+RfJ/vqAdEPnEI0u7ZmjrkrFp99jrQD/2Dvt7a0/9Yp" +
"tH/hLNrT5HMHdN9+ctiB0r/ydJOURW0bC/P0Jx752s8//cifZrHNTboPXOqa" +
"p11mZe9Yne8/883v/v5tL/9Utj5w/Uz0N8717pLopSueJxYyM8pvPTkmD581" +
"Jmn6mcMY6Xhk+YY0+Z2DQfvSKYMGeO2GM1MH0e0Nqm6L5sHYnTMVW9ussX0i" +
"TX7bjQ+72d/UPRCJu4/m0Ibp2EoaRR8Gt1me7lw8XGYGmfElBHu5157OGTob" +
"oKNY6nef/Iv7R2+cP/EcVpAe3GHcbpP/mH7my/ij0gf3c9cdRlaXrEGfrPTY" +
"yXjqFk8JQs8enYiqXr7hQTZ+Z9iJr2wG/Yxo/z+ekffHafKHgH9SOvgbXp1R" +
"/FtxbkdJ/8UVlXRjWff2QCeli5WLWWT2ny8P6LoMUKaGafLVA3m61zClCwdx" +
"Hw/8GsCwC4ZZSbPftkNQ61kTBATn9iPpoxxbe+wX//z9X/3bj3wT6C6Zu2GV" +
"BtCA/8fcvF6YvgL5hWc+9PIXPfWtX8yWpQAb+L/xk/vflLb6F88N1v0pLDZb" +
"3aVEP6CzZSRFTpFdblK6HrBo18V89miDl/w5gfid2sEfxc8acE2KBTucyBbr" +
"ddQiNvDNUqUTlehGqAlGs9Ga++MZ2S66go5LBDklFoUSSuG2WxAEe2maU3og" +
"1cftYZGXBvR6FjYQHkPmTYkkqYYuw/V23hwua9py6EZmRIdSywqVekzUuAVT" +
"0RuDPASFlgALJaUQY2FpKdouUagWIagKTVSQjmB1gOTzjDVFe6WlUW9ZSddZ" +
"lPVSqVnVQ3gok0rYp9G+0hR92AxNCCfgUtWH45ZdbJGLqmcYM54ezweMxxcw" +
"ZDgWp0LTpGlz5M26XNEwJuVZP2AVjpxb+KK3sMNZQdBjmUvGpYSLR1Sz4ZQa" +
"NusYdUtc9wTGDuTaNPJZpGWxIkpKFo2ESa+Nm6ORtepSVBRxlchbTGmLhtFZ" +
"kyV6Sy/pzkmqRxdQ2k3GuNwXQklE7XKRnIe+Nur5EqOosyIVCWO3ynFcQOTt" +
"8jSvwkZFSRrW1Il1fD3SMCGSiyOi1HDN/mI9gURP7tNSAqP9YpfvrMb1yIkL" +
"LhXji2rdac29YmGwNIeDABetYTJhRSJKYrIoiN2Gga99s9Fx5Xk3nk9GCczh" +
"jdmEjiXEq1UdXpkNGwJDtEKs2iM8E5ahAbxcGKMWbrNGrc0xEWfizeG63hmx" +
"SU0v2lPY7bUKgwUzbfbtsFZyl7oIrWTbQotBs92c8rajOthYJfXikoZnVcpq" +
"qBrjy6Zgum6J6GFOb70qrtClHho1YpwfoWNtViPsaFDrawXOL0i83wzhtRNX" +
"LbdtCYSFMHPUiGNlXmuDSJGvlWahOLOsloN1GoUG4HZ7TPv9YcMSkLheEBYW" +
"3m321njX5fojkQuY6nquyYzj02CmmYz5+rINHNRlUltTxTXNIqQynidLl2tC" +
"K0qt+n5P7XlTUWI6TVvucUWegJSlwbWXy4KGoKyFdZBWnZsVl7OQU6aQzM77" +
"jTqrtNeOvzZiNEJktd+FgiLV1xOywwqqi1fNLt8UVwRjzSDJsieWVuSXLTEQ" +
"Ro4o20hdMirdfFCSEjdqE5aQn+ikRXoJzSWhkpfDmRH0YKTMhmaR9Vy30tPq" +
"peISn+EFm1nOyi08YHi8UCku2saEnYzWkFkd1VTOSZaEIfYSb8n1BEoIDYyb" +
"TUgoUrrMotXizCFRRZ1YtD3Y9Ck8P4H7HWfERS0unLNBPa5DkDBmYClI6EKX" +
"1buOYFm0mS8VRtho3sESbR71UUSqiSvVhEe0VytYVnMU+OKwIRv1/mq6Jv1R" +
"e0nWJDyoaA6QfJmNrAJdXumUMhwiaEKOa4kziR0Fai5pq1yy7OWs5BPOIizb" +
"lWit4Has4PPpoC5MFUYqE8wc1woRE/T01nREMsCBZOYrcY2UKM8R+tZCbRJq" +
"FERFr74sVyQ/P6/qy4gqBeu60aAZ2adQtwAES0YMO54OZEIMCcgsxypGtlDL" +
"bekgNO76TkgX/KCl1CLFrNgDQqLpTtIy8jFV0+kmoRm4OOsuSs0JSvZa3TI3" +
"tvuN0kqXFrNFvSGXC/MhGC4BK7ChOxgFBVhRB5qhrHSyjSDtUmNEY3hvqvL5" +
"ar+OjqoFpqrhJtqcyfnVVB1V4yQasNWhRCwQv0QyI44Zwqsp7lOFZjfw+LUG" +
"TF5lOawptsoIiFie1co1kijVhdDBmoJMLPt4heBqYZ0B9s/pWwJK9JRYkkOp" +
"SlYjugTPq/CgTuEzo9z2yWK0CqU+C1nNlRrZbJ3Gw4If17oDoy0NrHq1Ilfz" +
"mIS2bRxdNa1FdzRAmibB4VB92hXznLL0ObiEFkou3wyLkFqE4QmsVNQQMaYU" +
"yYupJ9wsrCsRHzlqoyJhClTwZpU4X+mPkVleoROK9BcYMXRDUyJ02VpI047d" +
"a2qiiYEHhTLbajbLM6Nbqw94xuBNpishwarCyb1pewAZqwiDG22CQRDTZhVR" +
"miDNqhp0bKk6SEKjGiIWqXe5cnVgFat0fkCjq5DtBcsi7TBlFDyT5BU0MLtQ" +
"Pak1lVKPKHF5VJvm0YgBbI38esNMSHQhuB0LtVuCOegJVkPDOFROkNBH8ra9" +
"qBWVhdoAI69L6HBIMHkCaWDMIMp7AQVDw/7AqBsJtOBqTtPv1oJZu++PrHbe" +
"6iZ9TdXaU0Up8hMCd+TEHlklKDAXUJU1O0StS3aN+cLFMLyKLjy/voar9Frk" +
"IQglgX2GqG43JgDSMbIsM+V2s9BZN8prtR8ONGUyGKMVDMTn5XXbJa2my3Ea" +
"Wy1r/WhFVUsrmLEoTKhMVZiqV9fVSrVveHDNCTpjGpgcbEYidMPDVk2FgDQC" +
"htwZVDELo1VoMWw9qi/RIFrxY2hO2gm6xigV4gpDtArTpuYyQ0gEchthQcXz" +
"9AlfUeVkPg3Xvcmgg9cL0Myb2BqGFXFspS5tie8kDOnyvVKk8IMhMPn0vFHn" +
"ZAoV8QLlaKuk6beSdl+olueUVqiEhUYy5VV7hMaRUZ7EK4NYwBNtQjmMtxqt" +
"lkVEqY6RJLLW0LprqYncKFhoBMSBrS4ZZ+gwoavpNbsJ7LfdjlYDXbFMq8u2" +
"fDo05WAul9rabIKjDMYHjUqEz3vr2UwvjvniWFwMpaBmUjFPy51h1bZCZ0GP" +
"VXWINxy5VhEiazkYaKWwuww4rlEO3A5HUaJBR0IU10kODqgp2cN5M+yWkaE2" +
"MeSe3l3NWc/suvpwKLJMazwuIl4kQsNagajbTgdOFmu1V5o39HbkVOlWEK9D" +
"qmIvVW7RSBytRZZXPZYqjRNNQYllhW8x7biSFzCMqS2xaI2Xlg2vWK61iuPh" +
"omuaAY4DU1DtQFixNmvUh31NAlN4lWFDQkTFsMRqlOO2XNbvBcbcGmClhY93" +
"Im0wTrpyt9pHSIzvqDWbSHB1RBOm0hswneEEWbQ6ot8bcL2gVAGsx6qFerQk" +
"hr1iqW4Um5PZ2Kn3WHkh1hcBY7k1IBDTprNSe3CTLy/rlY7W9EqCWNepuDFR" +
"AsSn8gNlOTdWFajdJwhn3uEZykSN9Rjqr3RvxUJRn8LGEwgtKWYvRHpcfzLv" +
"NKnY7g3DEhSZGO15kDYHoWMNWrfH3SY1mcynC76KAtfCpTWkW+M0RSSKBlzo" +
"rdSiX2vUpKojUYUCScwg10HUFtOqWEACzQnTMLuRYRqNlg1mgmGjOI5tvrGE" +
"GKwqkjUIQkqd9mzOi8F86scwNy1heeDHqjSlq6s8UlmwYlQrdsqiy2GTDlPu" +
"xtBgVYFpKt8SayW1PHHtErrylGWdx2SFc/1i0A+ToCnLeKPJ93sWM+yoKFsa" +
"YEOmpsgaYvizybC5bhmrvE+7Pl71XDs0GQPFOM0wq2OcxQMa5mLCFJM+gUPS" +
"zPXwwsIm2mYYx6s+5Qllp9Wvr0bAPKmU5vMlnqqtNLWjEZS46k3GS3dpzFUN" +
"zq/EzgrB2pQBKQVx2etJQr0QERBcWMAkpEL5JMo3yHqzGAs8hvv1XmU08OJE" +
"L+arwowTxOkIIdYkuxoqEwoiE32ioWgt8C1kgHbYhj0wwqGiaoXadC21W7wx" +
"Kixrg/aqrLKNfhCZ+HJeyo/r1XIfNbwGG83xpmNVpnF53XMW65po0XrfIoxZ" +
"Cy1PyRZN4aVOVRoAYaypc7bdqtMTXauPdJFbyFab4HUkRscqCxnsXK2LxeoU" +
"wiqjxBgpgLJ4sRQWy6Dr5UvdfrFshYIAzen5FFZ4REcHw9R/6o/V1pQUiUlh" +
"AaxeOCCcZQBFwlQWkykBj1BjxIbRqN4HlnqgzSqVyjTsR+TKHsK1sowXMRBO" +
"eTWuArg06wTRqFWaQsQqlAeC2mv2IjyuF8GEWbVFphJN2KDS0cPlMFFcg28W" +
"JlalidUNm3GNqQvn56iOTVWT6kzaTLHY84w5pMuKZQ0nbaFbgcR4QBdolFCX" +
"DkVPSKLRM82x39DXxmgw95ImpqxEMN0F87iqW2UxbiCVfqlQjhIEgihntJqs" +
"l4W5R3uD5qoyQdzixOjnhdih1pjbiOctPi9VV0ZSKgqejAhoBYh9aBliXQn8" +
"Nmkjk1gRiv1xMIUb+GTN+2A+Vcrjil3AWjPECY2igeUTTa/AWJwf9qYG4srU" +
"OjKdFYh/XTCP5Nfr2iJYccKAW8d4SOXlQW8OmfaQgJZrcV4RxzU6XzPNmA0X" +
"nKvStk3bVWzCGPn1iBLm634/P42UAdGC4cFkXUfLbL5p0DBdhhN55NarXJMa" +
"OisYK7qG1xqGWhjwfD6YROsKjZbHhQQuJyZdDXWhNi17TI0EcYEhjUV0VhBF" +
"bLxoLoWgKE6HQU013LJumvMuM6bK9hQa21ae1fmS1eanvDMYqknPp4rGYtXo" +
"l+RWuejPx65vkC0xCvSO7sWlUQziSXzZowl3rWB9U+Q0vFxoJ52mN89XEApM" +
"mrazWFjcON8ik4Wva16vaJFR024u1snCa8cJbY0acIBVdKtmrMOomRT6aB5Z" +
"NjEXR7C1zrQK6gjRZ2vawtd1rFahKU+cooOFMuF9bzxsA0trsV0YJiOS5Jwg" +
"GROLSivQllp+RE1rHFeeLnt6e2C2Z91Ck5v6UQWPmUDCW0WzU3AsadghbKGN" +
"tkvEmueiLlKLZ0pl1g4iEmMXokcOg8mQrMG1eg0ixXbHtVsFrKSMNWaAU7Cu" +
"Wnmjle+4YstzG6smZ9i2N5SwUrvIz0oTnWWna2066uhGpRcPZIiZilyJHszK" +
"TM/iaX2O6cUKMBOu3FuSi1bI4YEgJdLCb40rsi7p/QgVmEW3NB/3iuMaJVds" +
"FOmXysXYL2Mebi5ivV43YUYZyYZkTvCx");
public static final java.lang.String jlc$ClassType$jl5$1 =
("3Siz5QIyUXqjKjVnfRQ2K/qQ0hczdtQlJbdfnnuDuDrUrZVDkBrW4DiM4Qpk" +
"BGYqZsQjuDVhy6HndWJSoB0BWaplJ5R1vLkM0Tm2QAkU74zHcMvvt2wRW4T9" +
"VYJMJnwyawj1jpEntGUnrLojEuGQdR4DOt8EdJCsU4aWxWKHR5UeSZqtkJ/I" +
"Uc9EBk4XzBuDNZcQ+eEiaieKJTSMRjsuTRApdJR2VVF8owVgzutxw2cUsTrH" +
"5lRYNwlrtugZPh9g6rI7NiBUNb1hneusKyI9o2LgZDjBmp2F7daqztcLRjiF" +
"akJHcjqL+hR2AnRSYIFC88vYGeZBzCyQpNFvag6iY0bSRieQvsDqM2gq5BfN" +
"tecu4E7othOBJQH17RU7Bd70ROftroGMFFVPsNZi7jqUVSWlLk1xHTCnNlxN" +
"lic1lYpdhp5qQ4Zi2qiUNFyhzLSlipN04iEEh7hNqx5SUNQKlozaOOjLstBk" +
"KBfHPdfN5EEeQfYUXrT4tR+PQRDfjV2uxS/qFuKsPK0ODC8QVHZemUerwPC6" +
"DODbNJImaGtikiMaxIG1tsRTVbip1Sh7NRT6S5lF7WEdIYxhrPa0EgNkVGBn" +
"hYLZZ8ZSayTIhj9HBnB9wrab7EJf+zxNjGuWL8scrVKM26OnliXmBxjDFPrL" +
"Qmk2LpX9ng9cU8McTPFCezVYC/Kwmx8iLhRi+X6Q7wvrAhkYQqtMemwH06l8" +
"VO72uhiLa3l/xLiB02bKUNmU9VY1qYzFgs6UAtz3NGWga2q4XJdmhrXE5Nhr" +
"RZN2vtww802WpkgimCoDtgmXm2tMDNp5vkT3OipFJ90RFM2oynTqJA2McHym" +
"53eMBlvnuEj2melYaQtrrw2UVyr3HXPIUqgcWlgBwlUvprBVbQZHA5PwZDQv" +
"8wJWNJa+bczLqDpdqbARR3kqIUx+Ug2rRFflXE7v53t9siFJ1YrLsyJZDspl" +
"1B0IcNUumrYCWzrF9TQVLwTYdN2T8X59bqyxvqoaugziVRW2zRLOQdDKmpfn" +
"qkFSIhV3Gmh/FnZXa7gz5q0Z1Qt5IG9or2xMoU4oJQY3GLWLMRwaFQ/CVz1E" +
"Q2yvzk1sdKqqNlMulstSHo8DQ3crQMN6LPB8oLUxx4qjWCsvR8G86dbbFhSv" +
"nUa7U2BYDDEdyRYmw3YcVexYHCe0inGDCDVcCkZ4nIpJmC+GhklWuKJVXOiG" +
"RU+5pQo0gERIgll1xqYIAh2oVeFcmoiFfA32mxWihQRSab1q9WfysCqqpJbn" +
"giXl9NtgqoGVkRqp3QEy1tRavlar/Uy63Puj57YMfWe2un64R/55rKtvsh5K" +
"kz86fP+U/Z3L7eyrPvb+KSt538n9jKduacl2KhweiEjfwb/8tJ3y2fv3jz35" +
"1NNy/+PF/e2bi18KcjcHjvt6U1kp5rGe783uv35IdfrSPAeD6xtbqr9xubdm" +
"5894jfiVY68Rd16l7B29timkBfZedPq7lr10t8HeuSB3m+QpYqBs352f5Mre" +
"jVda/z/e6g7UV6cPa+D6zhbqd54X1K9e6QXU3r1n5L00Te4Kci/VlOD0zQIf" +
"PUJ891UgzsSSAdcPt4h/+AIiPsbcj2bQHjkD9ivT5AEA2z8N9mXfAK0cXT4a" +
"igevYihecaCRP94OxY+vEfNLZ+RlKF4f5G4HzN/ZsGYcwbx4tRwH9fb2N3U3" +
"vy88x40MzxvPwJq+INyrAqz+Lta9Vx1h/emrwHp/+vBVgKBbt1hvvUYsJc/I" +
"o9Ik3bUCWNrs08e35B6hbF8tRzGA7sVblC++NhzdGGj+DKiTNBkCqP4O1OMM" +
"Za4C6sPpQxTQ88AW6gPXiKGzM/LkNHlLtiE4uNy+WPEI61uvlq3pDp5Ht1gf" +
"vTZszU5F7dlnAE6729MBYP+ygI8z17gKwBkvXw+oKmwBF64Rc5Mz8lInby8M" +
"cnekBnhn13b/COfqhbDA2BYndm0Y288A/cIZYN+TJu8EYP1LwB5n6pNXC5YD" +
"FDW2YBvXBuwkA/TBM8A+lSZ/K8jdkzoYl92Wfxzz+14IQe5vMfevkSA/fUbe" +
"30uTj2wEeXf7uH+E8+++EII83uIcXxve+hmgT54B9pk0+fhGkHfAHmfqJ64C" +
"bHqGJ9s8+MQW7BPXiKn/7Iy8NEzd+6fpJmQl2G69T4u97Qjir18tP6sA2nwL" +
"cX5t+Pm2DMu/OgPnv0mTzwOc/nGcx1n5hRdCP7dbpvcu2TL9ArHya2fk/bs0" +
"+fJGP3cPHbzrCOe/fSH0M97ijK8NP9+VAfrGGWD/U5r8+41+7oA9ztQ/uAqw" +
"L00fvhZQ9OQW7JPXiKn/5Yy8b6fJnwa5O3W/Zc2U9LsQ2emNfnZy4QNHSP/s" +
"hVDT926RvvfasPUDGaQfngH3f6TJ94LcXSlbL8F7nLP//SrwZtu2HwJEfWCL" +
"9wPXiLN/eXreftrf3v8JcrcCdR0cHJRIC37iCOSPr5apRQDuV7Ygf+XaMPUT" +
"GZpbzkB6a5rckJ5QO4n0GDv3z13tRHoBkPPJLdJPvvBIs/93lorOyU6Y7pZP" +
"6b/nDPw/lSZ3Avyb8kfn2I5m2f27ngv+GEROlzkJlB5zv++SL9Bsvpoiferp" +
"O26692nuDzfnHw6+bHIzlbtJDU3z+MHjY/fnXE9R9Wxcbt4cQ3YzRA8HuXtP" +
"WUVOD6dkNynV+w9tyr8yyJ3fLR/kbsh+j5d7NZigj8qBpjY3x4vkg9x1oEh6" +
"+7rNNvqTpwQ356/jDcPuOy4w2RL7Fcf5sMrxzyekRx6yLwAdHE8IN98Aelz6" +
"9NNk7+d+UP745vMNkikmSdrKTVTuxs2XJLJG0yMOD53a2kFb54jX/OT2z9z8" +
"yoP19Ns3BB8J7zHaHrz8hxJalhtknzZIPnfvb7zhHz79J9n++f8PIyDSBZpJ" +
"AAA=");
}
| [
"anthony.canino1@gmail.com"
] | anthony.canino1@gmail.com |
aa89d477ce1dc7dea5b6d8f32b3a8a35c6484331 | 454d0047936788909ac2b818d650eaafcac402bc | /net/minecraft/server/BlockJukeBox.java | 0b6c6faf5e44a860ba3d60b70dc7d2fe37805f82 | [] | no_license | Massacrer/mc-dev | 6ddc2f6c9e3e1e1a449fb06eb642f0e7c813210e | 5c511d8ae4bbf4fab38f4127a2b9e519c17c8ec7 | refs/heads/master | 2021-01-15T17:50:58.828066 | 2011-05-31T13:18:48 | 2011-05-31T13:20:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,362 | java | package net.minecraft.server;
public class BlockJukeBox extends BlockContainer {
protected BlockJukeBox(int i, int j) {
super(i, j, Material.WOOD);
}
public int a(int i) {
return this.textureId + (i == 1 ? 1 : 0);
}
public boolean interact(World world, int i, int j, int k, EntityHuman entityhuman) {
if (world.getData(i, j, k) == 0) {
return false;
} else {
this.b_(world, i, j, k);
return true;
}
}
public void a_(World world, int i, int j, int k, int l) {
if (!world.isStatic) {
TileEntityRecordPlayer tileentityrecordplayer = (TileEntityRecordPlayer) world.getTileEntity(i, j, k);
tileentityrecordplayer.a = l;
tileentityrecordplayer.update();
world.setData(i, j, k, 1);
}
}
public void b_(World world, int i, int j, int k) {
if (!world.isStatic) {
TileEntityRecordPlayer tileentityrecordplayer = (TileEntityRecordPlayer) world.getTileEntity(i, j, k);
int l = tileentityrecordplayer.a;
if (l != 0) {
world.e(1005, i, j, k, 0);
world.a((String) null, i, j, k);
tileentityrecordplayer.a = 0;
tileentityrecordplayer.update();
world.setData(i, j, k, 0);
float f = 0.7F;
double d0 = (double) (world.random.nextFloat() * f) + (double) (1.0F - f) * 0.5D;
double d1 = (double) (world.random.nextFloat() * f) + (double) (1.0F - f) * 0.2D + 0.6D;
double d2 = (double) (world.random.nextFloat() * f) + (double) (1.0F - f) * 0.5D;
EntityItem entityitem = new EntityItem(world, (double) i + d0, (double) j + d1, (double) k + d2, new ItemStack(l, 1, 0));
entityitem.pickupDelay = 10;
world.addEntity(entityitem);
}
}
}
public void remove(World world, int i, int j, int k) {
this.b_(world, i, j, k);
super.remove(world, i, j, k);
}
public void dropNaturally(World world, int i, int j, int k, int l, float f) {
if (!world.isStatic) {
super.dropNaturally(world, i, j, k, l, f);
}
}
protected TileEntity a_() {
return new TileEntityRecordPlayer();
}
}
| [
"erikbroes@grum.nl"
] | erikbroes@grum.nl |
78d7286328d06994f2cba194cda1e9a225d87536 | b061e932bf80e43c52c7b4c0ab87814558f8cf94 | /ShareLib/src/main/java/com/share/api/SimpleShareCallback.java | ca22fce0043ddd60c3ad0b4458924d1b6a528184 | [
"MIT"
] | permissive | lynnzc/AndroidSNCN | 40ae73176cacec060dc449d1deeb23919dd902eb | c7399fdaaa9c059c8bba07df06a1334b517573d7 | refs/heads/master | 2021-01-13T11:31:55.279689 | 2017-05-01T05:40:27 | 2017-05-01T05:43:55 | 54,707,061 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 588 | java | package com.share.api;
import android.util.Log;
/**
* 简单的share回调
* Created by Lynn on 3/25/16.
*/
public abstract class SimpleShareCallback implements IShareCallback {
@Override
public void onCancel() {
Log.d(SimpleShareCallback.class + "自定义回调方法", "分享取消");
}
@Override
public void onFailed() {
Log.d(SimpleShareCallback.class + "自定义回调方法", "分享失败");
}
@Override
public void onFinally() {
Log.d(SimpleShareCallback.class + "自定义回调方法", "分享结束");
}
}
| [
"Lynn@ganguo.hk"
] | Lynn@ganguo.hk |
8545bbb8066bb334dbdae8c5980eaea669734d2e | 1229cc4eb74b747392b7c291a9dd306eee8c7702 | /mall-manager-web/src/main/java/com/jisen/mallmanagerweb/controller/ContentController.java | 45a0987db68b8e3512753c4b72e8a962c1150df9 | [] | no_license | qq289736032/mall | 988fde66dff20243edb9b33e9f0c78a9d76a57b1 | 5925eec810a2436117f217302db1631c80a52fdd | refs/heads/master | 2020-04-01T21:23:29.606222 | 2018-10-18T16:28:57 | 2018-10-18T16:29:11 | 153,653,361 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,081 | java | //package com.jisen.mallmanagerweb.controller;
//
//import com.alibaba.dubbo.config.annotation.Reference;
//import guo.ping.e3mall.common.pojo.E3Result;
//import guo.ping.e3mall.common.pojo.EasyUIDataGridResult;
//import guo.ping.e3mall.content.mallmanagerservice.ContentService;
//import guo.ping.e3mall.pojo.TbContent;
//import org.springframework.stereotype.Controller;
//import org.springframework.web.bind.annotation.RequestMapping;
//import org.springframework.web.bind.annotation.ResponseBody;
//
//@Controller
//@RequestMapping("/content")
//public class ContentController {
//
// @Reference
// private ContentService contentService;
//
// @ResponseBody
// @RequestMapping("/query/list")
// public EasyUIDataGridResult getContentListByCategoryId(Long categoryId, Integer page, Integer rows) {
// return contentService.getContentListByCategoryId(categoryId, page, rows);
// }
//
// @RequestMapping("/save")
// @ResponseBody
// public E3Result addContent(TbContent content) {
// return contentService.addContent(content);
// }
//}
| [
"289736032@qq.com"
] | 289736032@qq.com |
2782552d2fbf91387f3287e119f4ab2dfeec0a86 | 7c00eee6c64fdb8bf0458adff5b451763387dc32 | /slr1parser/src/main/java/cristina/compint/slr1parser/parser/ActionGotoTable.java | eaeea9e746443d84b0a1bbc0e1095cffb5251f64 | [] | no_license | cristinalombardo/slr1parser | 9b44fe5c58700f4ebc295e060ee468456c9d571d | b677c486d6c68b30f5d4530ed76d0aeac54e8313 | refs/heads/master | 2016-09-10T09:18:11.867742 | 2015-03-15T10:39:47 | 2015-03-15T10:39:47 | 26,089,617 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,711 | java | package cristina.compint.slr1parser.parser;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import cristina.compint.slr1parser.cfsm.State;
import cristina.compint.slr1parser.grammar.NonTerminal;
import cristina.compint.slr1parser.grammar.Terminal;
public class ActionGotoTable implements Serializable{
private static final long serialVersionUID = 1L;
private Map<State, ActionGotoRow> table;
private State acceptState;
private List<State> states;
public ActionGotoTable(List<State> states) {
super();
this.table = new HashMap<State, ActionGotoRow>();
this.states = states;
}
public Map<State, ActionGotoRow> getTable() {
return table;
}
public void setTable(Map<State, ActionGotoRow> table) {
this.table = table;
}
public State getAcceptState() {
return acceptState;
}
public void setAcceptState(State acceptState) {
this.acceptState = acceptState;
}
public List<State> getStates() {
return states;
}
public void setStates(List<State> states) {
this.states = states;
}
public Action getAction(State s, Terminal t) {
ActionGotoRow row = table.get(s);
return row.getActionMap().get(t);
}
public Goto getGoto(State s, NonTerminal nt) {
ActionGotoRow row = table.get(s);
return row.getGotoMap().get(nt);
}
public void addAction(State s, Terminal t, Action a) {
ActionGotoRow row = table.get(s);
if(row == null) {
row = new ActionGotoRow();
table.put(s, row);
}
row.addAction(t, a);
}
public void addGoto(State s, NonTerminal nt, Goto g) {
ActionGotoRow row = table.get(s);
if(row == null) {
row = new ActionGotoRow();
table.put(s, row);
}
row.addGoto(nt, g);
}
}
| [
"lombardo.cristina84@gmail.com"
] | lombardo.cristina84@gmail.com |
e57053e92ed2a85414b1bbd94b0bfa351c596660 | 745b525c360a2b15b8d73841b36c1e8d6cdc9b03 | /jun_java_plugins/jun_poi/src/main/java/com/jun/plugin/poitest/exception/PoiElErrorCode.java | c1df76c8fb605064eb24abe19d10aeeb4cf2bdbf | [] | no_license | wujun728/jun_java_plugin | 1f3025204ef5da5ad74f8892adead7ee03f3fe4c | e031bc451c817c6d665707852308fc3b31f47cb2 | refs/heads/master | 2023-09-04T08:23:52.095971 | 2023-08-18T06:54:29 | 2023-08-18T06:54:29 | 62,047,478 | 117 | 42 | null | 2023-08-21T16:02:15 | 2016-06-27T10:23:58 | Java | UTF-8 | Java | false | false | 1,557 | java | package com.jun.plugin.poitest.exception;
import java.text.MessageFormat;
/**
* 异常码区段:[1001-1999]
* @author wzy
* @date 2017年6月20日 上午11:59:32
*/
public enum PoiElErrorCode implements IErrors {
TAG_NOT_FOUND(1001, "[{0}]中找不到tag:[{1}]"),
TEMPLATE_FILE_NOT_FOUND(1002, "找不到模板[{0}]"),
EXCEL_FILE_NOT_FOUND(1003, "找不到被导入的excel[{0}]"),
/**-----------------COMMON ERROR--------------------*/
SYSTEM_ERROR(1998, "系统错误"),
ILLEGAL_PARAM(1999, "参数异常:{0}");
private int code;
private String msg;
private PoiElErrorCode(int code, String msg) {
this.code = code;
this.msg = msg;
}
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;
}
@Override
public PoiElException exp() {
return new PoiElException(code, msg);
}
@Override
public PoiElException exp(Object... args) {
return new PoiElException(code, MessageFormat.format(msg, args));
}
@Override
public PoiElException exp(Throwable cause, Object... args) {
return new PoiElException(code, MessageFormat.format(msg, args), cause);
}
@Override
public PoiElException expMsg(String message, Object... args) {
return new PoiElException(code, MessageFormat.format(message, args));
}
@Override
public PoiElException expMsg(String message, Throwable cause, Object... args) {
return new PoiElException(code, MessageFormat.format(message, args), cause);
}
}
| [
"wujun728@163.com"
] | wujun728@163.com |
46ad77e5cf1f8b0cac206ecf7f1c52c744066320 | 73267be654cd1fd76cf2cb9ea3a75630d9f58a41 | /services/dsc/src/main/java/com/huaweicloud/sdk/dsc/v1/model/RuleRequest.java | f944c644cdd2e873d20bcd39fc6d17b7d9b3c62b | [
"Apache-2.0"
] | permissive | huaweicloud/huaweicloud-sdk-java-v3 | 51b32a451fac321a0affe2176663fed8a9cd8042 | 2f8543d0d037b35c2664298ba39a89cc9d8ed9a3 | refs/heads/master | 2023-08-29T06:50:15.642693 | 2023-08-24T08:34:48 | 2023-08-24T08:34:48 | 262,207,545 | 91 | 57 | NOASSERTION | 2023-09-08T12:24:55 | 2020-05-08T02:27:00 | Java | UTF-8 | Java | false | false | 11,221 | java | package com.huaweicloud.sdk.dsc.v1.model;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
/**
* RuleRequest
*/
public class RuleRequest {
/**
* 规则类别,内置规则(BUILT_IN)或自建规则(BUILT_SELF)
*/
public static final class CategoryEnum {
/**
* Enum BUILT_IN for value: "BUILT_IN"
*/
public static final CategoryEnum BUILT_IN = new CategoryEnum("BUILT_IN");
/**
* Enum BUILT_SELF for value: "BUILT_SELF"
*/
public static final CategoryEnum BUILT_SELF = new CategoryEnum("BUILT_SELF");
private static final Map<String, CategoryEnum> STATIC_FIELDS = createStaticFields();
private static Map<String, CategoryEnum> createStaticFields() {
Map<String, CategoryEnum> map = new HashMap<>();
map.put("BUILT_IN", BUILT_IN);
map.put("BUILT_SELF", BUILT_SELF);
return Collections.unmodifiableMap(map);
}
private String value;
CategoryEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static CategoryEnum fromValue(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value)).orElse(new CategoryEnum(value));
}
public static CategoryEnum valueOf(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value))
.orElseThrow(() -> new IllegalArgumentException("Unexpected value '" + value + "'"));
}
@Override
public boolean equals(Object obj) {
if (obj instanceof CategoryEnum) {
return this.value.equals(((CategoryEnum) obj).value);
}
return false;
}
@Override
public int hashCode() {
return this.value.hashCode();
}
}
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "category")
private CategoryEnum category;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "id")
private String id;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "logic_operator")
private String logicOperator;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "min_match")
private Integer minMatch;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "risk_level")
private Integer riskLevel;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "rule_content")
private String ruleContent;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "rule_desc")
private String ruleDesc;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "rule_name")
private String ruleName;
/**
* 规则类型,关键字(KEYWORD)、正则表达式(REGEX)或自然语言(NLP)
*/
public static final class RuleTypeEnum {
/**
* Enum KEYWORD for value: "KEYWORD"
*/
public static final RuleTypeEnum KEYWORD = new RuleTypeEnum("KEYWORD");
/**
* Enum REGEX for value: "REGEX"
*/
public static final RuleTypeEnum REGEX = new RuleTypeEnum("REGEX");
/**
* Enum NLP for value: "NLP"
*/
public static final RuleTypeEnum NLP = new RuleTypeEnum("NLP");
private static final Map<String, RuleTypeEnum> STATIC_FIELDS = createStaticFields();
private static Map<String, RuleTypeEnum> createStaticFields() {
Map<String, RuleTypeEnum> map = new HashMap<>();
map.put("KEYWORD", KEYWORD);
map.put("REGEX", REGEX);
map.put("NLP", NLP);
return Collections.unmodifiableMap(map);
}
private String value;
RuleTypeEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static RuleTypeEnum fromValue(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value)).orElse(new RuleTypeEnum(value));
}
public static RuleTypeEnum valueOf(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value))
.orElseThrow(() -> new IllegalArgumentException("Unexpected value '" + value + "'"));
}
@Override
public boolean equals(Object obj) {
if (obj instanceof RuleTypeEnum) {
return this.value.equals(((RuleTypeEnum) obj).value);
}
return false;
}
@Override
public int hashCode() {
return this.value.hashCode();
}
}
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "rule_type")
private RuleTypeEnum ruleType;
public RuleRequest withCategory(CategoryEnum category) {
this.category = category;
return this;
}
/**
* 规则类别,内置规则(BUILT_IN)或自建规则(BUILT_SELF)
* @return category
*/
public CategoryEnum getCategory() {
return category;
}
public void setCategory(CategoryEnum category) {
this.category = category;
}
public RuleRequest withId(String id) {
this.id = id;
return this;
}
/**
* 规则ID
* @return id
*/
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public RuleRequest withLogicOperator(String logicOperator) {
this.logicOperator = logicOperator;
return this;
}
/**
* 逻辑运算符,\"AND\",\"OR\",\"REGEX\"
* @return logicOperator
*/
public String getLogicOperator() {
return logicOperator;
}
public void setLogicOperator(String logicOperator) {
this.logicOperator = logicOperator;
}
public RuleRequest withMinMatch(Integer minMatch) {
this.minMatch = minMatch;
return this;
}
/**
* 最小匹配次数
* @return minMatch
*/
public Integer getMinMatch() {
return minMatch;
}
public void setMinMatch(Integer minMatch) {
this.minMatch = minMatch;
}
public RuleRequest withRiskLevel(Integer riskLevel) {
this.riskLevel = riskLevel;
return this;
}
/**
* 风险等级
* @return riskLevel
*/
public Integer getRiskLevel() {
return riskLevel;
}
public void setRiskLevel(Integer riskLevel) {
this.riskLevel = riskLevel;
}
public RuleRequest withRuleContent(String ruleContent) {
this.ruleContent = ruleContent;
return this;
}
/**
* 规则内容
* @return ruleContent
*/
public String getRuleContent() {
return ruleContent;
}
public void setRuleContent(String ruleContent) {
this.ruleContent = ruleContent;
}
public RuleRequest withRuleDesc(String ruleDesc) {
this.ruleDesc = ruleDesc;
return this;
}
/**
* 规则描述
* @return ruleDesc
*/
public String getRuleDesc() {
return ruleDesc;
}
public void setRuleDesc(String ruleDesc) {
this.ruleDesc = ruleDesc;
}
public RuleRequest withRuleName(String ruleName) {
this.ruleName = ruleName;
return this;
}
/**
* 规则名称
* @return ruleName
*/
public String getRuleName() {
return ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
public RuleRequest withRuleType(RuleTypeEnum ruleType) {
this.ruleType = ruleType;
return this;
}
/**
* 规则类型,关键字(KEYWORD)、正则表达式(REGEX)或自然语言(NLP)
* @return ruleType
*/
public RuleTypeEnum getRuleType() {
return ruleType;
}
public void setRuleType(RuleTypeEnum ruleType) {
this.ruleType = ruleType;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
RuleRequest that = (RuleRequest) obj;
return Objects.equals(this.category, that.category) && Objects.equals(this.id, that.id)
&& Objects.equals(this.logicOperator, that.logicOperator) && Objects.equals(this.minMatch, that.minMatch)
&& Objects.equals(this.riskLevel, that.riskLevel) && Objects.equals(this.ruleContent, that.ruleContent)
&& Objects.equals(this.ruleDesc, that.ruleDesc) && Objects.equals(this.ruleName, that.ruleName)
&& Objects.equals(this.ruleType, that.ruleType);
}
@Override
public int hashCode() {
return Objects
.hash(category, id, logicOperator, minMatch, riskLevel, ruleContent, ruleDesc, ruleName, ruleType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class RuleRequest {\n");
sb.append(" category: ").append(toIndentedString(category)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" logicOperator: ").append(toIndentedString(logicOperator)).append("\n");
sb.append(" minMatch: ").append(toIndentedString(minMatch)).append("\n");
sb.append(" riskLevel: ").append(toIndentedString(riskLevel)).append("\n");
sb.append(" ruleContent: ").append(toIndentedString(ruleContent)).append("\n");
sb.append(" ruleDesc: ").append(toIndentedString(ruleDesc)).append("\n");
sb.append(" ruleName: ").append(toIndentedString(ruleName)).append("\n");
sb.append(" ruleType: ").append(toIndentedString(ruleType)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
| [
"hwcloudsdk@huawei.com"
] | hwcloudsdk@huawei.com |
af668ac4528c08bc3a1aa6f2addbc44660fb5fe5 | 49dd4168fa682f5481cdc2b6b22c8b409fc057a4 | /db4all-api/src/main/java/fr/grozeille/db4all/entity/repositories/EntitySearchItemRepository.java | 6312c336cc272c295c8f2e27af3fca141882f6d3 | [] | no_license | alincc/db4all | 09305f761cdbf5ccada435f6fb188e32ffa33f43 | 612ad1dd447a37d8905f5a945da9773780fefb71 | refs/heads/master | 2023-05-09T18:09:16.783500 | 2019-02-08T03:06:46 | 2019-02-08T03:06:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 873 | java | package fr.grozeille.db4all.entity.repositories;
import fr.grozeille.db4all.entity.model.EntitySearchItem;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.repository.NoRepositoryBean;
import org.springframework.data.solr.repository.Query;
import org.springframework.data.solr.repository.SolrCrudRepository;
@NoRepositoryBean
public interface EntitySearchItemRepository extends SolrCrudRepository<EntitySearchItem, String> {
@Query(value = "projectId:?0")
Page<EntitySearchItem> findAllByProject(Pageable pageable, String projectId);
@Query(value = "text:*?0* AND projectId:?1")
Page<EntitySearchItem> findAllByProject(Pageable pageable, String filter, String projectId);
@Query(value = "text:*?0*")
Page<EntitySearchItem> findAll(Pageable pageable, String filter);
} | [
"mathias.kluba@gmail.com"
] | mathias.kluba@gmail.com |
91269e6be3818600f719e265ff3c5e01c3bbb3f1 | 933aa3b2f3161517ab78b1018d6af229d3ebc160 | /src/main/java/cn/com/sky/rocketmq/utils/TopicInfo.java | b303a0a953b556dc1c2e5084061953847902a07c | [] | no_license | git-sky/mq_demo | 41c8a79b2321abfe876e0dd83ea4e167f0971d10 | 4a3f3ad2f74f533ab27a01e7f0b9a0f4e484f1df | refs/heads/master | 2021-01-01T16:47:25.212604 | 2017-07-21T07:53:31 | 2017-07-21T07:53:31 | 97,921,704 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 692 | java | package cn.com.sky.rocketmq.utils;
public class TopicInfo {
String groupName;
String namesrvAddr;
String instanceName;
String topic;
public String getGroupName() {
return groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getNamesrvAddr() {
return namesrvAddr;
}
public void setNamesrvAddr(String namesrvAddr) {
this.namesrvAddr = namesrvAddr;
}
public String getInstanceName() {
return instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public String getTopic() {
return topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
}
| [
"linkme2008@sina.com"
] | linkme2008@sina.com |
9d9bfc936ed2870fe8285c938078fbac5b8ca065 | 9dfbff3733a905d18b15dfdec20c680fe2646e31 | /one-java-basic/src/main/java/com/hang/thread/threadfunction/ThreadDaemon.java | 53741f07e3891e6058678d7e5ccd1b268033a08e | [] | no_license | hang1810/cloud-learn | 64f92682e8b50ddf222adb97045b3e6d6c17fa6c | 07d619a67743a70cf8617daefcc7aaf9e7eb787e | refs/heads/master | 2022-12-28T00:48:55.072405 | 2020-10-13T07:15:48 | 2020-10-13T07:15:48 | 296,361,612 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 892 | java | package com.hang.thread.threadfunction;
/**
* @author Hang
* @date 2020-09-26 21:04
* 守护线程
*/
public class ThreadDaemon {
public static void main(String[] args) {
You you = new You();
Earth earth = new Earth();
Thread earthThread = new Thread(earth);
earthThread.setDaemon(true);//守护线程,默认false表现用户线程,正常的线程都是用户线程
earthThread.start();
new Thread(you).start();
}
}
class Earth implements Runnable{
@Override
public void run() {
while(true){
System.out.println("Earth in ");
}
}
}
class You implements Runnable{
@Override
public void run() {
for (int i = 0; i < 36500; i++) {
System.out.println("Happy Everyday , I LOVE YOU");
}
System.out.println("GOODBYE , Nice to meet you");
}
}
| [
"137628022@qq.com"
] | 137628022@qq.com |
c7169decf27a22f84837510ba82923d1a355d297 | c87591f0373b3d8af0c5596d8d79c5b44e1e0dfb | /Head_First_Android/18.10.22.starbuzz/app/src/androidTest/java/com/hfad/starbuzz2/ExampleInstrumentedTest.java | 09ad49ca5f43eb37e95a4597742775c7a2a7bc06 | [] | no_license | HOEINNKIM/Self_Study | 79c36345cfd66dc9c1cd80b05bfc3670298d4531 | 33bbf30c61fd5a8f1fcc65c50efb982a49ff1a71 | refs/heads/master | 2021-06-26T03:48:14.167929 | 2020-10-24T12:08:25 | 2020-10-24T12:08:25 | 159,029,720 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 720 | java | package com.hfad.starbuzz2;
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() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.hfad.starbuzz2", appContext.getPackageName());
}
}
| [
"43197755+HOEINNKIM@users.noreply.github.com"
] | 43197755+HOEINNKIM@users.noreply.github.com |
b41f53b5814044f8a536b534444d919a47890add | 8625b5c5c49d6d44920be34a526fe3496c857ab1 | /src/main/java/br/com/ranyel/projetozero/dao/repository/UsuarioRepository.java | 686b221c8f59fe5924e8b4cfcdc23c8cc8e59c40 | [] | no_license | dfsilva/projetoZero | 2190661495a9b8212665de4e6bc26a866b6fc53b | b2c82827bb007f9b29c8e42d9700df0dd842c1bd | refs/heads/master | 2020-12-01T03:05:26.258829 | 2013-02-26T01:12:34 | 2013-02-26T01:12:34 | 8,530,832 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 870 | java | package br.com.ranyel.projetozero.dao.repository;
import java.util.List;
import br.com.ranyel.projetozero.domain.Usuario;
import br.com.ranyel.projetozero.exception.RepositoryException;
/**
* @author ranyel
* Uso do pattern Repository, para a classe de domínio Usuario.
*/
public interface UsuarioRepository {
/**
* Salva um usuário.
* @param usuario usuario.
* @exception RepositoryException repositoryException.
*/
void salvar(Usuario usuario) throws RepositoryException;
/**
* Pesquisa por todos os usuários cadastrados.
* @return lista de usuários.
* @exception RepositoryException repositoryException.
*/
List<Usuario> pesquisarTodosOsUsuarios() throws RepositoryException;
/**
* Excluir o usuário passado como parâmetro.
* @param usuario usuário.
*/
void excluirUsuario(Usuario usuario) throws RepositoryException;
}
| [
"ranyel_lelis@yahoo.com.br"
] | ranyel_lelis@yahoo.com.br |
db1f5414acda67668ff2f71afc19cdd11cd1983a | 608f54b249c7ebaf0b16878a89af3dc2c15292d4 | /src/org/fujix/irairan/Player.java | cb8c6ab5a7cfc837b58ff6cac866865f23581a8e | [] | no_license | FujiX55/irairan | 57374fbb5554af2746d77b780ed300ad3a19e095 | 2111e478026284821cf7a8ae55ed42b6d04890ef | refs/heads/master | 2020-05-28T03:57:41.057403 | 2015-03-08T05:56:15 | 2015-03-08T05:56:15 | 14,254,786 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,819 | java | package org.fujix.irairan;
import android.graphics.*;
import java.util.*;
import android.widget.*;
import android.util.*;
import android.content.*;
public class Player extends Task
{
private Bitmap mPic;
private int mPic_w, mPic_h;
private final static float MAX_SPEED = 20; //移動する最大スピード
private final static float SIZE = 20; //自機の大きさ
private Circle mCir = null; //自機の円
private Paint mPaint = new Paint(); //描画設定
private Vec mVec = new Vec(); //自機の移動ベクトル
private Vec mSensorVec = new Vec(); //センサーのベクトル
private int mLife;
public final static int LIFE_MAX = 100;
private boolean mDamaged = false;
Rect mRcSrc = new Rect();
Rect mRcDst = new Rect();
Matrix mMat = new Matrix();
private final boolean DEBUG_DRAW = false;
public Player(Context c)
{
mPic = BitmapFactory.decodeResource(c.getResources(), R.drawable.ic_launcher);
mPic_w = mPic.getWidth();
mPic_h = mPic.getHeight();
mCir = new Circle(240, 50, SIZE); //(240,0)の位置にSIZEの大きさの円を作る
mPaint.setColor(Color.BLUE); //色を青に設定
mPaint.setAntiAlias(true); //エイリアスをオン
mLife = LIFE_MAX;
mVec._y = -0.001f;
}
@Override
protected void finalize() throws Throwable
{
try
{
super.finalize();
}
finally
{
mCir = null;
mSensorVec = null;
mVec = null;
mPaint = null;
mRcSrc = null;
mRcDst = null;
mMat = null;
Log.d("Player", "PlayerDestruct");
}
}
/**
* 自機中心円を取得する
*/
public final Circle getPt()
{
return mCir;
}
/**
* ベクトルをセットする
*/
private void setVec()
{
mVec.blend(mSensorVec, 0.05f); //センサーのベクトル方向に実際の移動ベクトルを5%近づける
}
/**
* 移動ベクトルの向いている方に動かす
*/
private void Move()
{
mCir._x += mVec._x; //移動ベクトルmVecが指す方向に移動させる
mCir._y += mVec._y;
}
/**
* // 指定された場所へ動かす
*/
public void MoveTo(float dest_x, float dest_y)
{
float distance_x = dest_x - mCir._x;
float distance_y = dest_y - mCir._y;
mCir._x = mCir._x + distance_x / 10;
mCir._y = mCir._y + distance_y / 10;
}
/**
* 自機の移動量を設定
*/
public void setMove(PointF old, PointF now)
{
float x = now.x - old.x;
float y = now.y - old.y;
mSensorVec._x = x;
mSensorVec._y = y;
mSensorVec.setLengthCap(MAX_SPEED); //ベクトルの大きさが最大スピード以上にならないようにする
}
/**
* センサーベクトルの初期化
*/
public void resetSensorVec()
{
mSensorVec._x = mSensorVec._y = 0;
}
/**
* 自機の更新
*/
@Override
public boolean onUpdate()
{
setVec(); //移動ベクトルをセットする
Move(); //移動ベクトルが向いている方に動かす
return true;
}
/**
* 自機の描画
*/
@Override
public void onDraw(Canvas c)
{
// キャラ画像の回転行列の生成
final int w = mPic_w; // 描画する幅
final int h = mPic_h; // 描画する高さ
final int sx = 0; // 画像内の左上座標X
final int sy = 0; // 画像内の左上座標Y
final int dx = (int)mCir._x; // 描画先の左上座標X
final int dy = (int)mCir._y; // 描画先の左上座標Y
double angle = 0; // 回転角度(度)
angle = Math.atan2(mVec._x, -mVec._y) * 180 / Math.PI;
mRcSrc.set(sx,sy,sx+w,sy+h);
mRcDst.set(dx-w/2,dy-h/2, dx+w/2, dy+h/2);
mMat.setRotate((float)angle, dx, dy);
// キャラ画像の表示
c.save();
c.concat(mMat);
c.drawBitmap(mPic, mRcSrc, mRcDst, null);
c.restore();
// 当たり判定の描画
if ( DEBUG_DRAW )
{
if (mDamaged)
{ // ダメージ表現
mDamaged = false;
mPaint.setColor(Color.RED);
}
else
if (mVec.getLength() > 3.0f)
{ // 速度がある時はシアンで描画する
mPaint.setColor(Color.CYAN);
}
else
{ // 通常は青で描画
mPaint.setColor(Color.BLUE);
}
c.drawCircle(mCir._x, mCir._y, mCir._r, mPaint);
}
// 移動ベクトルの描画
mPaint.setColor(Color.GREEN);
c.drawLine( mCir._x,
mCir._y,
mCir._x + mVec._x * 10,
mCir._y + mVec._y * 10,
mPaint );
// ライフの描画
c.drawRect(new RectF(mCir._x - SIZE * mLife / LIFE_MAX,
mCir._y - SIZE - 10,
mCir._x + SIZE * mLife / LIFE_MAX,
mCir._y - SIZE - 5),
mPaint);
}
/**
* 自機のライフを減らす
*/
public int onDamage()
{
if (0 < mLife)
{
mLife -= 10;
}
mDamaged = true;
return mLife;
}
}
| [
"hnishi2000@gmail.com"
] | hnishi2000@gmail.com |
9c3d894885a2e8ea7e1bcbdb8f133eca6e894394 | b5f161b238e45f1cada8f74875629a2e7ad50352 | /nascenttoolkit/src/main/java/com/nascentdigital/communication/ServiceResponseFormat.java | d4889d9bf45ed2affe82c5aec65a9698ae768073 | [] | no_license | nascentdigital/nascent-toolkit-android | 3b17c6c100a8b9ef9b1aa0b03d2ce4bfbae3648a | 8761d80cbf748951cedc71821d052e37d42541b6 | refs/heads/master | 2020-04-05T14:39:34.491311 | 2016-11-04T15:29:42 | 2016-11-04T15:29:42 | 11,161,598 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,387 | java | package com.nascentdigital.communication;
import java.util.Map;
import org.json.JSONObject;
import org.w3c.dom.Document;
import com.google.gson.JsonElement;
public abstract class ServiceResponseFormat<T>
{
// [region] constants
public static final ServiceResponseFormat<byte[]> RAW = new RawFormat();
public static final ServiceResponseFormat<String> STRING = new StringFormat();
public static final ServiceResponseFormat<Map<String, String>> FORM_ENCODED =
new FormEncodedFormat();
public static final ServiceResponseFormat<JSONObject> JSON = new JsonFormat();
public static final ServiceResponseFormat<JsonElement> GSON = new GsonFormat();
public static final ServiceResponseFormat<Document> XML = new XmlFormat();
// [endregion]
// [region] instance variables
protected final Type type;
// [endregion]
// [region] constructors
private ServiceResponseFormat(Type type)
{
this.type = type;
}
// [endregion]
// [region] internal data structures
protected enum Type
{
RAW, STRING, FORM_ENCODED, JSON, GSON, XML
} // Type
private static final class RawFormat extends ServiceResponseFormat<byte[]>
{
// [region] constructors
private RawFormat()
{
super(Type.RAW);
}
// [endregion]
} // class RawFormat
private static final class StringFormat extends ServiceResponseFormat<String>
{
// [region] constructors
private StringFormat()
{
super(Type.STRING);
}
// [endregion]
} // class StringFormat
private static final class FormEncodedFormat extends
ServiceResponseFormat<Map<String, String>>
{
// [region] constructors
private FormEncodedFormat()
{
super(Type.FORM_ENCODED);
}
// [endregion]
} // class FormEncodedFormat
private static final class JsonFormat extends ServiceResponseFormat<JSONObject>
{
// [region] constructors
private JsonFormat()
{
super(Type.JSON);
}
// [endregion]
} // class JsonFormat
private static final class GsonFormat extends ServiceResponseFormat<JsonElement>
{
// [region] constructors
private GsonFormat()
{
super(Type.GSON);
}
// [endregion]
} // class GsonFormat
private static final class XmlFormat extends ServiceResponseFormat<Document>
{
// [region] constructors
private XmlFormat()
{
super(Type.XML);
}
// [endregion]
} // class GsonFormat
// [endregion]
} // class ResponseFormat | [
"ahinton@nascentdigital.com"
] | ahinton@nascentdigital.com |
a8f9c164718118e60f01f93913f999aeba33833e | 6852ec875303d894832cbf50f3647b35ff94772b | /javaexam/src/mapper/teacher/TeacherMapperCustom.java | 87d7bf201062ff91de7f5161906aaa6c6181c6d1 | [] | no_license | 1zhichuanyunjian/javaexam | 0373b0c4f17a218eb22675377cff7d731fa63d0d | 556b2679567ee073571decd7b90562f923ec4f46 | refs/heads/master | 2021-03-29T02:37:11.449395 | 2016-04-05T09:58:31 | 2016-04-05T09:58:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 73 | java | package mapper.teacher;
public interface TeacherMapperCustom {
} | [
"1026100702@qq.com"
] | 1026100702@qq.com |
24a053735514cf1c1180a3c54b76355149b37fd9 | 4eb7a36d53f4f787baec49f22f61b09b814e3f21 | /app/build/generated/source/r/debug/me/dm7/barcodescanner/zxing/R.java | 6098050f13d437294a7442fe40a44d382c8191a8 | [] | no_license | 00hacktheworld00/ScanandGoProject | 4918e063493dcbf6440e853cd84165150397ec0d | ebdd132dfff3c9f6d9078a5e72aab569e146a6de | refs/heads/master | 2020-03-23T20:50:43.916985 | 2018-07-23T20:27:41 | 2018-07-23T20:28:59 | 142,066,091 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,497 | 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 me.dm7.barcodescanner.zxing;
public final class R {
public static final class attr {
public static final int borderAlpha = 0x7f03003e;
public static final int borderColor = 0x7f03003f;
public static final int borderLength = 0x7f030040;
public static final int borderWidth = 0x7f030041;
public static final int cornerRadius = 0x7f030087;
public static final int finderOffset = 0x7f0300b0;
public static final int laserColor = 0x7f0300d8;
public static final int laserEnabled = 0x7f0300d9;
public static final int maskColor = 0x7f030125;
public static final int roundedCorner = 0x7f03014b;
public static final int shouldScaleToFill = 0x7f030155;
public static final int squaredFinder = 0x7f030160;
}
public static final class color {
public static final int viewfinder_border = 0x7f05007b;
public static final int viewfinder_laser = 0x7f05007c;
public static final int viewfinder_mask = 0x7f05007d;
}
public static final class integer {
public static final int viewfinder_border_length = 0x7f09000b;
public static final int viewfinder_border_width = 0x7f09000c;
}
public static final class styleable {
public static final int[] BarcodeScannerView = { 0x7f03003e, 0x7f03003f, 0x7f030040, 0x7f030041, 0x7f030087, 0x7f0300b0, 0x7f0300d8, 0x7f0300d9, 0x7f030125, 0x7f03014b, 0x7f030155, 0x7f030160 };
public static final int BarcodeScannerView_borderAlpha = 0;
public static final int BarcodeScannerView_borderColor = 1;
public static final int BarcodeScannerView_borderLength = 2;
public static final int BarcodeScannerView_borderWidth = 3;
public static final int BarcodeScannerView_cornerRadius = 4;
public static final int BarcodeScannerView_finderOffset = 5;
public static final int BarcodeScannerView_laserColor = 6;
public static final int BarcodeScannerView_laserEnabled = 7;
public static final int BarcodeScannerView_maskColor = 8;
public static final int BarcodeScannerView_roundedCorner = 9;
public static final int BarcodeScannerView_shouldScaleToFill = 10;
public static final int BarcodeScannerView_squaredFinder = 11;
}
}
| [
"sadashiv.sinha@metronomic.in"
] | sadashiv.sinha@metronomic.in |
3604265e9c1228bee269a6f3f17271d1777bb95e | 39cfa3639f26161dd54f6b79b893938b26cb570a | /xAthlon/app/src/main/java/com/abacus/xathlon/MainActivity.java | 53c7bfe46ee04432affd611d0e9ad288e2e090cd | [] | no_license | ioanchatzip/uni_projects | 653bad55d8b628bb9595c46308b081312e5eb40c | bee0d6bbb0a50336392023782e875e74ddc5d9e8 | refs/heads/master | 2023-01-19T10:33:23.534456 | 2020-11-18T19:22:23 | 2020-11-18T19:22:23 | 314,018,541 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,164 | java | package com.abacus.xathlon;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.widget.Toast;
import android.util.Log;
import com.google.android.gms.ads.AdListener;
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;
import com.google.android.gms.ads.MobileAds;
public class MainActivity extends AppCompatActivity {
private AdView mAdView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MobileAds.initialize(this,"ca-app-pub-3617431417615170~7549872750");
mAdView = findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);
mAdView.setAdListener(new AdListener(){
@Override
public void onAdLoaded(){
Log.d("Ad Test","Add Finishes Loading");
}
@Override
public void onAdFailedToLoad(int i){
Log.d("Ad Test","Add Loading Failed");
}
@Override
public void onAdOpened(){
Log.d("Ad Test","Add is Visible Now");
}
@Override
public void onAdLeftApplication(){
Log.d("Ad Test","User left the app");
}
@Override
public void onAdClosed(){
Log.d("Ad Test","User return back to the app after tapping on ad");
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
MenuInflater menuInflater=getMenuInflater();
menuInflater.inflate(R.menu.menu_main, menu);
//getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()){
case R.id.help:
if(item.isChecked())item.setChecked(false);
else item.setChecked(true);
Toast.makeText(MainActivity.this, "Επιλέξατε 'Βοήθεια'",
Toast.LENGTH_SHORT).show();
startActivity(new Intent(this, Help.class));
return true;
case R.id.feedback:
if(item.isChecked())item.setChecked(false);
else item.setChecked(true);
Toast.makeText(MainActivity.this, "Επιλέξατε 'Αξιολογήστε μας'",
Toast.LENGTH_SHORT).show();
startActivity(new Intent(this, Feedback.class));
return true;
case R.id.aboutus:
if(item.isChecked())item.setChecked(false);
else item.setChecked(true);
Toast.makeText(MainActivity.this, "Επιλέξατε 'Σχετικά με...'",
Toast.LENGTH_SHORT).show();
startActivity(new Intent(this, About_us.class));
return true;
case R.id.share:
if(item.isChecked())item.setChecked(false);
else item.setChecked(true);
Toast.makeText(MainActivity.this, "Επιλέξατε 'Κοινή χρήση'",
Toast.LENGTH_SHORT).show();
startActivity(new Intent(this, Share.class));
return true;
default:
return super.onOptionsItemSelected(item);
}
}
public void startExercises(View view){ startActivity(new Intent(this, Exercises.class)); }
public void startHealthMonitoring(View view){ startActivity(new Intent(this, Health_Monitoring.class)); }
public void startNutritionTips(View view){ startActivity(new Intent(this, Nutrition_Tips.class)); }
public void startProfile(View view){ startActivity(new Intent(this, Profile.class)); }
} | [
"ioanchatzip@outlook.com"
] | ioanchatzip@outlook.com |
914784e204cdcb4cb0a315d28053a4fb51494125 | 51a42bfc1eea40359eaeb1066f78be04e5ac9f7a | /PlacementManagmentSystemB50/src/com/nacre/pms/bo/LevelBO.java | af13bb0bbd3719443d2559196bf3bb5f0cee745f | [] | no_license | armanjavaprojec/placementmanagementsystem | 6400347b23dc59b079c0753a0fd105289be38a41 | 7c64032a32e634396a5d54755a57c255b3b24909 | refs/heads/master | 2020-04-05T21:43:44.455774 | 2018-11-12T15:26:38 | 2018-11-12T15:26:38 | 157,230,864 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 471 | java | package com.nacre.pms.bo;
public class LevelBO {
private Integer levelId;
private String level;
public Integer getLevelId() {
return levelId;
}
public void setLevelId(Integer levelId) {
this.levelId = levelId;
}
public String getLevel() {
return level;
}
public void setLevel(String level) {
this.level = level;
}
@Override
public String toString() {
return "LevelBO [levelId=" + levelId + ", level=" + level + "]";
}
}
| [
"Armaan@DESKTOP-5JB57O4"
] | Armaan@DESKTOP-5JB57O4 |
59c4eb830bed0c7a45c62b259d2a1044784af818 | 8459f92a919923eea639d45cff66cd62dbbb3cb4 | /src/main/java/cc/royao/mana/exception/BusinessException.java | 8d9bc8dc9da43da0220c87d6106ddadba8f8a7b9 | [] | no_license | libiao5320/wx_manage | 40d161f6a4a030db5c725e14c7895c1feec42b10 | 22fd929683b2638b632be3dd9b3c25ecc3568e26 | refs/heads/master | 2020-04-08T11:26:59.112686 | 2018-11-28T02:13:20 | 2018-11-28T02:13:20 | 159,306,397 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 671 | java | package cc.royao.mana.exception;
/**
* Created by libia on 2016/2/3.
*/
public class BusinessException extends Exception {
private static final long serialVersionUID = 1L;
public BusinessException() {
// TODO Auto-generated constructor stub
}
public BusinessException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public BusinessException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public BusinessException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
}
| [
"libiao_com@aliyun.com"
] | libiao_com@aliyun.com |
9207ee18d4c874529562f6d5a9ef9b458c00a570 | e0a1ee95bbe1adef3cf98ba8744ac9bba121824d | /tensquare_base/src/test/java/io/wooo/tensquare/base/TensquareBaseApplicationTests.java | 78148c22c5dbd1bc82ff4f5b3e60305c30238861 | [] | no_license | wushuaiping/tensquare | c404579cd49a659992a95f183b833816453f7215 | eda727b6b7c023bc314c60b37dd9f8f2cbd2f11d | refs/heads/master | 2021-06-12T17:09:05.760446 | 2019-11-25T09:36:55 | 2019-11-25T09:36:55 | 157,511,935 | 8 | 3 | null | 2021-06-04T01:40:15 | 2018-11-14T07:56:48 | Java | UTF-8 | Java | false | false | 346 | java | package io.wooo.tensquare.base;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class TensquareBaseApplicationTests {
@Test
public void contextLoads() {
}
}
| [
"spwu@creams.io"
] | spwu@creams.io |
4c656897bbf8e60239109def9731943d3ba95cb6 | ecb45d13e48bc7d34682ac24c972589b97e949c5 | /code/com/jivesoftware/os/jive-utils/map-store/src/main/java/com/jivesoftware/os/jive/utils/map/store/SkipListComparator.java | 69c9c2fd767f9ab35eb20fe16d9f7673867335ec | [
"Apache-2.0"
] | permissive | patlachance/jive-utils | 437139939ecda0388334fc14e73cd885b89d4b79 | 68db25b75d2ad0c4ed0682d41bce06a9cedb8b87 | refs/heads/master | 2020-12-24T12:47:50.393556 | 2014-05-16T03:40:03 | 2014-05-16T03:40:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 737 | java | package com.jivesoftware.os.jive.utils.map.store;
/**
*
* @author jonathan
*/
public interface SkipListComparator {
/**
* Same behavior as javas Comparator.
*
* @param a
* @param astart
* @param b
* @param bstart
* @param length
* @return
*/
public int compare(MapChunk a, int astart, MapChunk b, int bstart, int length);
/**
* Should return the maximum number of items between a and b.
* if a and b where ints the thre result would simple be Math.max(a,b)-Math.min(a,b).
* if a and b where lowercase string 'aa' and 'az'. Then the result is 26.
*
*
* @param a
* @param b
* @return
*/
public long range(byte[] a, byte[] b);
} | [
"jonathan.colt@jivesoftware.com"
] | jonathan.colt@jivesoftware.com |
f8859a239ccce6de4a104d7ae09d168778b996b8 | d3f02a3469412c3609199bd5bfdb33537786f636 | /src/wordsimilarity/Primitive.java | 1187f1b81df55c0aa6cd52db9fe18c03e74d7e53 | [] | no_license | Karen928/SentenceSim | 93cf6fa09800d3e25cbb1b369a4e5aba219d1fb2 | fe0d66b55b60e18e9a7b31359dda86a98e0daf71 | refs/heads/master | 2021-09-16T01:02:43.209096 | 2018-06-14T02:36:18 | 2018-06-14T02:36:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,844 | java | package wordsimilarity;
import java.io.BufferedReader;
import java.io.FileReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* ��ԭ
*/
public class Primitive {
/**
* DOCUMENT ME!
*/
public static Map<Integer, Primitive> ALLPRIMITIVES = new HashMap<Integer, Primitive>();
/**
* DOCUMENT ME!
*/
public static Map<String, Integer> PRIMITIVESID = new HashMap<String, Integer>();
/**
* ������ԭ�ļ���
*/
static {
String line = null;
try {
BufferedReader reader = new BufferedReader(new FileReader(
"dict/WHOLE.DAT.utf8"));
line = reader.readLine();
while (line != null) {
line = line.trim().replaceAll("\\s+", " ");
String[] strs = line.split(" ");
int id = Integer.parseInt(strs[0]);
String[] words = strs[1].split("\\|");
String english = words[0];
String chinaese = strs[1].split("\\|")[1];
int parentId = Integer.parseInt(strs[2]);
ALLPRIMITIVES.put(id, new Primitive(id, chinaese, parentId));
//ALLPRIMITIVES.put(id, new Primitive(id, english, parentId));
PRIMITIVESID.put(chinaese, id);
PRIMITIVESID.put(english, id);
// System.out.println("add: " + primitive + " " + id + " " + parentId);
line = reader.readLine();
}
} catch (Exception e) {
// TODO Auto-generated catch block
System.out.println(line);
e.printStackTrace();
}
}
private String primitive;
/**
* id number
*/
private int id;
private int parentId;
/**
* Creates a new Primitive object.
*
* @param id
* DOCUMENT ME!
* @param primitive
* DOCUMENT ME!
* @param parentId
* DOCUMENT ME!
*/
public Primitive(int id, String primitive, int parentId) {
this.id = id;
this.parentId = parentId;
this.primitive = primitive;
}
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public String getPrimitive() {
return primitive;
}
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public int getId() {
return id;
}
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public int getParentId() {
return parentId;
}
/**
* DOCUMENT ME!
*
* @return DOCUMENT ME!
*/
public boolean isTop() {
return id == parentId;
}
/**
* ���һ����ԭ�����и���ԭ��ֱ������λ�á�
*
* @param primitive
* @return ������ҵ���ԭû�в��ҵ�����һ����list
*/
public static List<Integer> getParents(String primitive) {
List<Integer> list = new ArrayList<Integer>();
// get the id of this primitive
Integer id = PRIMITIVESID.get(primitive);
if (id != null) {
Primitive parent = ALLPRIMITIVES.get(id);
list.add(id);
while (!parent.isTop()) {
list.add(parent.getParentId());
parent = ALLPRIMITIVES.get(parent.getParentId());
}
}
return list;
}
/**
*
* @param primitive
* @return
*/
public static boolean isPrimitive(String primitive){
return PRIMITIVESID.containsKey(primitive);
}
/**
* DOCUMENT ME!
*
* @param args
* DOCUMENT ME!
*/
public static void main(String[] args) {
}
}
| [
"fssqawj@163.com"
] | fssqawj@163.com |
31a6b467e5c22537407b97e1bafb7e1ee5eb6882 | 22ab47fc9e64f9537f782ce0cac7b024a4b64434 | /simpledb/materialize/GroupValue.java | 07d9ea33e2a4a250a07cb362b099a4280033ad42 | [] | no_license | jcscheide/DB2Proj2 | c6334eee5744452f8569d04085c793c1ca3997bf | d539956734c57b01efbdd6d65bd78997a366c2d5 | refs/heads/master | 2020-05-15T13:49:00.327735 | 2019-04-22T18:56:24 | 2019-04-22T18:56:24 | 182,314,002 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,619 | java | package materialize;
import query.*;
import java.util.*;
/**
* An object that holds the values of the grouping fields for the current record
* of a scan.
*
* @author Edward Sciore
*/
public class GroupValue {
private Map<String, Constant> vals;
/**
* Creates a new group value, given the specified scan and list of fields.
* The values in the current record of each field are stored.
*
* @param s
* a scan
* @param fields
* the list of fields
*/
public GroupValue(Scan s, Collection<String> fields) {
vals = new HashMap<String, Constant>();
for (String fldname : fields)
vals.put(fldname, s.getVal(fldname));
}
/**
* Returns the Constant value of the specified field in the group.
*
* @param fldname
* the name of a field
* @return the value of the field in the group
*/
public Constant getVal(String fldname) {
return vals.get(fldname);
}
/**
* Two GroupValue objects are equal if they have the same values for their
* grouping fields.
*
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(Object obj) {
GroupValue gv = (GroupValue) obj;
for (String fldname : vals.keySet()) {
Constant v1 = vals.get(fldname);
Constant v2 = gv.getVal(fldname);
if (!v1.equals(v2))
return false;
}
return true;
}
/**
* The hashcode of a GroupValue object is the sum of the hashcodes of its
* field values.
*
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
int hashval = 0;
for (Constant c : vals.values())
hashval += c.hashCode();
return hashval;
}
} | [
"jcscheide@wpi.edu"
] | jcscheide@wpi.edu |
a7c627ed8ab11f4d19cbd40b2e6206a703a28b3c | ff9ac9e0e81ad8196f883fe7a892339cdcf986f2 | /src/main/java/com/salesliant/entity/PoleDisplayMessage.java | 0b91b897e1b4b5a5c4d39cde4f0be908955b36d5 | [] | no_license | salesliant/salesliant | 25b324d90e3a9dbbe91d75b70e6ce786a401bccc | 5d472c193c91555abcd99ea5db64304a9e4c442c | refs/heads/master | 2023-02-24T00:39:13.320749 | 2021-02-02T04:06:49 | 2021-02-02T04:06:49 | 334,688,522 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,525 | java | /**
* Copyright (c) minuteproject, minuteproject@gmail.com
* 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.
*
* More information on minuteproject:
* twitter @minuteproject
* wiki http://minuteproject.wikispaces.com
* blog http://minuteproject.blogspot.net
*
*/
/**
* template reference :
* - Minuteproject version : 0.9.11
* - name : DomainEntityJPA2Annotation
* - file name : DomainEntityJPA2Annotation.vm
* - time : 2021/01/30 AD at 23:59:31 EST
*/
package com.salesliant.entity;
//MP-MANAGED-ADDED-AREA-BEGINNING @import@
//MP-MANAGED-ADDED-AREA-ENDING @import@
import java.sql.*;
import java.util.Date;
import java.util.List;
import java.util.ArrayList;
import java.io.Serializable;
import javax.persistence.*;
/**
*
* <p>Title: PoleDisplayMessage</p>
*
* <p>Description: Domain Object describing a PoleDisplayMessage entity</p>
*
*/
@Entity (name="PoleDisplayMessage")
@Table (name="pole_display_message")
//MP-MANAGED-ADDED-AREA-BEGINNING @custom-annotations@
//MP-MANAGED-ADDED-AREA-ENDING @custom-annotations@
public class PoleDisplayMessage implements Serializable {
private static final long serialVersionUID = 1L;
public static final Integer __DEFAULT_VERSION = Integer.valueOf(0);
@Id @Column(name="id" )
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
//MP-MANAGED-ADDED-AREA-BEGINNING @description-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @description-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-description@
@Column(name="description" , length=128 , nullable=true , unique=false)
private String description;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @message_line1-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @message_line1-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-message_line1@
@Column(name="message_line1" , length=65535 , nullable=true , unique=false)
private String messageLine1;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @effect_line1-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @effect_line1-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-effect_line1@
@Column(name="effect_line1" , nullable=true , unique=false)
private Integer effectLine1;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @update_rate_line1-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @update_rate_line1-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-update_rate_line1@
@Column(name="update_rate_line1" , nullable=true , unique=false)
private Integer updateRateLine1;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @date_and_time_line1-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @date_and_time_line1-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-date_and_time_line1@
@Column(name="date_and_time_line1" , nullable=true , unique=false)
private Boolean dateAndTimeLine1;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @scroll_change_size_line1-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @scroll_change_size_line1-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-scroll_change_size_line1@
@Column(name="scroll_change_size_line1" , nullable=true , unique=false)
private Integer scrollChangeSizeLine1;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @message_line2-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @message_line2-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-message_line2@
@Column(name="message_line2" , length=65535 , nullable=true , unique=false)
private String messageLine2;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @effect_line2-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @effect_line2-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-effect_line2@
@Column(name="effect_line2" , nullable=true , unique=false)
private Integer effectLine2;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @update_rate_line2-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @update_rate_line2-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-update_rate_line2@
@Column(name="update_rate_line2" , nullable=true , unique=false)
private Integer updateRateLine2;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @date_and_time_line2-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @date_and_time_line2-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-date_and_time_line2@
@Column(name="date_and_time_line2" , nullable=true , unique=false)
private Boolean dateAndTimeLine2;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @scroll_change_size_line2-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @scroll_change_size_line2-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-scroll_change_size_line2@
@Column(name="scroll_change_size_line2" , nullable=true , unique=false)
private Integer scrollChangeSizeLine2;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @version-field-annotation@
//MP-MANAGED-ADDED-AREA-ENDING @version-field-annotation@
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @ATTRIBUTE-version@
@Column(name="version" , nullable=false , unique=false)
@Version
private Integer version;
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @stations-field-pole_display_message@
@OneToMany (targetEntity=com.salesliant.entity.Station.class, fetch=FetchType.LAZY, mappedBy="poleDisplayMessage", cascade=CascadeType.REMOVE)//, cascade=CascadeType.ALL)
private List <Station> stations = new ArrayList<>();
//MP-MANAGED-UPDATABLE-ENDING
/**
* Default constructor
*/
public PoleDisplayMessage() {
}
public Integer getId() {
return id;
}
public void setId (Integer id) {
this.id = id;
}
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-description@
public String getDescription() {
return description;
}
public void setDescription (String description) {
this.description = description;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-message_line1@
public String getMessageLine1() {
return messageLine1;
}
public void setMessageLine1 (String messageLine1) {
this.messageLine1 = messageLine1;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-effect_line1@
public Integer getEffectLine1() {
return effectLine1;
}
public void setEffectLine1 (Integer effectLine1) {
this.effectLine1 = effectLine1;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-update_rate_line1@
public Integer getUpdateRateLine1() {
return updateRateLine1;
}
public void setUpdateRateLine1 (Integer updateRateLine1) {
this.updateRateLine1 = updateRateLine1;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-date_and_time_line1@
public Boolean getDateAndTimeLine1() {
return dateAndTimeLine1;
}
public void setDateAndTimeLine1 (Boolean dateAndTimeLine1) {
this.dateAndTimeLine1 = dateAndTimeLine1;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-scroll_change_size_line1@
public Integer getScrollChangeSizeLine1() {
return scrollChangeSizeLine1;
}
public void setScrollChangeSizeLine1 (Integer scrollChangeSizeLine1) {
this.scrollChangeSizeLine1 = scrollChangeSizeLine1;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-message_line2@
public String getMessageLine2() {
return messageLine2;
}
public void setMessageLine2 (String messageLine2) {
this.messageLine2 = messageLine2;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-effect_line2@
public Integer getEffectLine2() {
return effectLine2;
}
public void setEffectLine2 (Integer effectLine2) {
this.effectLine2 = effectLine2;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-update_rate_line2@
public Integer getUpdateRateLine2() {
return updateRateLine2;
}
public void setUpdateRateLine2 (Integer updateRateLine2) {
this.updateRateLine2 = updateRateLine2;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-date_and_time_line2@
public Boolean getDateAndTimeLine2() {
return dateAndTimeLine2;
}
public void setDateAndTimeLine2 (Boolean dateAndTimeLine2) {
this.dateAndTimeLine2 = dateAndTimeLine2;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-scroll_change_size_line2@
public Integer getScrollChangeSizeLine2() {
return scrollChangeSizeLine2;
}
public void setScrollChangeSizeLine2 (Integer scrollChangeSizeLine2) {
this.scrollChangeSizeLine2 = scrollChangeSizeLine2;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @GETTER-SETTER-version@
public Integer getVersion() {
return version;
}
public void setVersion (Integer version) {
this.version = version;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @stations-getter-pole_display_message@
public List<Station> getStations() {
if (stations == null){
stations = new ArrayList<>();
}
return stations;
}
public void setStations (List<Station> stations) {
this.stations = stations;
}
public void addStations (Station element) {
getStations().add(element);
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @prepersist-pole_display_message@
@javax.persistence.PrePersist
public void prePersist_ () {
if (version==null) version=__DEFAULT_VERSION;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-UPDATABLE-BEGINNING-DISABLE @preupdate-pole_display_message@
@javax.persistence.PreUpdate
public void preUpdate_ () {
if (version==null) version=__DEFAULT_VERSION;
}
//MP-MANAGED-UPDATABLE-ENDING
//MP-MANAGED-ADDED-AREA-BEGINNING @implementation@
//MP-MANAGED-ADDED-AREA-ENDING @implementation@
}
| [
""
] | |
25f2d4573caa361ba65978f249ebd368322b375a | c02d7bbec6593547842403e7c519f4d17caebedd | /src/main/java/com/zhoga/akka/task3/Main.java | 3fad570b94b357bad444183885798923da56635b | [] | no_license | ximera239/akka-java | a3ab7a54a0f46d15551d088e713dff553a104d0a | 290b5a4370da135e126cbe913f6b0d6ef1657940 | refs/heads/master | 2021-04-15T15:05:56.299693 | 2018-03-23T13:28:07 | 2018-03-23T13:28:07 | 126,488,760 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,216 | java | package com.zhoga.akka.task3;
import akka.actor.ActorRef;
import akka.actor.ActorSystem;
import akka.actor.Props;
import java.util.Random;
/**
* Main class to run simulation
*
* Simulation description: created n actors with unique ids
* from 1 to n. THey are organized in "ring", where each actor
* has prev and next siblings, having accordingly id less by 1 or
* greate by 1. For actor with id 1 prev sibling has id n, and
* for actor with id n, next sibling has id 1.
* Simulation starts with message sent to random actor in ring.
* If sender is not prev or next sibling, message is forwarded
* to both (prev and next). If message is received from prev sibling
* first time, it is forwarded to next sibling, otherwise ignored.
* If message is received from next sibling for the first time,
* it is forwarded to prev sibling, otherwise ignored.
* As soon as actor receive message from both sides, it print message
* received last (from second sibling).
*
* Number of worker actors is specified as input parameter.
* Main class initialize Supervisor actor and than sends
* message for actor with random id between 1 and n where n
* is number of workers
*/
public class Main {
public static void main(String...args) {
if (args.length == 0) {
System.out.println("Required number of workers as input parameter");
} else {
try {
final int workersNum = Integer.parseInt(args[0]);
final Props SupervisorProps = Supervisor.props(workersNum);
final ActorSystem system = ActorSystem.create("test-system");
final ActorRef ref = system.actorOf(
SupervisorProps,
Supervisor.Name
);
final int id = new Random().nextInt(workersNum) + 1;
ref.tell(new Messages.MessageToActor(id, String.format("Hello from: %d", id)), null);
} catch (NumberFormatException e) {
System.out.println("Number of workers should be int");
} catch (IllegalArgumentException e) {
System.out.println("Illegal argument: " + e.getMessage());
}
}
}
}
| [
"ezhoga@MacBook-Pro-Evgeny.fritz.box"
] | ezhoga@MacBook-Pro-Evgeny.fritz.box |
43f69883a1f1e46cc698bb40dff4068d6eb88de3 | e119cd833db9ffbb7783ccdc6982075b91dc6542 | /police-stories-lastaflute/src/main/java/org/docksidestage/dbflute/bsentity/dbmeta/PurchasePaymentDbm.java | 244a23f74ec5ac3fbc9747c502152f8808705ed3 | [
"Apache-2.0"
] | permissive | dbflute-utflute/police-stories | be3d414e30142ee0765c119cbc2b6793b6afe46f | b06c32b5d723ebb17ea952f12e47c1df8e6d8ade | refs/heads/master | 2021-04-15T16:33:35.633065 | 2018-03-25T23:50:38 | 2018-03-25T23:50:38 | 126,748,544 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 16,492 | java | /*
* Copyright 2014-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
package org.docksidestage.dbflute.bsentity.dbmeta;
import java.util.List;
import java.util.Map;
import org.dbflute.Entity;
import org.dbflute.optional.OptionalEntity;
import org.dbflute.dbmeta.AbstractDBMeta;
import org.dbflute.dbmeta.info.*;
import org.dbflute.dbmeta.name.*;
import org.dbflute.dbmeta.property.PropertyGateway;
import org.dbflute.dbway.DBDef;
import org.docksidestage.dbflute.allcommon.*;
import org.docksidestage.dbflute.exentity.*;
/**
* The DB meta of PURCHASE_PAYMENT. (Singleton)
* @author DBFlute(AutoGenerator)
*/
public class PurchasePaymentDbm extends AbstractDBMeta {
// ===================================================================================
// Singleton
// =========
private static final PurchasePaymentDbm _instance = new PurchasePaymentDbm();
private PurchasePaymentDbm() {}
public static PurchasePaymentDbm getInstance() { return _instance; }
// ===================================================================================
// Current DBDef
// =============
public String getProjectName() { return DBCurrent.getInstance().projectName(); }
public String getProjectPrefix() { return DBCurrent.getInstance().projectPrefix(); }
public String getGenerationGapBasePrefix() { return DBCurrent.getInstance().generationGapBasePrefix(); }
public DBDef getCurrentDBDef() { return DBCurrent.getInstance().currentDBDef(); }
// ===================================================================================
// Property Gateway
// ================
// -----------------------------------------------------
// Column Property
// ---------------
protected final Map<String, PropertyGateway> _epgMap = newHashMap();
{ xsetupEpg(); }
protected void xsetupEpg() {
setupEpg(_epgMap, et -> ((PurchasePayment)et).getPurchasePaymentId(), (et, vl) -> ((PurchasePayment)et).setPurchasePaymentId(ctl(vl)), "purchasePaymentId");
setupEpg(_epgMap, et -> ((PurchasePayment)et).getPurchaseId(), (et, vl) -> ((PurchasePayment)et).setPurchaseId(ctl(vl)), "purchaseId");
setupEpg(_epgMap, et -> ((PurchasePayment)et).getPaymentAmount(), (et, vl) -> ((PurchasePayment)et).setPaymentAmount(ctb(vl)), "paymentAmount");
setupEpg(_epgMap, et -> ((PurchasePayment)et).getPaymentDatetime(), (et, vl) -> ((PurchasePayment)et).setPaymentDatetime(ctldt(vl)), "paymentDatetime");
setupEpg(_epgMap, et -> ((PurchasePayment)et).getPaymentMethodCode(), (et, vl) -> {
CDef.PaymentMethod cls = (CDef.PaymentMethod)gcls(et, columnPaymentMethodCode(), vl);
if (cls != null) {
((PurchasePayment)et).setPaymentMethodCodeAsPaymentMethod(cls);
} else {
((PurchasePayment)et).mynativeMappingPaymentMethodCode((String)vl);
}
}, "paymentMethodCode");
setupEpg(_epgMap, et -> ((PurchasePayment)et).getRegisterDatetime(), (et, vl) -> ((PurchasePayment)et).setRegisterDatetime(ctldt(vl)), "registerDatetime");
setupEpg(_epgMap, et -> ((PurchasePayment)et).getRegisterUser(), (et, vl) -> ((PurchasePayment)et).setRegisterUser((String)vl), "registerUser");
setupEpg(_epgMap, et -> ((PurchasePayment)et).getUpdateDatetime(), (et, vl) -> ((PurchasePayment)et).setUpdateDatetime(ctldt(vl)), "updateDatetime");
setupEpg(_epgMap, et -> ((PurchasePayment)et).getUpdateUser(), (et, vl) -> ((PurchasePayment)et).setUpdateUser((String)vl), "updateUser");
}
public PropertyGateway findPropertyGateway(String prop)
{ return doFindEpg(_epgMap, prop); }
// -----------------------------------------------------
// Foreign Property
// ----------------
protected final Map<String, PropertyGateway> _efpgMap = newHashMap();
{ xsetupEfpg(); }
@SuppressWarnings("unchecked")
protected void xsetupEfpg() {
setupEfpg(_efpgMap, et -> ((PurchasePayment)et).getPurchase(), (et, vl) -> ((PurchasePayment)et).setPurchase((OptionalEntity<Purchase>)vl), "purchase");
}
public PropertyGateway findForeignPropertyGateway(String prop)
{ return doFindEfpg(_efpgMap, prop); }
// ===================================================================================
// Table Info
// ==========
protected final String _tableDbName = "PURCHASE_PAYMENT";
protected final String _tableDispName = "PURCHASE_PAYMENT";
protected final String _tablePropertyName = "purchasePayment";
protected final TableSqlName _tableSqlName = new TableSqlName("PURCHASE_PAYMENT", _tableDbName);
{ _tableSqlName.xacceptFilter(DBFluteConfig.getInstance().getTableSqlNameFilter()); }
public String getTableDbName() { return _tableDbName; }
public String getTableDispName() { return _tableDispName; }
public String getTablePropertyName() { return _tablePropertyName; }
public TableSqlName getTableSqlName() { return _tableSqlName; }
protected final String _tableAlias = "購入支払";
public String getTableAlias() { return _tableAlias; }
// ===================================================================================
// Column Info
// ===========
protected final ColumnInfo _columnPurchasePaymentId = cci("PURCHASE_PAYMENT_ID", "PURCHASE_PAYMENT_ID", null, "購入支払ID", Long.class, "purchasePaymentId", null, true, true, true, "BIGINT", 19, 0, null, "NEXT VALUE FOR PUBLIC.SYSTEM_SEQUENCE_2D781A60_CCB5_4BAB_8F29_A9C0E7469E1C", false, null, null, null, null, null, false);
protected final ColumnInfo _columnPurchaseId = cci("PURCHASE_ID", "PURCHASE_ID", null, "購入ID", Long.class, "purchaseId", null, false, false, true, "BIGINT", 19, 0, null, null, false, null, null, "purchase", null, null, false);
protected final ColumnInfo _columnPaymentAmount = cci("PAYMENT_AMOUNT", "PAYMENT_AMOUNT", null, "支払金額", java.math.BigDecimal.class, "paymentAmount", null, false, false, true, "DECIMAL", 10, 2, null, null, false, null, null, null, null, null, false);
protected final ColumnInfo _columnPaymentDatetime = cci("PAYMENT_DATETIME", "PAYMENT_DATETIME", null, "支払日時", java.time.LocalDateTime.class, "paymentDatetime", null, false, false, true, "TIMESTAMP", 23, 10, null, null, false, null, null, null, null, null, false);
protected final ColumnInfo _columnPaymentMethodCode = cci("PAYMENT_METHOD_CODE", "PAYMENT_METHOD_CODE", null, "支払方法コード", String.class, "paymentMethodCode", null, false, false, true, "CHAR", 3, 0, null, null, false, null, null, null, null, CDef.DefMeta.PaymentMethod, false);
protected final ColumnInfo _columnRegisterDatetime = cci("REGISTER_DATETIME", "REGISTER_DATETIME", null, null, java.time.LocalDateTime.class, "registerDatetime", null, false, false, true, "TIMESTAMP", 23, 10, null, null, true, null, null, null, null, null, false);
protected final ColumnInfo _columnRegisterUser = cci("REGISTER_USER", "REGISTER_USER", null, null, String.class, "registerUser", null, false, false, true, "VARCHAR", 200, 0, null, null, true, null, null, null, null, null, false);
protected final ColumnInfo _columnUpdateDatetime = cci("UPDATE_DATETIME", "UPDATE_DATETIME", null, null, java.time.LocalDateTime.class, "updateDatetime", null, false, false, true, "TIMESTAMP", 23, 10, null, null, true, null, null, null, null, null, false);
protected final ColumnInfo _columnUpdateUser = cci("UPDATE_USER", "UPDATE_USER", null, null, String.class, "updateUser", null, false, false, true, "VARCHAR", 200, 0, null, null, true, null, null, null, null, null, false);
/**
* (購入支払ID)PURCHASE_PAYMENT_ID: {PK, ID, NotNull, BIGINT(19)}
* @return The information object of specified column. (NotNull)
*/
public ColumnInfo columnPurchasePaymentId() { return _columnPurchasePaymentId; }
/**
* (購入ID)PURCHASE_ID: {IX, NotNull, BIGINT(19), FK to PURCHASE}
* @return The information object of specified column. (NotNull)
*/
public ColumnInfo columnPurchaseId() { return _columnPurchaseId; }
/**
* (支払金額)PAYMENT_AMOUNT: {NotNull, DECIMAL(10, 2)}
* @return The information object of specified column. (NotNull)
*/
public ColumnInfo columnPaymentAmount() { return _columnPaymentAmount; }
/**
* (支払日時)PAYMENT_DATETIME: {IX+, NotNull, TIMESTAMP(23, 10)}
* @return The information object of specified column. (NotNull)
*/
public ColumnInfo columnPaymentDatetime() { return _columnPaymentDatetime; }
/**
* (支払方法コード)PAYMENT_METHOD_CODE: {NotNull, CHAR(3), classification=PaymentMethod}
* @return The information object of specified column. (NotNull)
*/
public ColumnInfo columnPaymentMethodCode() { return _columnPaymentMethodCode; }
/**
* REGISTER_DATETIME: {NotNull, TIMESTAMP(23, 10)}
* @return The information object of specified column. (NotNull)
*/
public ColumnInfo columnRegisterDatetime() { return _columnRegisterDatetime; }
/**
* REGISTER_USER: {NotNull, VARCHAR(200)}
* @return The information object of specified column. (NotNull)
*/
public ColumnInfo columnRegisterUser() { return _columnRegisterUser; }
/**
* UPDATE_DATETIME: {NotNull, TIMESTAMP(23, 10)}
* @return The information object of specified column. (NotNull)
*/
public ColumnInfo columnUpdateDatetime() { return _columnUpdateDatetime; }
/**
* UPDATE_USER: {NotNull, VARCHAR(200)}
* @return The information object of specified column. (NotNull)
*/
public ColumnInfo columnUpdateUser() { return _columnUpdateUser; }
protected List<ColumnInfo> ccil() {
List<ColumnInfo> ls = newArrayList();
ls.add(columnPurchasePaymentId());
ls.add(columnPurchaseId());
ls.add(columnPaymentAmount());
ls.add(columnPaymentDatetime());
ls.add(columnPaymentMethodCode());
ls.add(columnRegisterDatetime());
ls.add(columnRegisterUser());
ls.add(columnUpdateDatetime());
ls.add(columnUpdateUser());
return ls;
}
{ initializeInformationResource(); }
// ===================================================================================
// Unique Info
// ===========
// -----------------------------------------------------
// Primary Element
// ---------------
protected UniqueInfo cpui() { return hpcpui(columnPurchasePaymentId()); }
public boolean hasPrimaryKey() { return true; }
public boolean hasCompoundPrimaryKey() { return false; }
// ===================================================================================
// Relation Info
// =============
// cannot cache because it uses related DB meta instance while booting
// (instead, cached by super's collection)
// -----------------------------------------------------
// Foreign Property
// ----------------
/**
* (購入)PURCHASE by my PURCHASE_ID, named 'purchase'.
* @return The information object of foreign property. (NotNull)
*/
public ForeignInfo foreignPurchase() {
Map<ColumnInfo, ColumnInfo> mp = newLinkedHashMap(columnPurchaseId(), PurchaseDbm.getInstance().columnPurchaseId());
return cfi("FK_PURCHASE_PAYMENT_PURCHASE", "purchase", this, PurchaseDbm.getInstance(), mp, 0, org.dbflute.optional.OptionalEntity.class, false, false, false, false, null, null, false, "purchasePaymentList", false);
}
// -----------------------------------------------------
// Referrer Property
// -----------------
// ===================================================================================
// Various Info
// ============
public boolean hasIdentity() { return true; }
public boolean hasCommonColumn() { return true; }
public List<ColumnInfo> getCommonColumnInfoList()
{ return newArrayList(columnRegisterDatetime(), columnRegisterUser(), columnUpdateDatetime(), columnUpdateUser()); }
public List<ColumnInfo> getCommonColumnInfoBeforeInsertList()
{ return newArrayList(columnRegisterDatetime(), columnRegisterUser(), columnUpdateDatetime(), columnUpdateUser()); }
public List<ColumnInfo> getCommonColumnInfoBeforeUpdateList()
{ return newArrayList(columnUpdateDatetime(), columnUpdateUser()); }
// ===================================================================================
// Type Name
// =========
public String getEntityTypeName() { return "org.docksidestage.dbflute.exentity.PurchasePayment"; }
public String getConditionBeanTypeName() { return "org.docksidestage.dbflute.cbean.PurchasePaymentCB"; }
public String getBehaviorTypeName() { return "org.docksidestage.dbflute.exbhv.PurchasePaymentBhv"; }
// ===================================================================================
// Object Type
// ===========
public Class<PurchasePayment> getEntityType() { return PurchasePayment.class; }
// ===================================================================================
// Object Instance
// ===============
public PurchasePayment newEntity() { return new PurchasePayment(); }
// ===================================================================================
// Map Communication
// =================
public void acceptPrimaryKeyMap(Entity et, Map<String, ? extends Object> mp)
{ doAcceptPrimaryKeyMap((PurchasePayment)et, mp); }
public void acceptAllColumnMap(Entity et, Map<String, ? extends Object> mp)
{ doAcceptAllColumnMap((PurchasePayment)et, mp); }
public Map<String, Object> extractPrimaryKeyMap(Entity et) { return doExtractPrimaryKeyMap(et); }
public Map<String, Object> extractAllColumnMap(Entity et) { return doExtractAllColumnMap(et); }
}
| [
"dbflute@gmail.com"
] | dbflute@gmail.com |
80d81b52bdb824148678ffe4ab8207636fb92ff8 | b4a2203f557a8adc20c8a55c24d587f1a4fdecef | /app/src/main/java/com/example/shreyash/myapplication/Dashboard.java | 1a98be0a2df9d1a14a42a4e610c43fcd259788a2 | [] | no_license | AnantGowadiya/sattvik | c7ef94d8a5639c5b28c1e9bfda6ea50434b4d972 | 66e984a8b41a092b22c8d09360fb9850f36435c1 | refs/heads/master | 2021-04-09T16:28:03.784127 | 2018-03-08T15:58:29 | 2018-03-08T15:58:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,872 | java | package com.example.shreyash.myapplication;
import android.app.Activity;
import android.content.Intent;
import android.content.res.Configuration;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentTransaction;
import android.view.View;
import android.support.design.widget.NavigationView;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
public class Dashboard extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
FloatingActionButton fab;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_dashboard);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Fragment feedback_page=new FragmentFeedback();
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
ft.replace(R.id.content_frame, feedback_page);
ft.commit();
fab.hide();
}
});
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.addDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
Fragment myFragment=new FragmentBoard();
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
ft.replace(R.id.content_frame, myFragment, "MY_FRAGMENT");
ft.commit();
}
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
FragmentBoard myFragment = (FragmentBoard) getSupportFragmentManager().findFragmentByTag("MY_FRAGMENT");;
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
if (myFragment != null && myFragment.isVisible()) {
super.onBackPressed();
} else {
Fragment home_fragment=new FragmentBoard();
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
ft.replace(R.id.content_frame, home_fragment, "MY_FRAGMENT");
ft.commit();
fab.show();
}
}
}
private void displaySelectedScreen(int itemId) {
//creating fragment object
Fragment fragment = null;
//initializing the fragment object which is selected
switch (itemId) {
case R.id.board:
fragment = new FragmentBoard();
break;
case R.id.cancel:
fragment = new FragmentCancel();
break;
case R.id.bill:
fragment = new FragmentBill();
break;
case R.id.feedback:
fragment = new FragmentFeedback();
break;
}
//replacing the fragment
if (fragment != null) {
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
ft.replace(R.id.content_frame, fragment);
ft.commit();
}
if(fragment instanceof FragmentBoard){
fab.show();
} else {
fab.hide();
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
if(item.getItemId()==R.id.about){
Intent i = new Intent(Dashboard.this, ActivityAbout.class);
startActivity(i);
}
else if(item.getItemId()==R.id.workers){
Intent i = new Intent(Dashboard.this, ActivityWorkers.class);
startActivity(i);
}
else{
displaySelectedScreen(item.getItemId());}
return true;
}
}
| [
"37185812+shreyash-jain@users.noreply.github.com"
] | 37185812+shreyash-jain@users.noreply.github.com |
baec58d3c27d8c95f0f89f889cf947c8c06af186 | 2a8e4b58382542f2348f25c215bc0da1d9690dec | /Main.java | 3b075962b15351fa5a5cf6999a8f1fd2e7c2f8fd | [] | no_license | andreinnanu/Emergency-Room-Simulator | a875eb1c577d7f0328dba202a3f34086032ac6f8 | f6ba8321836a36345fd345e611c8182099b59d36 | refs/heads/master | 2022-06-29T10:04:32.729049 | 2019-03-03T19:59:55 | 2019-03-03T19:59:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,015 | java | import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.File;
public final class Main {
private Main() {
}
public static void main(String[] args) throws Exception {
ObjectMapper objectMapper = new ObjectMapper();
Hospital hospital = objectMapper.readValue(new File(args[0]), Hospital.class);
// realizam citirea folosind objectMapper
hospital.addObserver(new Printer());
// adaugam Printer ca observator al lui hospital
hospital.createCopy();
// cream copiile doctorilor
int i = 0;
// realizam simularea efectiva
while (i < hospital.getSimulationLength()) {
hospital.clear();
hospital.triage();
hospital.examine();
hospital.investigate();
hospital.update();
hospital.goNurses();
hospital.doctorCheck();
hospital.setRounds(hospital.getRounds() + 1);
i++;
}
}
}
| [
"noreply@github.com"
] | noreply@github.com |
967de12610d68698313c39319cf9c287cbd2ea99 | 15b759248ca9e56df034e362d8d84581b2d36ebf | /MovieApp/app/build/generated/source/r/debug/com/example/android/movieapp/R.java | 32633f71b2d7023fb642ff4a86c20de118504d77 | [] | no_license | terrancen47/Andela_Udacity_PopularMoviesStage2 | ff6435133c2d6440f5383bf94ffc0f0c12615d87 | ea06112a2f0f6fabd572760bb215a4d79425fce9 | refs/heads/master | 2022-10-21T05:45:27.446072 | 2020-06-10T20:20:32 | 2020-06-10T20:20:32 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 872,856 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.example.android.movieapp;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f010000;
public static final int abc_fade_out=0x7f010001;
public static final int abc_grow_fade_in_from_bottom=0x7f010002;
public static final int abc_popup_enter=0x7f010003;
public static final int abc_popup_exit=0x7f010004;
public static final int abc_shrink_fade_out_from_bottom=0x7f010005;
public static final int abc_slide_in_bottom=0x7f010006;
public static final int abc_slide_in_top=0x7f010007;
public static final int abc_slide_out_bottom=0x7f010008;
public static final int abc_slide_out_top=0x7f010009;
public static final int abc_tooltip_enter=0x7f01000a;
public static final int abc_tooltip_exit=0x7f01000b;
public static final int design_bottom_sheet_slide_in=0x7f01000c;
public static final int design_bottom_sheet_slide_out=0x7f01000d;
public static final int design_snackbar_in=0x7f01000e;
public static final int design_snackbar_out=0x7f01000f;
}
public static final class animator {
public static final int design_appbar_state_list_animator=0x7f020000;
}
public static final class attr {
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarDivider=0x7f030000;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarItemBackground=0x7f030001;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarPopupTheme=0x7f030002;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap_content</td><td>0</td><td></td></tr>
* </table>
*/
public static final int actionBarSize=0x7f030003;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f030004;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f030005;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f030006;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f030007;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f030008;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f030009;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f03000a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionButtonStyle=0x7f03000b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f03000c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionLayout=0x7f03000d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f03000e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int actionMenuTextColor=0x7f03000f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f030010;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f030011;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f030012;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=0x7f030013;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f030014;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f030015;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModePasteDrawable=0x7f030016;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f030017;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f030018;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f030019;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f03001a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f03001b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f03001c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f03001d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f03001e;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int actionProviderClass=0x7f03001f;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int actionViewClass=0x7f030020;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f030021;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int adjustable=0x7f030022;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f030023;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int alertDialogCenterButtons=0x7f030024;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f030025;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f030026;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int allowDividerAbove=0x7f030027;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int allowDividerAfterLastItem=0x7f030028;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int allowDividerBelow=0x7f030029;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int allowStacking=0x7f03002a;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int alpha=0x7f03002b;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*/
public static final int alphabeticModifiers=0x7f03002c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int arrowHeadLength=0x7f03002d;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int arrowShaftLength=0x7f03002e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f03002f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int autoSizeMaxTextSize=0x7f030030;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int autoSizeMinTextSize=0x7f030031;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int autoSizePresetSizes=0x7f030032;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int autoSizeStepGranularity=0x7f030033;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>uniform</td><td>1</td><td></td></tr>
* </table>
*/
public static final int autoSizeTextType=0x7f030034;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int background=0x7f030035;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f030036;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f030037;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundTint=0x7f030038;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int backgroundTintMode=0x7f030039;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int barLength=0x7f03003a;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int barrierAllowsGoneWidgets=0x7f03003b;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>3</td><td></td></tr>
* <tr><td>end</td><td>6</td><td></td></tr>
* <tr><td>left</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>1</td><td></td></tr>
* <tr><td>start</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>2</td><td></td></tr>
* </table>
*/
public static final int barrierDirection=0x7f03003c;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int behavior_autoHide=0x7f03003d;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int behavior_hideable=0x7f03003e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int behavior_overlapTop=0x7f03003f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* </table>
*/
public static final int behavior_peekHeight=0x7f030040;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int behavior_skipCollapsed=0x7f030041;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int borderWidth=0x7f030042;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int borderlessButtonStyle=0x7f030043;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int bottomSheetDialogTheme=0x7f030044;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int bottomSheetStyle=0x7f030045;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarButtonStyle=0x7f030046;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=0x7f030047;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=0x7f030048;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f030049;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f03004a;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int buttonGravity=0x7f03004b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int buttonIconDimen=0x7f03004c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f03004d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonStyle=0x7f03004e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f03004f;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int buttonTint=0x7f030050;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int buttonTintMode=0x7f030051;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int cardBackgroundColor=0x7f030052;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int cardCornerRadius=0x7f030053;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int cardElevation=0x7f030054;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int cardMaxElevation=0x7f030055;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int cardPreventCornerOverlap=0x7f030056;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int cardUseCompatPadding=0x7f030057;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int cardViewStyle=0x7f030058;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int chainUseRtl=0x7f030059;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int checkBoxPreferenceStyle=0x7f03005a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f03005b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f03005c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int closeIcon=0x7f03005d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f03005e;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int collapseContentDescription=0x7f03005f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int collapseIcon=0x7f030060;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int collapsedTitleGravity=0x7f030061;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int collapsedTitleTextAppearance=0x7f030062;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int color=0x7f030063;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorAccent=0x7f030064;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorBackgroundFloating=0x7f030065;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorButtonNormal=0x7f030066;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorControlActivated=0x7f030067;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorControlHighlight=0x7f030068;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorControlNormal=0x7f030069;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorError=0x7f03006a;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorPrimary=0x7f03006b;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorPrimaryDark=0x7f03006c;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorSwitchThumbNormal=0x7f03006d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int commitIcon=0x7f03006e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int constraintSet=0x7f03006f;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int constraint_referenced_ids=0x7f030070;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int content=0x7f030071;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int contentDescription=0x7f030072;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetEnd=0x7f030073;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetEndWithActions=0x7f030074;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetLeft=0x7f030075;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetRight=0x7f030076;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetStart=0x7f030077;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetStartWithNavigation=0x7f030078;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentPadding=0x7f030079;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentPaddingBottom=0x7f03007a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentPaddingLeft=0x7f03007b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentPaddingRight=0x7f03007c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentPaddingTop=0x7f03007d;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int contentScrim=0x7f03007e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int controlBackground=0x7f03007f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int coordinatorLayoutStyle=0x7f030080;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int counterEnabled=0x7f030081;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int counterMaxLength=0x7f030082;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int counterOverflowTextAppearance=0x7f030083;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int counterTextAppearance=0x7f030084;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f030085;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int defaultQueryHint=0x7f030086;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
* <p>May be an integer value, such as "<code>100</code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int defaultValue=0x7f030087;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int dependency=0x7f030088;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dialogIcon=0x7f030089;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dialogLayout=0x7f03008a;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int dialogMessage=0x7f03008b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dialogPreferenceStyle=0x7f03008c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int dialogPreferredPadding=0x7f03008d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dialogTheme=0x7f03008e;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int dialogTitle=0x7f03008f;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int disableDependentsState=0x7f030090;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>disableHome</td><td>20</td><td></td></tr>
* <tr><td>homeAsUp</td><td>4</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>showCustom</td><td>10</td><td></td></tr>
* <tr><td>showHome</td><td>2</td><td></td></tr>
* <tr><td>showTitle</td><td>8</td><td></td></tr>
* <tr><td>useLogo</td><td>1</td><td></td></tr>
* </table>
*/
public static final int displayOptions=0x7f030091;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int divider=0x7f030092;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f030093;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int dividerPadding=0x7f030094;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dividerVertical=0x7f030095;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int drawableSize=0x7f030096;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f030097;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f030098;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int dropdownListPreferredItemHeight=0x7f030099;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dropdownPreferenceStyle=0x7f03009a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int editTextBackground=0x7f03009b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int editTextColor=0x7f03009c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int editTextPreferenceStyle=0x7f03009d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int editTextStyle=0x7f03009e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int elevation=0x7f03009f;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>gone</td><td>0</td><td></td></tr>
* <tr><td>invisible</td><td>1</td><td></td></tr>
* </table>
*/
public static final int emptyVisibility=0x7f0300a0;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int enabled=0x7f0300a1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int entries=0x7f0300a2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int entryValues=0x7f0300a3;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int errorEnabled=0x7f0300a4;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f0300a5;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f0300a6;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int expanded=0x7f0300a7;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int expandedTitleGravity=0x7f0300a8;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMargin=0x7f0300a9;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginBottom=0x7f0300aa;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginEnd=0x7f0300ab;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginStart=0x7f0300ac;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginTop=0x7f0300ad;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f0300ae;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int fabCustomSize=0x7f0300af;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* <tr><td>mini</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*/
public static final int fabSize=0x7f0300b0;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int fastScrollEnabled=0x7f0300b1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int fastScrollHorizontalThumbDrawable=0x7f0300b2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int fastScrollHorizontalTrackDrawable=0x7f0300b3;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int fastScrollVerticalThumbDrawable=0x7f0300b4;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int fastScrollVerticalTrackDrawable=0x7f0300b5;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int font=0x7f0300b6;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontFamily=0x7f0300b7;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontProviderAuthority=0x7f0300b8;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int fontProviderCerts=0x7f0300b9;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>async</td><td>1</td><td></td></tr>
* <tr><td>blocking</td><td>0</td><td></td></tr>
* </table>
*/
public static final int fontProviderFetchStrategy=0x7f0300ba;
/**
* <p>May be an integer value, such as "<code>100</code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>forever</td><td>ffffffff</td><td></td></tr>
* </table>
*/
public static final int fontProviderFetchTimeout=0x7f0300bb;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontProviderPackage=0x7f0300bc;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontProviderQuery=0x7f0300bd;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>italic</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*/
public static final int fontStyle=0x7f0300be;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int fontWeight=0x7f0300bf;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int foregroundInsidePadding=0x7f0300c0;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fragment=0x7f0300c1;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int gapBetweenBars=0x7f0300c2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int goIcon=0x7f0300c3;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int headerLayout=0x7f0300c4;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int height=0x7f0300c5;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int hideOnContentScroll=0x7f0300c6;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int hintAnimationEnabled=0x7f0300c7;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int hintEnabled=0x7f0300c8;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f0300c9;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f0300ca;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int homeLayout=0x7f0300cb;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int icon=0x7f0300cc;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int iconSpaceReserved=0x7f0300cd;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int iconTint=0x7f0300ce;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int iconTintMode=0x7f0300cf;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int iconifiedByDefault=0x7f0300d0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int imageButtonStyle=0x7f0300d1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f0300d2;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int initialActivityCount=0x7f0300d3;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int initialExpandedChildrenCount=0x7f0300d4;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int insetForeground=0x7f0300d5;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int isLightTheme=0x7f0300d6;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int itemBackground=0x7f0300d7;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int itemIconTint=0x7f0300d8;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int itemPadding=0x7f0300d9;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int itemTextAppearance=0x7f0300da;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int itemTextColor=0x7f0300db;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int key=0x7f0300dc;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int keylines=0x7f0300dd;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int layout=0x7f0300de;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int layoutManager=0x7f0300df;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int layout_anchor=0x7f0300e0;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int layout_anchorGravity=0x7f0300e1;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int layout_behavior=0x7f0300e2;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>parallax</td><td>2</td><td></td></tr>
* <tr><td>pin</td><td>1</td><td></td></tr>
* </table>
*/
public static final int layout_collapseMode=0x7f0300e3;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_collapseParallaxMultiplier=0x7f0300e4;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int layout_constrainedHeight=0x7f0300e5;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int layout_constrainedWidth=0x7f0300e6;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintBaseline_creator=0x7f0300e7;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintBaseline_toBaselineOf=0x7f0300e8;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintBottom_creator=0x7f0300e9;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintBottom_toBottomOf=0x7f0300ea;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintBottom_toTopOf=0x7f0300eb;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int layout_constraintCircle=0x7f0300ec;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintCircleAngle=0x7f0300ed;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_constraintCircleRadius=0x7f0300ee;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int layout_constraintDimensionRatio=0x7f0300ef;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintEnd_toEndOf=0x7f0300f0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintEnd_toStartOf=0x7f0300f1;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_constraintGuide_begin=0x7f0300f2;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_constraintGuide_end=0x7f0300f3;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintGuide_percent=0x7f0300f4;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*/
public static final int layout_constraintHeight_default=0x7f0300f5;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*/
public static final int layout_constraintHeight_max=0x7f0300f6;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*/
public static final int layout_constraintHeight_min=0x7f0300f7;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintHeight_percent=0x7f0300f8;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintHorizontal_bias=0x7f0300f9;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*/
public static final int layout_constraintHorizontal_chainStyle=0x7f0300fa;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintHorizontal_weight=0x7f0300fb;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintLeft_creator=0x7f0300fc;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintLeft_toLeftOf=0x7f0300fd;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintLeft_toRightOf=0x7f0300fe;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintRight_creator=0x7f0300ff;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintRight_toLeftOf=0x7f030100;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintRight_toRightOf=0x7f030101;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintStart_toEndOf=0x7f030102;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintStart_toStartOf=0x7f030103;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_constraintTop_creator=0x7f030104;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintTop_toBottomOf=0x7f030105;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*/
public static final int layout_constraintTop_toTopOf=0x7f030106;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintVertical_bias=0x7f030107;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*/
public static final int layout_constraintVertical_chainStyle=0x7f030108;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintVertical_weight=0x7f030109;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*/
public static final int layout_constraintWidth_default=0x7f03010a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*/
public static final int layout_constraintWidth_max=0x7f03010b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*/
public static final int layout_constraintWidth_min=0x7f03010c;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_constraintWidth_percent=0x7f03010d;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>all</td><td>77</td><td></td></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int layout_dodgeInsetEdges=0x7f03010e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_editor_absoluteX=0x7f03010f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_editor_absoluteY=0x7f030110;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_goneMarginBottom=0x7f030111;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_goneMarginEnd=0x7f030112;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_goneMarginLeft=0x7f030113;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_goneMarginRight=0x7f030114;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_goneMarginStart=0x7f030115;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int layout_goneMarginTop=0x7f030116;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int layout_insetEdge=0x7f030117;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_keyline=0x7f030118;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>barrier</td><td>2</td><td></td></tr>
* <tr><td>chains</td><td>4</td><td></td></tr>
* <tr><td>dimensions</td><td>8</td><td></td></tr>
* <tr><td>direct</td><td>1</td><td>for now only direct & barriers</td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>standard</td><td>3</td><td></td></tr>
* </table>
*/
public static final int layout_optimizationLevel=0x7f030119;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>enterAlways</td><td>4</td><td></td></tr>
* <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr>
* <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr>
* <tr><td>scroll</td><td>1</td><td></td></tr>
* <tr><td>snap</td><td>10</td><td></td></tr>
* </table>
*/
public static final int layout_scrollFlags=0x7f03011a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int layout_scrollInterpolator=0x7f03011b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=0x7f03011c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f03011d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listItemLayout=0x7f03011e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listLayout=0x7f03011f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listMenuViewStyle=0x7f030120;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f030121;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemHeight=0x7f030122;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemHeightLarge=0x7f030123;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemHeightSmall=0x7f030124;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemPaddingLeft=0x7f030125;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemPaddingRight=0x7f030126;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int logo=0x7f030127;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int logoDescription=0x7f030128;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int maxActionInlineWidth=0x7f030129;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int maxButtonHeight=0x7f03012a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int maxHeight=0x7f03012b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int maxWidth=0x7f03012c;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int measureWithLargestChild=0x7f03012d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int menu=0x7f03012e;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int min=0x7f03012f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f030130;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int navigationContentDescription=0x7f030131;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int navigationIcon=0x7f030132;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>listMode</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* <tr><td>tabMode</td><td>2</td><td></td></tr>
* </table>
*/
public static final int navigationMode=0x7f030133;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int negativeButtonText=0x7f030134;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*/
public static final int numericModifiers=0x7f030135;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int order=0x7f030136;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int orderingFromXml=0x7f030137;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int overlapAnchor=0x7f030138;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingBottomNoButtons=0x7f030139;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingEnd=0x7f03013a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingStart=0x7f03013b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingTopNoTitle=0x7f03013c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int panelBackground=0x7f03013d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f03013e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int panelMenuListWidth=0x7f03013f;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int passwordToggleContentDescription=0x7f030140;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int passwordToggleDrawable=0x7f030141;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int passwordToggleEnabled=0x7f030142;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int passwordToggleTint=0x7f030143;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int passwordToggleTintMode=0x7f030144;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int persistent=0x7f030145;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int popupMenuStyle=0x7f030146;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int popupTheme=0x7f030147;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f030148;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int positiveButtonText=0x7f030149;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceActivityStyle=0x7f03014a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceCategoryStyle=0x7f03014b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceFragmentCompatStyle=0x7f03014c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceFragmentListStyle=0x7f03014d;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int preferenceFragmentPaddingSide=0x7f03014e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceFragmentStyle=0x7f03014f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceHeaderPanelStyle=0x7f030150;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceInformationStyle=0x7f030151;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceLayoutChild=0x7f030152;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceListStyle=0x7f030153;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferencePanelStyle=0x7f030154;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceScreenStyle=0x7f030155;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceStyle=0x7f030156;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int preferenceTheme=0x7f030157;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int preserveIconSpacing=0x7f030158;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int pressedTranslationZ=0x7f030159;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int progressBarPadding=0x7f03015a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f03015b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int queryBackground=0x7f03015c;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int queryHint=0x7f03015d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f03015e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f03015f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f030160;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f030161;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int reverseLayout=0x7f030162;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int ringtonePreferenceStyle=0x7f030163;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int rippleColor=0x7f030164;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int scrimAnimationDuration=0x7f030165;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int scrimVisibleHeightTrigger=0x7f030166;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f030167;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int searchIcon=0x7f030168;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int searchViewStyle=0x7f030169;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int seekBarIncrement=0x7f03016a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int seekBarPreferenceStyle=0x7f03016b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int seekBarStyle=0x7f03016c;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int selectable=0x7f03016d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f03016e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f03016f;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int shouldDisableView=0x7f030170;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>always</td><td>2</td><td></td></tr>
* <tr><td>collapseActionView</td><td>8</td><td></td></tr>
* <tr><td>ifRoom</td><td>1</td><td></td></tr>
* <tr><td>never</td><td>0</td><td></td></tr>
* <tr><td>withText</td><td>4</td><td></td></tr>
* </table>
*/
public static final int showAsAction=0x7f030171;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>beginning</td><td>1</td><td></td></tr>
* <tr><td>end</td><td>4</td><td></td></tr>
* <tr><td>middle</td><td>2</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* </table>
*/
public static final int showDividers=0x7f030172;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int showSeekBarValue=0x7f030173;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int showText=0x7f030174;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int showTitle=0x7f030175;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f030176;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int singleLineTitle=0x7f030177;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int spanCount=0x7f030178;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int spinBars=0x7f030179;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f03017a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f03017b;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int splitTrack=0x7f03017c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int srcCompat=0x7f03017d;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int stackFromEnd=0x7f03017e;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_above_anchor=0x7f03017f;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_collapsed=0x7f030180;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_collapsible=0x7f030181;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int statusBarBackground=0x7f030182;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int statusBarScrim=0x7f030183;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int subMenuArrow=0x7f030184;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int submitBackground=0x7f030185;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int subtitle=0x7f030186;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f030187;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int subtitleTextColor=0x7f030188;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f030189;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f03018a;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int summary=0x7f03018b;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int summaryOff=0x7f03018c;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int summaryOn=0x7f03018d;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int switchMinWidth=0x7f03018e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int switchPadding=0x7f03018f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int switchPreferenceCompatStyle=0x7f030190;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int switchPreferenceStyle=0x7f030191;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int switchStyle=0x7f030192;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f030193;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int switchTextOff=0x7f030194;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int switchTextOn=0x7f030195;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tabBackground=0x7f030196;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabContentStart=0x7f030197;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>1</td><td></td></tr>
* <tr><td>fill</td><td>0</td><td></td></tr>
* </table>
*/
public static final int tabGravity=0x7f030198;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tabIndicatorColor=0x7f030199;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabIndicatorHeight=0x7f03019a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabMaxWidth=0x7f03019b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabMinWidth=0x7f03019c;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fixed</td><td>1</td><td></td></tr>
* <tr><td>scrollable</td><td>0</td><td></td></tr>
* </table>
*/
public static final int tabMode=0x7f03019d;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPadding=0x7f03019e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingBottom=0x7f03019f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingEnd=0x7f0301a0;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingStart=0x7f0301a1;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingTop=0x7f0301a2;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tabSelectedTextColor=0x7f0301a3;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f0301a4;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tabTextColor=0x7f0301a5;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int textAllCaps=0x7f0301a6;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=0x7f0301a7;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceListItem=0x7f0301a8;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceListItemSecondary=0x7f0301a9;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceListItemSmall=0x7f0301aa;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=0x7f0301ab;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f0301ac;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=0x7f0301ad;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f0301ae;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorAlertDialogListItem=0x7f0301af;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorError=0x7f0301b0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorSearchUrl=0x7f0301b1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int theme=0x7f0301b2;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int thickness=0x7f0301b3;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int thumbTextPadding=0x7f0301b4;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int thumbTint=0x7f0301b5;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int thumbTintMode=0x7f0301b6;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tickMark=0x7f0301b7;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tickMarkTint=0x7f0301b8;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int tickMarkTintMode=0x7f0301b9;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tint=0x7f0301ba;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int tintMode=0x7f0301bb;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int title=0x7f0301bc;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int titleEnabled=0x7f0301bd;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMargin=0x7f0301be;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginBottom=0x7f0301bf;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginEnd=0x7f0301c0;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginStart=0x7f0301c1;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginTop=0x7f0301c2;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMargins=0x7f0301c3;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f0301c4;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int titleTextColor=0x7f0301c5;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f0301c6;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int toolbarId=0x7f0301c7;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=0x7f0301c8;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f0301c9;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tooltipForegroundColor=0x7f0301ca;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tooltipFrameBackground=0x7f0301cb;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int tooltipText=0x7f0301cc;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int track=0x7f0301cd;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int trackTint=0x7f0301ce;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int trackTintMode=0x7f0301cf;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int useCompatPadding=0x7f0301d0;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int viewInflaterClass=0x7f0301d1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int voiceIcon=0x7f0301d2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int widgetLayout=0x7f0301d3;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionBar=0x7f0301d4;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionBarOverlay=0x7f0301d5;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionModeOverlay=0x7f0301d6;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedHeightMajor=0x7f0301d7;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedHeightMinor=0x7f0301d8;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedWidthMajor=0x7f0301d9;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedWidthMinor=0x7f0301da;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowMinWidthMajor=0x7f0301db;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowMinWidthMinor=0x7f0301dc;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowNoTitle=0x7f0301dd;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int yesNoPreferenceStyle=0x7f0301de;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f040000;
public static final int abc_allow_stacked_button_bar=0x7f040001;
public static final int abc_config_actionMenuItemAllCaps=0x7f040002;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f040003;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f050000;
public static final int abc_background_cache_hint_selector_material_light=0x7f050001;
public static final int abc_btn_colored_borderless_text_material=0x7f050002;
public static final int abc_btn_colored_text_material=0x7f050003;
public static final int abc_color_highlight_material=0x7f050004;
public static final int abc_hint_foreground_material_dark=0x7f050005;
public static final int abc_hint_foreground_material_light=0x7f050006;
public static final int abc_input_method_navigation_guard=0x7f050007;
public static final int abc_primary_text_disable_only_material_dark=0x7f050008;
public static final int abc_primary_text_disable_only_material_light=0x7f050009;
public static final int abc_primary_text_material_dark=0x7f05000a;
public static final int abc_primary_text_material_light=0x7f05000b;
public static final int abc_search_url_text=0x7f05000c;
public static final int abc_search_url_text_normal=0x7f05000d;
public static final int abc_search_url_text_pressed=0x7f05000e;
public static final int abc_search_url_text_selected=0x7f05000f;
public static final int abc_secondary_text_material_dark=0x7f050010;
public static final int abc_secondary_text_material_light=0x7f050011;
public static final int abc_tint_btn_checkable=0x7f050012;
public static final int abc_tint_default=0x7f050013;
public static final int abc_tint_edittext=0x7f050014;
public static final int abc_tint_seek_thumb=0x7f050015;
public static final int abc_tint_spinner=0x7f050016;
public static final int abc_tint_switch_track=0x7f050017;
public static final int accent_material_dark=0x7f050018;
public static final int accent_material_light=0x7f050019;
public static final int background_floating_material_dark=0x7f05001a;
public static final int background_floating_material_light=0x7f05001b;
public static final int background_material_dark=0x7f05001c;
public static final int background_material_light=0x7f05001d;
public static final int bright_foreground_disabled_material_dark=0x7f05001e;
public static final int bright_foreground_disabled_material_light=0x7f05001f;
public static final int bright_foreground_inverse_material_dark=0x7f050020;
public static final int bright_foreground_inverse_material_light=0x7f050021;
public static final int bright_foreground_material_dark=0x7f050022;
public static final int bright_foreground_material_light=0x7f050023;
public static final int button_material_dark=0x7f050024;
public static final int button_material_light=0x7f050025;
public static final int cardview_dark_background=0x7f050026;
public static final int cardview_light_background=0x7f050027;
public static final int cardview_shadow_end_color=0x7f050028;
public static final int cardview_shadow_start_color=0x7f050029;
public static final int colorAccent=0x7f05002a;
public static final int colorGrey=0x7f05002b;
public static final int colorLightGrey=0x7f05002c;
public static final int colorPrimary=0x7f05002d;
public static final int colorPrimaryDark=0x7f05002e;
public static final int colorPrimaryLight=0x7f05002f;
public static final int colorSplashScreen=0x7f050030;
public static final int colorYellow=0x7f050031;
public static final int design_bottom_navigation_shadow_color=0x7f050032;
public static final int design_error=0x7f050033;
public static final int design_fab_shadow_end_color=0x7f050034;
public static final int design_fab_shadow_mid_color=0x7f050035;
public static final int design_fab_shadow_start_color=0x7f050036;
public static final int design_fab_stroke_end_inner_color=0x7f050037;
public static final int design_fab_stroke_end_outer_color=0x7f050038;
public static final int design_fab_stroke_top_inner_color=0x7f050039;
public static final int design_fab_stroke_top_outer_color=0x7f05003a;
public static final int design_snackbar_background_color=0x7f05003b;
public static final int design_tint_password_toggle=0x7f05003c;
public static final int dim_foreground_disabled_material_dark=0x7f05003d;
public static final int dim_foreground_disabled_material_light=0x7f05003e;
public static final int dim_foreground_material_dark=0x7f05003f;
public static final int dim_foreground_material_light=0x7f050040;
public static final int error_color_material=0x7f050041;
public static final int foreground_material_dark=0x7f050042;
public static final int foreground_material_light=0x7f050043;
public static final int highlighted_text_material_dark=0x7f050044;
public static final int highlighted_text_material_light=0x7f050045;
public static final int ic_launcher_background=0x7f050046;
public static final int material_blue_grey_800=0x7f050047;
public static final int material_blue_grey_900=0x7f050048;
public static final int material_blue_grey_950=0x7f050049;
public static final int material_deep_teal_200=0x7f05004a;
public static final int material_deep_teal_500=0x7f05004b;
public static final int material_grey_100=0x7f05004c;
public static final int material_grey_300=0x7f05004d;
public static final int material_grey_50=0x7f05004e;
public static final int material_grey_600=0x7f05004f;
public static final int material_grey_800=0x7f050050;
public static final int material_grey_850=0x7f050051;
public static final int material_grey_900=0x7f050052;
public static final int notification_action_color_filter=0x7f050053;
public static final int notification_icon_bg_color=0x7f050054;
public static final int notification_material_background_media_default_color=0x7f050055;
public static final int preference_fallback_accent_color=0x7f050056;
public static final int primary_dark_material_dark=0x7f050057;
public static final int primary_dark_material_light=0x7f050058;
public static final int primary_material_dark=0x7f050059;
public static final int primary_material_light=0x7f05005a;
public static final int primary_text_default_material_dark=0x7f05005b;
public static final int primary_text_default_material_light=0x7f05005c;
public static final int primary_text_disabled_material_dark=0x7f05005d;
public static final int primary_text_disabled_material_light=0x7f05005e;
public static final int refresh_progress_1=0x7f05005f;
public static final int refresh_progress_2=0x7f050060;
public static final int refresh_progress_3=0x7f050061;
public static final int ripple_material_dark=0x7f050062;
public static final int ripple_material_light=0x7f050063;
public static final int secondary_text_default_material_dark=0x7f050064;
public static final int secondary_text_default_material_light=0x7f050065;
public static final int secondary_text_disabled_material_dark=0x7f050066;
public static final int secondary_text_disabled_material_light=0x7f050067;
public static final int switch_thumb_disabled_material_dark=0x7f050068;
public static final int switch_thumb_disabled_material_light=0x7f050069;
public static final int switch_thumb_material_dark=0x7f05006a;
public static final int switch_thumb_material_light=0x7f05006b;
public static final int switch_thumb_normal_material_dark=0x7f05006c;
public static final int switch_thumb_normal_material_light=0x7f05006d;
public static final int textColor=0x7f05006e;
public static final int tooltip_background_dark=0x7f05006f;
public static final int tooltip_background_light=0x7f050070;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f060000;
public static final int abc_action_bar_content_inset_with_nav=0x7f060001;
public static final int abc_action_bar_default_height_material=0x7f060002;
public static final int abc_action_bar_default_padding_end_material=0x7f060003;
public static final int abc_action_bar_default_padding_start_material=0x7f060004;
public static final int abc_action_bar_elevation_material=0x7f060005;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f060006;
public static final int abc_action_bar_overflow_padding_end_material=0x7f060007;
public static final int abc_action_bar_overflow_padding_start_material=0x7f060008;
public static final int abc_action_bar_progress_bar_size=0x7f060009;
public static final int abc_action_bar_stacked_max_height=0x7f06000a;
public static final int abc_action_bar_stacked_tab_max_width=0x7f06000b;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f06000c;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f06000d;
public static final int abc_action_button_min_height_material=0x7f06000e;
public static final int abc_action_button_min_width_material=0x7f06000f;
public static final int abc_action_button_min_width_overflow_material=0x7f060010;
public static final int abc_alert_dialog_button_bar_height=0x7f060011;
public static final int abc_alert_dialog_button_dimen=0x7f060012;
public static final int abc_button_inset_horizontal_material=0x7f060013;
public static final int abc_button_inset_vertical_material=0x7f060014;
public static final int abc_button_padding_horizontal_material=0x7f060015;
public static final int abc_button_padding_vertical_material=0x7f060016;
public static final int abc_cascading_menus_min_smallest_width=0x7f060017;
public static final int abc_config_prefDialogWidth=0x7f060018;
public static final int abc_control_corner_material=0x7f060019;
public static final int abc_control_inset_material=0x7f06001a;
public static final int abc_control_padding_material=0x7f06001b;
public static final int abc_dialog_fixed_height_major=0x7f06001c;
public static final int abc_dialog_fixed_height_minor=0x7f06001d;
public static final int abc_dialog_fixed_width_major=0x7f06001e;
public static final int abc_dialog_fixed_width_minor=0x7f06001f;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f060020;
public static final int abc_dialog_list_padding_top_no_title=0x7f060021;
public static final int abc_dialog_min_width_major=0x7f060022;
public static final int abc_dialog_min_width_minor=0x7f060023;
public static final int abc_dialog_padding_material=0x7f060024;
public static final int abc_dialog_padding_top_material=0x7f060025;
public static final int abc_dialog_title_divider_material=0x7f060026;
public static final int abc_disabled_alpha_material_dark=0x7f060027;
public static final int abc_disabled_alpha_material_light=0x7f060028;
public static final int abc_dropdownitem_icon_width=0x7f060029;
public static final int abc_dropdownitem_text_padding_left=0x7f06002a;
public static final int abc_dropdownitem_text_padding_right=0x7f06002b;
public static final int abc_edit_text_inset_bottom_material=0x7f06002c;
public static final int abc_edit_text_inset_horizontal_material=0x7f06002d;
public static final int abc_edit_text_inset_top_material=0x7f06002e;
public static final int abc_floating_window_z=0x7f06002f;
public static final int abc_list_item_padding_horizontal_material=0x7f060030;
public static final int abc_panel_menu_list_width=0x7f060031;
public static final int abc_progress_bar_height_material=0x7f060032;
public static final int abc_search_view_preferred_height=0x7f060033;
public static final int abc_search_view_preferred_width=0x7f060034;
public static final int abc_seekbar_track_background_height_material=0x7f060035;
public static final int abc_seekbar_track_progress_height_material=0x7f060036;
public static final int abc_select_dialog_padding_start_material=0x7f060037;
public static final int abc_switch_padding=0x7f060038;
public static final int abc_text_size_body_1_material=0x7f060039;
public static final int abc_text_size_body_2_material=0x7f06003a;
public static final int abc_text_size_button_material=0x7f06003b;
public static final int abc_text_size_caption_material=0x7f06003c;
public static final int abc_text_size_display_1_material=0x7f06003d;
public static final int abc_text_size_display_2_material=0x7f06003e;
public static final int abc_text_size_display_3_material=0x7f06003f;
public static final int abc_text_size_display_4_material=0x7f060040;
public static final int abc_text_size_headline_material=0x7f060041;
public static final int abc_text_size_large_material=0x7f060042;
public static final int abc_text_size_medium_material=0x7f060043;
public static final int abc_text_size_menu_header_material=0x7f060044;
public static final int abc_text_size_menu_material=0x7f060045;
public static final int abc_text_size_small_material=0x7f060046;
public static final int abc_text_size_subhead_material=0x7f060047;
public static final int abc_text_size_subtitle_material_toolbar=0x7f060048;
public static final int abc_text_size_title_material=0x7f060049;
public static final int abc_text_size_title_material_toolbar=0x7f06004a;
public static final int app_bar_height=0x7f06004b;
public static final int cardview_compat_inset_shadow=0x7f06004c;
public static final int cardview_default_elevation=0x7f06004d;
public static final int cardview_default_radius=0x7f06004e;
public static final int compat_button_inset_horizontal_material=0x7f06004f;
public static final int compat_button_inset_vertical_material=0x7f060050;
public static final int compat_button_padding_horizontal_material=0x7f060051;
public static final int compat_button_padding_vertical_material=0x7f060052;
public static final int compat_control_corner_material=0x7f060053;
public static final int design_appbar_elevation=0x7f060054;
public static final int design_bottom_navigation_active_item_max_width=0x7f060055;
public static final int design_bottom_navigation_active_text_size=0x7f060056;
public static final int design_bottom_navigation_elevation=0x7f060057;
public static final int design_bottom_navigation_height=0x7f060058;
public static final int design_bottom_navigation_item_max_width=0x7f060059;
public static final int design_bottom_navigation_item_min_width=0x7f06005a;
public static final int design_bottom_navigation_margin=0x7f06005b;
public static final int design_bottom_navigation_shadow_height=0x7f06005c;
public static final int design_bottom_navigation_text_size=0x7f06005d;
public static final int design_bottom_sheet_modal_elevation=0x7f06005e;
public static final int design_bottom_sheet_peek_height_min=0x7f06005f;
public static final int design_fab_border_width=0x7f060060;
public static final int design_fab_elevation=0x7f060061;
public static final int design_fab_image_size=0x7f060062;
public static final int design_fab_size_mini=0x7f060063;
public static final int design_fab_size_normal=0x7f060064;
public static final int design_fab_translation_z_pressed=0x7f060065;
public static final int design_navigation_elevation=0x7f060066;
public static final int design_navigation_icon_padding=0x7f060067;
public static final int design_navigation_icon_size=0x7f060068;
public static final int design_navigation_max_width=0x7f060069;
public static final int design_navigation_padding_bottom=0x7f06006a;
public static final int design_navigation_separator_vertical_padding=0x7f06006b;
public static final int design_snackbar_action_inline_max_width=0x7f06006c;
public static final int design_snackbar_background_corner_radius=0x7f06006d;
public static final int design_snackbar_elevation=0x7f06006e;
public static final int design_snackbar_extra_spacing_horizontal=0x7f06006f;
public static final int design_snackbar_max_width=0x7f060070;
public static final int design_snackbar_min_width=0x7f060071;
public static final int design_snackbar_padding_horizontal=0x7f060072;
public static final int design_snackbar_padding_vertical=0x7f060073;
public static final int design_snackbar_padding_vertical_2lines=0x7f060074;
public static final int design_snackbar_text_size=0x7f060075;
public static final int design_tab_max_width=0x7f060076;
public static final int design_tab_scrollable_min_width=0x7f060077;
public static final int design_tab_text_size=0x7f060078;
public static final int design_tab_text_size_2line=0x7f060079;
public static final int disabled_alpha_material_dark=0x7f06007a;
public static final int disabled_alpha_material_light=0x7f06007b;
public static final int fab_margin=0x7f06007c;
public static final int fastscroll_default_thickness=0x7f06007d;
public static final int fastscroll_margin=0x7f06007e;
public static final int fastscroll_minimum_range=0x7f06007f;
public static final int highlight_alpha_material_colored=0x7f060080;
public static final int highlight_alpha_material_dark=0x7f060081;
public static final int highlight_alpha_material_light=0x7f060082;
public static final int hint_alpha_material_dark=0x7f060083;
public static final int hint_alpha_material_light=0x7f060084;
public static final int hint_pressed_alpha_material_dark=0x7f060085;
public static final int hint_pressed_alpha_material_light=0x7f060086;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f060087;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f060088;
public static final int item_touch_helper_swipe_escape_velocity=0x7f060089;
public static final int notification_action_icon_size=0x7f06008a;
public static final int notification_action_text_size=0x7f06008b;
public static final int notification_big_circle_margin=0x7f06008c;
public static final int notification_content_margin_start=0x7f06008d;
public static final int notification_large_icon_height=0x7f06008e;
public static final int notification_large_icon_width=0x7f06008f;
public static final int notification_main_column_padding_top=0x7f060090;
public static final int notification_media_narrow_margin=0x7f060091;
public static final int notification_right_icon_size=0x7f060092;
public static final int notification_right_side_padding_top=0x7f060093;
public static final int notification_small_icon_background_padding=0x7f060094;
public static final int notification_small_icon_size_as_large=0x7f060095;
public static final int notification_subtext_size=0x7f060096;
public static final int notification_top_pad=0x7f060097;
public static final int notification_top_pad_large_text=0x7f060098;
public static final int preference_icon_minWidth=0x7f060099;
public static final int preference_seekbar_padding_end=0x7f06009a;
public static final int preference_seekbar_padding_start=0x7f06009b;
public static final int preference_seekbar_value_width=0x7f06009c;
public static final int text_margin=0x7f06009d;
public static final int tooltip_corner_radius=0x7f06009e;
public static final int tooltip_horizontal_padding=0x7f06009f;
public static final int tooltip_margin=0x7f0600a0;
public static final int tooltip_precise_anchor_extra_offset=0x7f0600a1;
public static final int tooltip_precise_anchor_threshold=0x7f0600a2;
public static final int tooltip_vertical_padding=0x7f0600a3;
public static final int tooltip_y_offset_non_touch=0x7f0600a4;
public static final int tooltip_y_offset_touch=0x7f0600a5;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f070006;
public static final int abc_action_bar_item_background_material=0x7f070007;
public static final int abc_btn_borderless_material=0x7f070008;
public static final int abc_btn_check_material=0x7f070009;
public static final int abc_btn_check_to_on_mtrl_000=0x7f07000a;
public static final int abc_btn_check_to_on_mtrl_015=0x7f07000b;
public static final int abc_btn_colored_material=0x7f07000c;
public static final int abc_btn_default_mtrl_shape=0x7f07000d;
public static final int abc_btn_radio_material=0x7f07000e;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f07000f;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f070010;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f070011;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f070012;
public static final int abc_cab_background_internal_bg=0x7f070013;
public static final int abc_cab_background_top_material=0x7f070014;
public static final int abc_cab_background_top_mtrl_alpha=0x7f070015;
public static final int abc_control_background_material=0x7f070016;
public static final int abc_dialog_material_background=0x7f070017;
public static final int abc_edit_text_material=0x7f070018;
public static final int abc_ic_ab_back_material=0x7f070019;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f07001a;
public static final int abc_ic_clear_material=0x7f07001b;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f07001c;
public static final int abc_ic_go_search_api_material=0x7f07001d;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f07001e;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f07001f;
public static final int abc_ic_menu_overflow_material=0x7f070020;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f070021;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f070022;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f070023;
public static final int abc_ic_search_api_material=0x7f070024;
public static final int abc_ic_star_black_16dp=0x7f070025;
public static final int abc_ic_star_black_36dp=0x7f070026;
public static final int abc_ic_star_black_48dp=0x7f070027;
public static final int abc_ic_star_half_black_16dp=0x7f070028;
public static final int abc_ic_star_half_black_36dp=0x7f070029;
public static final int abc_ic_star_half_black_48dp=0x7f07002a;
public static final int abc_ic_voice_search_api_material=0x7f07002b;
public static final int abc_item_background_holo_dark=0x7f07002c;
public static final int abc_item_background_holo_light=0x7f07002d;
public static final int abc_list_divider_mtrl_alpha=0x7f07002e;
public static final int abc_list_focused_holo=0x7f07002f;
public static final int abc_list_longpressed_holo=0x7f070030;
public static final int abc_list_pressed_holo_dark=0x7f070031;
public static final int abc_list_pressed_holo_light=0x7f070032;
public static final int abc_list_selector_background_transition_holo_dark=0x7f070033;
public static final int abc_list_selector_background_transition_holo_light=0x7f070034;
public static final int abc_list_selector_disabled_holo_dark=0x7f070035;
public static final int abc_list_selector_disabled_holo_light=0x7f070036;
public static final int abc_list_selector_holo_dark=0x7f070037;
public static final int abc_list_selector_holo_light=0x7f070038;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f070039;
public static final int abc_popup_background_mtrl_mult=0x7f07003a;
public static final int abc_ratingbar_indicator_material=0x7f07003b;
public static final int abc_ratingbar_material=0x7f07003c;
public static final int abc_ratingbar_small_material=0x7f07003d;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f07003e;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f07003f;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f070040;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f070041;
public static final int abc_scrubber_track_mtrl_alpha=0x7f070042;
public static final int abc_seekbar_thumb_material=0x7f070043;
public static final int abc_seekbar_tick_mark_material=0x7f070044;
public static final int abc_seekbar_track_material=0x7f070045;
public static final int abc_spinner_mtrl_am_alpha=0x7f070046;
public static final int abc_spinner_textfield_background_material=0x7f070047;
public static final int abc_switch_thumb_material=0x7f070048;
public static final int abc_switch_track_mtrl_alpha=0x7f070049;
public static final int abc_tab_indicator_material=0x7f07004a;
public static final int abc_tab_indicator_mtrl_alpha=0x7f07004b;
public static final int abc_text_cursor_material=0x7f07004c;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f07004d;
public static final int abc_text_select_handle_left_mtrl_light=0x7f07004e;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f07004f;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f070050;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f070051;
public static final int abc_text_select_handle_right_mtrl_light=0x7f070052;
public static final int abc_textfield_activated_mtrl_alpha=0x7f070053;
public static final int abc_textfield_default_mtrl_alpha=0x7f070054;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f070055;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f070056;
public static final int abc_textfield_search_material=0x7f070057;
public static final int abc_vector_test=0x7f070058;
public static final int avd_hide_password=0x7f070059;
public static final int avd_show_password=0x7f07005a;
public static final int bukunmi_aluko=0x7f07005b;
public static final int design_bottom_navigation_item_background=0x7f07005c;
public static final int design_fab_background=0x7f07005d;
public static final int design_ic_visibility=0x7f07005e;
public static final int design_ic_visibility_off=0x7f07005f;
public static final int design_password_eye=0x7f070060;
public static final int design_snackbar_background=0x7f070061;
public static final int ic_arrow_down_24dp=0x7f070062;
public static final int ic_like=0x7f070063;
public static final int ic_settings=0x7f070064;
public static final int ic_sort=0x7f070065;
public static final int image_placeholder=0x7f070066;
public static final int navigation_empty_icon=0x7f070067;
public static final int notification_action_background=0x7f070068;
public static final int notification_bg=0x7f070069;
public static final int notification_bg_low=0x7f07006a;
public static final int notification_bg_low_normal=0x7f07006b;
public static final int notification_bg_low_pressed=0x7f07006c;
public static final int notification_bg_normal=0x7f07006d;
public static final int notification_bg_normal_pressed=0x7f07006e;
public static final int notification_icon_background=0x7f07006f;
public static final int notification_template_icon_bg=0x7f070070;
public static final int notification_template_icon_low_bg=0x7f070071;
public static final int notification_tile_bg=0x7f070072;
public static final int notify_panel_notification_icon_bg=0x7f070073;
public static final int preference_list_divider_material=0x7f070074;
public static final int tooltip_frame_dark=0x7f070075;
public static final int tooltip_frame_light=0x7f070076;
}
public static final class id {
public static final int ALT=0x7f080000;
public static final int CTRL=0x7f080001;
public static final int FUNCTION=0x7f080002;
public static final int META=0x7f080003;
public static final int SHIFT=0x7f080004;
public static final int SYM=0x7f080005;
public static final int action0=0x7f080006;
public static final int action_bar=0x7f080007;
public static final int action_bar_activity_content=0x7f080008;
public static final int action_bar_container=0x7f080009;
public static final int action_bar_root=0x7f08000a;
public static final int action_bar_spinner=0x7f08000b;
public static final int action_bar_subtitle=0x7f08000c;
public static final int action_bar_title=0x7f08000d;
public static final int action_container=0x7f08000e;
public static final int action_context_bar=0x7f08000f;
public static final int action_divider=0x7f080010;
public static final int action_favourite=0x7f080011;
public static final int action_highest_rated=0x7f080012;
public static final int action_image=0x7f080013;
public static final int action_menu_divider=0x7f080014;
public static final int action_menu_presenter=0x7f080015;
public static final int action_mode_bar=0x7f080016;
public static final int action_mode_bar_stub=0x7f080017;
public static final int action_mode_close_button=0x7f080018;
public static final int action_most_popular=0x7f080019;
public static final int action_text=0x7f08001a;
public static final int actions=0x7f08001b;
public static final int activity_chooser_view_content=0x7f08001c;
public static final int add=0x7f08001d;
public static final int alertTitle=0x7f08001e;
public static final int all=0x7f08001f;
public static final int always=0x7f080020;
public static final int app_bar=0x7f080021;
public static final int async=0x7f080022;
public static final int auto=0x7f080023;
public static final int barrier=0x7f080024;
public static final int beginning=0x7f080025;
public static final int blocking=0x7f080026;
public static final int bottom=0x7f080027;
public static final int buttonPanel=0x7f080028;
public static final int cancel_action=0x7f080029;
public static final int card_view=0x7f08002a;
public static final int center=0x7f08002b;
public static final int center_horizontal=0x7f08002c;
public static final int center_vertical=0x7f08002d;
public static final int chains=0x7f08002e;
public static final int checkbox=0x7f08002f;
public static final int chronometer=0x7f080030;
public static final int clip_horizontal=0x7f080031;
public static final int clip_vertical=0x7f080032;
public static final int collapseActionView=0x7f080033;
public static final int container=0x7f080034;
public static final int contentPanel=0x7f080035;
public static final int coordinator=0x7f080036;
public static final int custom=0x7f080037;
public static final int customPanel=0x7f080038;
public static final int decor_content_parent=0x7f080039;
public static final int default_activity_button=0x7f08003a;
public static final int design_bottom_sheet=0x7f08003b;
public static final int design_menu_item_action_area=0x7f08003c;
public static final int design_menu_item_action_area_stub=0x7f08003d;
public static final int design_menu_item_text=0x7f08003e;
public static final int design_navigation_view=0x7f08003f;
public static final int detail_card_view=0x7f080040;
public static final int details_tv=0x7f080041;
public static final int dimensions=0x7f080042;
public static final int direct=0x7f080043;
public static final int disableHome=0x7f080044;
public static final int edit_query=0x7f080045;
public static final int end=0x7f080046;
public static final int end_padder=0x7f080047;
public static final int enterAlways=0x7f080048;
public static final int enterAlwaysCollapsed=0x7f080049;
public static final int exitUntilCollapsed=0x7f08004a;
public static final int expand_activities_button=0x7f08004b;
public static final int expanded_menu=0x7f08004c;
public static final int fab=0x7f08004d;
public static final int fill=0x7f08004e;
public static final int fill_horizontal=0x7f08004f;
public static final int fill_vertical=0x7f080050;
public static final int fixed=0x7f080051;
public static final int forever=0x7f080052;
public static final int ghost_view=0x7f080053;
public static final int gone=0x7f080054;
public static final int home=0x7f080055;
public static final int homeAsUp=0x7f080056;
public static final int icon=0x7f080057;
public static final int icon_frame=0x7f080058;
public static final int icon_group=0x7f080059;
public static final int ifRoom=0x7f08005a;
public static final int image=0x7f08005b;
public static final int imageView=0x7f08005c;
public static final int info=0x7f08005d;
public static final int invisible=0x7f08005e;
public static final int italic=0x7f08005f;
public static final int item_touch_helper_previous_elevation=0x7f080060;
public static final int largeLabel=0x7f080061;
public static final int left=0x7f080062;
public static final int line1=0x7f080063;
public static final int line3=0x7f080064;
public static final int list=0x7f080065;
public static final int listMode=0x7f080066;
public static final int list_item=0x7f080067;
public static final int masked=0x7f080068;
public static final int media_actions=0x7f080069;
public static final int message=0x7f08006a;
public static final int middle=0x7f08006b;
public static final int mini=0x7f08006c;
public static final int movieReleaseDateTV=0x7f08006d;
public static final int movieTitleTV=0x7f08006e;
public static final int multiply=0x7f08006f;
public static final int nameTV=0x7f080070;
public static final int navigation_header_container=0x7f080071;
public static final int never=0x7f080072;
public static final int none=0x7f080073;
public static final int normal=0x7f080074;
public static final int notification_background=0x7f080075;
public static final int notification_main_column=0x7f080076;
public static final int notification_main_column_container=0x7f080077;
public static final int packed=0x7f080078;
public static final int parallax=0x7f080079;
public static final int parent=0x7f08007a;
public static final int parentPanel=0x7f08007b;
public static final int parent_matrix=0x7f08007c;
public static final int percent=0x7f08007d;
public static final int pin=0x7f08007e;
public static final int posterIV=0x7f08007f;
public static final int progress_circular=0x7f080080;
public static final int progress_horizontal=0x7f080081;
public static final int rV=0x7f080082;
public static final int radio=0x7f080083;
public static final int ratingTV=0x7f080084;
public static final int releaseDateTV=0x7f080085;
public static final int reviewAuthor=0x7f080086;
public static final int reviewContent=0x7f080087;
public static final int review_lv=0x7f080088;
public static final int right=0x7f080089;
public static final int right_icon=0x7f08008a;
public static final int right_side=0x7f08008b;
public static final int save_image_matrix=0x7f08008c;
public static final int save_non_transition_alpha=0x7f08008d;
public static final int save_scale_type=0x7f08008e;
public static final int screen=0x7f08008f;
public static final int scroll=0x7f080090;
public static final int scrollIndicatorDown=0x7f080091;
public static final int scrollIndicatorUp=0x7f080092;
public static final int scrollView=0x7f080093;
public static final int scrollable=0x7f080094;
public static final int search_badge=0x7f080095;
public static final int search_bar=0x7f080096;
public static final int search_button=0x7f080097;
public static final int search_close_btn=0x7f080098;
public static final int search_edit_frame=0x7f080099;
public static final int search_go_btn=0x7f08009a;
public static final int search_mag_icon=0x7f08009b;
public static final int search_plate=0x7f08009c;
public static final int search_src_text=0x7f08009d;
public static final int search_voice_btn=0x7f08009e;
public static final int seekbar=0x7f08009f;
public static final int seekbar_value=0x7f0800a0;
public static final int select_dialog_listview=0x7f0800a1;
public static final int shortcut=0x7f0800a2;
public static final int showCustom=0x7f0800a3;
public static final int showHome=0x7f0800a4;
public static final int showTitle=0x7f0800a5;
public static final int siteTV=0x7f0800a6;
public static final int sizeTV=0x7f0800a7;
public static final int smallLabel=0x7f0800a8;
public static final int snackbar_action=0x7f0800a9;
public static final int snackbar_text=0x7f0800aa;
public static final int snap=0x7f0800ab;
public static final int spacer=0x7f0800ac;
public static final int spinner=0x7f0800ad;
public static final int split_action_bar=0x7f0800ae;
public static final int spread=0x7f0800af;
public static final int spread_inside=0x7f0800b0;
public static final int src_atop=0x7f0800b1;
public static final int src_in=0x7f0800b2;
public static final int src_over=0x7f0800b3;
public static final int standard=0x7f0800b4;
public static final int start=0x7f0800b5;
public static final int status_bar_latest_event_content=0x7f0800b6;
public static final int submenuarrow=0x7f0800b7;
public static final int submit_area=0x7f0800b8;
public static final int swipeRL=0x7f0800b9;
public static final int switchWidget=0x7f0800ba;
public static final int tabMode=0x7f0800bb;
public static final int tag_transition_group=0x7f0800bc;
public static final int text=0x7f0800bd;
public static final int text2=0x7f0800be;
public static final int textSpacerNoButtons=0x7f0800bf;
public static final int textSpacerNoTitle=0x7f0800c0;
public static final int textView=0x7f0800c1;
public static final int textView2=0x7f0800c2;
public static final int text_input_password_toggle=0x7f0800c3;
public static final int textinput_counter=0x7f0800c4;
public static final int textinput_error=0x7f0800c5;
public static final int thriller_lv=0x7f0800c6;
public static final int time=0x7f0800c7;
public static final int title=0x7f0800c8;
public static final int titleDividerNoCustom=0x7f0800c9;
public static final int title_template=0x7f0800ca;
public static final int toolbar=0x7f0800cb;
public static final int toolbar_image=0x7f0800cc;
public static final int toolbar_layout=0x7f0800cd;
public static final int top=0x7f0800ce;
public static final int topPanel=0x7f0800cf;
public static final int touch_outside=0x7f0800d0;
public static final int transition_current_scene=0x7f0800d1;
public static final int transition_layout_save=0x7f0800d2;
public static final int transition_position=0x7f0800d3;
public static final int transition_scene_layoutid_cache=0x7f0800d4;
public static final int transition_transform=0x7f0800d5;
public static final int uniform=0x7f0800d6;
public static final int up=0x7f0800d7;
public static final int useLogo=0x7f0800d8;
public static final int view_offset_helper=0x7f0800d9;
public static final int visible=0x7f0800da;
public static final int withText=0x7f0800db;
public static final int wrap=0x7f0800dc;
public static final int wrap_content=0x7f0800dd;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f090000;
public static final int abc_config_activityShortDur=0x7f090001;
public static final int app_bar_elevation_anim_duration=0x7f090002;
public static final int bottom_sheet_slide_duration=0x7f090003;
public static final int cancel_button_image_alpha=0x7f090004;
public static final int config_tooltipAnimTime=0x7f090005;
public static final int design_snackbar_text_max_lines=0x7f090006;
public static final int hide_password_duration=0x7f090007;
public static final int show_password_duration=0x7f090008;
public static final int status_bar_notification_info_maxnum=0x7f090009;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f0a0000;
public static final int abc_action_bar_up_container=0x7f0a0001;
public static final int abc_action_menu_item_layout=0x7f0a0002;
public static final int abc_action_menu_layout=0x7f0a0003;
public static final int abc_action_mode_bar=0x7f0a0004;
public static final int abc_action_mode_close_item_material=0x7f0a0005;
public static final int abc_activity_chooser_view=0x7f0a0006;
public static final int abc_activity_chooser_view_list_item=0x7f0a0007;
public static final int abc_alert_dialog_button_bar_material=0x7f0a0008;
public static final int abc_alert_dialog_material=0x7f0a0009;
public static final int abc_alert_dialog_title_material=0x7f0a000a;
public static final int abc_dialog_title_material=0x7f0a000b;
public static final int abc_expanded_menu_layout=0x7f0a000c;
public static final int abc_list_menu_item_checkbox=0x7f0a000d;
public static final int abc_list_menu_item_icon=0x7f0a000e;
public static final int abc_list_menu_item_layout=0x7f0a000f;
public static final int abc_list_menu_item_radio=0x7f0a0010;
public static final int abc_popup_menu_header_item_layout=0x7f0a0011;
public static final int abc_popup_menu_item_layout=0x7f0a0012;
public static final int abc_screen_content_include=0x7f0a0013;
public static final int abc_screen_simple=0x7f0a0014;
public static final int abc_screen_simple_overlay_action_mode=0x7f0a0015;
public static final int abc_screen_toolbar=0x7f0a0016;
public static final int abc_search_dropdown_item_icons_2line=0x7f0a0017;
public static final int abc_search_view=0x7f0a0018;
public static final int abc_select_dialog_material=0x7f0a0019;
public static final int abc_tooltip=0x7f0a001a;
public static final int activity_detail=0x7f0a001b;
public static final int activity_main=0x7f0a001c;
public static final int content_detail=0x7f0a001d;
public static final int design_bottom_navigation_item=0x7f0a001e;
public static final int design_bottom_sheet_dialog=0x7f0a001f;
public static final int design_layout_snackbar=0x7f0a0020;
public static final int design_layout_snackbar_include=0x7f0a0021;
public static final int design_layout_tab_icon=0x7f0a0022;
public static final int design_layout_tab_text=0x7f0a0023;
public static final int design_menu_item_action_area=0x7f0a0024;
public static final int design_navigation_item=0x7f0a0025;
public static final int design_navigation_item_header=0x7f0a0026;
public static final int design_navigation_item_separator=0x7f0a0027;
public static final int design_navigation_item_subheader=0x7f0a0028;
public static final int design_navigation_menu=0x7f0a0029;
public static final int design_navigation_menu_item=0x7f0a002a;
public static final int design_text_input_password_icon=0x7f0a002b;
public static final int expand_button=0x7f0a002c;
public static final int movie_item=0x7f0a002d;
public static final int notification_action=0x7f0a002e;
public static final int notification_action_tombstone=0x7f0a002f;
public static final int notification_media_action=0x7f0a0030;
public static final int notification_media_cancel_action=0x7f0a0031;
public static final int notification_template_big_media=0x7f0a0032;
public static final int notification_template_big_media_custom=0x7f0a0033;
public static final int notification_template_big_media_narrow=0x7f0a0034;
public static final int notification_template_big_media_narrow_custom=0x7f0a0035;
public static final int notification_template_custom_big=0x7f0a0036;
public static final int notification_template_icon_group=0x7f0a0037;
public static final int notification_template_lines_media=0x7f0a0038;
public static final int notification_template_media=0x7f0a0039;
public static final int notification_template_media_custom=0x7f0a003a;
public static final int notification_template_part_chronometer=0x7f0a003b;
public static final int notification_template_part_time=0x7f0a003c;
public static final int preference=0x7f0a003d;
public static final int preference_category=0x7f0a003e;
public static final int preference_category_material=0x7f0a003f;
public static final int preference_dialog_edittext=0x7f0a0040;
public static final int preference_dropdown=0x7f0a0041;
public static final int preference_dropdown_material=0x7f0a0042;
public static final int preference_information=0x7f0a0043;
public static final int preference_information_material=0x7f0a0044;
public static final int preference_list_fragment=0x7f0a0045;
public static final int preference_material=0x7f0a0046;
public static final int preference_recyclerview=0x7f0a0047;
public static final int preference_widget_checkbox=0x7f0a0048;
public static final int preference_widget_seekbar=0x7f0a0049;
public static final int preference_widget_seekbar_material=0x7f0a004a;
public static final int preference_widget_switch=0x7f0a004b;
public static final int preference_widget_switch_compat=0x7f0a004c;
public static final int review_item=0x7f0a004d;
public static final int select_dialog_item_material=0x7f0a004e;
public static final int select_dialog_multichoice_material=0x7f0a004f;
public static final int select_dialog_singlechoice_material=0x7f0a0050;
public static final int support_simple_spinner_dropdown_item=0x7f0a0051;
public static final int test=0x7f0a0052;
public static final int trailer_item=0x7f0a0053;
}
public static final class menu {
public static final int main=0x7f0b0000;
public static final int menu_detail=0x7f0b0001;
}
public static final class mipmap {
public static final int ic_launcher=0x7f0c0000;
public static final int ic_launcher_foreground=0x7f0c0001;
public static final int ic_launcher_round=0x7f0c0002;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f0d0000;
public static final int abc_action_bar_up_description=0x7f0d0001;
public static final int abc_action_menu_overflow_description=0x7f0d0002;
public static final int abc_action_mode_done=0x7f0d0003;
public static final int abc_activity_chooser_view_see_all=0x7f0d0004;
public static final int abc_activitychooserview_choose_application=0x7f0d0005;
public static final int abc_capital_off=0x7f0d0006;
public static final int abc_capital_on=0x7f0d0007;
public static final int abc_font_family_body_1_material=0x7f0d0008;
public static final int abc_font_family_body_2_material=0x7f0d0009;
public static final int abc_font_family_button_material=0x7f0d000a;
public static final int abc_font_family_caption_material=0x7f0d000b;
public static final int abc_font_family_display_1_material=0x7f0d000c;
public static final int abc_font_family_display_2_material=0x7f0d000d;
public static final int abc_font_family_display_3_material=0x7f0d000e;
public static final int abc_font_family_display_4_material=0x7f0d000f;
public static final int abc_font_family_headline_material=0x7f0d0010;
public static final int abc_font_family_menu_material=0x7f0d0011;
public static final int abc_font_family_subhead_material=0x7f0d0012;
public static final int abc_font_family_title_material=0x7f0d0013;
public static final int abc_search_hint=0x7f0d0014;
public static final int abc_searchview_description_clear=0x7f0d0015;
public static final int abc_searchview_description_query=0x7f0d0016;
public static final int abc_searchview_description_search=0x7f0d0017;
public static final int abc_searchview_description_submit=0x7f0d0018;
public static final int abc_searchview_description_voice=0x7f0d0019;
public static final int abc_shareactionprovider_share_with=0x7f0d001a;
public static final int abc_shareactionprovider_share_with_application=0x7f0d001b;
public static final int abc_toolbar_collapse_description=0x7f0d001c;
public static final int action_favourite=0x7f0d001d;
public static final int action_highest_rated=0x7f0d001e;
public static final int action_most_popular=0x7f0d001f;
public static final int api_key=0x7f0d0020;
public static final int app_name=0x7f0d0021;
public static final int appbar_scrolling_view_behavior=0x7f0d0022;
public static final int bottom_sheet_behavior=0x7f0d0023;
public static final int character_counter_pattern=0x7f0d0024;
public static final int expand_button_title=0x7f0d0025;
public static final int large_text=0x7f0d0026;
public static final int password_toggle_content_description=0x7f0d0027;
public static final int path_password_eye=0x7f0d0028;
public static final int path_password_eye_mask_strike_through=0x7f0d0029;
public static final int path_password_eye_mask_visible=0x7f0d002a;
public static final int path_password_strike_through=0x7f0d002b;
public static final int pref_most_popular=0x7f0d002c;
public static final int pref_most_popular_value=0x7f0d002d;
public static final int pref_top_rated=0x7f0d002e;
public static final int pref_top_rated_value=0x7f0d002f;
public static final int search_menu_title=0x7f0d0030;
public static final int status_bar_notification_info_overflow=0x7f0d0031;
public static final int summary_collapsed_preference_list=0x7f0d0032;
public static final int title_activity_detail=0x7f0d0033;
public static final int v7_preference_off=0x7f0d0034;
public static final int v7_preference_on=0x7f0d0035;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0e0000;
public static final int AlertDialog_AppCompat_Light=0x7f0e0001;
public static final int Animation_AppCompat_Dialog=0x7f0e0002;
public static final int Animation_AppCompat_DropDownUp=0x7f0e0003;
public static final int Animation_AppCompat_Tooltip=0x7f0e0004;
public static final int Animation_Design_BottomSheetDialog=0x7f0e0005;
public static final int AppTheme=0x7f0e0006;
public static final int AppTheme_AppBarOverlay=0x7f0e0007;
public static final int AppTheme_PopupOverlay=0x7f0e0008;
public static final int Base_AlertDialog_AppCompat=0x7f0e0009;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0e000a;
public static final int Base_Animation_AppCompat_Dialog=0x7f0e000b;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0e000c;
public static final int Base_Animation_AppCompat_Tooltip=0x7f0e000d;
public static final int Base_CardView=0x7f0e000e;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0e000f;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0e0010;
public static final int Base_TextAppearance_AppCompat=0x7f0e0011;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0e0012;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0e0013;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0e0014;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0e0015;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0e0016;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0e0017;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0e0018;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0e0019;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0e001a;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0e001b;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0e001c;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0e001d;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e001e;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e001f;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0e0020;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0e0021;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0e0022;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0e0023;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e0024;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0e0025;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0e0026;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0e0027;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0e0028;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0e0029;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0e002a;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0e002b;
public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0e002c;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e002d;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e002e;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e002f;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e0030;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e0031;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e0032;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e0033;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0e0034;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e0035;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e0036;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e0037;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e0038;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e0039;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e003a;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e003b;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0e003c;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e003d;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e003e;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e003f;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e0040;
public static final int Base_Theme_AppCompat=0x7f0e0041;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0e0042;
public static final int Base_Theme_AppCompat_Dialog=0x7f0e0043;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0e0044;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0e0045;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0e0046;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0e0047;
public static final int Base_Theme_AppCompat_Light=0x7f0e0048;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0e0049;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0e004a;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0e004b;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0e004c;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e004d;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0e004e;
public static final int Base_ThemeOverlay_AppCompat=0x7f0e004f;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0e0050;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0e0051;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e0052;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0e0053;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e0054;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0e0055;
public static final int Base_V14_Widget_Design_AppBarLayout=0x7f0e0056;
public static final int Base_V21_Theme_AppCompat=0x7f0e0057;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0e0058;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0e0059;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0e005a;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0e005b;
public static final int Base_V21_Widget_Design_AppBarLayout=0x7f0e005c;
public static final int Base_V22_Theme_AppCompat=0x7f0e005d;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0e005e;
public static final int Base_V23_Theme_AppCompat=0x7f0e005f;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0e0060;
public static final int Base_V26_Theme_AppCompat=0x7f0e0061;
public static final int Base_V26_Theme_AppCompat_Light=0x7f0e0062;
public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0e0063;
public static final int Base_V26_Widget_Design_AppBarLayout=0x7f0e0064;
public static final int Base_V7_Theme_AppCompat=0x7f0e0065;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0e0066;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0e0067;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0e0068;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0e0069;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0e006a;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0e006b;
public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0e006c;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0e006d;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0e006e;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0e006f;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0e0070;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0e0071;
public static final int Base_Widget_AppCompat_ActionButton=0x7f0e0072;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0e0073;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0e0074;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0e0075;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0e0076;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0e0077;
public static final int Base_Widget_AppCompat_Button=0x7f0e0078;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0e0079;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0e007a;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e007b;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0e007c;
public static final int Base_Widget_AppCompat_Button_Small=0x7f0e007d;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0e007e;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e007f;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0e0080;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0e0081;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0e0082;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0e0083;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0e0084;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0e0085;
public static final int Base_Widget_AppCompat_EditText=0x7f0e0086;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0e0087;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0e0088;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0e0089;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e008a;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0e008b;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e008c;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0e008d;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0e008e;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e008f;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0e0090;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0e0091;
public static final int Base_Widget_AppCompat_ListView=0x7f0e0092;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0e0093;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0e0094;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0e0095;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0e0096;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0e0097;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0e0098;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0e0099;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0e009a;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0e009b;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0e009c;
public static final int Base_Widget_AppCompat_SearchView=0x7f0e009d;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0e009e;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0e009f;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0e00a0;
public static final int Base_Widget_AppCompat_Spinner=0x7f0e00a1;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0e00a2;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0e00a3;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0e00a4;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e00a5;
public static final int Base_Widget_Design_AppBarLayout=0x7f0e00a6;
public static final int Base_Widget_Design_TabLayout=0x7f0e00a7;
public static final int CardView=0x7f0e00a8;
public static final int CardView_Dark=0x7f0e00a9;
public static final int CardView_Light=0x7f0e00aa;
public static final int CollapsingToolbarLayoutExpandedTextStyle=0x7f0e00ab;
public static final int Platform_AppCompat=0x7f0e00ac;
public static final int Platform_AppCompat_Light=0x7f0e00ad;
public static final int Platform_ThemeOverlay_AppCompat=0x7f0e00ae;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0e00af;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0e00b0;
public static final int Platform_V21_AppCompat=0x7f0e00b1;
public static final int Platform_V21_AppCompat_Light=0x7f0e00b2;
public static final int Platform_V25_AppCompat=0x7f0e00b3;
public static final int Platform_V25_AppCompat_Light=0x7f0e00b4;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0e00b5;
public static final int Preference=0x7f0e00b6;
public static final int Preference_Category=0x7f0e00b7;
public static final int Preference_Category_Material=0x7f0e00b8;
public static final int Preference_CheckBoxPreference=0x7f0e00b9;
public static final int Preference_CheckBoxPreference_Material=0x7f0e00ba;
public static final int Preference_DialogPreference=0x7f0e00bb;
public static final int Preference_DialogPreference_EditTextPreference=0x7f0e00bc;
public static final int Preference_DialogPreference_EditTextPreference_Material=0x7f0e00bd;
public static final int Preference_DialogPreference_Material=0x7f0e00be;
public static final int Preference_DropDown=0x7f0e00bf;
public static final int Preference_DropDown_Material=0x7f0e00c0;
public static final int Preference_Information=0x7f0e00c1;
public static final int Preference_Information_Material=0x7f0e00c2;
public static final int Preference_Material=0x7f0e00c3;
public static final int Preference_PreferenceScreen=0x7f0e00c4;
public static final int Preference_PreferenceScreen_Material=0x7f0e00c5;
public static final int Preference_SeekBarPreference=0x7f0e00c6;
public static final int Preference_SeekBarPreference_Material=0x7f0e00c7;
public static final int Preference_SwitchPreference=0x7f0e00c8;
public static final int Preference_SwitchPreference_Material=0x7f0e00c9;
public static final int Preference_SwitchPreferenceCompat=0x7f0e00ca;
public static final int Preference_SwitchPreferenceCompat_Material=0x7f0e00cb;
public static final int PreferenceFragment=0x7f0e00cc;
public static final int PreferenceFragment_Material=0x7f0e00cd;
public static final int PreferenceFragmentList=0x7f0e00ce;
public static final int PreferenceFragmentList_Material=0x7f0e00cf;
public static final int PreferenceTheme=0x7f0e00d0;
public static final int PreferenceThemeOverlay=0x7f0e00d1;
public static final int PreferenceThemeOverlay_v14=0x7f0e00d2;
public static final int PreferenceThemeOverlay_v14_Material=0x7f0e00d3;
public static final int Preference_TextAppearanceMaterialBody2=0x7f0e00d4;
public static final int Preference_TextAppearanceMaterialSubhead=0x7f0e00d5;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0e00d6;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0e00d7;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0e00d8;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0e00d9;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0e00da;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0e00db;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0e00dc;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0e00dd;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0e00de;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0e00df;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0e00e0;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0e00e1;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0e00e2;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0e00e3;
public static final int TextAppearance_AppCompat=0x7f0e00e4;
public static final int TextAppearance_AppCompat_Body1=0x7f0e00e5;
public static final int TextAppearance_AppCompat_Body2=0x7f0e00e6;
public static final int TextAppearance_AppCompat_Button=0x7f0e00e7;
public static final int TextAppearance_AppCompat_Caption=0x7f0e00e8;
public static final int TextAppearance_AppCompat_Display1=0x7f0e00e9;
public static final int TextAppearance_AppCompat_Display2=0x7f0e00ea;
public static final int TextAppearance_AppCompat_Display3=0x7f0e00eb;
public static final int TextAppearance_AppCompat_Display4=0x7f0e00ec;
public static final int TextAppearance_AppCompat_Headline=0x7f0e00ed;
public static final int TextAppearance_AppCompat_Inverse=0x7f0e00ee;
public static final int TextAppearance_AppCompat_Large=0x7f0e00ef;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0e00f0;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0e00f1;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0e00f2;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0e00f3;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0e00f4;
public static final int TextAppearance_AppCompat_Medium=0x7f0e00f5;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0e00f6;
public static final int TextAppearance_AppCompat_Menu=0x7f0e00f7;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0e00f8;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0e00f9;
public static final int TextAppearance_AppCompat_Small=0x7f0e00fa;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0e00fb;
public static final int TextAppearance_AppCompat_Subhead=0x7f0e00fc;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0e00fd;
public static final int TextAppearance_AppCompat_Title=0x7f0e00fe;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0e00ff;
public static final int TextAppearance_AppCompat_Tooltip=0x7f0e0100;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0e0101;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0e0102;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0e0103;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0e0104;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0e0105;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0e0106;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0e0107;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0e0108;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0e0109;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0e010a;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0e010b;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0e010c;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0e010d;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0e010e;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0e010f;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0e0110;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0e0111;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0e0112;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0e0113;
public static final int TextAppearance_Compat_Notification=0x7f0e0114;
public static final int TextAppearance_Compat_Notification_Info=0x7f0e0115;
public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0e0116;
public static final int TextAppearance_Compat_Notification_Line2=0x7f0e0117;
public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0e0118;
public static final int TextAppearance_Compat_Notification_Media=0x7f0e0119;
public static final int TextAppearance_Compat_Notification_Time=0x7f0e011a;
public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0e011b;
public static final int TextAppearance_Compat_Notification_Title=0x7f0e011c;
public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0e011d;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0e011e;
public static final int TextAppearance_Design_Counter=0x7f0e011f;
public static final int TextAppearance_Design_Counter_Overflow=0x7f0e0120;
public static final int TextAppearance_Design_Error=0x7f0e0121;
public static final int TextAppearance_Design_Hint=0x7f0e0122;
public static final int TextAppearance_Design_Snackbar_Message=0x7f0e0123;
public static final int TextAppearance_Design_Tab=0x7f0e0124;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0e0125;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0e0126;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0e0127;
public static final int Theme_AppCompat=0x7f0e0128;
public static final int Theme_AppCompat_CompactMenu=0x7f0e0129;
public static final int Theme_AppCompat_DayNight=0x7f0e012a;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0e012b;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f0e012c;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0e012d;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0e012e;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0e012f;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0e0130;
public static final int Theme_AppCompat_Dialog=0x7f0e0131;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0e0132;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0e0133;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0e0134;
public static final int Theme_AppCompat_Light=0x7f0e0135;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0e0136;
public static final int Theme_AppCompat_Light_Dialog=0x7f0e0137;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0e0138;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0e0139;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0e013a;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0e013b;
public static final int Theme_AppCompat_NoActionBar=0x7f0e013c;
public static final int Theme_Design=0x7f0e013d;
public static final int Theme_Design_BottomSheetDialog=0x7f0e013e;
public static final int Theme_Design_Light=0x7f0e013f;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f0e0140;
public static final int Theme_Design_Light_NoActionBar=0x7f0e0141;
public static final int Theme_Design_NoActionBar=0x7f0e0142;
public static final int ThemeOverlay_AppCompat=0x7f0e0143;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0e0144;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0e0145;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0e0146;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f0e0147;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0e0148;
public static final int ThemeOverlay_AppCompat_Light=0x7f0e0149;
public static final int Widget_AppCompat_ActionBar=0x7f0e014a;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0e014b;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0e014c;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0e014d;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0e014e;
public static final int Widget_AppCompat_ActionButton=0x7f0e014f;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0e0150;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0e0151;
public static final int Widget_AppCompat_ActionMode=0x7f0e0152;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0e0153;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0e0154;
public static final int Widget_AppCompat_Button=0x7f0e0155;
public static final int Widget_AppCompat_Button_Borderless=0x7f0e0156;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0e0157;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0e0158;
public static final int Widget_AppCompat_Button_Colored=0x7f0e0159;
public static final int Widget_AppCompat_Button_Small=0x7f0e015a;
public static final int Widget_AppCompat_ButtonBar=0x7f0e015b;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0e015c;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0e015d;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0e015e;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0e015f;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0e0160;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0e0161;
public static final int Widget_AppCompat_EditText=0x7f0e0162;
public static final int Widget_AppCompat_ImageButton=0x7f0e0163;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0e0164;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0e0165;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0e0166;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0e0167;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0e0168;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0e0169;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0e016a;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0e016b;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0e016c;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0e016d;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0e016e;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0e016f;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0e0170;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0e0171;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0e0172;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0e0173;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0e0174;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0e0175;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0e0176;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0e0177;
public static final int Widget_AppCompat_Light_SearchView=0x7f0e0178;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0e0179;
public static final int Widget_AppCompat_ListMenuView=0x7f0e017a;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0e017b;
public static final int Widget_AppCompat_ListView=0x7f0e017c;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0e017d;
public static final int Widget_AppCompat_ListView_Menu=0x7f0e017e;
public static final int Widget_AppCompat_PopupMenu=0x7f0e017f;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0e0180;
public static final int Widget_AppCompat_PopupWindow=0x7f0e0181;
public static final int Widget_AppCompat_ProgressBar=0x7f0e0182;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0e0183;
public static final int Widget_AppCompat_RatingBar=0x7f0e0184;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0e0185;
public static final int Widget_AppCompat_RatingBar_Small=0x7f0e0186;
public static final int Widget_AppCompat_SearchView=0x7f0e0187;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0e0188;
public static final int Widget_AppCompat_SeekBar=0x7f0e0189;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0e018a;
public static final int Widget_AppCompat_Spinner=0x7f0e018b;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0e018c;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0e018d;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0e018e;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0e018f;
public static final int Widget_AppCompat_Toolbar=0x7f0e0190;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0e0191;
public static final int Widget_Compat_NotificationActionContainer=0x7f0e0192;
public static final int Widget_Compat_NotificationActionText=0x7f0e0193;
public static final int Widget_Design_AppBarLayout=0x7f0e0194;
public static final int Widget_Design_BottomNavigationView=0x7f0e0195;
public static final int Widget_Design_BottomSheet_Modal=0x7f0e0196;
public static final int Widget_Design_CollapsingToolbar=0x7f0e0197;
public static final int Widget_Design_CoordinatorLayout=0x7f0e0198;
public static final int Widget_Design_FloatingActionButton=0x7f0e0199;
public static final int Widget_Design_NavigationView=0x7f0e019a;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0e019b;
public static final int Widget_Design_Snackbar=0x7f0e019c;
public static final int Widget_Design_TabLayout=0x7f0e019d;
public static final int Widget_Design_TextInputLayout=0x7f0e019e;
public static final int Widget_Support_CoordinatorLayout=0x7f0e019f;
}
public static final class styleable {
/**
* Attributes that can be used with a ActionBar.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionBar_background com.example.android.movieapp:background}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_backgroundSplit com.example.android.movieapp:backgroundSplit}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_backgroundStacked com.example.android.movieapp:backgroundStacked}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetEnd com.example.android.movieapp:contentInsetEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.example.android.movieapp:contentInsetEndWithActions}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetLeft com.example.android.movieapp:contentInsetLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetRight com.example.android.movieapp:contentInsetRight}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetStart com.example.android.movieapp:contentInsetStart}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.example.android.movieapp:contentInsetStartWithNavigation}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_customNavigationLayout com.example.android.movieapp:customNavigationLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_displayOptions com.example.android.movieapp:displayOptions}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_divider com.example.android.movieapp:divider}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_elevation com.example.android.movieapp:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_height com.example.android.movieapp:height}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_hideOnContentScroll com.example.android.movieapp:hideOnContentScroll}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.example.android.movieapp:homeAsUpIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_homeLayout com.example.android.movieapp:homeLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_icon com.example.android.movieapp:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.example.android.movieapp:indeterminateProgressStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_itemPadding com.example.android.movieapp:itemPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_logo com.example.android.movieapp:logo}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_navigationMode com.example.android.movieapp:navigationMode}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_popupTheme com.example.android.movieapp:popupTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_progressBarPadding com.example.android.movieapp:progressBarPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_progressBarStyle com.example.android.movieapp:progressBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_subtitle com.example.android.movieapp:subtitle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_subtitleTextStyle com.example.android.movieapp:subtitleTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_title com.example.android.movieapp:title}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_titleTextStyle com.example.android.movieapp: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={
0x7f030035, 0x7f030036, 0x7f030037, 0x7f030073,
0x7f030074, 0x7f030075, 0x7f030076, 0x7f030077,
0x7f030078, 0x7f030085, 0x7f030091, 0x7f030092,
0x7f03009f, 0x7f0300c5, 0x7f0300c6, 0x7f0300ca,
0x7f0300cb, 0x7f0300cc, 0x7f0300d2, 0x7f0300d9,
0x7f030127, 0x7f030133, 0x7f030147, 0x7f03015a,
0x7f03015b, 0x7f030186, 0x7f030189, 0x7f0301bc,
0x7f0301c6
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#background}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:background
*/
public static final int ActionBar_background=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#backgroundSplit}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:backgroundSplit
*/
public static final int ActionBar_backgroundSplit=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#backgroundStacked}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:backgroundStacked
*/
public static final int ActionBar_backgroundStacked=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetEnd}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetEndWithActions}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetLeft}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetRight}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetRight
*/
public static final int ActionBar_contentInsetRight=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetStart}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetStart
*/
public static final int ActionBar_contentInsetStart=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetStartWithNavigation}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#customNavigationLayout}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#displayOptions}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>disableHome</td><td>20</td><td></td></tr>
* <tr><td>homeAsUp</td><td>4</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>showCustom</td><td>10</td><td></td></tr>
* <tr><td>showHome</td><td>2</td><td></td></tr>
* <tr><td>showTitle</td><td>8</td><td></td></tr>
* <tr><td>useLogo</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:displayOptions
*/
public static final int ActionBar_displayOptions=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#divider}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:divider
*/
public static final int ActionBar_divider=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#elevation}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:elevation
*/
public static final int ActionBar_elevation=12;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#height}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:height
*/
public static final int ActionBar_height=13;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#hideOnContentScroll}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll=14;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#homeAsUpIndicator}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator=15;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#homeLayout}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:homeLayout
*/
public static final int ActionBar_homeLayout=16;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#icon}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:icon
*/
public static final int ActionBar_icon=17;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#indeterminateProgressStyle}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle=18;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#itemPadding}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:itemPadding
*/
public static final int ActionBar_itemPadding=19;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#logo}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:logo
*/
public static final int ActionBar_logo=20;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#navigationMode}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>listMode</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* <tr><td>tabMode</td><td>2</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:navigationMode
*/
public static final int ActionBar_navigationMode=21;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#popupTheme}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:popupTheme
*/
public static final int ActionBar_popupTheme=22;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#progressBarPadding}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:progressBarPadding
*/
public static final int ActionBar_progressBarPadding=23;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#progressBarStyle}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:progressBarStyle
*/
public static final int ActionBar_progressBarStyle=24;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#subtitle}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:subtitle
*/
public static final int ActionBar_subtitle=25;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#subtitleTextStyle}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle=26;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#title}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:title
*/
public static final int ActionBar_title=27;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#titleTextStyle}
* attribute's value can be found in the {@link #ActionBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:titleTextStyle
*/
public static final int ActionBar_titleTextStyle=28;
/**
* Attributes that can be used with a ActionBarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
* </table>
* @see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout={
0x010100b3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #ActionBarLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int ActionBarLayout_android_layout_gravity=0;
/**
* Attributes that can be used with a ActionMenuItemView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
* </table>
* @see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView={
0x0101013f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#minWidth}
* attribute's value can be found in the {@link #ActionMenuItemView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth=0;
public static final int[] ActionMenuView={
};
/**
* Attributes that can be used with a ActionMode.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionMode_background com.example.android.movieapp:background}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_backgroundSplit com.example.android.movieapp:backgroundSplit}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_closeItemLayout com.example.android.movieapp:closeItemLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_height com.example.android.movieapp:height}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_subtitleTextStyle com.example.android.movieapp:subtitleTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_titleTextStyle com.example.android.movieapp: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={
0x7f030035, 0x7f030036, 0x7f03005e, 0x7f0300c5,
0x7f030189, 0x7f0301c6
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#background}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:background
*/
public static final int ActionMode_background=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#backgroundSplit}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:backgroundSplit
*/
public static final int ActionMode_backgroundSplit=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#closeItemLayout}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:closeItemLayout
*/
public static final int ActionMode_closeItemLayout=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#height}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:height
*/
public static final int ActionMode_height=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#subtitleTextStyle}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#titleTextStyle}
* attribute's value can be found in the {@link #ActionMode} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:titleTextStyle
*/
public static final int ActionMode_titleTextStyle=5;
/**
* Attributes that can be used with a ActivityChooserView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.example.android.movieapp:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.example.android.movieapp:initialActivityCount}</code></td><td></td></tr>
* </table>
* @see #ActivityChooserView_expandActivityOverflowButtonDrawable
* @see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView={
0x7f0300a6, 0x7f0300d3
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#expandActivityOverflowButtonDrawable}
* attribute's value can be found in the {@link #ActivityChooserView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#initialActivityCount}
* attribute's value can be found in the {@link #ActivityChooserView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount=1;
/**
* Attributes that can be used with a AlertDialog.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_buttonIconDimen com.example.android.movieapp:buttonIconDimen}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.example.android.movieapp:buttonPanelSideLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_listItemLayout com.example.android.movieapp:listItemLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_listLayout com.example.android.movieapp:listLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.example.android.movieapp:multiChoiceItemLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_showTitle com.example.android.movieapp:showTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.example.android.movieapp:singleChoiceItemLayout}</code></td><td></td></tr>
* </table>
* @see #AlertDialog_android_layout
* @see #AlertDialog_buttonIconDimen
* @see #AlertDialog_buttonPanelSideLayout
* @see #AlertDialog_listItemLayout
* @see #AlertDialog_listLayout
* @see #AlertDialog_multiChoiceItemLayout
* @see #AlertDialog_showTitle
* @see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog={
0x010100f2, 0x7f03004c, 0x7f03004d, 0x7f03011e,
0x7f03011f, 0x7f030130, 0x7f030175, 0x7f030176
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int AlertDialog_android_layout=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#buttonIconDimen}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:buttonIconDimen
*/
public static final int AlertDialog_buttonIconDimen=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#buttonPanelSideLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#listItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:listItemLayout
*/
public static final int AlertDialog_listItemLayout=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#listLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:listLayout
*/
public static final int AlertDialog_listLayout=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#multiChoiceItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#showTitle}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:showTitle
*/
public static final int AlertDialog_showTitle=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#singleChoiceItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout=7;
/**
* Attributes that can be used with a AppBarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_elevation com.example.android.movieapp:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_expanded com.example.android.movieapp:expanded}</code></td><td></td></tr>
* </table>
* @see #AppBarLayout_android_background
* @see #AppBarLayout_android_touchscreenBlocksFocus
* @see #AppBarLayout_android_keyboardNavigationCluster
* @see #AppBarLayout_elevation
* @see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout={
0x010100d4, 0x0101048f, 0x01010540, 0x7f03009f,
0x7f0300a7
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#background}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:background
*/
public static final int AppBarLayout_android_background=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:touchscreenBlocksFocus
*/
public static final int AppBarLayout_android_touchscreenBlocksFocus=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:keyboardNavigationCluster
*/
public static final int AppBarLayout_android_keyboardNavigationCluster=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#elevation}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:elevation
*/
public static final int AppBarLayout_elevation=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#expanded}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:expanded
*/
public static final 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 com.example.android.movieapp:state_collapsed}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.example.android.movieapp:state_collapsible}</code></td><td></td></tr>
* </table>
* @see #AppBarLayoutStates_state_collapsed
* @see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates={
0x7f030180, 0x7f030181
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#state_collapsed}
* attribute's value can be found in the {@link #AppBarLayoutStates} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#state_collapsible}
* attribute's value can be found in the {@link #AppBarLayoutStates} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:state_collapsible
*/
public static final 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 com.example.android.movieapp:layout_scrollFlags}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.example.android.movieapp:layout_scrollInterpolator}</code></td><td></td></tr>
* </table>
* @see #AppBarLayout_Layout_layout_scrollFlags
* @see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout={
0x7f03011a, 0x7f03011b
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_scrollFlags}
* attribute's value can be found in the {@link #AppBarLayout_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>enterAlways</td><td>4</td><td></td></tr>
* <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr>
* <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr>
* <tr><td>scroll</td><td>1</td><td></td></tr>
* <tr><td>snap</td><td>10</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_scrollInterpolator}
* attribute's value can be found in the {@link #AppBarLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:layout_scrollInterpolator
*/
public static final int AppBarLayout_Layout_layout_scrollInterpolator=1;
/**
* Attributes that can be used with a AppCompatImageView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatImageView_srcCompat com.example.android.movieapp:srcCompat}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatImageView_tint com.example.android.movieapp:tint}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatImageView_tintMode com.example.android.movieapp: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, 0x7f03017d, 0x7f0301ba, 0x7f0301bb
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#src}
* attribute's value can be found in the {@link #AppCompatImageView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:src
*/
public static final int AppCompatImageView_android_src=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#srcCompat}
* attribute's value can be found in the {@link #AppCompatImageView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:srcCompat
*/
public static final int AppCompatImageView_srcCompat=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tint}
* attribute's value can be found in the {@link #AppCompatImageView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:tint
*/
public static final int AppCompatImageView_tint=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.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>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:tintMode
*/
public static final int AppCompatImageView_tintMode=3;
/**
* Attributes that can be used with a AppCompatSeekBar.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatSeekBar_tickMark com.example.android.movieapp:tickMark}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.example.android.movieapp:tickMarkTint}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.example.android.movieapp: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, 0x7f0301b7, 0x7f0301b8, 0x7f0301b9
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#thumb}
* attribute's value can be found in the {@link #AppCompatSeekBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:thumb
*/
public static final int AppCompatSeekBar_android_thumb=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tickMark}
* attribute's value can be found in the {@link #AppCompatSeekBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:tickMark
*/
public static final int AppCompatSeekBar_tickMark=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tickMarkTint}
* attribute's value can be found in the {@link #AppCompatSeekBar} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tickMarkTintMode}
* attribute's value can be found in the {@link #AppCompatSeekBar} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode=3;
/**
* Attributes that can be used with a AppCompatTextHelper.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
* </table>
* @see #AppCompatTextHelper_android_textAppearance
* @see #AppCompatTextHelper_android_drawableTop
* @see #AppCompatTextHelper_android_drawableBottom
* @see #AppCompatTextHelper_android_drawableLeft
* @see #AppCompatTextHelper_android_drawableRight
* @see #AppCompatTextHelper_android_drawableStart
* @see #AppCompatTextHelper_android_drawableEnd
*/
public static final int[] AppCompatTextHelper={
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textAppearance}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableTop}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableRight}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableStart}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd=6;
/**
* Attributes that can be used with a AppCompatTextView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize com.example.android.movieapp:autoSizeMaxTextSize}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.example.android.movieapp:autoSizeMinTextSize}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.example.android.movieapp:autoSizePresetSizes}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.example.android.movieapp:autoSizeStepGranularity}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.example.android.movieapp:autoSizeTextType}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_fontFamily com.example.android.movieapp:fontFamily}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_textAllCaps com.example.android.movieapp: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, 0x7f030030, 0x7f030031, 0x7f030032,
0x7f030033, 0x7f030034, 0x7f0300b7, 0x7f0301a6
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textAppearance}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#autoSizeMaxTextSize}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:autoSizeMaxTextSize
*/
public static final int AppCompatTextView_autoSizeMaxTextSize=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#autoSizeMinTextSize}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:autoSizeMinTextSize
*/
public static final int AppCompatTextView_autoSizeMinTextSize=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#autoSizePresetSizes}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:autoSizePresetSizes
*/
public static final int AppCompatTextView_autoSizePresetSizes=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#autoSizeStepGranularity}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:autoSizeStepGranularity
*/
public static final int AppCompatTextView_autoSizeStepGranularity=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#autoSizeTextType}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>uniform</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:autoSizeTextType
*/
public static final int AppCompatTextView_autoSizeTextType=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fontFamily}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:fontFamily
*/
public static final int AppCompatTextView_fontFamily=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textAllCaps}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps=7;
/**
* Attributes that can be used with a AppCompatTheme.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.example.android.movieapp:actionBarDivider}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.example.android.movieapp:actionBarItemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.example.android.movieapp:actionBarPopupTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarSize com.example.android.movieapp:actionBarSize}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.example.android.movieapp:actionBarSplitStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.example.android.movieapp:actionBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.example.android.movieapp:actionBarTabBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.example.android.movieapp:actionBarTabStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.example.android.movieapp:actionBarTabTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.example.android.movieapp:actionBarTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.example.android.movieapp:actionBarWidgetTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.example.android.movieapp:actionButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.example.android.movieapp:actionDropDownStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.example.android.movieapp:actionMenuTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.example.android.movieapp:actionMenuTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.example.android.movieapp:actionModeBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.example.android.movieapp:actionModeCloseButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.example.android.movieapp:actionModeCloseDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.example.android.movieapp:actionModeCopyDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.example.android.movieapp:actionModeCutDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.example.android.movieapp:actionModeFindDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.example.android.movieapp:actionModePasteDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.example.android.movieapp:actionModePopupWindowStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.example.android.movieapp:actionModeSelectAllDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.example.android.movieapp:actionModeShareDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.example.android.movieapp:actionModeSplitBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.example.android.movieapp:actionModeStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.example.android.movieapp:actionModeWebSearchDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.example.android.movieapp:actionOverflowButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.example.android.movieapp:actionOverflowMenuStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.example.android.movieapp:activityChooserViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.example.android.movieapp:alertDialogButtonGroupStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.example.android.movieapp:alertDialogCenterButtons}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.example.android.movieapp:alertDialogStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.example.android.movieapp:alertDialogTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.example.android.movieapp:autoCompleteTextViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.example.android.movieapp:borderlessButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.example.android.movieapp:buttonBarButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.example.android.movieapp:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.example.android.movieapp:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.example.android.movieapp:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.example.android.movieapp:buttonBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonStyle com.example.android.movieapp:buttonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.example.android.movieapp:buttonStyleSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.example.android.movieapp:checkboxStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.example.android.movieapp:checkedTextViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorAccent com.example.android.movieapp:colorAccent}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.example.android.movieapp:colorBackgroundFloating}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.example.android.movieapp:colorButtonNormal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.example.android.movieapp:colorControlActivated}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.example.android.movieapp:colorControlHighlight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.example.android.movieapp:colorControlNormal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorError com.example.android.movieapp:colorError}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorPrimary com.example.android.movieapp:colorPrimary}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.example.android.movieapp:colorPrimaryDark}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.example.android.movieapp:colorSwitchThumbNormal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_controlBackground com.example.android.movieapp:controlBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.example.android.movieapp:dialogPreferredPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dialogTheme com.example.android.movieapp:dialogTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.example.android.movieapp:dividerHorizontal}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dividerVertical com.example.android.movieapp:dividerVertical}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.example.android.movieapp:dropDownListViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.example.android.movieapp:dropdownListPreferredItemHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextBackground com.example.android.movieapp:editTextBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextColor com.example.android.movieapp:editTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextStyle com.example.android.movieapp:editTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.example.android.movieapp:homeAsUpIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.example.android.movieapp:imageButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.example.android.movieapp:listChoiceBackgroundIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.example.android.movieapp:listDividerAlertDialog}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.example.android.movieapp:listMenuViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.example.android.movieapp:listPopupWindowStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.example.android.movieapp:listPreferredItemHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.example.android.movieapp:listPreferredItemHeightLarge}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.example.android.movieapp:listPreferredItemHeightSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.example.android.movieapp:listPreferredItemPaddingLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.example.android.movieapp:listPreferredItemPaddingRight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelBackground com.example.android.movieapp:panelBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.example.android.movieapp:panelMenuListTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.example.android.movieapp:panelMenuListWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.example.android.movieapp:popupMenuStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.example.android.movieapp:popupWindowStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.example.android.movieapp:radioButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.example.android.movieapp:ratingBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.example.android.movieapp:ratingBarStyleIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.example.android.movieapp:ratingBarStyleSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.example.android.movieapp:searchViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.example.android.movieapp:seekBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.example.android.movieapp:selectableItemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.example.android.movieapp:selectableItemBackgroundBorderless}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.example.android.movieapp:spinnerDropDownItemStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.example.android.movieapp:spinnerStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_switchStyle com.example.android.movieapp:switchStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.example.android.movieapp:textAppearanceLargePopupMenu}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.example.android.movieapp:textAppearanceListItem}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.example.android.movieapp:textAppearanceListItemSecondary}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.example.android.movieapp:textAppearanceListItemSmall}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.example.android.movieapp:textAppearancePopupMenuHeader}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.example.android.movieapp:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.example.android.movieapp:textAppearanceSearchResultTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.example.android.movieapp:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.example.android.movieapp:textColorAlertDialogListItem}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.example.android.movieapp:textColorSearchUrl}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.example.android.movieapp:toolbarNavigationButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.example.android.movieapp:toolbarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.example.android.movieapp:tooltipForegroundColor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.example.android.movieapp:tooltipFrameBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_viewInflaterClass com.example.android.movieapp:viewInflaterClass}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionBar com.example.android.movieapp:windowActionBar}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.example.android.movieapp:windowActionBarOverlay}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.example.android.movieapp:windowActionModeOverlay}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.example.android.movieapp:windowFixedHeightMajor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.example.android.movieapp:windowFixedHeightMinor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.example.android.movieapp:windowFixedWidthMajor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.example.android.movieapp:windowFixedWidthMinor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.example.android.movieapp:windowMinWidthMajor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.example.android.movieapp:windowMinWidthMinor}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.example.android.movieapp:windowNoTitle}</code></td><td></td></tr>
* </table>
* @see #AppCompatTheme_android_windowIsFloating
* @see #AppCompatTheme_android_windowAnimationStyle
* @see #AppCompatTheme_actionBarDivider
* @see #AppCompatTheme_actionBarItemBackground
* @see #AppCompatTheme_actionBarPopupTheme
* @see #AppCompatTheme_actionBarSize
* @see #AppCompatTheme_actionBarSplitStyle
* @see #AppCompatTheme_actionBarStyle
* @see #AppCompatTheme_actionBarTabBarStyle
* @see #AppCompatTheme_actionBarTabStyle
* @see #AppCompatTheme_actionBarTabTextStyle
* @see #AppCompatTheme_actionBarTheme
* @see #AppCompatTheme_actionBarWidgetTheme
* @see #AppCompatTheme_actionButtonStyle
* @see #AppCompatTheme_actionDropDownStyle
* @see #AppCompatTheme_actionMenuTextAppearance
* @see #AppCompatTheme_actionMenuTextColor
* @see #AppCompatTheme_actionModeBackground
* @see #AppCompatTheme_actionModeCloseButtonStyle
* @see #AppCompatTheme_actionModeCloseDrawable
* @see #AppCompatTheme_actionModeCopyDrawable
* @see #AppCompatTheme_actionModeCutDrawable
* @see #AppCompatTheme_actionModeFindDrawable
* @see #AppCompatTheme_actionModePasteDrawable
* @see #AppCompatTheme_actionModePopupWindowStyle
* @see #AppCompatTheme_actionModeSelectAllDrawable
* @see #AppCompatTheme_actionModeShareDrawable
* @see #AppCompatTheme_actionModeSplitBackground
* @see #AppCompatTheme_actionModeStyle
* @see #AppCompatTheme_actionModeWebSearchDrawable
* @see #AppCompatTheme_actionOverflowButtonStyle
* @see #AppCompatTheme_actionOverflowMenuStyle
* @see #AppCompatTheme_activityChooserViewStyle
* @see #AppCompatTheme_alertDialogButtonGroupStyle
* @see #AppCompatTheme_alertDialogCenterButtons
* @see #AppCompatTheme_alertDialogStyle
* @see #AppCompatTheme_alertDialogTheme
* @see #AppCompatTheme_autoCompleteTextViewStyle
* @see #AppCompatTheme_borderlessButtonStyle
* @see #AppCompatTheme_buttonBarButtonStyle
* @see #AppCompatTheme_buttonBarNegativeButtonStyle
* @see #AppCompatTheme_buttonBarNeutralButtonStyle
* @see #AppCompatTheme_buttonBarPositiveButtonStyle
* @see #AppCompatTheme_buttonBarStyle
* @see #AppCompatTheme_buttonStyle
* @see #AppCompatTheme_buttonStyleSmall
* @see #AppCompatTheme_checkboxStyle
* @see #AppCompatTheme_checkedTextViewStyle
* @see #AppCompatTheme_colorAccent
* @see #AppCompatTheme_colorBackgroundFloating
* @see #AppCompatTheme_colorButtonNormal
* @see #AppCompatTheme_colorControlActivated
* @see #AppCompatTheme_colorControlHighlight
* @see #AppCompatTheme_colorControlNormal
* @see #AppCompatTheme_colorError
* @see #AppCompatTheme_colorPrimary
* @see #AppCompatTheme_colorPrimaryDark
* @see #AppCompatTheme_colorSwitchThumbNormal
* @see #AppCompatTheme_controlBackground
* @see #AppCompatTheme_dialogPreferredPadding
* @see #AppCompatTheme_dialogTheme
* @see #AppCompatTheme_dividerHorizontal
* @see #AppCompatTheme_dividerVertical
* @see #AppCompatTheme_dropDownListViewStyle
* @see #AppCompatTheme_dropdownListPreferredItemHeight
* @see #AppCompatTheme_editTextBackground
* @see #AppCompatTheme_editTextColor
* @see #AppCompatTheme_editTextStyle
* @see #AppCompatTheme_homeAsUpIndicator
* @see #AppCompatTheme_imageButtonStyle
* @see #AppCompatTheme_listChoiceBackgroundIndicator
* @see #AppCompatTheme_listDividerAlertDialog
* @see #AppCompatTheme_listMenuViewStyle
* @see #AppCompatTheme_listPopupWindowStyle
* @see #AppCompatTheme_listPreferredItemHeight
* @see #AppCompatTheme_listPreferredItemHeightLarge
* @see #AppCompatTheme_listPreferredItemHeightSmall
* @see #AppCompatTheme_listPreferredItemPaddingLeft
* @see #AppCompatTheme_listPreferredItemPaddingRight
* @see #AppCompatTheme_panelBackground
* @see #AppCompatTheme_panelMenuListTheme
* @see #AppCompatTheme_panelMenuListWidth
* @see #AppCompatTheme_popupMenuStyle
* @see #AppCompatTheme_popupWindowStyle
* @see #AppCompatTheme_radioButtonStyle
* @see #AppCompatTheme_ratingBarStyle
* @see #AppCompatTheme_ratingBarStyleIndicator
* @see #AppCompatTheme_ratingBarStyleSmall
* @see #AppCompatTheme_searchViewStyle
* @see #AppCompatTheme_seekBarStyle
* @see #AppCompatTheme_selectableItemBackground
* @see #AppCompatTheme_selectableItemBackgroundBorderless
* @see #AppCompatTheme_spinnerDropDownItemStyle
* @see #AppCompatTheme_spinnerStyle
* @see #AppCompatTheme_switchStyle
* @see #AppCompatTheme_textAppearanceLargePopupMenu
* @see #AppCompatTheme_textAppearanceListItem
* @see #AppCompatTheme_textAppearanceListItemSecondary
* @see #AppCompatTheme_textAppearanceListItemSmall
* @see #AppCompatTheme_textAppearancePopupMenuHeader
* @see #AppCompatTheme_textAppearanceSearchResultSubtitle
* @see #AppCompatTheme_textAppearanceSearchResultTitle
* @see #AppCompatTheme_textAppearanceSmallPopupMenu
* @see #AppCompatTheme_textColorAlertDialogListItem
* @see #AppCompatTheme_textColorSearchUrl
* @see #AppCompatTheme_toolbarNavigationButtonStyle
* @see #AppCompatTheme_toolbarStyle
* @see #AppCompatTheme_tooltipForegroundColor
* @see #AppCompatTheme_tooltipFrameBackground
* @see #AppCompatTheme_viewInflaterClass
* @see #AppCompatTheme_windowActionBar
* @see #AppCompatTheme_windowActionBarOverlay
* @see #AppCompatTheme_windowActionModeOverlay
* @see #AppCompatTheme_windowFixedHeightMajor
* @see #AppCompatTheme_windowFixedHeightMinor
* @see #AppCompatTheme_windowFixedWidthMajor
* @see #AppCompatTheme_windowFixedWidthMinor
* @see #AppCompatTheme_windowMinWidthMajor
* @see #AppCompatTheme_windowMinWidthMinor
* @see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme={
0x01010057, 0x010100ae, 0x7f030000, 0x7f030001,
0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005,
0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009,
0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e,
0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012,
0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016,
0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a,
0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e,
0x7f030021, 0x7f030023, 0x7f030024, 0x7f030025,
0x7f030026, 0x7f03002f, 0x7f030043, 0x7f030046,
0x7f030047, 0x7f030048, 0x7f030049, 0x7f03004a,
0x7f03004e, 0x7f03004f, 0x7f03005b, 0x7f03005c,
0x7f030064, 0x7f030065, 0x7f030066, 0x7f030067,
0x7f030068, 0x7f030069, 0x7f03006a, 0x7f03006b,
0x7f03006c, 0x7f03006d, 0x7f03007f, 0x7f03008d,
0x7f03008e, 0x7f030093, 0x7f030095, 0x7f030098,
0x7f030099, 0x7f03009b, 0x7f03009c, 0x7f03009e,
0x7f0300ca, 0x7f0300d1, 0x7f03011c, 0x7f03011d,
0x7f030120, 0x7f030121, 0x7f030122, 0x7f030123,
0x7f030124, 0x7f030125, 0x7f030126, 0x7f03013d,
0x7f03013e, 0x7f03013f, 0x7f030146, 0x7f030148,
0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030161,
0x7f030169, 0x7f03016c, 0x7f03016e, 0x7f03016f,
0x7f03017a, 0x7f03017b, 0x7f030192, 0x7f0301a7,
0x7f0301a8, 0x7f0301a9, 0x7f0301aa, 0x7f0301ab,
0x7f0301ac, 0x7f0301ad, 0x7f0301ae, 0x7f0301af,
0x7f0301b1, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca,
0x7f0301cb, 0x7f0301d1, 0x7f0301d4, 0x7f0301d5,
0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9,
0x7f0301da, 0x7f0301db, 0x7f0301dc, 0x7f0301dd
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionBarDivider}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionBarItemBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionBarPopupTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionBarSize}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap_content</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionBarSplitStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionBarTabBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionBarTabStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionBarTabTextStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionBarTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionBarWidgetTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme=12;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle=13;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionDropDownStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle=14;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionMenuTextAppearance}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance=15;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionMenuTextColor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor=16;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModeBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground=17;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModeCloseButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle=18;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModeCloseDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable=19;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModeCopyDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable=20;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModeCutDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable=21;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModeFindDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable=22;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModePasteDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable=23;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModePopupWindowStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle=24;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModeSelectAllDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable=25;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModeShareDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable=26;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModeSplitBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground=27;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModeStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle=28;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionModeWebSearchDrawable}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable=29;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionOverflowButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle=30;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionOverflowMenuStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle=31;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#activityChooserViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle=32;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#alertDialogButtonGroupStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle=33;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#alertDialogCenterButtons}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons=34;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#alertDialogStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle=35;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#alertDialogTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme=36;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#autoCompleteTextViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle=37;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#borderlessButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle=38;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#buttonBarButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle=39;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#buttonBarNegativeButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#buttonBarNeutralButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#buttonBarPositiveButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#buttonBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle=43;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#buttonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle=44;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#buttonStyleSmall}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall=45;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#checkboxStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle=46;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#checkedTextViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle=47;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#colorAccent}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:colorAccent
*/
public static final int AppCompatTheme_colorAccent=48;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#colorBackgroundFloating}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating=49;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#colorButtonNormal}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal=50;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#colorControlActivated}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated=51;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#colorControlHighlight}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight=52;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#colorControlNormal}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal=53;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#colorError}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:colorError
*/
public static final int AppCompatTheme_colorError=54;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#colorPrimary}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary=55;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#colorPrimaryDark}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark=56;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#colorSwitchThumbNormal}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal=57;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#controlBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:controlBackground
*/
public static final int AppCompatTheme_controlBackground=58;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dialogPreferredPadding}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding=59;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dialogTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme=60;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dividerHorizontal}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal=61;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dividerVertical}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical=62;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dropDownListViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle=63;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dropdownListPreferredItemHeight}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight=64;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#editTextBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground=65;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#editTextColor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:editTextColor
*/
public static final int AppCompatTheme_editTextColor=66;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#editTextStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle=67;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#homeAsUpIndicator}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator=68;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#imageButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle=69;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#listChoiceBackgroundIndicator}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator=70;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#listDividerAlertDialog}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog=71;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#listMenuViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle=72;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#listPopupWindowStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle=73;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#listPreferredItemHeight}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight=74;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#listPreferredItemHeightLarge}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge=75;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#listPreferredItemHeightSmall}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall=76;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#listPreferredItemPaddingLeft}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft=77;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#listPreferredItemPaddingRight}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight=78;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#panelBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:panelBackground
*/
public static final int AppCompatTheme_panelBackground=79;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#panelMenuListTheme}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme=80;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#panelMenuListWidth}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth=81;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#popupMenuStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle=82;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#popupWindowStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle=83;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#radioButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle=84;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#ratingBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle=85;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#ratingBarStyleIndicator}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator=86;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#ratingBarStyleSmall}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall=87;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#searchViewStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle=88;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#seekBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle=89;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#selectableItemBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground=90;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#selectableItemBackgroundBorderless}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless=91;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#spinnerDropDownItemStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle=92;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#spinnerStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle=93;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#switchStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:switchStyle
*/
public static final int AppCompatTheme_switchStyle=94;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textAppearanceLargePopupMenu}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu=95;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textAppearanceListItem}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem=96;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textAppearanceListItemSecondary}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:textAppearanceListItemSecondary
*/
public static final int AppCompatTheme_textAppearanceListItemSecondary=97;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textAppearanceListItemSmall}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall=98;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textAppearancePopupMenuHeader}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader=99;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textAppearanceSearchResultSubtitle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=100;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textAppearanceSearchResultTitle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle=101;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textAppearanceSmallPopupMenu}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu=102;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textColorAlertDialogListItem}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem=103;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textColorSearchUrl}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl=104;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#toolbarNavigationButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle=105;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#toolbarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle=106;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tooltipForegroundColor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:tooltipForegroundColor
*/
public static final int AppCompatTheme_tooltipForegroundColor=107;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tooltipFrameBackground}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:tooltipFrameBackground
*/
public static final int AppCompatTheme_tooltipFrameBackground=108;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#viewInflaterClass}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:viewInflaterClass
*/
public static final int AppCompatTheme_viewInflaterClass=109;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#windowActionBar}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar=110;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#windowActionBarOverlay}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay=111;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#windowActionModeOverlay}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay=112;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#windowFixedHeightMajor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name com.example.android.movieapp:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor=113;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#windowFixedHeightMinor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name com.example.android.movieapp:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor=114;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#windowFixedWidthMajor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name com.example.android.movieapp:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor=115;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#windowFixedWidthMinor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name com.example.android.movieapp:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor=116;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#windowMinWidthMajor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name com.example.android.movieapp:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor=117;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#windowMinWidthMinor}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name com.example.android.movieapp:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor=118;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#windowNoTitle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle=119;
/**
* Attributes that can be used with a BackgroundStyle.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #BackgroundStyle_android_selectableItemBackground android:selectableItemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #BackgroundStyle_selectableItemBackground com.example.android.movieapp:selectableItemBackground}</code></td><td></td></tr>
* </table>
* @see #BackgroundStyle_android_selectableItemBackground
* @see #BackgroundStyle_selectableItemBackground
*/
public static final int[] BackgroundStyle={
0x0101030e, 0x7f03016e
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#selectableItemBackground}
* attribute's value can be found in the {@link #BackgroundStyle} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:selectableItemBackground
*/
public static final int BackgroundStyle_android_selectableItemBackground=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#selectableItemBackground}
* attribute's value can be found in the {@link #BackgroundStyle} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:selectableItemBackground
*/
public static final int BackgroundStyle_selectableItemBackground=1;
/**
* Attributes that can be used with a BottomNavigationView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #BottomNavigationView_elevation com.example.android.movieapp:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemBackground com.example.android.movieapp:itemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemIconTint com.example.android.movieapp:itemIconTint}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemTextColor com.example.android.movieapp:itemTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_menu com.example.android.movieapp: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={
0x7f03009f, 0x7f0300d7, 0x7f0300d8, 0x7f0300db,
0x7f03012e
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#elevation}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:elevation
*/
public static final int BottomNavigationView_elevation=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#itemBackground}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:itemBackground
*/
public static final int BottomNavigationView_itemBackground=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#itemIconTint}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:itemIconTint
*/
public static final int BottomNavigationView_itemIconTint=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#itemTextColor}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:itemTextColor
*/
public static final int BottomNavigationView_itemTextColor=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#menu}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:menu
*/
public static final int BottomNavigationView_menu=4;
/**
* 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 com.example.android.movieapp:behavior_hideable}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.example.android.movieapp:behavior_peekHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.example.android.movieapp: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={
0x7f03003e, 0x7f030040, 0x7f030041
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#behavior_hideable}
* attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#behavior_peekHeight}
* attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#behavior_skipCollapsed}
* attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:behavior_skipCollapsed
*/
public static final 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 com.example.android.movieapp:allowStacking}</code></td><td></td></tr>
* </table>
* @see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout={
0x7f03002a
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#allowStacking}
* attribute's value can be found in the {@link #ButtonBarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:allowStacking
*/
public static final int ButtonBarLayout_allowStacking=0;
/**
* Attributes that can be used with a CardView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_cardBackgroundColor com.example.android.movieapp:cardBackgroundColor}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_cardCornerRadius com.example.android.movieapp:cardCornerRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_cardElevation com.example.android.movieapp:cardElevation}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_cardMaxElevation com.example.android.movieapp:cardMaxElevation}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_cardPreventCornerOverlap com.example.android.movieapp:cardPreventCornerOverlap}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_cardUseCompatPadding com.example.android.movieapp:cardUseCompatPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_contentPadding com.example.android.movieapp:contentPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_contentPaddingBottom com.example.android.movieapp:contentPaddingBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_contentPaddingLeft com.example.android.movieapp:contentPaddingLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_contentPaddingRight com.example.android.movieapp:contentPaddingRight}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_contentPaddingTop com.example.android.movieapp:contentPaddingTop}</code></td><td></td></tr>
* </table>
* @see #CardView_android_minWidth
* @see #CardView_android_minHeight
* @see #CardView_cardBackgroundColor
* @see #CardView_cardCornerRadius
* @see #CardView_cardElevation
* @see #CardView_cardMaxElevation
* @see #CardView_cardPreventCornerOverlap
* @see #CardView_cardUseCompatPadding
* @see #CardView_contentPadding
* @see #CardView_contentPaddingBottom
* @see #CardView_contentPaddingLeft
* @see #CardView_contentPaddingRight
* @see #CardView_contentPaddingTop
*/
public static final int[] CardView={
0x0101013f, 0x01010140, 0x7f030052, 0x7f030053,
0x7f030054, 0x7f030055, 0x7f030056, 0x7f030057,
0x7f030079, 0x7f03007a, 0x7f03007b, 0x7f03007c,
0x7f03007d
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#minWidth}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minWidth
*/
public static final int CardView_android_minWidth=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#minHeight}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minHeight
*/
public static final int CardView_android_minHeight=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#cardBackgroundColor}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:cardBackgroundColor
*/
public static final int CardView_cardBackgroundColor=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#cardCornerRadius}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:cardCornerRadius
*/
public static final int CardView_cardCornerRadius=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#cardElevation}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:cardElevation
*/
public static final int CardView_cardElevation=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#cardMaxElevation}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:cardMaxElevation
*/
public static final int CardView_cardMaxElevation=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#cardPreventCornerOverlap}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:cardPreventCornerOverlap
*/
public static final int CardView_cardPreventCornerOverlap=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#cardUseCompatPadding}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:cardUseCompatPadding
*/
public static final int CardView_cardUseCompatPadding=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentPadding}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentPadding
*/
public static final int CardView_contentPadding=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentPaddingBottom}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentPaddingBottom
*/
public static final int CardView_contentPaddingBottom=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentPaddingLeft}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentPaddingLeft
*/
public static final int CardView_contentPaddingLeft=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentPaddingRight}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentPaddingRight
*/
public static final int CardView_contentPaddingRight=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentPaddingTop}
* attribute's value can be found in the {@link #CardView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentPaddingTop
*/
public static final int CardView_contentPaddingTop=12;
/**
* Attributes that can be used with a CheckBoxPreference.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CheckBoxPreference_android_summaryOn android:summaryOn}</code></td><td></td></tr>
* <tr><td><code>{@link #CheckBoxPreference_android_summaryOff android:summaryOff}</code></td><td></td></tr>
* <tr><td><code>{@link #CheckBoxPreference_android_disableDependentsState android:disableDependentsState}</code></td><td></td></tr>
* <tr><td><code>{@link #CheckBoxPreference_disableDependentsState com.example.android.movieapp:disableDependentsState}</code></td><td></td></tr>
* <tr><td><code>{@link #CheckBoxPreference_summaryOff com.example.android.movieapp:summaryOff}</code></td><td></td></tr>
* <tr><td><code>{@link #CheckBoxPreference_summaryOn com.example.android.movieapp:summaryOn}</code></td><td></td></tr>
* </table>
* @see #CheckBoxPreference_android_summaryOn
* @see #CheckBoxPreference_android_summaryOff
* @see #CheckBoxPreference_android_disableDependentsState
* @see #CheckBoxPreference_disableDependentsState
* @see #CheckBoxPreference_summaryOff
* @see #CheckBoxPreference_summaryOn
*/
public static final int[] CheckBoxPreference={
0x010101ef, 0x010101f0, 0x010101f1, 0x7f030090,
0x7f03018c, 0x7f03018d
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#summaryOn}
* attribute's value can be found in the {@link #CheckBoxPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:summaryOn
*/
public static final int CheckBoxPreference_android_summaryOn=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#summaryOff}
* attribute's value can be found in the {@link #CheckBoxPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:summaryOff
*/
public static final int CheckBoxPreference_android_summaryOff=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#disableDependentsState}
* attribute's value can be found in the {@link #CheckBoxPreference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:disableDependentsState
*/
public static final int CheckBoxPreference_android_disableDependentsState=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#disableDependentsState}
* attribute's value can be found in the {@link #CheckBoxPreference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:disableDependentsState
*/
public static final int CheckBoxPreference_disableDependentsState=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#summaryOff}
* attribute's value can be found in the {@link #CheckBoxPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:summaryOff
*/
public static final int CheckBoxPreference_summaryOff=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#summaryOn}
* attribute's value can be found in the {@link #CheckBoxPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:summaryOn
*/
public static final int CheckBoxPreference_summaryOn=5;
/**
* Attributes that can be used with a CollapsingToolbarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.example.android.movieapp:collapsedTitleGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.example.android.movieapp:collapsedTitleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.example.android.movieapp:contentScrim}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.example.android.movieapp:expandedTitleGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.example.android.movieapp:expandedTitleMargin}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.example.android.movieapp:expandedTitleMarginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.example.android.movieapp:expandedTitleMarginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.example.android.movieapp:expandedTitleMarginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.example.android.movieapp:expandedTitleMarginTop}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.example.android.movieapp:expandedTitleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.example.android.movieapp:scrimAnimationDuration}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.example.android.movieapp:scrimVisibleHeightTrigger}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.example.android.movieapp:statusBarScrim}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_title com.example.android.movieapp:title}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.example.android.movieapp:titleEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.example.android.movieapp: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={
0x7f030061, 0x7f030062, 0x7f03007e, 0x7f0300a8,
0x7f0300a9, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac,
0x7f0300ad, 0x7f0300ae, 0x7f030165, 0x7f030166,
0x7f030183, 0x7f0301bc, 0x7f0301bd, 0x7f0301c7
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#collapsedTitleGravity}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#collapsedTitleTextAppearance}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentScrim}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#expandedTitleGravity}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#expandedTitleMargin}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#expandedTitleMarginBottom}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#expandedTitleMarginEnd}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#expandedTitleMarginStart}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#expandedTitleMarginTop}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#expandedTitleTextAppearance}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#scrimAnimationDuration}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#scrimVisibleHeightTrigger}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#statusBarScrim}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim=12;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#title}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:title
*/
public static final int CollapsingToolbarLayout_title=13;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#titleEnabled}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled=14;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#toolbarId}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId=15;
/**
* Attributes that can be used with a CollapsingToolbarLayout_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.example.android.movieapp:layout_collapseMode}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.example.android.movieapp:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
* </table>
* @see #CollapsingToolbarLayout_Layout_layout_collapseMode
* @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout={
0x7f0300e3, 0x7f0300e4
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_collapseMode}
* attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>parallax</td><td>2</td><td></td></tr>
* <tr><td>pin</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_collapseParallaxMultiplier}
* attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_collapseParallaxMultiplier
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier=1;
/**
* Attributes that can be used with a ColorStateListItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
* <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
* <tr><td><code>{@link #ColorStateListItem_alpha com.example.android.movieapp:alpha}</code></td><td></td></tr>
* </table>
* @see #ColorStateListItem_android_color
* @see #ColorStateListItem_android_alpha
* @see #ColorStateListItem_alpha
*/
public static final int[] ColorStateListItem={
0x010101a5, 0x0101031f, 0x7f03002b
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#color}
* attribute's value can be found in the {@link #ColorStateListItem} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:color
*/
public static final int ColorStateListItem_android_color=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#alpha}
* attribute's value can be found in the {@link #ColorStateListItem} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:alpha
*/
public static final int ColorStateListItem_android_alpha=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#alpha}
* attribute's value can be found in the {@link #ColorStateListItem} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:alpha
*/
public static final int ColorStateListItem_alpha=2;
/**
* Attributes that can be used with a CompoundButton.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
* <tr><td><code>{@link #CompoundButton_buttonTint com.example.android.movieapp:buttonTint}</code></td><td></td></tr>
* <tr><td><code>{@link #CompoundButton_buttonTintMode com.example.android.movieapp:buttonTintMode}</code></td><td></td></tr>
* </table>
* @see #CompoundButton_android_button
* @see #CompoundButton_buttonTint
* @see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton={
0x01010107, 0x7f030050, 0x7f030051
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#button}
* attribute's value can be found in the {@link #CompoundButton} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:button
*/
public static final int CompoundButton_android_button=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#buttonTint}
* attribute's value can be found in the {@link #CompoundButton} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:buttonTint
*/
public static final int CompoundButton_buttonTint=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.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>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode=2;
/**
* Attributes that can be used with a ConstraintLayout_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_android_orientation android:orientation}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_android_maxHeight android:maxHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_barrierAllowsGoneWidgets com.example.android.movieapp:barrierAllowsGoneWidgets}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_barrierDirection com.example.android.movieapp:barrierDirection}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_chainUseRtl com.example.android.movieapp:chainUseRtl}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_constraintSet com.example.android.movieapp:constraintSet}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_constraint_referenced_ids com.example.android.movieapp:constraint_referenced_ids}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constrainedHeight com.example.android.movieapp:layout_constrainedHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constrainedWidth com.example.android.movieapp:layout_constrainedWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.example.android.movieapp:layout_constraintBaseline_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.example.android.movieapp:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.example.android.movieapp:layout_constraintBottom_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.example.android.movieapp:layout_constraintBottom_toBottomOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.example.android.movieapp:layout_constraintBottom_toTopOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircle com.example.android.movieapp:layout_constraintCircle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircleAngle com.example.android.movieapp:layout_constraintCircleAngle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircleRadius com.example.android.movieapp:layout_constraintCircleRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.example.android.movieapp:layout_constraintDimensionRatio}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.example.android.movieapp:layout_constraintEnd_toEndOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.example.android.movieapp:layout_constraintEnd_toStartOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.example.android.movieapp:layout_constraintGuide_begin}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.example.android.movieapp:layout_constraintGuide_end}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.example.android.movieapp:layout_constraintGuide_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.example.android.movieapp:layout_constraintHeight_default}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.example.android.movieapp:layout_constraintHeight_max}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.example.android.movieapp:layout_constraintHeight_min}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_percent com.example.android.movieapp:layout_constraintHeight_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.example.android.movieapp:layout_constraintHorizontal_bias}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.example.android.movieapp:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.example.android.movieapp:layout_constraintHorizontal_weight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.example.android.movieapp:layout_constraintLeft_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.example.android.movieapp:layout_constraintLeft_toLeftOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.example.android.movieapp:layout_constraintLeft_toRightOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.example.android.movieapp:layout_constraintRight_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.example.android.movieapp:layout_constraintRight_toLeftOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.example.android.movieapp:layout_constraintRight_toRightOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.example.android.movieapp:layout_constraintStart_toEndOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.example.android.movieapp:layout_constraintStart_toStartOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.example.android.movieapp:layout_constraintTop_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.example.android.movieapp:layout_constraintTop_toBottomOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.example.android.movieapp:layout_constraintTop_toTopOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.example.android.movieapp:layout_constraintVertical_bias}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.example.android.movieapp:layout_constraintVertical_chainStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.example.android.movieapp:layout_constraintVertical_weight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.example.android.movieapp:layout_constraintWidth_default}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.example.android.movieapp:layout_constraintWidth_max}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.example.android.movieapp:layout_constraintWidth_min}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_percent com.example.android.movieapp:layout_constraintWidth_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.example.android.movieapp:layout_editor_absoluteX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.example.android.movieapp:layout_editor_absoluteY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.example.android.movieapp:layout_goneMarginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.example.android.movieapp:layout_goneMarginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.example.android.movieapp:layout_goneMarginLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight com.example.android.movieapp:layout_goneMarginRight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart com.example.android.movieapp:layout_goneMarginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop com.example.android.movieapp:layout_goneMarginTop}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel com.example.android.movieapp:layout_optimizationLevel}</code></td><td></td></tr>
* </table>
* @see #ConstraintLayout_Layout_android_orientation
* @see #ConstraintLayout_Layout_android_maxWidth
* @see #ConstraintLayout_Layout_android_maxHeight
* @see #ConstraintLayout_Layout_android_minWidth
* @see #ConstraintLayout_Layout_android_minHeight
* @see #ConstraintLayout_Layout_barrierAllowsGoneWidgets
* @see #ConstraintLayout_Layout_barrierDirection
* @see #ConstraintLayout_Layout_chainUseRtl
* @see #ConstraintLayout_Layout_constraintSet
* @see #ConstraintLayout_Layout_constraint_referenced_ids
* @see #ConstraintLayout_Layout_layout_constrainedHeight
* @see #ConstraintLayout_Layout_layout_constrainedWidth
* @see #ConstraintLayout_Layout_layout_constraintBaseline_creator
* @see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf
* @see #ConstraintLayout_Layout_layout_constraintBottom_creator
* @see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf
* @see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf
* @see #ConstraintLayout_Layout_layout_constraintCircle
* @see #ConstraintLayout_Layout_layout_constraintCircleAngle
* @see #ConstraintLayout_Layout_layout_constraintCircleRadius
* @see #ConstraintLayout_Layout_layout_constraintDimensionRatio
* @see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf
* @see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf
* @see #ConstraintLayout_Layout_layout_constraintGuide_begin
* @see #ConstraintLayout_Layout_layout_constraintGuide_end
* @see #ConstraintLayout_Layout_layout_constraintGuide_percent
* @see #ConstraintLayout_Layout_layout_constraintHeight_default
* @see #ConstraintLayout_Layout_layout_constraintHeight_max
* @see #ConstraintLayout_Layout_layout_constraintHeight_min
* @see #ConstraintLayout_Layout_layout_constraintHeight_percent
* @see #ConstraintLayout_Layout_layout_constraintHorizontal_bias
* @see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle
* @see #ConstraintLayout_Layout_layout_constraintHorizontal_weight
* @see #ConstraintLayout_Layout_layout_constraintLeft_creator
* @see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf
* @see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf
* @see #ConstraintLayout_Layout_layout_constraintRight_creator
* @see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf
* @see #ConstraintLayout_Layout_layout_constraintRight_toRightOf
* @see #ConstraintLayout_Layout_layout_constraintStart_toEndOf
* @see #ConstraintLayout_Layout_layout_constraintStart_toStartOf
* @see #ConstraintLayout_Layout_layout_constraintTop_creator
* @see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf
* @see #ConstraintLayout_Layout_layout_constraintTop_toTopOf
* @see #ConstraintLayout_Layout_layout_constraintVertical_bias
* @see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle
* @see #ConstraintLayout_Layout_layout_constraintVertical_weight
* @see #ConstraintLayout_Layout_layout_constraintWidth_default
* @see #ConstraintLayout_Layout_layout_constraintWidth_max
* @see #ConstraintLayout_Layout_layout_constraintWidth_min
* @see #ConstraintLayout_Layout_layout_constraintWidth_percent
* @see #ConstraintLayout_Layout_layout_editor_absoluteX
* @see #ConstraintLayout_Layout_layout_editor_absoluteY
* @see #ConstraintLayout_Layout_layout_goneMarginBottom
* @see #ConstraintLayout_Layout_layout_goneMarginEnd
* @see #ConstraintLayout_Layout_layout_goneMarginLeft
* @see #ConstraintLayout_Layout_layout_goneMarginRight
* @see #ConstraintLayout_Layout_layout_goneMarginStart
* @see #ConstraintLayout_Layout_layout_goneMarginTop
* @see #ConstraintLayout_Layout_layout_optimizationLevel
*/
public static final int[] ConstraintLayout_Layout={
0x010100c4, 0x0101011f, 0x01010120, 0x0101013f,
0x01010140, 0x7f03003b, 0x7f03003c, 0x7f030059,
0x7f03006f, 0x7f030070, 0x7f0300e5, 0x7f0300e6,
0x7f0300e7, 0x7f0300e8, 0x7f0300e9, 0x7f0300ea,
0x7f0300eb, 0x7f0300ec, 0x7f0300ed, 0x7f0300ee,
0x7f0300ef, 0x7f0300f0, 0x7f0300f1, 0x7f0300f2,
0x7f0300f3, 0x7f0300f4, 0x7f0300f5, 0x7f0300f6,
0x7f0300f7, 0x7f0300f8, 0x7f0300f9, 0x7f0300fa,
0x7f0300fb, 0x7f0300fc, 0x7f0300fd, 0x7f0300fe,
0x7f0300ff, 0x7f030100, 0x7f030101, 0x7f030102,
0x7f030103, 0x7f030104, 0x7f030105, 0x7f030106,
0x7f030107, 0x7f030108, 0x7f030109, 0x7f03010a,
0x7f03010b, 0x7f03010c, 0x7f03010d, 0x7f03010f,
0x7f030110, 0x7f030111, 0x7f030112, 0x7f030113,
0x7f030114, 0x7f030115, 0x7f030116, 0x7f030119
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#orientation}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>horizontal</td><td>0</td><td></td></tr>
* <tr><td>vertical</td><td>1</td><td></td></tr>
* </table>
*
* @attr name android:orientation
*/
public static final int ConstraintLayout_Layout_android_orientation=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int ConstraintLayout_Layout_android_maxWidth=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxHeight}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxHeight
*/
public static final int ConstraintLayout_Layout_android_maxHeight=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#minWidth}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minWidth
*/
public static final int ConstraintLayout_Layout_android_minWidth=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#minHeight}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minHeight
*/
public static final int ConstraintLayout_Layout_android_minHeight=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#barrierAllowsGoneWidgets}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:barrierAllowsGoneWidgets
*/
public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#barrierDirection}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>3</td><td></td></tr>
* <tr><td>end</td><td>6</td><td></td></tr>
* <tr><td>left</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>1</td><td></td></tr>
* <tr><td>start</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>2</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:barrierDirection
*/
public static final int ConstraintLayout_Layout_barrierDirection=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#chainUseRtl}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:chainUseRtl
*/
public static final int ConstraintLayout_Layout_chainUseRtl=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#constraintSet}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:constraintSet
*/
public static final int ConstraintLayout_Layout_constraintSet=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#constraint_referenced_ids}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:constraint_referenced_ids
*/
public static final int ConstraintLayout_Layout_constraint_referenced_ids=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constrainedHeight}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:layout_constrainedHeight
*/
public static final int ConstraintLayout_Layout_layout_constrainedHeight=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constrainedWidth}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:layout_constrainedWidth
*/
public static final int ConstraintLayout_Layout_layout_constrainedWidth=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintBaseline_creator}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintBaseline_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator=12;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintBaseline_toBaselineOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintBaseline_toBaselineOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf=13;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintBottom_creator}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintBottom_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_creator=14;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintBottom_toBottomOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintBottom_toBottomOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf=15;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintBottom_toTopOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintBottom_toTopOf
*/
public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf=16;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintCircle}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:layout_constraintCircle
*/
public static final int ConstraintLayout_Layout_layout_constraintCircle=17;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintCircleAngle}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintCircleAngle
*/
public static final int ConstraintLayout_Layout_layout_constraintCircleAngle=18;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintCircleRadius}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_constraintCircleRadius
*/
public static final int ConstraintLayout_Layout_layout_constraintCircleRadius=19;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintDimensionRatio}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:layout_constraintDimensionRatio
*/
public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio=20;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintEnd_toEndOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintEnd_toEndOf
*/
public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf=21;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintEnd_toStartOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintEnd_toStartOf
*/
public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf=22;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintGuide_begin}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_constraintGuide_begin
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_begin=23;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintGuide_end}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_constraintGuide_end
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_end=24;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintGuide_percent}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintGuide_percent
*/
public static final int ConstraintLayout_Layout_layout_constraintGuide_percent=25;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHeight_default}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintHeight_default
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_default=26;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHeight_max}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintHeight_max
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_max=27;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHeight_min}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintHeight_min
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_min=28;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHeight_percent}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintHeight_percent
*/
public static final int ConstraintLayout_Layout_layout_constraintHeight_percent=29;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHorizontal_bias}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintHorizontal_bias
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias=30;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHorizontal_chainStyle}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintHorizontal_chainStyle
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle=31;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHorizontal_weight}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintHorizontal_weight
*/
public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight=32;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintLeft_creator}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintLeft_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_creator=33;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintLeft_toLeftOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintLeft_toLeftOf
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf=34;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintLeft_toRightOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintLeft_toRightOf
*/
public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf=35;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintRight_creator}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintRight_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_creator=36;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintRight_toLeftOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintRight_toLeftOf
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf=37;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintRight_toRightOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintRight_toRightOf
*/
public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf=38;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintStart_toEndOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintStart_toEndOf
*/
public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf=39;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintStart_toStartOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintStart_toStartOf
*/
public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf=40;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintTop_creator}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintTop_creator
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_creator=41;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintTop_toBottomOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintTop_toBottomOf
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf=42;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintTop_toTopOf}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintTop_toTopOf
*/
public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf=43;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintVertical_bias}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintVertical_bias
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_bias=44;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintVertical_chainStyle}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintVertical_chainStyle
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle=45;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintVertical_weight}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintVertical_weight
*/
public static final int ConstraintLayout_Layout_layout_constraintVertical_weight=46;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintWidth_default}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintWidth_default
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_default=47;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintWidth_max}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintWidth_max
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_max=48;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintWidth_min}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintWidth_min
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_min=49;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintWidth_percent}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintWidth_percent
*/
public static final int ConstraintLayout_Layout_layout_constraintWidth_percent=50;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_editor_absoluteX}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_editor_absoluteX
*/
public static final int ConstraintLayout_Layout_layout_editor_absoluteX=51;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_editor_absoluteY}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_editor_absoluteY
*/
public static final int ConstraintLayout_Layout_layout_editor_absoluteY=52;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginBottom}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginBottom
*/
public static final int ConstraintLayout_Layout_layout_goneMarginBottom=53;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginEnd}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginEnd
*/
public static final int ConstraintLayout_Layout_layout_goneMarginEnd=54;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginLeft}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginLeft
*/
public static final int ConstraintLayout_Layout_layout_goneMarginLeft=55;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginRight}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginRight
*/
public static final int ConstraintLayout_Layout_layout_goneMarginRight=56;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginStart}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginStart
*/
public static final int ConstraintLayout_Layout_layout_goneMarginStart=57;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginTop}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginTop
*/
public static final int ConstraintLayout_Layout_layout_goneMarginTop=58;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_optimizationLevel}
* attribute's value can be found in the {@link #ConstraintLayout_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>barrier</td><td>2</td><td></td></tr>
* <tr><td>chains</td><td>4</td><td></td></tr>
* <tr><td>dimensions</td><td>8</td><td></td></tr>
* <tr><td>direct</td><td>1</td><td>for now only direct & barriers</td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>standard</td><td>3</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_optimizationLevel
*/
public static final int ConstraintLayout_Layout_layout_optimizationLevel=59;
/**
* Attributes that can be used with a ConstraintLayout_placeholder.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ConstraintLayout_placeholder_content com.example.android.movieapp:content}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintLayout_placeholder_emptyVisibility com.example.android.movieapp:emptyVisibility}</code></td><td></td></tr>
* </table>
* @see #ConstraintLayout_placeholder_content
* @see #ConstraintLayout_placeholder_emptyVisibility
*/
public static final int[] ConstraintLayout_placeholder={
0x7f030071, 0x7f0300a0
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#content}
* attribute's value can be found in the {@link #ConstraintLayout_placeholder} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:content
*/
public static final int ConstraintLayout_placeholder_content=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#emptyVisibility}
* attribute's value can be found in the {@link #ConstraintLayout_placeholder} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>gone</td><td>0</td><td></td></tr>
* <tr><td>invisible</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:emptyVisibility
*/
public static final int ConstraintLayout_placeholder_emptyVisibility=1;
/**
* Attributes that can be used with a ConstraintSet.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ConstraintSet_android_orientation android:orientation}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_visibility android:visibility}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_width android:layout_width}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_height android:layout_height}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_alpha android:alpha}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_transformPivotX android:transformPivotX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_transformPivotY android:transformPivotY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_translationX android:translationX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_translationY android:translationY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_scaleX android:scaleX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_scaleY android:scaleY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_rotation android:rotation}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_rotationX android:rotationX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_rotationY android:rotationY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_translationZ android:translationZ}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_android_elevation android:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constrainedHeight com.example.android.movieapp:layout_constrainedHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constrainedWidth com.example.android.movieapp:layout_constrainedWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_creator com.example.android.movieapp:layout_constraintBaseline_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.example.android.movieapp:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator com.example.android.movieapp:layout_constraintBottom_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.example.android.movieapp:layout_constraintBottom_toBottomOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf com.example.android.movieapp:layout_constraintBottom_toTopOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintCircle com.example.android.movieapp:layout_constraintCircle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintCircleAngle com.example.android.movieapp:layout_constraintCircleAngle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintCircleRadius com.example.android.movieapp:layout_constraintCircleRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio com.example.android.movieapp:layout_constraintDimensionRatio}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf com.example.android.movieapp:layout_constraintEnd_toEndOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf com.example.android.movieapp:layout_constraintEnd_toStartOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin com.example.android.movieapp:layout_constraintGuide_begin}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end com.example.android.movieapp:layout_constraintGuide_end}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent com.example.android.movieapp:layout_constraintGuide_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default com.example.android.movieapp:layout_constraintHeight_default}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max com.example.android.movieapp:layout_constraintHeight_max}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min com.example.android.movieapp:layout_constraintHeight_min}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_percent com.example.android.movieapp:layout_constraintHeight_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias com.example.android.movieapp:layout_constraintHorizontal_bias}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.example.android.movieapp:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight com.example.android.movieapp:layout_constraintHorizontal_weight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator com.example.android.movieapp:layout_constraintLeft_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.example.android.movieapp:layout_constraintLeft_toLeftOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf com.example.android.movieapp:layout_constraintLeft_toRightOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator com.example.android.movieapp:layout_constraintRight_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf com.example.android.movieapp:layout_constraintRight_toLeftOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf com.example.android.movieapp:layout_constraintRight_toRightOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf com.example.android.movieapp:layout_constraintStart_toEndOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf com.example.android.movieapp:layout_constraintStart_toStartOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator com.example.android.movieapp:layout_constraintTop_creator}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf com.example.android.movieapp:layout_constraintTop_toBottomOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf com.example.android.movieapp:layout_constraintTop_toTopOf}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias com.example.android.movieapp:layout_constraintVertical_bias}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle com.example.android.movieapp:layout_constraintVertical_chainStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight com.example.android.movieapp:layout_constraintVertical_weight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default com.example.android.movieapp:layout_constraintWidth_default}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max com.example.android.movieapp:layout_constraintWidth_max}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min com.example.android.movieapp:layout_constraintWidth_min}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_percent com.example.android.movieapp:layout_constraintWidth_percent}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX com.example.android.movieapp:layout_editor_absoluteX}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY com.example.android.movieapp:layout_editor_absoluteY}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom com.example.android.movieapp:layout_goneMarginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd com.example.android.movieapp:layout_goneMarginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft com.example.android.movieapp:layout_goneMarginLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginRight com.example.android.movieapp:layout_goneMarginRight}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginStart com.example.android.movieapp:layout_goneMarginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #ConstraintSet_layout_goneMarginTop com.example.android.movieapp:layout_goneMarginTop}</code></td><td></td></tr>
* </table>
* @see #ConstraintSet_android_orientation
* @see #ConstraintSet_android_id
* @see #ConstraintSet_android_visibility
* @see #ConstraintSet_android_layout_width
* @see #ConstraintSet_android_layout_height
* @see #ConstraintSet_android_layout_marginLeft
* @see #ConstraintSet_android_layout_marginTop
* @see #ConstraintSet_android_layout_marginRight
* @see #ConstraintSet_android_layout_marginBottom
* @see #ConstraintSet_android_alpha
* @see #ConstraintSet_android_transformPivotX
* @see #ConstraintSet_android_transformPivotY
* @see #ConstraintSet_android_translationX
* @see #ConstraintSet_android_translationY
* @see #ConstraintSet_android_scaleX
* @see #ConstraintSet_android_scaleY
* @see #ConstraintSet_android_rotation
* @see #ConstraintSet_android_rotationX
* @see #ConstraintSet_android_rotationY
* @see #ConstraintSet_android_layout_marginStart
* @see #ConstraintSet_android_layout_marginEnd
* @see #ConstraintSet_android_translationZ
* @see #ConstraintSet_android_elevation
* @see #ConstraintSet_layout_constrainedHeight
* @see #ConstraintSet_layout_constrainedWidth
* @see #ConstraintSet_layout_constraintBaseline_creator
* @see #ConstraintSet_layout_constraintBaseline_toBaselineOf
* @see #ConstraintSet_layout_constraintBottom_creator
* @see #ConstraintSet_layout_constraintBottom_toBottomOf
* @see #ConstraintSet_layout_constraintBottom_toTopOf
* @see #ConstraintSet_layout_constraintCircle
* @see #ConstraintSet_layout_constraintCircleAngle
* @see #ConstraintSet_layout_constraintCircleRadius
* @see #ConstraintSet_layout_constraintDimensionRatio
* @see #ConstraintSet_layout_constraintEnd_toEndOf
* @see #ConstraintSet_layout_constraintEnd_toStartOf
* @see #ConstraintSet_layout_constraintGuide_begin
* @see #ConstraintSet_layout_constraintGuide_end
* @see #ConstraintSet_layout_constraintGuide_percent
* @see #ConstraintSet_layout_constraintHeight_default
* @see #ConstraintSet_layout_constraintHeight_max
* @see #ConstraintSet_layout_constraintHeight_min
* @see #ConstraintSet_layout_constraintHeight_percent
* @see #ConstraintSet_layout_constraintHorizontal_bias
* @see #ConstraintSet_layout_constraintHorizontal_chainStyle
* @see #ConstraintSet_layout_constraintHorizontal_weight
* @see #ConstraintSet_layout_constraintLeft_creator
* @see #ConstraintSet_layout_constraintLeft_toLeftOf
* @see #ConstraintSet_layout_constraintLeft_toRightOf
* @see #ConstraintSet_layout_constraintRight_creator
* @see #ConstraintSet_layout_constraintRight_toLeftOf
* @see #ConstraintSet_layout_constraintRight_toRightOf
* @see #ConstraintSet_layout_constraintStart_toEndOf
* @see #ConstraintSet_layout_constraintStart_toStartOf
* @see #ConstraintSet_layout_constraintTop_creator
* @see #ConstraintSet_layout_constraintTop_toBottomOf
* @see #ConstraintSet_layout_constraintTop_toTopOf
* @see #ConstraintSet_layout_constraintVertical_bias
* @see #ConstraintSet_layout_constraintVertical_chainStyle
* @see #ConstraintSet_layout_constraintVertical_weight
* @see #ConstraintSet_layout_constraintWidth_default
* @see #ConstraintSet_layout_constraintWidth_max
* @see #ConstraintSet_layout_constraintWidth_min
* @see #ConstraintSet_layout_constraintWidth_percent
* @see #ConstraintSet_layout_editor_absoluteX
* @see #ConstraintSet_layout_editor_absoluteY
* @see #ConstraintSet_layout_goneMarginBottom
* @see #ConstraintSet_layout_goneMarginEnd
* @see #ConstraintSet_layout_goneMarginLeft
* @see #ConstraintSet_layout_goneMarginRight
* @see #ConstraintSet_layout_goneMarginStart
* @see #ConstraintSet_layout_goneMarginTop
*/
public static final int[] ConstraintSet={
0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4,
0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9,
0x010100fa, 0x0101031f, 0x01010320, 0x01010321,
0x01010322, 0x01010323, 0x01010324, 0x01010325,
0x01010326, 0x01010327, 0x01010328, 0x010103b5,
0x010103b6, 0x010103fa, 0x01010440, 0x7f0300e5,
0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f0300e9,
0x7f0300ea, 0x7f0300eb, 0x7f0300ec, 0x7f0300ed,
0x7f0300ee, 0x7f0300ef, 0x7f0300f0, 0x7f0300f1,
0x7f0300f2, 0x7f0300f3, 0x7f0300f4, 0x7f0300f5,
0x7f0300f6, 0x7f0300f7, 0x7f0300f8, 0x7f0300f9,
0x7f0300fa, 0x7f0300fb, 0x7f0300fc, 0x7f0300fd,
0x7f0300fe, 0x7f0300ff, 0x7f030100, 0x7f030101,
0x7f030102, 0x7f030103, 0x7f030104, 0x7f030105,
0x7f030106, 0x7f030107, 0x7f030108, 0x7f030109,
0x7f03010a, 0x7f03010b, 0x7f03010c, 0x7f03010d,
0x7f03010f, 0x7f030110, 0x7f030111, 0x7f030112,
0x7f030113, 0x7f030114, 0x7f030115, 0x7f030116
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#orientation}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>horizontal</td><td>0</td><td></td></tr>
* <tr><td>vertical</td><td>1</td><td></td></tr>
* </table>
*
* @attr name android:orientation
*/
public static final int ConstraintSet_android_orientation=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#id}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:id
*/
public static final int ConstraintSet_android_id=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#visibility}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>gone</td><td>2</td><td></td></tr>
* <tr><td>invisible</td><td>1</td><td></td></tr>
* <tr><td>visible</td><td>0</td><td></td></tr>
* </table>
*
* @attr name android:visibility
*/
public static final int ConstraintSet_android_visibility=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_width}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:layout_width
*/
public static final int ConstraintSet_android_layout_width=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_height}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:layout_height
*/
public static final int ConstraintSet_android_layout_height=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginLeft}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:layout_marginLeft
*/
public static final int ConstraintSet_android_layout_marginLeft=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginTop}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:layout_marginTop
*/
public static final int ConstraintSet_android_layout_marginTop=6;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginRight}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:layout_marginRight
*/
public static final int ConstraintSet_android_layout_marginRight=7;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginBottom}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:layout_marginBottom
*/
public static final int ConstraintSet_android_layout_marginBottom=8;
/**
* <p>This symbol is the offset where the {@link android.R.attr#alpha}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:alpha
*/
public static final int ConstraintSet_android_alpha=9;
/**
* <p>This symbol is the offset where the {@link android.R.attr#transformPivotX}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:transformPivotX
*/
public static final int ConstraintSet_android_transformPivotX=10;
/**
* <p>This symbol is the offset where the {@link android.R.attr#transformPivotY}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:transformPivotY
*/
public static final int ConstraintSet_android_transformPivotY=11;
/**
* <p>This symbol is the offset where the {@link android.R.attr#translationX}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:translationX
*/
public static final int ConstraintSet_android_translationX=12;
/**
* <p>This symbol is the offset where the {@link android.R.attr#translationY}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:translationY
*/
public static final int ConstraintSet_android_translationY=13;
/**
* <p>This symbol is the offset where the {@link android.R.attr#scaleX}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:scaleX
*/
public static final int ConstraintSet_android_scaleX=14;
/**
* <p>This symbol is the offset where the {@link android.R.attr#scaleY}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:scaleY
*/
public static final int ConstraintSet_android_scaleY=15;
/**
* <p>This symbol is the offset where the {@link android.R.attr#rotation}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:rotation
*/
public static final int ConstraintSet_android_rotation=16;
/**
* <p>This symbol is the offset where the {@link android.R.attr#rotationX}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:rotationX
*/
public static final int ConstraintSet_android_rotationX=17;
/**
* <p>This symbol is the offset where the {@link android.R.attr#rotationY}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:rotationY
*/
public static final int ConstraintSet_android_rotationY=18;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginStart}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:layout_marginStart
*/
public static final int ConstraintSet_android_layout_marginStart=19;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_marginEnd}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:layout_marginEnd
*/
public static final int ConstraintSet_android_layout_marginEnd=20;
/**
* <p>This symbol is the offset where the {@link android.R.attr#translationZ}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:translationZ
*/
public static final int ConstraintSet_android_translationZ=21;
/**
* <p>This symbol is the offset where the {@link android.R.attr#elevation}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:elevation
*/
public static final int ConstraintSet_android_elevation=22;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constrainedHeight}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:layout_constrainedHeight
*/
public static final int ConstraintSet_layout_constrainedHeight=23;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constrainedWidth}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:layout_constrainedWidth
*/
public static final int ConstraintSet_layout_constrainedWidth=24;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintBaseline_creator}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintBaseline_creator
*/
public static final int ConstraintSet_layout_constraintBaseline_creator=25;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintBaseline_toBaselineOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintBaseline_toBaselineOf
*/
public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf=26;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintBottom_creator}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintBottom_creator
*/
public static final int ConstraintSet_layout_constraintBottom_creator=27;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintBottom_toBottomOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintBottom_toBottomOf
*/
public static final int ConstraintSet_layout_constraintBottom_toBottomOf=28;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintBottom_toTopOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintBottom_toTopOf
*/
public static final int ConstraintSet_layout_constraintBottom_toTopOf=29;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintCircle}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:layout_constraintCircle
*/
public static final int ConstraintSet_layout_constraintCircle=30;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintCircleAngle}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintCircleAngle
*/
public static final int ConstraintSet_layout_constraintCircleAngle=31;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintCircleRadius}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_constraintCircleRadius
*/
public static final int ConstraintSet_layout_constraintCircleRadius=32;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintDimensionRatio}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:layout_constraintDimensionRatio
*/
public static final int ConstraintSet_layout_constraintDimensionRatio=33;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintEnd_toEndOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintEnd_toEndOf
*/
public static final int ConstraintSet_layout_constraintEnd_toEndOf=34;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintEnd_toStartOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintEnd_toStartOf
*/
public static final int ConstraintSet_layout_constraintEnd_toStartOf=35;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintGuide_begin}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_constraintGuide_begin
*/
public static final int ConstraintSet_layout_constraintGuide_begin=36;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintGuide_end}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_constraintGuide_end
*/
public static final int ConstraintSet_layout_constraintGuide_end=37;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintGuide_percent}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintGuide_percent
*/
public static final int ConstraintSet_layout_constraintGuide_percent=38;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHeight_default}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintHeight_default
*/
public static final int ConstraintSet_layout_constraintHeight_default=39;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHeight_max}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintHeight_max
*/
public static final int ConstraintSet_layout_constraintHeight_max=40;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHeight_min}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintHeight_min
*/
public static final int ConstraintSet_layout_constraintHeight_min=41;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHeight_percent}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintHeight_percent
*/
public static final int ConstraintSet_layout_constraintHeight_percent=42;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHorizontal_bias}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintHorizontal_bias
*/
public static final int ConstraintSet_layout_constraintHorizontal_bias=43;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHorizontal_chainStyle}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintHorizontal_chainStyle
*/
public static final int ConstraintSet_layout_constraintHorizontal_chainStyle=44;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintHorizontal_weight}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintHorizontal_weight
*/
public static final int ConstraintSet_layout_constraintHorizontal_weight=45;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintLeft_creator}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintLeft_creator
*/
public static final int ConstraintSet_layout_constraintLeft_creator=46;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintLeft_toLeftOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintLeft_toLeftOf
*/
public static final int ConstraintSet_layout_constraintLeft_toLeftOf=47;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintLeft_toRightOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintLeft_toRightOf
*/
public static final int ConstraintSet_layout_constraintLeft_toRightOf=48;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintRight_creator}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintRight_creator
*/
public static final int ConstraintSet_layout_constraintRight_creator=49;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintRight_toLeftOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintRight_toLeftOf
*/
public static final int ConstraintSet_layout_constraintRight_toLeftOf=50;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintRight_toRightOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintRight_toRightOf
*/
public static final int ConstraintSet_layout_constraintRight_toRightOf=51;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintStart_toEndOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintStart_toEndOf
*/
public static final int ConstraintSet_layout_constraintStart_toEndOf=52;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintStart_toStartOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintStart_toStartOf
*/
public static final int ConstraintSet_layout_constraintStart_toStartOf=53;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintTop_creator}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_constraintTop_creator
*/
public static final int ConstraintSet_layout_constraintTop_creator=54;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintTop_toBottomOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintTop_toBottomOf
*/
public static final int ConstraintSet_layout_constraintTop_toBottomOf=55;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintTop_toTopOf}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>parent</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintTop_toTopOf
*/
public static final int ConstraintSet_layout_constraintTop_toTopOf=56;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintVertical_bias}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintVertical_bias
*/
public static final int ConstraintSet_layout_constraintVertical_bias=57;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintVertical_chainStyle}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>packed</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>spread_inside</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintVertical_chainStyle
*/
public static final int ConstraintSet_layout_constraintVertical_chainStyle=58;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintVertical_weight}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintVertical_weight
*/
public static final int ConstraintSet_layout_constraintVertical_weight=59;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintWidth_default}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>percent</td><td>2</td><td></td></tr>
* <tr><td>spread</td><td>0</td><td></td></tr>
* <tr><td>wrap</td><td>1</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintWidth_default
*/
public static final int ConstraintSet_layout_constraintWidth_default=60;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintWidth_max}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintWidth_max
*/
public static final int ConstraintSet_layout_constraintWidth_max=61;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintWidth_min}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_constraintWidth_min
*/
public static final int ConstraintSet_layout_constraintWidth_min=62;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_constraintWidth_percent}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:layout_constraintWidth_percent
*/
public static final int ConstraintSet_layout_constraintWidth_percent=63;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_editor_absoluteX}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_editor_absoluteX
*/
public static final int ConstraintSet_layout_editor_absoluteX=64;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_editor_absoluteY}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_editor_absoluteY
*/
public static final int ConstraintSet_layout_editor_absoluteY=65;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginBottom}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginBottom
*/
public static final int ConstraintSet_layout_goneMarginBottom=66;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginEnd}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginEnd
*/
public static final int ConstraintSet_layout_goneMarginEnd=67;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginLeft}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginLeft
*/
public static final int ConstraintSet_layout_goneMarginLeft=68;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginRight}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginRight
*/
public static final int ConstraintSet_layout_goneMarginRight=69;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginStart}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginStart
*/
public static final int ConstraintSet_layout_goneMarginStart=70;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_goneMarginTop}
* attribute's value can be found in the {@link #ConstraintSet} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:layout_goneMarginTop
*/
public static final int ConstraintSet_layout_goneMarginTop=71;
/**
* Attributes that can be used with a CoordinatorLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CoordinatorLayout_keylines com.example.android.movieapp:keylines}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.example.android.movieapp:statusBarBackground}</code></td><td></td></tr>
* </table>
* @see #CoordinatorLayout_keylines
* @see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout={
0x7f0300dd, 0x7f030182
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#keylines}
* attribute's value can be found in the {@link #CoordinatorLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:keylines
*/
public static final int CoordinatorLayout_keylines=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#statusBarBackground}
* attribute's value can be found in the {@link #CoordinatorLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:statusBarBackground
*/
public static final int CoordinatorLayout_statusBarBackground=1;
/**
* Attributes that can be used with a CoordinatorLayout_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.example.android.movieapp:layout_anchor}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.example.android.movieapp:layout_anchorGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.example.android.movieapp:layout_behavior}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.example.android.movieapp:layout_dodgeInsetEdges}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.example.android.movieapp:layout_insetEdge}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.example.android.movieapp: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, 0x7f0300e0, 0x7f0300e1, 0x7f0300e2,
0x7f03010e, 0x7f030117, 0x7f030118
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int CoordinatorLayout_Layout_android_layout_gravity=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_anchor}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.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>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_behavior}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.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>all</td><td>77</td><td></td></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.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>bottom</td><td>50</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout_keyline}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:layout_keyline
*/
public static final int CoordinatorLayout_Layout_layout_keyline=6;
/**
* Attributes that can be used with a DesignTheme.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.example.android.movieapp:bottomSheetDialogTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #DesignTheme_bottomSheetStyle com.example.android.movieapp:bottomSheetStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #DesignTheme_textColorError com.example.android.movieapp:textColorError}</code></td><td></td></tr>
* </table>
* @see #DesignTheme_bottomSheetDialogTheme
* @see #DesignTheme_bottomSheetStyle
* @see #DesignTheme_textColorError
*/
public static final int[] DesignTheme={
0x7f030044, 0x7f030045, 0x7f0301b0
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#bottomSheetDialogTheme}
* attribute's value can be found in the {@link #DesignTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#bottomSheetStyle}
* attribute's value can be found in the {@link #DesignTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.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 a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:textColorError
*/
public static final int DesignTheme_textColorError=2;
/**
* Attributes that can be used with a DialogPreference.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #DialogPreference_android_dialogTitle android:dialogTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #DialogPreference_android_dialogMessage android:dialogMessage}</code></td><td></td></tr>
* <tr><td><code>{@link #DialogPreference_android_dialogIcon android:dialogIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #DialogPreference_android_positiveButtonText android:positiveButtonText}</code></td><td></td></tr>
* <tr><td><code>{@link #DialogPreference_android_negativeButtonText android:negativeButtonText}</code></td><td></td></tr>
* <tr><td><code>{@link #DialogPreference_android_dialogLayout android:dialogLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #DialogPreference_dialogIcon com.example.android.movieapp:dialogIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #DialogPreference_dialogLayout com.example.android.movieapp:dialogLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #DialogPreference_dialogMessage com.example.android.movieapp:dialogMessage}</code></td><td></td></tr>
* <tr><td><code>{@link #DialogPreference_dialogTitle com.example.android.movieapp:dialogTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #DialogPreference_negativeButtonText com.example.android.movieapp:negativeButtonText}</code></td><td></td></tr>
* <tr><td><code>{@link #DialogPreference_positiveButtonText com.example.android.movieapp:positiveButtonText}</code></td><td></td></tr>
* </table>
* @see #DialogPreference_android_dialogTitle
* @see #DialogPreference_android_dialogMessage
* @see #DialogPreference_android_dialogIcon
* @see #DialogPreference_android_positiveButtonText
* @see #DialogPreference_android_negativeButtonText
* @see #DialogPreference_android_dialogLayout
* @see #DialogPreference_dialogIcon
* @see #DialogPreference_dialogLayout
* @see #DialogPreference_dialogMessage
* @see #DialogPreference_dialogTitle
* @see #DialogPreference_negativeButtonText
* @see #DialogPreference_positiveButtonText
*/
public static final int[] DialogPreference={
0x010101f2, 0x010101f3, 0x010101f4, 0x010101f5,
0x010101f6, 0x010101f7, 0x7f030089, 0x7f03008a,
0x7f03008b, 0x7f03008f, 0x7f030134, 0x7f030149
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#dialogTitle}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:dialogTitle
*/
public static final int DialogPreference_android_dialogTitle=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#dialogMessage}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:dialogMessage
*/
public static final int DialogPreference_android_dialogMessage=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#dialogIcon}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:dialogIcon
*/
public static final int DialogPreference_android_dialogIcon=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#positiveButtonText}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:positiveButtonText
*/
public static final int DialogPreference_android_positiveButtonText=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#negativeButtonText}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:negativeButtonText
*/
public static final int DialogPreference_android_negativeButtonText=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#dialogLayout}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:dialogLayout
*/
public static final int DialogPreference_android_dialogLayout=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dialogIcon}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:dialogIcon
*/
public static final int DialogPreference_dialogIcon=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dialogLayout}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:dialogLayout
*/
public static final int DialogPreference_dialogLayout=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dialogMessage}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:dialogMessage
*/
public static final int DialogPreference_dialogMessage=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dialogTitle}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:dialogTitle
*/
public static final int DialogPreference_dialogTitle=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#negativeButtonText}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:negativeButtonText
*/
public static final int DialogPreference_negativeButtonText=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#positiveButtonText}
* attribute's value can be found in the {@link #DialogPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:positiveButtonText
*/
public static final int DialogPreference_positiveButtonText=11;
/**
* Attributes that can be used with a DrawerArrowToggle.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.example.android.movieapp:arrowHeadLength}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.example.android.movieapp:arrowShaftLength}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_barLength com.example.android.movieapp:barLength}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_color com.example.android.movieapp:color}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.example.android.movieapp:drawableSize}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.example.android.movieapp:gapBetweenBars}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_spinBars com.example.android.movieapp:spinBars}</code></td><td></td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_thickness com.example.android.movieapp: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={
0x7f03002d, 0x7f03002e, 0x7f03003a, 0x7f030063,
0x7f030096, 0x7f0300c2, 0x7f030179, 0x7f0301b3
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#arrowHeadLength}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#arrowShaftLength}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#barLength}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:barLength
*/
public static final int DrawerArrowToggle_barLength=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#color}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:color
*/
public static final int DrawerArrowToggle_color=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#drawableSize}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#gapBetweenBars}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#spinBars}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:spinBars
*/
public static final int DrawerArrowToggle_spinBars=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#thickness}
* attribute's value can be found in the {@link #DrawerArrowToggle} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:thickness
*/
public static final int DrawerArrowToggle_thickness=7;
/**
* Attributes that can be used with a FloatingActionButton.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FloatingActionButton_backgroundTint com.example.android.movieapp:backgroundTint}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.example.android.movieapp:backgroundTintMode}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_borderWidth com.example.android.movieapp:borderWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_elevation com.example.android.movieapp:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_fabCustomSize com.example.android.movieapp:fabCustomSize}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_fabSize com.example.android.movieapp:fabSize}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.example.android.movieapp:pressedTranslationZ}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_rippleColor com.example.android.movieapp:rippleColor}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_useCompatPadding com.example.android.movieapp:useCompatPadding}</code></td><td></td></tr>
* </table>
* @see #FloatingActionButton_backgroundTint
* @see #FloatingActionButton_backgroundTintMode
* @see #FloatingActionButton_borderWidth
* @see #FloatingActionButton_elevation
* @see #FloatingActionButton_fabCustomSize
* @see #FloatingActionButton_fabSize
* @see #FloatingActionButton_pressedTranslationZ
* @see #FloatingActionButton_rippleColor
* @see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton={
0x7f030038, 0x7f030039, 0x7f030042, 0x7f03009f,
0x7f0300af, 0x7f0300b0, 0x7f030159, 0x7f030164,
0x7f0301d0
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#backgroundTint}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.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>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#borderWidth}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:borderWidth
*/
public static final int FloatingActionButton_borderWidth=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#elevation}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:elevation
*/
public static final int FloatingActionButton_elevation=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fabCustomSize}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:fabCustomSize
*/
public static final int FloatingActionButton_fabCustomSize=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fabSize}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* <tr><td>mini</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:fabSize
*/
public static final int FloatingActionButton_fabSize=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#pressedTranslationZ}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#rippleColor}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:rippleColor
*/
public static final int FloatingActionButton_rippleColor=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#useCompatPadding}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding=8;
/**
* Attributes that can be used with a FloatingActionButton_Behavior_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.example.android.movieapp:behavior_autoHide}</code></td><td></td></tr>
* </table>
* @see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout={
0x7f03003d
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#behavior_autoHide}
* attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:behavior_autoHide
*/
public static final 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 com.example.android.movieapp:fontProviderAuthority}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderCerts com.example.android.movieapp:fontProviderCerts}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.example.android.movieapp:fontProviderFetchStrategy}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.example.android.movieapp:fontProviderFetchTimeout}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderPackage com.example.android.movieapp:fontProviderPackage}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderQuery com.example.android.movieapp: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={
0x7f0300b8, 0x7f0300b9, 0x7f0300ba, 0x7f0300bb,
0x7f0300bc, 0x7f0300bd
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fontProviderAuthority}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:fontProviderAuthority
*/
public static final int FontFamily_fontProviderAuthority=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fontProviderCerts}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:fontProviderCerts
*/
public static final int FontFamily_fontProviderCerts=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fontProviderFetchStrategy}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>async</td><td>1</td><td></td></tr>
* <tr><td>blocking</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:fontProviderFetchStrategy
*/
public static final int FontFamily_fontProviderFetchStrategy=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fontProviderFetchTimeout}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>May be an integer value, such as "<code>100</code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>forever</td><td>ffffffff</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:fontProviderFetchTimeout
*/
public static final int FontFamily_fontProviderFetchTimeout=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fontProviderPackage}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:fontProviderPackage
*/
public static final int FontFamily_fontProviderPackage=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fontProviderQuery}
* attribute's value can be found in the {@link #FontFamily} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:fontProviderQuery
*/
public static final int FontFamily_fontProviderQuery=5;
/**
* Attributes that can be used with a FontFamilyFont.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_font com.example.android.movieapp:font}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_fontStyle com.example.android.movieapp:fontStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_fontWeight com.example.android.movieapp:fontWeight}</code></td><td></td></tr>
* </table>
* @see #FontFamilyFont_android_font
* @see #FontFamilyFont_android_fontWeight
* @see #FontFamilyFont_android_fontStyle
* @see #FontFamilyFont_font
* @see #FontFamilyFont_fontStyle
* @see #FontFamilyFont_fontWeight
*/
public static final int[] FontFamilyFont={
0x01010532, 0x01010533, 0x0101053f, 0x7f0300b6,
0x7f0300be, 0x7f0300bf
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#font}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:font
*/
public static final int FontFamilyFont_android_font=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fontWeight}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:fontWeight
*/
public static final int FontFamilyFont_android_fontWeight=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fontStyle}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>italic</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name android:fontStyle
*/
public static final int FontFamilyFont_android_fontStyle=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#font}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:font
*/
public static final int FontFamilyFont_font=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fontStyle}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>italic</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:fontStyle
*/
public static final int FontFamilyFont_fontStyle=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fontWeight}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:fontWeight
*/
public static final 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 com.example.android.movieapp: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, 0x7f0300c0
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#foreground}
* attribute's value can be found in the {@link #ForegroundLinearLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:foreground
*/
public static final int ForegroundLinearLayout_android_foreground=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
* attribute's value can be found in the {@link #ForegroundLinearLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:foregroundGravity
*/
public static final int ForegroundLinearLayout_android_foregroundGravity=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#foregroundInsidePadding}
* attribute's value can be found in the {@link #ForegroundLinearLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:foregroundInsidePadding
*/
public static final int ForegroundLinearLayout_foregroundInsidePadding=2;
/**
* Attributes that can be used with a LinearConstraintLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #LinearConstraintLayout_android_orientation android:orientation}</code></td><td></td></tr>
* </table>
* @see #LinearConstraintLayout_android_orientation
*/
public static final int[] LinearConstraintLayout={
0x010100c4
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#orientation}
* attribute's value can be found in the {@link #LinearConstraintLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>horizontal</td><td>0</td><td></td></tr>
* <tr><td>vertical</td><td>1</td><td></td></tr>
* </table>
*
* @attr name android:orientation
*/
public static final int LinearConstraintLayout_android_orientation=0;
/**
* Attributes that can be used with a LinearLayoutCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_divider com.example.android.movieapp:divider}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.example.android.movieapp:dividerPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.example.android.movieapp:measureWithLargestChild}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_showDividers com.example.android.movieapp:showDividers}</code></td><td></td></tr>
* </table>
* @see #LinearLayoutCompat_android_gravity
* @see #LinearLayoutCompat_android_orientation
* @see #LinearLayoutCompat_android_baselineAligned
* @see #LinearLayoutCompat_android_baselineAlignedChildIndex
* @see #LinearLayoutCompat_android_weightSum
* @see #LinearLayoutCompat_divider
* @see #LinearLayoutCompat_dividerPadding
* @see #LinearLayoutCompat_measureWithLargestChild
* @see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat={
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f030092, 0x7f030094, 0x7f03012d,
0x7f030172
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#gravity}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#orientation}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>horizontal</td><td>0</td><td></td></tr>
* <tr><td>vertical</td><td>1</td><td></td></tr>
* </table>
*
* @attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:baselineAlignedChildIndex
*/
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#weightSum}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#divider}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:divider
*/
public static final int LinearLayoutCompat_divider=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dividerPadding}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#measureWithLargestChild}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#showDividers}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>beginning</td><td>1</td><td></td></tr>
* <tr><td>end</td><td>4</td><td></td></tr>
* <tr><td>middle</td><td>2</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:showDividers
*/
public static final int LinearLayoutCompat_showDividers=8;
/**
* Attributes that can be used with a LinearLayoutCompat_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
* </table>
* @see #LinearLayoutCompat_Layout_android_layout_gravity
* @see #LinearLayoutCompat_Layout_android_layout_width
* @see #LinearLayoutCompat_Layout_android_layout_height
* @see #LinearLayoutCompat_Layout_android_layout_weight
*/
public static final int[] LinearLayoutCompat_Layout={
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_width}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_height}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_weight}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight=3;
/**
* Attributes that can be used with a ListPopupWindow.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
* <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
* </table>
* @see #ListPopupWindow_android_dropDownHorizontalOffset
* @see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow={
0x010102ac, 0x010102ad
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
* attribute's value can be found in the {@link #ListPopupWindow} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
* attribute's value can be found in the {@link #ListPopupWindow} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset=1;
/**
* Attributes that can be used with a ListPreference.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ListPreference_android_entries android:entries}</code></td><td></td></tr>
* <tr><td><code>{@link #ListPreference_android_entryValues android:entryValues}</code></td><td></td></tr>
* <tr><td><code>{@link #ListPreference_entries com.example.android.movieapp:entries}</code></td><td></td></tr>
* <tr><td><code>{@link #ListPreference_entryValues com.example.android.movieapp:entryValues}</code></td><td></td></tr>
* </table>
* @see #ListPreference_android_entries
* @see #ListPreference_android_entryValues
* @see #ListPreference_entries
* @see #ListPreference_entryValues
*/
public static final int[] ListPreference={
0x010100b2, 0x010101f8, 0x7f0300a2, 0x7f0300a3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#entries}
* attribute's value can be found in the {@link #ListPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:entries
*/
public static final int ListPreference_android_entries=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#entryValues}
* attribute's value can be found in the {@link #ListPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:entryValues
*/
public static final int ListPreference_android_entryValues=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#entries}
* attribute's value can be found in the {@link #ListPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:entries
*/
public static final int ListPreference_entries=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#entryValues}
* attribute's value can be found in the {@link #ListPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:entryValues
*/
public static final int ListPreference_entryValues=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_enabled android:enabled}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
* </table>
* @see #MenuGroup_android_enabled
* @see #MenuGroup_android_id
* @see #MenuGroup_android_visible
* @see #MenuGroup_android_menuCategory
* @see #MenuGroup_android_orderInCategory
* @see #MenuGroup_android_checkableBehavior
*/
public static final int[] MenuGroup={
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#enabled}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:enabled
*/
public static final int MenuGroup_android_enabled=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#id}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:id
*/
public static final int MenuGroup_android_id=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#visible}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:visible
*/
public static final int MenuGroup_android_visible=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#menuCategory}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>alternative</td><td>40000</td><td></td></tr>
* <tr><td>container</td><td>10000</td><td></td></tr>
* <tr><td>secondary</td><td>30000</td><td></td></tr>
* <tr><td>system</td><td>20000</td><td></td></tr>
* </table>
*
* @attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
* attribute's value can be found in the {@link #MenuGroup} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>all</td><td>1</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>single</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior=5;
/**
* Attributes that can be used with a MenuItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_actionLayout com.example.android.movieapp:actionLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_actionProviderClass com.example.android.movieapp:actionProviderClass}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_actionViewClass com.example.android.movieapp:actionViewClass}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_alphabeticModifiers com.example.android.movieapp:alphabeticModifiers}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_contentDescription com.example.android.movieapp:contentDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_iconTint com.example.android.movieapp:iconTint}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_iconTintMode com.example.android.movieapp:iconTintMode}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_numericModifiers com.example.android.movieapp:numericModifiers}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_showAsAction com.example.android.movieapp:showAsAction}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_tooltipText com.example.android.movieapp:tooltipText}</code></td><td></td></tr>
* </table>
* @see #MenuItem_android_icon
* @see #MenuItem_android_enabled
* @see #MenuItem_android_id
* @see #MenuItem_android_checked
* @see #MenuItem_android_visible
* @see #MenuItem_android_menuCategory
* @see #MenuItem_android_orderInCategory
* @see #MenuItem_android_title
* @see #MenuItem_android_titleCondensed
* @see #MenuItem_android_alphabeticShortcut
* @see #MenuItem_android_numericShortcut
* @see #MenuItem_android_checkable
* @see #MenuItem_android_onClick
* @see #MenuItem_actionLayout
* @see #MenuItem_actionProviderClass
* @see #MenuItem_actionViewClass
* @see #MenuItem_alphabeticModifiers
* @see #MenuItem_contentDescription
* @see #MenuItem_iconTint
* @see #MenuItem_iconTintMode
* @see #MenuItem_numericModifiers
* @see #MenuItem_showAsAction
* @see #MenuItem_tooltipText
*/
public static final int[] MenuItem={
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020,
0x7f03002c, 0x7f030072, 0x7f0300ce, 0x7f0300cf,
0x7f030135, 0x7f030171, 0x7f0301cc
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#icon}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:icon
*/
public static final int MenuItem_android_icon=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#enabled}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:enabled
*/
public static final int MenuItem_android_enabled=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#id}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:id
*/
public static final int MenuItem_android_id=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#checked}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:checked
*/
public static final int MenuItem_android_checked=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#visible}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:visible
*/
public static final int MenuItem_android_visible=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#menuCategory}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>alternative</td><td>40000</td><td></td></tr>
* <tr><td>container</td><td>10000</td><td></td></tr>
* <tr><td>secondary</td><td>30000</td><td></td></tr>
* <tr><td>system</td><td>20000</td><td></td></tr>
* </table>
*
* @attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory=6;
/**
* <p>This symbol is the offset where the {@link android.R.attr#title}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:title
*/
public static final int MenuItem_android_title=7;
/**
* <p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed=8;
/**
* <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut=9;
/**
* <p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut=10;
/**
* <p>This symbol is the offset where the {@link android.R.attr#checkable}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:checkable
*/
public static final int MenuItem_android_checkable=11;
/**
* <p>This symbol is the offset where the {@link android.R.attr#onClick}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:onClick
*/
public static final int MenuItem_android_onClick=12;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionLayout}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:actionLayout
*/
public static final int MenuItem_actionLayout=13;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionProviderClass}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:actionProviderClass
*/
public static final int MenuItem_actionProviderClass=14;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#actionViewClass}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:actionViewClass
*/
public static final int MenuItem_actionViewClass=15;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#alphabeticModifiers}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:alphabeticModifiers
*/
public static final int MenuItem_alphabeticModifiers=16;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentDescription}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:contentDescription
*/
public static final int MenuItem_contentDescription=17;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#iconTint}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:iconTint
*/
public static final int MenuItem_iconTint=18;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#iconTintMode}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:iconTintMode
*/
public static final int MenuItem_iconTintMode=19;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#numericModifiers}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:numericModifiers
*/
public static final int MenuItem_numericModifiers=20;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#showAsAction}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>always</td><td>2</td><td></td></tr>
* <tr><td>collapseActionView</td><td>8</td><td></td></tr>
* <tr><td>ifRoom</td><td>1</td><td></td></tr>
* <tr><td>never</td><td>0</td><td></td></tr>
* <tr><td>withText</td><td>4</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:showAsAction
*/
public static final int MenuItem_showAsAction=21;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tooltipText}
* attribute's value can be found in the {@link #MenuItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:tooltipText
*/
public static final int MenuItem_tooltipText=22;
/**
* Attributes that can be used with a MenuView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_preserveIconSpacing com.example.android.movieapp:preserveIconSpacing}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_subMenuArrow com.example.android.movieapp:subMenuArrow}</code></td><td></td></tr>
* </table>
* @see #MenuView_android_windowAnimationStyle
* @see #MenuView_android_itemTextAppearance
* @see #MenuView_android_horizontalDivider
* @see #MenuView_android_verticalDivider
* @see #MenuView_android_headerBackground
* @see #MenuView_android_itemBackground
* @see #MenuView_android_itemIconDisabledAlpha
* @see #MenuView_preserveIconSpacing
* @see #MenuView_subMenuArrow
*/
public static final int[] MenuView={
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f030158,
0x7f030184
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#headerBackground}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#itemBackground}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preserveIconSpacing}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#subMenuArrow}
* attribute's value can be found in the {@link #MenuView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:subMenuArrow
*/
public static final int MenuView_subMenuArrow=8;
/**
* Attributes that can be used with a MultiSelectListPreference.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MultiSelectListPreference_android_entries android:entries}</code></td><td></td></tr>
* <tr><td><code>{@link #MultiSelectListPreference_android_entryValues android:entryValues}</code></td><td></td></tr>
* <tr><td><code>{@link #MultiSelectListPreference_entries com.example.android.movieapp:entries}</code></td><td></td></tr>
* <tr><td><code>{@link #MultiSelectListPreference_entryValues com.example.android.movieapp:entryValues}</code></td><td></td></tr>
* </table>
* @see #MultiSelectListPreference_android_entries
* @see #MultiSelectListPreference_android_entryValues
* @see #MultiSelectListPreference_entries
* @see #MultiSelectListPreference_entryValues
*/
public static final int[] MultiSelectListPreference={
0x010100b2, 0x010101f8, 0x7f0300a2, 0x7f0300a3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#entries}
* attribute's value can be found in the {@link #MultiSelectListPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:entries
*/
public static final int MultiSelectListPreference_android_entries=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#entryValues}
* attribute's value can be found in the {@link #MultiSelectListPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:entryValues
*/
public static final int MultiSelectListPreference_android_entryValues=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#entries}
* attribute's value can be found in the {@link #MultiSelectListPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:entries
*/
public static final int MultiSelectListPreference_entries=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#entryValues}
* attribute's value can be found in the {@link #MultiSelectListPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:entryValues
*/
public static final int MultiSelectListPreference_entryValues=3;
/**
* Attributes that can be used with a NavigationView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_elevation com.example.android.movieapp:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_headerLayout com.example.android.movieapp:headerLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemBackground com.example.android.movieapp:itemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemIconTint com.example.android.movieapp:itemIconTint}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemTextAppearance com.example.android.movieapp:itemTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemTextColor com.example.android.movieapp:itemTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_menu com.example.android.movieapp: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, 0x7f03009f,
0x7f0300c4, 0x7f0300d7, 0x7f0300d8, 0x7f0300da,
0x7f0300db, 0x7f03012e
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#background}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:background
*/
public static final int NavigationView_android_background=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:fitsSystemWindows
*/
public static final int NavigationView_android_fitsSystemWindows=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int NavigationView_android_maxWidth=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#elevation}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:elevation
*/
public static final int NavigationView_elevation=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#headerLayout}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:headerLayout
*/
public static final int NavigationView_headerLayout=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#itemBackground}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:itemBackground
*/
public static final int NavigationView_itemBackground=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#itemIconTint}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:itemIconTint
*/
public static final int NavigationView_itemIconTint=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#itemTextAppearance}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#itemTextColor}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:itemTextColor
*/
public static final int NavigationView_itemTextColor=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#menu}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:menu
*/
public static final int NavigationView_menu=9;
/**
* Attributes that can be used with a PopupWindow.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PopupWindow_overlapAnchor com.example.android.movieapp:overlapAnchor}</code></td><td></td></tr>
* </table>
* @see #PopupWindow_android_popupBackground
* @see #PopupWindow_android_popupAnimationStyle
* @see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow={
0x01010176, 0x010102c9, 0x7f030138
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#popupBackground}
* attribute's value can be found in the {@link #PopupWindow} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
* attribute's value can be found in the {@link #PopupWindow} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#overlapAnchor}
* attribute's value can be found in the {@link #PopupWindow} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor=2;
/**
* Attributes that can be used with a PopupWindowBackgroundState.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.example.android.movieapp:state_above_anchor}</code></td><td></td></tr>
* </table>
* @see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState={
0x7f03017f
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#state_above_anchor}
* attribute's value can be found in the {@link #PopupWindowBackgroundState} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor=0;
/**
* Attributes that can be used with a Preference.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Preference_android_icon android:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_persistent android:persistent}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_enabled android:enabled}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_title android:title}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_selectable android:selectable}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_key android:key}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_summary android:summary}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_order android:order}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_widgetLayout android:widgetLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_dependency android:dependency}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_defaultValue android:defaultValue}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_shouldDisableView android:shouldDisableView}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_fragment android:fragment}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_singleLineTitle android:singleLineTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_android_iconSpaceReserved android:iconSpaceReserved}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_allowDividerAbove com.example.android.movieapp:allowDividerAbove}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_allowDividerBelow com.example.android.movieapp:allowDividerBelow}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_defaultValue com.example.android.movieapp:defaultValue}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_dependency com.example.android.movieapp:dependency}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_enabled com.example.android.movieapp:enabled}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_fragment com.example.android.movieapp:fragment}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_icon com.example.android.movieapp:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_iconSpaceReserved com.example.android.movieapp:iconSpaceReserved}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_key com.example.android.movieapp:key}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_layout com.example.android.movieapp:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_order com.example.android.movieapp:order}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_persistent com.example.android.movieapp:persistent}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_selectable com.example.android.movieapp:selectable}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_shouldDisableView com.example.android.movieapp:shouldDisableView}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_singleLineTitle com.example.android.movieapp:singleLineTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_summary com.example.android.movieapp:summary}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_title com.example.android.movieapp:title}</code></td><td></td></tr>
* <tr><td><code>{@link #Preference_widgetLayout com.example.android.movieapp:widgetLayout}</code></td><td></td></tr>
* </table>
* @see #Preference_android_icon
* @see #Preference_android_persistent
* @see #Preference_android_enabled
* @see #Preference_android_layout
* @see #Preference_android_title
* @see #Preference_android_selectable
* @see #Preference_android_key
* @see #Preference_android_summary
* @see #Preference_android_order
* @see #Preference_android_widgetLayout
* @see #Preference_android_dependency
* @see #Preference_android_defaultValue
* @see #Preference_android_shouldDisableView
* @see #Preference_android_fragment
* @see #Preference_android_singleLineTitle
* @see #Preference_android_iconSpaceReserved
* @see #Preference_allowDividerAbove
* @see #Preference_allowDividerBelow
* @see #Preference_defaultValue
* @see #Preference_dependency
* @see #Preference_enabled
* @see #Preference_fragment
* @see #Preference_icon
* @see #Preference_iconSpaceReserved
* @see #Preference_key
* @see #Preference_layout
* @see #Preference_order
* @see #Preference_persistent
* @see #Preference_selectable
* @see #Preference_shouldDisableView
* @see #Preference_singleLineTitle
* @see #Preference_summary
* @see #Preference_title
* @see #Preference_widgetLayout
*/
public static final int[] Preference={
0x01010002, 0x0101000d, 0x0101000e, 0x010100f2,
0x010101e1, 0x010101e6, 0x010101e8, 0x010101e9,
0x010101ea, 0x010101eb, 0x010101ec, 0x010101ed,
0x010101ee, 0x010102e3, 0x0101055c, 0x01010561,
0x7f030027, 0x7f030029, 0x7f030087, 0x7f030088,
0x7f0300a1, 0x7f0300c1, 0x7f0300cc, 0x7f0300cd,
0x7f0300dc, 0x7f0300de, 0x7f030136, 0x7f030145,
0x7f03016d, 0x7f030170, 0x7f030177, 0x7f03018b,
0x7f0301bc, 0x7f0301d3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#icon}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:icon
*/
public static final int Preference_android_icon=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#persistent}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:persistent
*/
public static final int Preference_android_persistent=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#enabled}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:enabled
*/
public static final int Preference_android_enabled=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int Preference_android_layout=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#title}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:title
*/
public static final int Preference_android_title=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#selectable}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:selectable
*/
public static final int Preference_android_selectable=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#key}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:key
*/
public static final int Preference_android_key=6;
/**
* <p>This symbol is the offset where the {@link android.R.attr#summary}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:summary
*/
public static final int Preference_android_summary=7;
/**
* <p>This symbol is the offset where the {@link android.R.attr#order}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:order
*/
public static final int Preference_android_order=8;
/**
* <p>This symbol is the offset where the {@link android.R.attr#widgetLayout}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:widgetLayout
*/
public static final int Preference_android_widgetLayout=9;
/**
* <p>This symbol is the offset where the {@link android.R.attr#dependency}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:dependency
*/
public static final int Preference_android_dependency=10;
/**
* <p>This symbol is the offset where the {@link android.R.attr#defaultValue}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
* <p>May be an integer value, such as "<code>100</code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:defaultValue
*/
public static final int Preference_android_defaultValue=11;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shouldDisableView}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:shouldDisableView
*/
public static final int Preference_android_shouldDisableView=12;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fragment}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:fragment
*/
public static final int Preference_android_fragment=13;
/**
* <p>This symbol is the offset where the {@link android.R.attr#singleLineTitle}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:singleLineTitle
*/
public static final int Preference_android_singleLineTitle=14;
/**
* <p>This symbol is the offset where the {@link android.R.attr#iconSpaceReserved}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:iconSpaceReserved
*/
public static final int Preference_android_iconSpaceReserved=15;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#allowDividerAbove}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:allowDividerAbove
*/
public static final int Preference_allowDividerAbove=16;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#allowDividerBelow}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:allowDividerBelow
*/
public static final int Preference_allowDividerBelow=17;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#defaultValue}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
* <p>May be an integer value, such as "<code>100</code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name com.example.android.movieapp:defaultValue
*/
public static final int Preference_defaultValue=18;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dependency}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:dependency
*/
public static final int Preference_dependency=19;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#enabled}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:enabled
*/
public static final int Preference_enabled=20;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fragment}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:fragment
*/
public static final int Preference_fragment=21;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#icon}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:icon
*/
public static final int Preference_icon=22;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#iconSpaceReserved}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:iconSpaceReserved
*/
public static final int Preference_iconSpaceReserved=23;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#key}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:key
*/
public static final int Preference_key=24;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:layout
*/
public static final int Preference_layout=25;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#order}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:order
*/
public static final int Preference_order=26;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#persistent}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:persistent
*/
public static final int Preference_persistent=27;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#selectable}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:selectable
*/
public static final int Preference_selectable=28;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#shouldDisableView}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:shouldDisableView
*/
public static final int Preference_shouldDisableView=29;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#singleLineTitle}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:singleLineTitle
*/
public static final int Preference_singleLineTitle=30;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#summary}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:summary
*/
public static final int Preference_summary=31;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#title}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:title
*/
public static final int Preference_title=32;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#widgetLayout}
* attribute's value can be found in the {@link #Preference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:widgetLayout
*/
public static final int Preference_widgetLayout=33;
/**
* Attributes that can be used with a PreferenceFragment.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PreferenceFragment_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceFragment_android_divider android:divider}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceFragment_android_dividerHeight android:dividerHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceFragment_allowDividerAfterLastItem com.example.android.movieapp:allowDividerAfterLastItem}</code></td><td></td></tr>
* </table>
* @see #PreferenceFragment_android_layout
* @see #PreferenceFragment_android_divider
* @see #PreferenceFragment_android_dividerHeight
* @see #PreferenceFragment_allowDividerAfterLastItem
*/
public static final int[] PreferenceFragment={
0x010100f2, 0x01010129, 0x0101012a, 0x7f030028
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #PreferenceFragment} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int PreferenceFragment_android_layout=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#divider}
* attribute's value can be found in the {@link #PreferenceFragment} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:divider
*/
public static final int PreferenceFragment_android_divider=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#dividerHeight}
* attribute's value can be found in the {@link #PreferenceFragment} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:dividerHeight
*/
public static final int PreferenceFragment_android_dividerHeight=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#allowDividerAfterLastItem}
* attribute's value can be found in the {@link #PreferenceFragment} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:allowDividerAfterLastItem
*/
public static final int PreferenceFragment_allowDividerAfterLastItem=3;
/**
* Attributes that can be used with a PreferenceFragmentCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PreferenceFragmentCompat_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceFragmentCompat_android_divider android:divider}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceFragmentCompat_android_dividerHeight android:dividerHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceFragmentCompat_allowDividerAfterLastItem com.example.android.movieapp:allowDividerAfterLastItem}</code></td><td></td></tr>
* </table>
* @see #PreferenceFragmentCompat_android_layout
* @see #PreferenceFragmentCompat_android_divider
* @see #PreferenceFragmentCompat_android_dividerHeight
* @see #PreferenceFragmentCompat_allowDividerAfterLastItem
*/
public static final int[] PreferenceFragmentCompat={
0x010100f2, 0x01010129, 0x0101012a, 0x7f030028
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #PreferenceFragmentCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int PreferenceFragmentCompat_android_layout=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#divider}
* attribute's value can be found in the {@link #PreferenceFragmentCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:divider
*/
public static final int PreferenceFragmentCompat_android_divider=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#dividerHeight}
* attribute's value can be found in the {@link #PreferenceFragmentCompat} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:dividerHeight
*/
public static final int PreferenceFragmentCompat_android_dividerHeight=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#allowDividerAfterLastItem}
* attribute's value can be found in the {@link #PreferenceFragmentCompat} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:allowDividerAfterLastItem
*/
public static final int PreferenceFragmentCompat_allowDividerAfterLastItem=3;
/**
* Attributes that can be used with a PreferenceGroup.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PreferenceGroup_android_orderingFromXml android:orderingFromXml}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceGroup_initialExpandedChildrenCount com.example.android.movieapp:initialExpandedChildrenCount}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceGroup_orderingFromXml com.example.android.movieapp:orderingFromXml}</code></td><td></td></tr>
* </table>
* @see #PreferenceGroup_android_orderingFromXml
* @see #PreferenceGroup_initialExpandedChildrenCount
* @see #PreferenceGroup_orderingFromXml
*/
public static final int[] PreferenceGroup={
0x010101e7, 0x7f0300d4, 0x7f030137
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#orderingFromXml}
* attribute's value can be found in the {@link #PreferenceGroup} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:orderingFromXml
*/
public static final int PreferenceGroup_android_orderingFromXml=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#initialExpandedChildrenCount}
* attribute's value can be found in the {@link #PreferenceGroup} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:initialExpandedChildrenCount
*/
public static final int PreferenceGroup_initialExpandedChildrenCount=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#orderingFromXml}
* attribute's value can be found in the {@link #PreferenceGroup} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:orderingFromXml
*/
public static final int PreferenceGroup_orderingFromXml=2;
/**
* Attributes that can be used with a PreferenceImageView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PreferenceImageView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceImageView_android_maxHeight android:maxHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceImageView_maxHeight com.example.android.movieapp:maxHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceImageView_maxWidth com.example.android.movieapp:maxWidth}</code></td><td></td></tr>
* </table>
* @see #PreferenceImageView_android_maxWidth
* @see #PreferenceImageView_android_maxHeight
* @see #PreferenceImageView_maxHeight
* @see #PreferenceImageView_maxWidth
*/
public static final int[] PreferenceImageView={
0x0101011f, 0x01010120, 0x7f03012b, 0x7f03012c
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #PreferenceImageView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int PreferenceImageView_android_maxWidth=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxHeight}
* attribute's value can be found in the {@link #PreferenceImageView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxHeight
*/
public static final int PreferenceImageView_android_maxHeight=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#maxHeight}
* attribute's value can be found in the {@link #PreferenceImageView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:maxHeight
*/
public static final int PreferenceImageView_maxHeight=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#maxWidth}
* attribute's value can be found in the {@link #PreferenceImageView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:maxWidth
*/
public static final int PreferenceImageView_maxWidth=3;
/**
* Attributes that can be used with a PreferenceTheme.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PreferenceTheme_checkBoxPreferenceStyle com.example.android.movieapp:checkBoxPreferenceStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_dialogPreferenceStyle com.example.android.movieapp:dialogPreferenceStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_dropdownPreferenceStyle com.example.android.movieapp:dropdownPreferenceStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_editTextPreferenceStyle com.example.android.movieapp:editTextPreferenceStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceActivityStyle com.example.android.movieapp:preferenceActivityStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceCategoryStyle com.example.android.movieapp:preferenceCategoryStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceFragmentCompatStyle com.example.android.movieapp:preferenceFragmentCompatStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceFragmentListStyle com.example.android.movieapp:preferenceFragmentListStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceFragmentPaddingSide com.example.android.movieapp:preferenceFragmentPaddingSide}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceFragmentStyle com.example.android.movieapp:preferenceFragmentStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceHeaderPanelStyle com.example.android.movieapp:preferenceHeaderPanelStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceInformationStyle com.example.android.movieapp:preferenceInformationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceLayoutChild com.example.android.movieapp:preferenceLayoutChild}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceListStyle com.example.android.movieapp:preferenceListStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferencePanelStyle com.example.android.movieapp:preferencePanelStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceScreenStyle com.example.android.movieapp:preferenceScreenStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceStyle com.example.android.movieapp:preferenceStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_preferenceTheme com.example.android.movieapp:preferenceTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_ringtonePreferenceStyle com.example.android.movieapp:ringtonePreferenceStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_seekBarPreferenceStyle com.example.android.movieapp:seekBarPreferenceStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_switchPreferenceCompatStyle com.example.android.movieapp:switchPreferenceCompatStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_switchPreferenceStyle com.example.android.movieapp:switchPreferenceStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PreferenceTheme_yesNoPreferenceStyle com.example.android.movieapp:yesNoPreferenceStyle}</code></td><td></td></tr>
* </table>
* @see #PreferenceTheme_checkBoxPreferenceStyle
* @see #PreferenceTheme_dialogPreferenceStyle
* @see #PreferenceTheme_dropdownPreferenceStyle
* @see #PreferenceTheme_editTextPreferenceStyle
* @see #PreferenceTheme_preferenceActivityStyle
* @see #PreferenceTheme_preferenceCategoryStyle
* @see #PreferenceTheme_preferenceFragmentCompatStyle
* @see #PreferenceTheme_preferenceFragmentListStyle
* @see #PreferenceTheme_preferenceFragmentPaddingSide
* @see #PreferenceTheme_preferenceFragmentStyle
* @see #PreferenceTheme_preferenceHeaderPanelStyle
* @see #PreferenceTheme_preferenceInformationStyle
* @see #PreferenceTheme_preferenceLayoutChild
* @see #PreferenceTheme_preferenceListStyle
* @see #PreferenceTheme_preferencePanelStyle
* @see #PreferenceTheme_preferenceScreenStyle
* @see #PreferenceTheme_preferenceStyle
* @see #PreferenceTheme_preferenceTheme
* @see #PreferenceTheme_ringtonePreferenceStyle
* @see #PreferenceTheme_seekBarPreferenceStyle
* @see #PreferenceTheme_switchPreferenceCompatStyle
* @see #PreferenceTheme_switchPreferenceStyle
* @see #PreferenceTheme_yesNoPreferenceStyle
*/
public static final int[] PreferenceTheme={
0x7f03005a, 0x7f03008c, 0x7f03009a, 0x7f03009d,
0x7f03014a, 0x7f03014b, 0x7f03014c, 0x7f03014d,
0x7f03014e, 0x7f03014f, 0x7f030150, 0x7f030151,
0x7f030152, 0x7f030153, 0x7f030154, 0x7f030155,
0x7f030156, 0x7f030157, 0x7f030163, 0x7f03016b,
0x7f030190, 0x7f030191, 0x7f0301de
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#checkBoxPreferenceStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:checkBoxPreferenceStyle
*/
public static final int PreferenceTheme_checkBoxPreferenceStyle=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dialogPreferenceStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:dialogPreferenceStyle
*/
public static final int PreferenceTheme_dialogPreferenceStyle=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#dropdownPreferenceStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:dropdownPreferenceStyle
*/
public static final int PreferenceTheme_dropdownPreferenceStyle=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#editTextPreferenceStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:editTextPreferenceStyle
*/
public static final int PreferenceTheme_editTextPreferenceStyle=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceActivityStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceActivityStyle
*/
public static final int PreferenceTheme_preferenceActivityStyle=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceCategoryStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceCategoryStyle
*/
public static final int PreferenceTheme_preferenceCategoryStyle=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceFragmentCompatStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceFragmentCompatStyle
*/
public static final int PreferenceTheme_preferenceFragmentCompatStyle=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceFragmentListStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceFragmentListStyle
*/
public static final int PreferenceTheme_preferenceFragmentListStyle=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceFragmentPaddingSide}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:preferenceFragmentPaddingSide
*/
public static final int PreferenceTheme_preferenceFragmentPaddingSide=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceFragmentStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceFragmentStyle
*/
public static final int PreferenceTheme_preferenceFragmentStyle=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceHeaderPanelStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceHeaderPanelStyle
*/
public static final int PreferenceTheme_preferenceHeaderPanelStyle=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceInformationStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceInformationStyle
*/
public static final int PreferenceTheme_preferenceInformationStyle=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceLayoutChild}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceLayoutChild
*/
public static final int PreferenceTheme_preferenceLayoutChild=12;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceListStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceListStyle
*/
public static final int PreferenceTheme_preferenceListStyle=13;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferencePanelStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferencePanelStyle
*/
public static final int PreferenceTheme_preferencePanelStyle=14;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceScreenStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceScreenStyle
*/
public static final int PreferenceTheme_preferenceScreenStyle=15;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceStyle
*/
public static final int PreferenceTheme_preferenceStyle=16;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#preferenceTheme}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:preferenceTheme
*/
public static final int PreferenceTheme_preferenceTheme=17;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#ringtonePreferenceStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:ringtonePreferenceStyle
*/
public static final int PreferenceTheme_ringtonePreferenceStyle=18;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#seekBarPreferenceStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:seekBarPreferenceStyle
*/
public static final int PreferenceTheme_seekBarPreferenceStyle=19;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#switchPreferenceCompatStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:switchPreferenceCompatStyle
*/
public static final int PreferenceTheme_switchPreferenceCompatStyle=20;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#switchPreferenceStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:switchPreferenceStyle
*/
public static final int PreferenceTheme_switchPreferenceStyle=21;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#yesNoPreferenceStyle}
* attribute's value can be found in the {@link #PreferenceTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:yesNoPreferenceStyle
*/
public static final int PreferenceTheme_yesNoPreferenceStyle=22;
/**
* Attributes that can be used with a RecycleListView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons com.example.android.movieapp:paddingBottomNoButtons}</code></td><td></td></tr>
* <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.example.android.movieapp:paddingTopNoTitle}</code></td><td></td></tr>
* </table>
* @see #RecycleListView_paddingBottomNoButtons
* @see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView={
0x7f030139, 0x7f03013c
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#paddingBottomNoButtons}
* attribute's value can be found in the {@link #RecycleListView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#paddingTopNoTitle}
* attribute's value can be found in the {@link #RecycleListView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle=1;
/**
* Attributes that can be used with a RecyclerView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_fastScrollEnabled com.example.android.movieapp:fastScrollEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.example.android.movieapp:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.example.android.movieapp:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.example.android.movieapp:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.example.android.movieapp:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_layoutManager com.example.android.movieapp:layoutManager}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_reverseLayout com.example.android.movieapp:reverseLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_spanCount com.example.android.movieapp:spanCount}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_stackFromEnd com.example.android.movieapp:stackFromEnd}</code></td><td></td></tr>
* </table>
* @see #RecyclerView_android_orientation
* @see #RecyclerView_android_descendantFocusability
* @see #RecyclerView_fastScrollEnabled
* @see #RecyclerView_fastScrollHorizontalThumbDrawable
* @see #RecyclerView_fastScrollHorizontalTrackDrawable
* @see #RecyclerView_fastScrollVerticalThumbDrawable
* @see #RecyclerView_fastScrollVerticalTrackDrawable
* @see #RecyclerView_layoutManager
* @see #RecyclerView_reverseLayout
* @see #RecyclerView_spanCount
* @see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView={
0x010100c4, 0x010100f1, 0x7f0300b1, 0x7f0300b2,
0x7f0300b3, 0x7f0300b4, 0x7f0300b5, 0x7f0300df,
0x7f030162, 0x7f030178, 0x7f03017e
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#orientation}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>horizontal</td><td>0</td><td></td></tr>
* <tr><td>vertical</td><td>1</td><td></td></tr>
* </table>
*
* @attr name android:orientation
*/
public static final int RecyclerView_android_orientation=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>afterDescendants</td><td>1</td><td></td></tr>
* <tr><td>beforeDescendants</td><td>0</td><td></td></tr>
* <tr><td>blocksDescendants</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fastScrollEnabled}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:fastScrollEnabled
*/
public static final int RecyclerView_fastScrollEnabled=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fastScrollHorizontalThumbDrawable}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:fastScrollHorizontalThumbDrawable
*/
public static final int RecyclerView_fastScrollHorizontalThumbDrawable=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fastScrollHorizontalTrackDrawable}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:fastScrollHorizontalTrackDrawable
*/
public static final int RecyclerView_fastScrollHorizontalTrackDrawable=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fastScrollVerticalThumbDrawable}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:fastScrollVerticalThumbDrawable
*/
public static final int RecyclerView_fastScrollVerticalThumbDrawable=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fastScrollVerticalTrackDrawable}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:fastScrollVerticalTrackDrawable
*/
public static final int RecyclerView_fastScrollVerticalTrackDrawable=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layoutManager}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:layoutManager
*/
public static final int RecyclerView_layoutManager=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#reverseLayout}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:reverseLayout
*/
public static final int RecyclerView_reverseLayout=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#spanCount}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:spanCount
*/
public static final int RecyclerView_spanCount=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#stackFromEnd}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd=10;
/**
* Attributes that can be used with a ScrimInsetsFrameLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.example.android.movieapp:insetForeground}</code></td><td></td></tr>
* </table>
* @see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout={
0x7f0300d5
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#insetForeground}
* attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground=0;
/**
* Attributes that can be used with a ScrollingViewBehavior_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.example.android.movieapp:behavior_overlapTop}</code></td><td></td></tr>
* </table>
* @see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout={
0x7f03003f
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#behavior_overlapTop}
* attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Layout_behavior_overlapTop=0;
/**
* Attributes that can be used with a SearchView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_closeIcon com.example.android.movieapp:closeIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_commitIcon com.example.android.movieapp:commitIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_defaultQueryHint com.example.android.movieapp:defaultQueryHint}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_goIcon com.example.android.movieapp:goIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_iconifiedByDefault com.example.android.movieapp:iconifiedByDefault}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_layout com.example.android.movieapp:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_queryBackground com.example.android.movieapp:queryBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_queryHint com.example.android.movieapp:queryHint}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_searchHintIcon com.example.android.movieapp:searchHintIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_searchIcon com.example.android.movieapp:searchIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_submitBackground com.example.android.movieapp:submitBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_suggestionRowLayout com.example.android.movieapp:suggestionRowLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_voiceIcon com.example.android.movieapp:voiceIcon}</code></td><td></td></tr>
* </table>
* @see #SearchView_android_focusable
* @see #SearchView_android_maxWidth
* @see #SearchView_android_inputType
* @see #SearchView_android_imeOptions
* @see #SearchView_closeIcon
* @see #SearchView_commitIcon
* @see #SearchView_defaultQueryHint
* @see #SearchView_goIcon
* @see #SearchView_iconifiedByDefault
* @see #SearchView_layout
* @see #SearchView_queryBackground
* @see #SearchView_queryHint
* @see #SearchView_searchHintIcon
* @see #SearchView_searchIcon
* @see #SearchView_submitBackground
* @see #SearchView_suggestionRowLayout
* @see #SearchView_voiceIcon
*/
public static final int[] SearchView={
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f03005d, 0x7f03006e, 0x7f030086, 0x7f0300c3,
0x7f0300d0, 0x7f0300de, 0x7f03015c, 0x7f03015d,
0x7f030167, 0x7f030168, 0x7f030185, 0x7f03018a,
0x7f0301d2
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#focusable}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>10</td><td></td></tr>
* </table>
*
* @attr name android:focusable
*/
public static final int SearchView_android_focusable=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#inputType}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>date</td><td>14</td><td></td></tr>
* <tr><td>datetime</td><td>4</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>number</td><td>2</td><td></td></tr>
* <tr><td>numberDecimal</td><td>2002</td><td></td></tr>
* <tr><td>numberPassword</td><td>12</td><td></td></tr>
* <tr><td>numberSigned</td><td>1002</td><td></td></tr>
* <tr><td>phone</td><td>3</td><td></td></tr>
* <tr><td>text</td><td>1</td><td></td></tr>
* <tr><td>textAutoComplete</td><td>10001</td><td></td></tr>
* <tr><td>textAutoCorrect</td><td>8001</td><td></td></tr>
* <tr><td>textCapCharacters</td><td>1001</td><td></td></tr>
* <tr><td>textCapSentences</td><td>4001</td><td></td></tr>
* <tr><td>textCapWords</td><td>2001</td><td></td></tr>
* <tr><td>textEmailAddress</td><td>21</td><td></td></tr>
* <tr><td>textEmailSubject</td><td>31</td><td></td></tr>
* <tr><td>textFilter</td><td>b1</td><td></td></tr>
* <tr><td>textImeMultiLine</td><td>40001</td><td></td></tr>
* <tr><td>textLongMessage</td><td>51</td><td></td></tr>
* <tr><td>textMultiLine</td><td>20001</td><td></td></tr>
* <tr><td>textNoSuggestions</td><td>80001</td><td></td></tr>
* <tr><td>textPassword</td><td>81</td><td></td></tr>
* <tr><td>textPersonName</td><td>61</td><td></td></tr>
* <tr><td>textPhonetic</td><td>c1</td><td></td></tr>
* <tr><td>textPostalAddress</td><td>71</td><td></td></tr>
* <tr><td>textShortMessage</td><td>41</td><td></td></tr>
* <tr><td>textUri</td><td>11</td><td></td></tr>
* <tr><td>textVisiblePassword</td><td>91</td><td></td></tr>
* <tr><td>textWebEditText</td><td>a1</td><td></td></tr>
* <tr><td>textWebEmailAddress</td><td>d1</td><td></td></tr>
* <tr><td>textWebPassword</td><td>e1</td><td></td></tr>
* <tr><td>time</td><td>24</td><td></td></tr>
* </table>
*
* @attr name android:inputType
*/
public static final int SearchView_android_inputType=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#imeOptions}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>actionDone</td><td>6</td><td></td></tr>
* <tr><td>actionGo</td><td>2</td><td></td></tr>
* <tr><td>actionNext</td><td>5</td><td></td></tr>
* <tr><td>actionNone</td><td>1</td><td></td></tr>
* <tr><td>actionPrevious</td><td>7</td><td></td></tr>
* <tr><td>actionSearch</td><td>3</td><td></td></tr>
* <tr><td>actionSend</td><td>4</td><td></td></tr>
* <tr><td>actionUnspecified</td><td>0</td><td></td></tr>
* <tr><td>flagForceAscii</td><td>80000000</td><td></td></tr>
* <tr><td>flagNavigateNext</td><td>8000000</td><td></td></tr>
* <tr><td>flagNavigatePrevious</td><td>4000000</td><td></td></tr>
* <tr><td>flagNoAccessoryAction</td><td>20000000</td><td></td></tr>
* <tr><td>flagNoEnterAction</td><td>40000000</td><td></td></tr>
* <tr><td>flagNoExtractUi</td><td>10000000</td><td></td></tr>
* <tr><td>flagNoFullscreen</td><td>2000000</td><td></td></tr>
* <tr><td>flagNoPersonalizedLearning</td><td>1000000</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#closeIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:closeIcon
*/
public static final int SearchView_closeIcon=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#commitIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:commitIcon
*/
public static final int SearchView_commitIcon=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#defaultQueryHint}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#goIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:goIcon
*/
public static final int SearchView_goIcon=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#iconifiedByDefault}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#layout}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:layout
*/
public static final int SearchView_layout=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#queryBackground}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:queryBackground
*/
public static final int SearchView_queryBackground=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#queryHint}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:queryHint
*/
public static final int SearchView_queryHint=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#searchHintIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:searchHintIcon
*/
public static final int SearchView_searchHintIcon=12;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#searchIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:searchIcon
*/
public static final int SearchView_searchIcon=13;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#submitBackground}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:submitBackground
*/
public static final int SearchView_submitBackground=14;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#suggestionRowLayout}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout=15;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#voiceIcon}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:voiceIcon
*/
public static final int SearchView_voiceIcon=16;
/**
* Attributes that can be used with a SeekBarPreference.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SeekBarPreference_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #SeekBarPreference_android_max android:max}</code></td><td></td></tr>
* <tr><td><code>{@link #SeekBarPreference_adjustable com.example.android.movieapp:adjustable}</code></td><td></td></tr>
* <tr><td><code>{@link #SeekBarPreference_min com.example.android.movieapp:min}</code></td><td></td></tr>
* <tr><td><code>{@link #SeekBarPreference_seekBarIncrement com.example.android.movieapp:seekBarIncrement}</code></td><td></td></tr>
* <tr><td><code>{@link #SeekBarPreference_showSeekBarValue com.example.android.movieapp:showSeekBarValue}</code></td><td></td></tr>
* </table>
* @see #SeekBarPreference_android_layout
* @see #SeekBarPreference_android_max
* @see #SeekBarPreference_adjustable
* @see #SeekBarPreference_min
* @see #SeekBarPreference_seekBarIncrement
* @see #SeekBarPreference_showSeekBarValue
*/
public static final int[] SeekBarPreference={
0x010100f2, 0x01010136, 0x7f030022, 0x7f03012f,
0x7f03016a, 0x7f030173
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #SeekBarPreference} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int SeekBarPreference_android_layout=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#max}
* attribute's value can be found in the {@link #SeekBarPreference} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:max
*/
public static final int SeekBarPreference_android_max=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#adjustable}
* attribute's value can be found in the {@link #SeekBarPreference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:adjustable
*/
public static final int SeekBarPreference_adjustable=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#min}
* attribute's value can be found in the {@link #SeekBarPreference} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:min
*/
public static final int SeekBarPreference_min=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#seekBarIncrement}
* attribute's value can be found in the {@link #SeekBarPreference} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:seekBarIncrement
*/
public static final int SeekBarPreference_seekBarIncrement=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#showSeekBarValue}
* attribute's value can be found in the {@link #SeekBarPreference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:showSeekBarValue
*/
public static final int SeekBarPreference_showSeekBarValue=5;
/**
* Attributes that can be used with a SnackbarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #SnackbarLayout_elevation com.example.android.movieapp:elevation}</code></td><td></td></tr>
* <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.example.android.movieapp:maxActionInlineWidth}</code></td><td></td></tr>
* </table>
* @see #SnackbarLayout_android_maxWidth
* @see #SnackbarLayout_elevation
* @see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout={
0x0101011f, 0x7f03009f, 0x7f030129
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #SnackbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int SnackbarLayout_android_maxWidth=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#elevation}
* attribute's value can be found in the {@link #SnackbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:elevation
*/
public static final int SnackbarLayout_elevation=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#maxActionInlineWidth}
* attribute's value can be found in the {@link #SnackbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth=2;
/**
* Attributes that can be used with a Spinner.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_popupTheme com.example.android.movieapp:popupTheme}</code></td><td></td></tr>
* </table>
* @see #Spinner_android_entries
* @see #Spinner_android_popupBackground
* @see #Spinner_android_prompt
* @see #Spinner_android_dropDownWidth
* @see #Spinner_popupTheme
*/
public static final int[] Spinner={
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f030147
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#entries}
* attribute's value can be found in the {@link #Spinner} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:entries
*/
public static final int Spinner_android_entries=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#popupBackground}
* attribute's value can be found in the {@link #Spinner} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#prompt}
* attribute's value can be found in the {@link #Spinner} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:prompt
*/
public static final int Spinner_android_prompt=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
* attribute's value can be found in the {@link #Spinner} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#popupTheme}
* attribute's value can be found in the {@link #Spinner} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:popupTheme
*/
public static final int Spinner_popupTheme=4;
/**
* Attributes that can be used with a SwitchCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_showText com.example.android.movieapp:showText}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_splitTrack com.example.android.movieapp:splitTrack}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_switchMinWidth com.example.android.movieapp:switchMinWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_switchPadding com.example.android.movieapp:switchPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.example.android.movieapp:switchTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.example.android.movieapp:thumbTextPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTint com.example.android.movieapp:thumbTint}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTintMode com.example.android.movieapp:thumbTintMode}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_track com.example.android.movieapp:track}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_trackTint com.example.android.movieapp:trackTint}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_trackTintMode com.example.android.movieapp:trackTintMode}</code></td><td></td></tr>
* </table>
* @see #SwitchCompat_android_textOn
* @see #SwitchCompat_android_textOff
* @see #SwitchCompat_android_thumb
* @see #SwitchCompat_showText
* @see #SwitchCompat_splitTrack
* @see #SwitchCompat_switchMinWidth
* @see #SwitchCompat_switchPadding
* @see #SwitchCompat_switchTextAppearance
* @see #SwitchCompat_thumbTextPadding
* @see #SwitchCompat_thumbTint
* @see #SwitchCompat_thumbTintMode
* @see #SwitchCompat_track
* @see #SwitchCompat_trackTint
* @see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat={
0x01010124, 0x01010125, 0x01010142, 0x7f030174,
0x7f03017c, 0x7f03018e, 0x7f03018f, 0x7f030193,
0x7f0301b4, 0x7f0301b5, 0x7f0301b6, 0x7f0301cd,
0x7f0301ce, 0x7f0301cf
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textOn}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:textOn
*/
public static final int SwitchCompat_android_textOn=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textOff}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:textOff
*/
public static final int SwitchCompat_android_textOff=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#thumb}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:thumb
*/
public static final int SwitchCompat_android_thumb=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#showText}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:showText
*/
public static final int SwitchCompat_showText=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#splitTrack}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:splitTrack
*/
public static final int SwitchCompat_splitTrack=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#switchMinWidth}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#switchPadding}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:switchPadding
*/
public static final int SwitchCompat_switchPadding=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#switchTextAppearance}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#thumbTextPadding}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#thumbTint}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:thumbTint
*/
public static final int SwitchCompat_thumbTint=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#thumbTintMode}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#track}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:track
*/
public static final int SwitchCompat_track=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#trackTint}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:trackTint
*/
public static final int SwitchCompat_trackTint=12;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#trackTintMode}
* attribute's value can be found in the {@link #SwitchCompat} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:trackTintMode
*/
public static final int SwitchCompat_trackTintMode=13;
/**
* Attributes that can be used with a SwitchPreference.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SwitchPreference_android_summaryOn android:summaryOn}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreference_android_summaryOff android:summaryOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreference_android_disableDependentsState android:disableDependentsState}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreference_android_switchTextOn android:switchTextOn}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreference_android_switchTextOff android:switchTextOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreference_disableDependentsState com.example.android.movieapp:disableDependentsState}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreference_summaryOff com.example.android.movieapp:summaryOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreference_summaryOn com.example.android.movieapp:summaryOn}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreference_switchTextOff com.example.android.movieapp:switchTextOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreference_switchTextOn com.example.android.movieapp:switchTextOn}</code></td><td></td></tr>
* </table>
* @see #SwitchPreference_android_summaryOn
* @see #SwitchPreference_android_summaryOff
* @see #SwitchPreference_android_disableDependentsState
* @see #SwitchPreference_android_switchTextOn
* @see #SwitchPreference_android_switchTextOff
* @see #SwitchPreference_disableDependentsState
* @see #SwitchPreference_summaryOff
* @see #SwitchPreference_summaryOn
* @see #SwitchPreference_switchTextOff
* @see #SwitchPreference_switchTextOn
*/
public static final int[] SwitchPreference={
0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b,
0x0101036c, 0x7f030090, 0x7f03018c, 0x7f03018d,
0x7f030194, 0x7f030195
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#summaryOn}
* attribute's value can be found in the {@link #SwitchPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:summaryOn
*/
public static final int SwitchPreference_android_summaryOn=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#summaryOff}
* attribute's value can be found in the {@link #SwitchPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:summaryOff
*/
public static final int SwitchPreference_android_summaryOff=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#disableDependentsState}
* attribute's value can be found in the {@link #SwitchPreference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:disableDependentsState
*/
public static final int SwitchPreference_android_disableDependentsState=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#switchTextOn}
* attribute's value can be found in the {@link #SwitchPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:switchTextOn
*/
public static final int SwitchPreference_android_switchTextOn=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#switchTextOff}
* attribute's value can be found in the {@link #SwitchPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:switchTextOff
*/
public static final int SwitchPreference_android_switchTextOff=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#disableDependentsState}
* attribute's value can be found in the {@link #SwitchPreference} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:disableDependentsState
*/
public static final int SwitchPreference_disableDependentsState=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#summaryOff}
* attribute's value can be found in the {@link #SwitchPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:summaryOff
*/
public static final int SwitchPreference_summaryOff=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#summaryOn}
* attribute's value can be found in the {@link #SwitchPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:summaryOn
*/
public static final int SwitchPreference_summaryOn=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#switchTextOff}
* attribute's value can be found in the {@link #SwitchPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:switchTextOff
*/
public static final int SwitchPreference_switchTextOff=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#switchTextOn}
* attribute's value can be found in the {@link #SwitchPreference} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:switchTextOn
*/
public static final int SwitchPreference_switchTextOn=9;
/**
* Attributes that can be used with a SwitchPreferenceCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SwitchPreferenceCompat_android_summaryOn android:summaryOn}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreferenceCompat_android_summaryOff android:summaryOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreferenceCompat_android_disableDependentsState android:disableDependentsState}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreferenceCompat_android_switchTextOn android:switchTextOn}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreferenceCompat_android_switchTextOff android:switchTextOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreferenceCompat_disableDependentsState com.example.android.movieapp:disableDependentsState}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreferenceCompat_summaryOff com.example.android.movieapp:summaryOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreferenceCompat_summaryOn com.example.android.movieapp:summaryOn}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreferenceCompat_switchTextOff com.example.android.movieapp:switchTextOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchPreferenceCompat_switchTextOn com.example.android.movieapp:switchTextOn}</code></td><td></td></tr>
* </table>
* @see #SwitchPreferenceCompat_android_summaryOn
* @see #SwitchPreferenceCompat_android_summaryOff
* @see #SwitchPreferenceCompat_android_disableDependentsState
* @see #SwitchPreferenceCompat_android_switchTextOn
* @see #SwitchPreferenceCompat_android_switchTextOff
* @see #SwitchPreferenceCompat_disableDependentsState
* @see #SwitchPreferenceCompat_summaryOff
* @see #SwitchPreferenceCompat_summaryOn
* @see #SwitchPreferenceCompat_switchTextOff
* @see #SwitchPreferenceCompat_switchTextOn
*/
public static final int[] SwitchPreferenceCompat={
0x010101ef, 0x010101f0, 0x010101f1, 0x0101036b,
0x0101036c, 0x7f030090, 0x7f03018c, 0x7f03018d,
0x7f030194, 0x7f030195
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#summaryOn}
* attribute's value can be found in the {@link #SwitchPreferenceCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:summaryOn
*/
public static final int SwitchPreferenceCompat_android_summaryOn=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#summaryOff}
* attribute's value can be found in the {@link #SwitchPreferenceCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:summaryOff
*/
public static final int SwitchPreferenceCompat_android_summaryOff=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#disableDependentsState}
* attribute's value can be found in the {@link #SwitchPreferenceCompat} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:disableDependentsState
*/
public static final int SwitchPreferenceCompat_android_disableDependentsState=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#switchTextOn}
* attribute's value can be found in the {@link #SwitchPreferenceCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:switchTextOn
*/
public static final int SwitchPreferenceCompat_android_switchTextOn=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#switchTextOff}
* attribute's value can be found in the {@link #SwitchPreferenceCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:switchTextOff
*/
public static final int SwitchPreferenceCompat_android_switchTextOff=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#disableDependentsState}
* attribute's value can be found in the {@link #SwitchPreferenceCompat} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:disableDependentsState
*/
public static final int SwitchPreferenceCompat_disableDependentsState=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#summaryOff}
* attribute's value can be found in the {@link #SwitchPreferenceCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:summaryOff
*/
public static final int SwitchPreferenceCompat_summaryOff=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#summaryOn}
* attribute's value can be found in the {@link #SwitchPreferenceCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:summaryOn
*/
public static final int SwitchPreferenceCompat_summaryOn=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#switchTextOff}
* attribute's value can be found in the {@link #SwitchPreferenceCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:switchTextOff
*/
public static final int SwitchPreferenceCompat_switchTextOff=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#switchTextOn}
* attribute's value can be found in the {@link #SwitchPreferenceCompat} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:switchTextOn
*/
public static final int SwitchPreferenceCompat_switchTextOn=9;
/**
* Attributes that can be used with a TabItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
* </table>
* @see #TabItem_android_icon
* @see #TabItem_android_layout
* @see #TabItem_android_text
*/
public static final int[] TabItem={
0x01010002, 0x010100f2, 0x0101014f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#icon}
* attribute's value can be found in the {@link #TabItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:icon
*/
public static final int TabItem_android_icon=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #TabItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int TabItem_android_layout=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#text}
* attribute's value can be found in the {@link #TabItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:text
*/
public static final int TabItem_android_text=2;
/**
* Attributes that can be used with a TabLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TabLayout_tabBackground com.example.android.movieapp:tabBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabContentStart com.example.android.movieapp:tabContentStart}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabGravity com.example.android.movieapp:tabGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIndicatorColor com.example.android.movieapp:tabIndicatorColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIndicatorHeight com.example.android.movieapp:tabIndicatorHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabMaxWidth com.example.android.movieapp:tabMaxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabMinWidth com.example.android.movieapp:tabMinWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabMode com.example.android.movieapp:tabMode}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPadding com.example.android.movieapp:tabPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingBottom com.example.android.movieapp:tabPaddingBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingEnd com.example.android.movieapp:tabPaddingEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingStart com.example.android.movieapp:tabPaddingStart}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingTop com.example.android.movieapp:tabPaddingTop}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabSelectedTextColor com.example.android.movieapp:tabSelectedTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabTextAppearance com.example.android.movieapp:tabTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabTextColor com.example.android.movieapp: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={
0x7f030196, 0x7f030197, 0x7f030198, 0x7f030199,
0x7f03019a, 0x7f03019b, 0x7f03019c, 0x7f03019d,
0x7f03019e, 0x7f03019f, 0x7f0301a0, 0x7f0301a1,
0x7f0301a2, 0x7f0301a3, 0x7f0301a4, 0x7f0301a5
};
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabBackground}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:tabBackground
*/
public static final int TabLayout_tabBackground=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabContentStart}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:tabContentStart
*/
public static final int TabLayout_tabContentStart=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabGravity}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>1</td><td></td></tr>
* <tr><td>fill</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:tabGravity
*/
public static final int TabLayout_tabGravity=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabIndicatorColor}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabIndicatorHeight}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabMaxWidth}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabMinWidth}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:tabMinWidth
*/
public static final int TabLayout_tabMinWidth=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabMode}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fixed</td><td>1</td><td></td></tr>
* <tr><td>scrollable</td><td>0</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:tabMode
*/
public static final int TabLayout_tabMode=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabPadding}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:tabPadding
*/
public static final int TabLayout_tabPadding=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabPaddingBottom}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabPaddingEnd}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabPaddingStart}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabPaddingTop}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop=12;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabSelectedTextColor}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor=13;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabTextAppearance}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance=14;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#tabTextColor}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:tabTextColor
*/
public static final int TabLayout_tabTextColor=15;
/**
* Attributes that can be used with a TextAppearance.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_fontFamily com.example.android.movieapp:fontFamily}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_textAllCaps com.example.android.movieapp:textAllCaps}</code></td><td></td></tr>
* </table>
* @see #TextAppearance_android_textSize
* @see #TextAppearance_android_typeface
* @see #TextAppearance_android_textStyle
* @see #TextAppearance_android_textColor
* @see #TextAppearance_android_textColorHint
* @see #TextAppearance_android_textColorLink
* @see #TextAppearance_android_shadowColor
* @see #TextAppearance_android_shadowDx
* @see #TextAppearance_android_shadowDy
* @see #TextAppearance_android_shadowRadius
* @see #TextAppearance_android_fontFamily
* @see #TextAppearance_fontFamily
* @see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance={
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x0101009b, 0x01010161, 0x01010162,
0x01010163, 0x01010164, 0x010103ac, 0x7f0300b7,
0x7f0301a6
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textSize}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:textSize
*/
public static final int TextAppearance_android_textSize=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#typeface}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>monospace</td><td>3</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* <tr><td>sans</td><td>1</td><td></td></tr>
* <tr><td>serif</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:typeface
*/
public static final int TextAppearance_android_typeface=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textStyle}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bold</td><td>1</td><td></td></tr>
* <tr><td>italic</td><td>2</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColor}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColor
*/
public static final int TextAppearance_android_textColor=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColorHint}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColorLink}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColorLink
*/
public static final int TextAppearance_android_textColorLink=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowColor}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor=6;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowDx}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowDx
*/
public static final int TextAppearance_android_shadowDx=7;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowDy}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowDy
*/
public static final int TextAppearance_android_shadowDy=8;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius=9;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fontFamily}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:fontFamily
*/
public static final int TextAppearance_android_fontFamily=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#fontFamily}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:fontFamily
*/
public static final int TextAppearance_fontFamily=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#textAllCaps}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:textAllCaps
*/
public static final int TextAppearance_textAllCaps=12;
/**
* Attributes that can be used with a TextInputLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterEnabled com.example.android.movieapp:counterEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterMaxLength com.example.android.movieapp:counterMaxLength}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.example.android.movieapp:counterOverflowTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterTextAppearance com.example.android.movieapp:counterTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_errorEnabled com.example.android.movieapp:errorEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_errorTextAppearance com.example.android.movieapp:errorTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.example.android.movieapp:hintAnimationEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_hintEnabled com.example.android.movieapp:hintEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_hintTextAppearance com.example.android.movieapp:hintTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.example.android.movieapp:passwordToggleContentDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.example.android.movieapp:passwordToggleDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.example.android.movieapp:passwordToggleEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleTint com.example.android.movieapp:passwordToggleTint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.example.android.movieapp:passwordToggleTintMode}</code></td><td></td></tr>
* </table>
* @see #TextInputLayout_android_textColorHint
* @see #TextInputLayout_android_hint
* @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, 0x7f030081, 0x7f030082,
0x7f030083, 0x7f030084, 0x7f0300a4, 0x7f0300a5,
0x7f0300c7, 0x7f0300c8, 0x7f0300c9, 0x7f030140,
0x7f030141, 0x7f030142, 0x7f030143, 0x7f030144
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColorHint}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColorHint
*/
public static final int TextInputLayout_android_textColorHint=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#hint}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:hint
*/
public static final int TextInputLayout_android_hint=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#counterEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:counterEnabled
*/
public static final int TextInputLayout_counterEnabled=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#counterMaxLength}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name com.example.android.movieapp:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#counterOverflowTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#counterTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#errorEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:errorEnabled
*/
public static final int TextInputLayout_errorEnabled=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#errorTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#hintAnimationEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#hintEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:hintEnabled
*/
public static final int TextInputLayout_hintEnabled=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#hintTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#passwordToggleContentDescription}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#passwordToggleDrawable}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable=12;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#passwordToggleEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name com.example.android.movieapp:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled=13;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#passwordToggleTint}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint=14;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#passwordToggleTintMode}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:passwordToggleTintMode
*/
public static final 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 com.example.android.movieapp:buttonGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_collapseContentDescription com.example.android.movieapp:collapseContentDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_collapseIcon com.example.android.movieapp:collapseIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetEnd com.example.android.movieapp:contentInsetEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.example.android.movieapp:contentInsetEndWithActions}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetLeft com.example.android.movieapp:contentInsetLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetRight com.example.android.movieapp:contentInsetRight}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetStart com.example.android.movieapp:contentInsetStart}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.example.android.movieapp:contentInsetStartWithNavigation}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_logo com.example.android.movieapp:logo}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_logoDescription com.example.android.movieapp:logoDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_maxButtonHeight com.example.android.movieapp:maxButtonHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_navigationContentDescription com.example.android.movieapp:navigationContentDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_navigationIcon com.example.android.movieapp:navigationIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_popupTheme com.example.android.movieapp:popupTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_subtitle com.example.android.movieapp:subtitle}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.example.android.movieapp:subtitleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_subtitleTextColor com.example.android.movieapp:subtitleTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_title com.example.android.movieapp:title}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMargin com.example.android.movieapp:titleMargin}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginBottom com.example.android.movieapp:titleMarginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginEnd com.example.android.movieapp:titleMarginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginStart com.example.android.movieapp:titleMarginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginTop com.example.android.movieapp:titleMarginTop}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMargins com.example.android.movieapp:titleMargins}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleTextAppearance com.example.android.movieapp:titleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleTextColor com.example.android.movieapp: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, 0x7f03004b, 0x7f03005f,
0x7f030060, 0x7f030073, 0x7f030074, 0x7f030075,
0x7f030076, 0x7f030077, 0x7f030078, 0x7f030127,
0x7f030128, 0x7f03012a, 0x7f030131, 0x7f030132,
0x7f030147, 0x7f030186, 0x7f030187, 0x7f030188,
0x7f0301bc, 0x7f0301be, 0x7f0301bf, 0x7f0301c0,
0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4,
0x7f0301c5
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#gravity}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:gravity
*/
public static final int Toolbar_android_gravity=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#minHeight}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minHeight
*/
public static final int Toolbar_android_minHeight=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#buttonGravity}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:buttonGravity
*/
public static final int Toolbar_buttonGravity=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#collapseContentDescription}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#collapseIcon}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:collapseIcon
*/
public static final int Toolbar_collapseIcon=4;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetEnd}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd=5;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetEndWithActions}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions=6;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetLeft}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft=7;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetRight}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetRight
*/
public static final int Toolbar_contentInsetRight=8;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetStart}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetStart
*/
public static final int Toolbar_contentInsetStart=9;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#contentInsetStartWithNavigation}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation=10;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#logo}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:logo
*/
public static final int Toolbar_logo=11;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#logoDescription}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:logoDescription
*/
public static final int Toolbar_logoDescription=12;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#maxButtonHeight}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight=13;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#navigationContentDescription}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription=14;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#navigationIcon}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:navigationIcon
*/
public static final int Toolbar_navigationIcon=15;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#popupTheme}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:popupTheme
*/
public static final int Toolbar_popupTheme=16;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#subtitle}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:subtitle
*/
public static final int Toolbar_subtitle=17;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#subtitleTextAppearance}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance=18;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#subtitleTextColor}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor=19;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#title}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name com.example.android.movieapp:title
*/
public static final int Toolbar_title=20;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#titleMargin}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:titleMargin
*/
public static final int Toolbar_titleMargin=21;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#titleMarginBottom}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom=22;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#titleMarginEnd}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd=23;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#titleMarginStart}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:titleMarginStart
*/
public static final int Toolbar_titleMarginStart=24;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#titleMarginTop}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:titleMarginTop
*/
public static final int Toolbar_titleMarginTop=25;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#titleMargins}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:titleMargins
*/
public static final int Toolbar_titleMargins=26;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#titleTextAppearance}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance=27;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#titleTextColor}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:titleTextColor
*/
public static final int Toolbar_titleTextColor=28;
/**
* Attributes that can be used with a View.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
* <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
* <tr><td><code>{@link #View_paddingEnd com.example.android.movieapp:paddingEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #View_paddingStart com.example.android.movieapp:paddingStart}</code></td><td></td></tr>
* <tr><td><code>{@link #View_theme com.example.android.movieapp:theme}</code></td><td></td></tr>
* </table>
* @see #View_android_theme
* @see #View_android_focusable
* @see #View_paddingEnd
* @see #View_paddingStart
* @see #View_theme
*/
public static final int[] View={
0x01010000, 0x010100da, 0x7f03013a, 0x7f03013b,
0x7f0301b2
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#theme}
* attribute's value can be found in the {@link #View} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:theme
*/
public static final int View_android_theme=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#focusable}
* attribute's value can be found in the {@link #View} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>10</td><td></td></tr>
* </table>
*
* @attr name android:focusable
*/
public static final int View_android_focusable=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#paddingEnd}
* attribute's value can be found in the {@link #View} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:paddingEnd
*/
public static final int View_paddingEnd=2;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#paddingStart}
* attribute's value can be found in the {@link #View} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name com.example.android.movieapp:paddingStart
*/
public static final int View_paddingStart=3;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#theme}
* attribute's value can be found in the {@link #View} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name com.example.android.movieapp:theme
*/
public static final int View_theme=4;
/**
* Attributes that can be used with a ViewBackgroundHelper.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.example.android.movieapp:backgroundTint}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.example.android.movieapp:backgroundTintMode}</code></td><td></td></tr>
* </table>
* @see #ViewBackgroundHelper_android_background
* @see #ViewBackgroundHelper_backgroundTint
* @see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper={
0x010100d4, 0x7f030038, 0x7f030039
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#background}
* attribute's value can be found in the {@link #ViewBackgroundHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:background
*/
public static final int ViewBackgroundHelper_android_background=0;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.R.attr#backgroundTint}
* attribute's value can be found in the {@link #ViewBackgroundHelper} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name com.example.android.movieapp:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint=1;
/**
* <p>This symbol is the offset where the {@link com.example.android.movieapp.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>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name com.example.android.movieapp:backgroundTintMode
*/
public static final int ViewBackgroundHelper_backgroundTintMode=2;
/**
* Attributes that can be used with a ViewStubCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
* </table>
* @see #ViewStubCompat_android_id
* @see #ViewStubCompat_android_layout
* @see #ViewStubCompat_android_inflatedId
*/
public static final int[] ViewStubCompat={
0x010100d0, 0x010100f2, 0x010100f3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#id}
* attribute's value can be found in the {@link #ViewStubCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:id
*/
public static final int ViewStubCompat_android_id=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #ViewStubCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int ViewStubCompat_android_layout=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#inflatedId}
* attribute's value can be found in the {@link #ViewStubCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId=2;
}
} | [
"kennydukor@gmail.com"
] | kennydukor@gmail.com |
1a4d7b17cc8b3cf3060266b9152bdd82fc6afc81 | d6fa19d28715394902b65cb26bbb3e61d11ca9cc | /docs/DocGen/Project/com/mentor/capital/project/Printregioninfo.java | 3e745e4fcfccbd8c77f3e6cdc3646e20bd69c4b8 | [] | no_license | burnszp/capitaleasygo | bee6a9007ee9c49ed70c660e3ee82cedf2e568d4 | b8b01770b9c78a151f5badb5784fb83d627f99df | refs/heads/master | 2022-07-07T19:12:09.459756 | 2019-11-15T05:27:10 | 2019-11-15T05:27:10 | 215,234,754 | 0 | 0 | null | 2022-06-29T17:42:46 | 2019-10-15T07:28:01 | Java | UTF-8 | Java | false | false | 4,765 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.11.13 at 11:46:37 AM CST
//
package com.mentor.capital.project;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlIDREF;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "printregioninfo")
public class Printregioninfo {
@XmlAttribute(name = "type", required = true)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String type;
@XmlAttribute(name = "printregionbaseid")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String printregionbaseid;
@XmlAttribute(name = "framenumber")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String framenumber;
@XmlAttribute(name = "decorationid")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String decorationid;
@XmlAttribute(name = "componentid")
@XmlIDREF
protected Object componentid;
@XmlAttribute(name = "printregionref", required = true)
@XmlIDREF
protected Object printregionref;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the printregionbaseid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrintregionbaseid() {
return printregionbaseid;
}
/**
* Sets the value of the printregionbaseid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPrintregionbaseid(String value) {
this.printregionbaseid = value;
}
/**
* Gets the value of the framenumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFramenumber() {
return framenumber;
}
/**
* Sets the value of the framenumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFramenumber(String value) {
this.framenumber = value;
}
/**
* Gets the value of the decorationid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDecorationid() {
return decorationid;
}
/**
* Sets the value of the decorationid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDecorationid(String value) {
this.decorationid = value;
}
/**
* Gets the value of the componentid property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getComponentid() {
return componentid;
}
/**
* Sets the value of the componentid property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setComponentid(Object value) {
this.componentid = value;
}
/**
* Gets the value of the printregionref property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getPrintregionref() {
return printregionref;
}
/**
* Sets the value of the printregionref property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setPrintregionref(Object value) {
this.printregionref = value;
}
}
| [
"35725@DESKTOP-LOQT6LN"
] | 35725@DESKTOP-LOQT6LN |
6fc391115089ff739e93932d4daf786d4128af2b | 7de0281bd1f9ddbe0da55614c776a14c25060430 | /app/src/main/java/com/example/chand/weathersamp/InstallActivity.java | 9aa1a4afbc1c50e438726805196bf9f4c3446c71 | [] | no_license | chandrugceb/WeatherSAMP | 9795ca2f45b50d74a3ff6892c51f230ef74b61fa | 862ce6989502aaf6365d880ffdf0e45d33f296c4 | refs/heads/master | 2021-01-02T09:01:05.839751 | 2017-11-12T13:45:42 | 2017-11-12T13:45:42 | 99,124,784 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 22,527 | java | package com.example.chand.weathersamp;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.opengl.Visibility;
import android.os.Bundle;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.LinearLayoutCompat;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.Log;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.animation.LinearInterpolator;
import android.view.inputmethod.EditorInfo;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;
import android.widget.BaseAdapter;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.RelativeLayout;
import android.widget.Switch;
import android.widget.TextView;
import android.Manifest;
import android.widget.Toast;
import com.example.chand.weathersamp.utils.MenuItem;
import com.example.chand.weathersamp.utils.RoutineStep;
import com.google.firebase.database.ChildEventListener;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.GenericTypeIndicator;
import com.google.firebase.database.ValueEventListener;
import com.google.zxing.Result;
import org.w3c.dom.Text;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import javax.xml.datatype.Duration;
import me.dm7.barcodescanner.zxing.ZXingScannerView;
/**
* Created by chand on 13-08-2017.
*/
public class InstallActivity extends AppCompatActivity //implements ZXingScannerView.ResultHandler
{
Intent InstallIntent;
TextView tvRoutineName;
ImageView ivRoutineIcon;
String sRoutineName;
Integer iCurrentScanRow = 1;
boolean doesnotified;
LinearLayout llLocationLayout;
LinearLayout llLocationStepEditLayout;
AutoCompleteTextView actvLocationValueEdit;
RelativeLayout rlLocationStepViewLayout;
TextView tvLocationValueView;
LinearLayout llNodeLayout;
LinearLayout llNodeStepEditLayout;
AutoCompleteTextView actvNodeValueEdit;
RelativeLayout rlNodeStepViewLayout;
TextView tvNodeValueView;
LinearLayout llAssetLayout;
LinearLayout llAssetStepEditLayout;
AutoCompleteTextView actvAssetValueEdit;
RelativeLayout rlAssetStepViewLayout;
TextView tvAssetValueView;
ImageView ivScanButton;
DatabaseReference mInstallReference;
DatabaseReference mInstallCheckReference;
DatabaseReference mInstallLocationReference;
DatabaseReference mInstallAssetReference;
DatabaseReference mInstallInventoryOnHandReference;
DatabaseReference mInstallInventoryInServiceReference;
DatabaseReference mInstallLocationGPSReference;
public Location CurrentUserLocation;
com.example.chand.weathersamp.utils.Location CustomLocation;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_install);
InstallIntent = this.getIntent();
tvRoutineName = (TextView) findViewById(R.id.tvRoutineIcon_name);
sRoutineName = InstallIntent.getStringExtra("IconText");
tvRoutineName.setText(sRoutineName);
ivRoutineIcon = (ImageView) findViewById(R.id.ivIcon_Image);
ivRoutineIcon.setImageResource(InstallIntent.getIntExtra("IconId", R.drawable.install_icon));
Bundle bundle = InstallIntent.getExtras();
CurrentUserLocation = bundle.getParcelable("CurrentUserLocation");
if(CurrentUserLocation != null) {
Toast.makeText(getApplicationContext(), "Install Lat : " + CurrentUserLocation.getLatitude() + " | Long : " + CurrentUserLocation.getLongitude() + " | Aqr : " + CurrentUserLocation.getAccuracy() + " | Alt : " + CurrentUserLocation.getAltitude(), Toast.LENGTH_LONG).show();
}
else
{
Toast.makeText(getApplicationContext(),"No GPS Location Found",Toast.LENGTH_LONG).show();
}
llLocationLayout = (LinearLayout) findViewById(R.id.llInstallLocationStepOuterLayout);
llLocationLayout.setVisibility(View.VISIBLE);
llLocationStepEditLayout = (LinearLayout) findViewById(R.id.llInstallLocationStepEditLayout);
llLocationStepEditLayout.setVisibility(View.VISIBLE);
actvLocationValueEdit = (AutoCompleteTextView) findViewById(R.id.actvInstallLocationValueEditField);
actvLocationValueEdit.setText("");
rlLocationStepViewLayout = (RelativeLayout) findViewById(R.id.rlInstallLocationStepViewLayout);
rlLocationStepViewLayout.setVisibility(View.GONE);
tvLocationValueView = (TextView) findViewById(R.id.tvInstallLocationStepValueView);
tvLocationValueView.setText("");
llNodeLayout = (LinearLayout) findViewById(R.id.llInstallNodeStepOuterLayout);
llNodeLayout.setVisibility(View.GONE);
llNodeStepEditLayout = (LinearLayout) findViewById(R.id.llInstallNodeStepEditLayout);
llNodeStepEditLayout.setVisibility(View.GONE);
actvNodeValueEdit = (AutoCompleteTextView) findViewById(R.id.actvInstallNodeValueEditField);
actvNodeValueEdit.setText("");
rlNodeStepViewLayout = (RelativeLayout) findViewById(R.id.rlInstallNodeStepViewLayout);
rlNodeStepViewLayout.setVisibility(View.GONE);
tvNodeValueView = (TextView) findViewById(R.id.tvInstallNodeStepValueView);
tvNodeValueView.setText("");
llAssetLayout = (LinearLayout) findViewById(R.id.llInstallAssetStepOuterLayout);
llAssetLayout.setVisibility(View.GONE);
llAssetStepEditLayout = (LinearLayout) findViewById(R.id.llInstallAssetStepEditLayout);
llAssetStepEditLayout.setVisibility(View.GONE);
actvAssetValueEdit = (AutoCompleteTextView) findViewById(R.id.actvInstallAssetValueEditField);
actvAssetValueEdit.setText("");
rlAssetStepViewLayout = (RelativeLayout) findViewById(R.id.rlInstallAssetStepViewLayout);
rlAssetStepViewLayout.setVisibility(View.GONE);
tvAssetValueView = (TextView) findViewById(R.id.tvInstallAssetStepValueView);
tvAssetValueView.setText("");
iCurrentScanRow = 1;
ivScanButton = (ImageView) findViewById(R.id.ivScan);
Log.v("Victor", "before");
/*
mInstallLocationReference = FirebaseDatabase.getInstance().getReference().child("locations");
mInstallLocationReference.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
GenericTypeIndicator<List<String>> t = new GenericTypeIndicator<List<String>>() {
};
List InstallLocations = dataSnapshot.getValue(t);
String[] ArrayInstallLocations = new String[InstallLocations.size()];
for (int i = 0; i < InstallLocations.size(); i++) {
ArrayInstallLocations[i] = InstallLocations.get(i).toString();
}
ArrayAdapter<String> locationAdaptor = new ArrayAdapter<String>(InstallActivity.this, android.R.layout.simple_list_item_1, ArrayInstallLocations);
actvLocationValueEdit.setAdapter(locationAdaptor);
actvLocationValueEdit.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
setLocationAndNext(actvLocationValueEdit.getText().toString());
}
});
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
*/
mInstallLocationGPSReference = FirebaseDatabase.getInstance().getReference().child("locations_gps");
if(CurrentUserLocation==null)
{
getGlobalLocationPickList();
}
else
{
setLocationBasedOnGPS();
}
actvNodeValueEdit.setOnEditorActionListener(new TextView.OnEditorActionListener() {
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_GO) {
setNodeAndNext(actvNodeValueEdit.getText().toString());
return true;
}
return false;
}
});
actvAssetValueEdit.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
setAssetAndNext(actvAssetValueEdit.getText().toString());
submitRoutine(tvLocationValueView.getText().toString(), tvNodeValueView.getText().toString(), tvAssetValueView.getText().toString());
}
});
Log.v("Victor", "after");
if(InstallIntent.getStringExtra("InstallLocationName")!=null)
{
setLocationAndNext(InstallIntent.getStringExtra("InstallLocationName"));
}
}
@Override
protected void onStart()
{
super.onStart();
}
public void scan(View view)
{
Intent intent = new Intent(InstallActivity.this, ScanActivity.class);
startActivityForResult(intent, iCurrentScanRow);
}
@Override
protected void onPause() {
super.onPause();
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(resultCode == Activity.RESULT_OK)
{
switch(requestCode)
{
case 1:
//Scanned when Location field is active
setLocationAndNext(data.getStringExtra("scannedText"));
break;
case 2:
//Scanned when Node field is active
setNodeAndNext(data.getStringExtra("scannedText"));
break;
case 3:
//Scanned when Asset field is active
setAssetAndNext(data.getStringExtra("scannedText"));
submitRoutine(tvLocationValueView.getText().toString(),tvNodeValueView.getText().toString(),tvAssetValueView.getText().toString());
//System.out.println(tvLocationValueView.getText());
break;
}
//Toast.makeText(getApplicationContext(), data.getStringExtra("scannedText"),Toast.LENGTH_LONG).show();
}
}
public void setLocationAndNext(String LocationName)
{
actvLocationValueEdit.setText(LocationName);
iCurrentScanRow = 2;
//Initiate Call for Location Validation and Ensure True ??? Shall be added later
tvLocationValueView.setText(LocationName);
llLocationStepEditLayout.setVisibility(View.GONE);
rlLocationStepViewLayout.setVisibility(View.VISIBLE);
llNodeLayout.setVisibility(View.VISIBLE);
llNodeStepEditLayout.setVisibility(View.VISIBLE);
}
public void setNodeAndNext(String NodeName)
{
actvNodeValueEdit.setText(NodeName);
iCurrentScanRow = 3;
//Initiate Call for Node Validation and Ensure True ??? Shall be added later
tvNodeValueView.setText(NodeName);
llNodeStepEditLayout.setVisibility(View.GONE);
rlNodeStepViewLayout.setVisibility(View.VISIBLE);
llAssetLayout.setVisibility(View.VISIBLE);
llAssetStepEditLayout.setVisibility(View.VISIBLE);
mInstallAssetReference = FirebaseDatabase.getInstance().getReference().child("inventory").child(actvLocationValueEdit.getText().toString()).child("On Hand");
mInstallAssetReference.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
Log.v("Victor","Asset on Data changed");
Iterable<DataSnapshot> snapshotIterator = dataSnapshot.getChildren();
Iterator<DataSnapshot> iterator = snapshotIterator.iterator();
List<String> AssetList = new ArrayList<String>();
String AssetCode;
while(iterator.hasNext())
{
// iterator.next().getKey().toString();
AssetCode = iterator.next().getKey();
Log.v("Victor",AssetCode);
AssetList.add(AssetCode);
}
String[] ArrayInstallableAssets = new String[AssetList.size()];
for(int i=0;i<AssetList.size();i++)
{
ArrayInstallableAssets[i] = AssetList.get(i).toString();
}
ArrayAdapter<String> AssetAdaptor = new ArrayAdapter<String>(InstallActivity.this,android.R.layout.simple_list_item_1, ArrayInstallableAssets);
actvAssetValueEdit.setAdapter(AssetAdaptor);
actvAssetValueEdit.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
setAssetAndNext(actvAssetValueEdit.getText().toString());
submitRoutine(tvLocationValueView.getText().toString(),tvNodeValueView.getText().toString(),tvAssetValueView.getText().toString());
}
});
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
}
public void setAssetAndNext(String AssetName)
{
actvAssetValueEdit.setText(AssetName);
iCurrentScanRow = 3;
//Initiate Call for Asset Validation and Ensure True ??? Shall be added later
tvAssetValueView.setText(AssetName);
llAssetStepEditLayout.setVisibility(View.GONE);
rlAssetStepViewLayout.setVisibility(View.VISIBLE);
//llAssetLayout.setVisibility(View.VISIBLE);
//llAssetStepEditLayout.setVisibility(View.VISIBLE);
}
public void submitRoutine(final String LocationName, final String NodeName, String AssetCode)
{
doesnotified= false;
mInstallReference = FirebaseDatabase.getInstance().getReference().child("install").child(LocationName).child(NodeName).child(AssetCode);
mInstallReference.setValue("In Service");
mInstallInventoryInServiceReference = FirebaseDatabase.getInstance().getReference().child("inventory").child(LocationName).child("In Service").child(AssetCode);
mInstallInventoryInServiceReference.setValue("Y");
mInstallInventoryOnHandReference = FirebaseDatabase.getInstance().getReference().child("inventory").child(LocationName).child("On Hand").child(AssetCode);
mInstallInventoryOnHandReference.removeValue();
mInstallCheckReference = FirebaseDatabase.getInstance().getReference().child("install").child(LocationName).child(NodeName);
mInstallCheckReference.addChildEventListener(new ChildEventListener() {
@Override
public void onChildAdded(DataSnapshot dataSnapshot, String s) {
String ChildName = dataSnapshot.getKey();
String ChildValue = dataSnapshot.getValue(String.class);
//if(!doesnotified) {
Toast.makeText(getApplicationContext(), ChildName + " has been added to the Node " + NodeName + " of Location " + LocationName + " in " + ChildValue + " status!", Toast.LENGTH_LONG).show();
nextAsset();
//doesnotified = true;
//}
}
@Override
public void onChildChanged(DataSnapshot dataSnapshot, String s) {
}
@Override
public void onChildRemoved(DataSnapshot dataSnapshot) {
}
@Override
public void onChildMoved(DataSnapshot dataSnapshot, String s) {
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
}
public void nextAsset()
{
tvAssetValueView.setText("");
rlAssetStepViewLayout.setVisibility(View.GONE);
llAssetStepEditLayout.setVisibility(View.VISIBLE);
actvAssetValueEdit.setText("");
}
//Location Picklist Helper Functions
void getGlobalLocationPickList()
{
mInstallLocationGPSReference.orderByChild("Location_Name").addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
GenericTypeIndicator<List<com.example.chand.weathersamp.utils.Location>> t = new GenericTypeIndicator<List<com.example.chand.weathersamp.utils.Location>>() {
};
Log.v("Victor", dataSnapshot.toString());
List InstallGPSLocationsRaw = dataSnapshot.getValue(t);
com.example.chand.weathersamp.utils.Location TempGPSLocation1;
List<com.example.chand.weathersamp.utils.Location> InstallGPSLocations = new ArrayList<com.example.chand.weathersamp.utils.Location>();
for (int i = 0; i < InstallGPSLocationsRaw.size(); i++) {
if (InstallGPSLocationsRaw.get(i) != null) {
TempGPSLocation1 = (com.example.chand.weathersamp.utils.Location) InstallGPSLocationsRaw.get(i);
InstallGPSLocations.add(TempGPSLocation1);
}
}
if (InstallGPSLocations.size() == 0) {
Toast.makeText(getApplicationContext(), "No Location available", Toast.LENGTH_LONG).show();
return;
}
String[] ArrayInstallLocations = new String[InstallGPSLocations.size()];
for (int i = 0; i < InstallGPSLocations.size(); i++) {
ArrayInstallLocations[i] = InstallGPSLocations.get(i).getLocation_Name();
}
ArrayAdapter<String> locationAdaptor = new ArrayAdapter<String>(InstallActivity.this, android.R.layout.simple_list_item_1, ArrayInstallLocations);
actvLocationValueEdit.setAdapter(locationAdaptor);
actvLocationValueEdit.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
setLocationAndNext(actvLocationValueEdit.getText().toString());
}
});
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
}
void setLocationBasedOnGPS()
{
Double Latitude = CurrentUserLocation.getLatitude();
mInstallLocationGPSReference.orderByChild("Latitude").startAt(Latitude-0.01).endAt(Latitude+0.01).addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
Double Longitude = CurrentUserLocation.getLongitude();
GenericTypeIndicator<List<com.example.chand.weathersamp.utils.Location>> t = new GenericTypeIndicator<List<com.example.chand.weathersamp.utils.Location>>() {
};
Log.v("Victor", dataSnapshot.toString());
if(dataSnapshot.getValue() == null)
{
Toast.makeText(getApplicationContext(), "No Matching Location for Current GPS Location", Toast.LENGTH_LONG).show();
getGlobalLocationPickList();
return;
}
//List InstallGPSLocationsRaw = dataSnapshot.getValue(t);
List<com.example.chand.weathersamp.utils.Location> InstallGPSLocationsRaw = new ArrayList<com.example.chand.weathersamp.utils.Location>();
for(DataSnapshot child: dataSnapshot.getChildren())
{
if(child != null)
{
InstallGPSLocationsRaw.add(child.getValue(com.example.chand.weathersamp.utils.Location.class));
}
}
com.example.chand.weathersamp.utils.Location TempGPSLocation1;
List<com.example.chand.weathersamp.utils.Location> InstallGPSLocations = new ArrayList<com.example.chand.weathersamp.utils.Location>();
for (int i = 0; i < InstallGPSLocationsRaw.size(); i++) {
if (InstallGPSLocationsRaw.get(i) != null) {
TempGPSLocation1 = (com.example.chand.weathersamp.utils.Location) InstallGPSLocationsRaw.get(i);
if (TempGPSLocation1.getLongitude() > (Longitude-0.01) && TempGPSLocation1.getLongitude() < (Longitude+0.01)) {
InstallGPSLocations.add(TempGPSLocation1);
}
}
}
if (InstallGPSLocations.size() == 0) {
Toast.makeText(getApplicationContext(), "No Matching Location for Current GPS Location", Toast.LENGTH_LONG).show();
getGlobalLocationPickList();
return;
}
String[] ArrayInstallLocations = new String[InstallGPSLocations.size()];
for (int i = 0; i < InstallGPSLocations.size(); i++)
{
ArrayInstallLocations[i] = InstallGPSLocations.get(i).getLocation_Name();
}
actvLocationValueEdit.setText(ArrayInstallLocations[0]);
setLocationAndNext(ArrayInstallLocations[0]);
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
}
} | [
"chandramohan.nataraj@fulcrum.net"
] | chandramohan.nataraj@fulcrum.net |
0b450f1222f79dcdfd5b44c9da49b9de624bf47b | a03c87a4fccaaf52545b4ae837359dd7c0edbce9 | /src/connectfour/Register.java | f6faa2df0f9a4926844f98a8d244d051f8114ba0 | [] | no_license | Vacster/Proyecto-Final-Programacion-1 | 83513ae307fb00ff404ba797c99a446e9dbf11e3 | 39184f1a1e162d0a21742750709e552f5db4a0c1 | refs/heads/master | 2016-09-06T00:35:29.114671 | 2015-03-23T04:36:07 | 2015-03-23T04:36:07 | 32,709,431 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,269 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package connectfour;
import javax.swing.JOptionPane;
/**
*
* @author Kamil I
*/
public class Register extends javax.swing.JFrame {
/**
* Creates new form Register
*/
public Register() {
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() {
jPanel1 = new javax.swing.JPanel();
RegisterButton = new javax.swing.JButton();
ExitButton = new javax.swing.JButton();
PasswordButton = new javax.swing.JPasswordField();
UsernameButton = new javax.swing.JTextField();
NameButton = new javax.swing.JTextField();
jLabel2 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setMaximumSize(new java.awt.Dimension(640, 360));
setMinimumSize(new java.awt.Dimension(640, 360));
setResizable(false);
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowOpened(java.awt.event.WindowEvent evt) {
formWindowOpened(evt);
}
});
jPanel1.setBackground(new java.awt.Color(0, 0, 255));
RegisterButton.setText("Registrarse");
RegisterButton.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
RegisterButtonMouseClicked(evt);
}
});
ExitButton.setText("Regresar");
ExitButton.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
ExitButtonMouseClicked(evt);
}
});
PasswordButton.setToolTipText("Password");
PasswordButton.setRequestFocusEnabled(false);
UsernameButton.setToolTipText("Username");
NameButton.setToolTipText("Nombre Completo");
jLabel2.setFont(new java.awt.Font("Sitka Text", 1, 18)); // NOI18N
jLabel2.setForeground(new java.awt.Color(255, 255, 255));
jLabel2.setText("Username");
jLabel3.setFont(new java.awt.Font("Sitka Text", 1, 18)); // NOI18N
jLabel3.setForeground(new java.awt.Color(255, 255, 255));
jLabel3.setText("Name");
jLabel4.setFont(new java.awt.Font("Sitka Text", 1, 18)); // NOI18N
jLabel4.setForeground(new java.awt.Color(255, 255, 255));
jLabel4.setText("Password");
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addGap(142, 142, 142)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel1Layout.createSequentialGroup()
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jLabel2)
.addComponent(jLabel4, javax.swing.GroupLayout.Alignment.LEADING))
.addGap(18, 18, 18)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(RegisterButton, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.PREFERRED_SIZE, 190, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(ExitButton, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.PREFERRED_SIZE, 190, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(PasswordButton)
.addComponent(UsernameButton, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.PREFERRED_SIZE, 190, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addGap(225, 225, 225))
.addGroup(jPanel1Layout.createSequentialGroup()
.addComponent(jLabel3)
.addGap(57, 57, 57)
.addComponent(NameButton, javax.swing.GroupLayout.PREFERRED_SIZE, 190, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap())))
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addGap(61, 61, 61)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel3)
.addComponent(NameButton, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(UsernameButton, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel2))
.addGap(25, 25, 25)
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(PasswordButton, javax.swing.GroupLayout.PREFERRED_SIZE, 30, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel4))
.addGap(35, 35, 35)
.addComponent(RegisterButton, javax.swing.GroupLayout.PREFERRED_SIZE, 40, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(30, 30, 30)
.addComponent(ExitButton, javax.swing.GroupLayout.PREFERRED_SIZE, 40, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(50, 50, 50))
);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(0, 0, Short.MAX_VALUE))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void RegisterButtonMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_RegisterButtonMouseClicked
String password = new String(PasswordButton.getPassword());
boolean yis = true;
if(UsernameButton.getText().equalsIgnoreCase(" ") || UsernameButton.getText().equalsIgnoreCase("") ){
JOptionPane.showMessageDialog(null,"Elija un usuario!","Error",JOptionPane.WARNING_MESSAGE);
UsernameButton.requestFocus();
}
else if(NameButton.getText().equalsIgnoreCase(" ") || NameButton.getText().isEmpty() ){
JOptionPane.showMessageDialog(null,"Elija un nombre!","Error",JOptionPane.WARNING_MESSAGE);
NameButton.requestFocus();
}
else if(password.isEmpty() || password.equals(" ")){
JOptionPane.showMessageDialog(null,"Elija una contraseña!","Error",JOptionPane.WARNING_MESSAGE);
PasswordButton.requestFocus();
}
for(int x = 0; x < 10; x++){
if(ConnectFour.user[x][0].equalsIgnoreCase(UsernameButton.getText())){
yis = false;
}
}
if(yis){
searching();
ConnectFour.user[ConnectFour.num][0] = UsernameButton.getText();
ConnectFour.user[ConnectFour.num][1] = password;
ConnectFour.user[ConnectFour.num][2] = NameButton.getText();
ConnectFour.player1 = UsernameButton.getText();
ConnectFour.current = LoginForm.search(ConnectFour.player1);
this.dispose();
new MainMenu().setVisible(true);
}
else{
JOptionPane.showMessageDialog(null,"Usuario ya esta registrado, elija otro nombre.","Error",JOptionPane.WARNING_MESSAGE);
UsernameButton.setText(" ");
UsernameButton.requestFocus();
}
}//GEN-LAST:event_RegisterButtonMouseClicked
private void searching(){
for(int x = 0; x <10; x++){
if(ConnectFour.user[x][0].equals(" ")){
ConnectFour.num = x;
}
}
}
private void ExitButtonMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_ExitButtonMouseClicked
this.dispose();
new StartScreen().setVisible(true);
}//GEN-LAST:event_ExitButtonMouseClicked
private void formWindowOpened(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_formWindowOpened
setLocationRelativeTo(null);
}//GEN-LAST:event_formWindowOpened
/**
* @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(Register.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Register.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Register.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Register.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 Register().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton ExitButton;
private javax.swing.JTextField NameButton;
private javax.swing.JPasswordField PasswordButton;
private javax.swing.JButton RegisterButton;
private javax.swing.JTextField UsernameButton;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JPanel jPanel1;
// End of variables declaration//GEN-END:variables
}
| [
"kamil@unitec.edu"
] | kamil@unitec.edu |
8fc948055ea47113d9d9aee3a86263fa10ec9cca | 54c511f41226724ae7fb7706d49847227c915511 | /src/main/java/com/zyjz/plan/dao/ConsumerSoilMapper.java | f27ffbc894254b8b162cf6ae1c9a752fbd05396e | [] | no_license | Tomororow/sw | 8b64ab35d8d4974a878d36bfa4cfd39fd246d1e2 | 648212375e8fc2f0ea3b04d2a8af21c43730b6c7 | refs/heads/main | 2022-12-25T21:29:21.843596 | 2020-10-10T07:02:36 | 2020-10-10T07:02:36 | 302,779,944 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 587 | java | package com.zyjz.plan.dao;
import java.util.List;
import com.zyjz.plan.entity.ConsumerSoil;
public interface ConsumerSoilMapper {
int deleteByPrimaryKey(String id);
int insert(ConsumerSoil record);
int insertSelective(ConsumerSoil record);
ConsumerSoil selectByPrimaryKey(String id);
int updateByPrimaryKeySelective(ConsumerSoil record);
int updateByPrimaryKey(ConsumerSoil record);
List<ConsumerSoil> findConsumerSoilsByCanalCodes(List<String> canalCodeList);
List<ConsumerSoil> findConsumerSoilsByCanalCodesJoin(String canalCode);
} | [
"lnpb2014@sina.com"
] | lnpb2014@sina.com |
46ff75bc544ad581915db0f1292724728be4f21c | 995f73d30450a6dce6bc7145d89344b4ad6e0622 | /Mate20-9.0/src/main/java/android/rms/resource/ActivityResource.java | 5b9fdb9afd4c142fcde6bc30df17842eaa7b3a13 | [] | no_license | morningblu/HWFramework | 0ceb02cbe42585d0169d9b6c4964a41b436039f5 | 672bb34094b8780806a10ba9b1d21036fd808b8e | refs/heads/master | 2023-07-29T05:26:14.603817 | 2021-09-03T05:23:34 | 2021-09-03T05:23:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,423 | java | package android.rms.resource;
import android.os.Bundle;
import android.rms.HwSysCountRes;
import android.rms.config.ResourceConfig;
import android.rms.control.ResourceCountControl;
import android.rms.utils.Utils;
import android.util.Log;
public final class ActivityResource extends HwSysCountRes {
private static final String TAG = "RMS.ActivityResource";
private static ActivityResource mActivityResource;
private ActivityResource() {
super(30, TAG);
}
public static synchronized ActivityResource getInstance() {
synchronized (ActivityResource.class) {
if (mActivityResource == null) {
mActivityResource = new ActivityResource();
}
if (mActivityResource.getConfig()) {
if (Utils.DEBUG) {
Log.d(TAG, "getInstance create new resource");
}
ActivityResource activityResource = mActivityResource;
return activityResource;
}
if (Utils.DEBUG) {
Log.d(TAG, "RMS not ready!");
}
return null;
}
}
public int acquire(int callingUid, String pkg, int processTpye, int count) {
int strategy = 1;
int typeID = isInWhiteList(pkg, 0) ? 2 : super.getTypeId(callingUid, pkg, processTpye);
if (this.mResourceConfig != null && isResourceCountOverload(callingUid, pkg, typeID, count)) {
strategy = this.mResourceConfig[typeID].getResourceStrategy();
if (Utils.DEBUG) {
Log.d(TAG, "getOverloadStrategy CountOverload = " + strategy);
}
}
return strategy;
}
/* access modifiers changed from: protected */
public Bundle createBundleForResource(long id, int typeID, ResourceConfig config, ResourceCountControl mResourceCountControl, String pkg) {
if (config == null || mResourceCountControl == null) {
return null;
}
if (Utils.DEBUG) {
Log.d(TAG, "createBundleForResource Call In ActivityResource");
}
Bundle bundle = new Bundle();
bundle.putInt(Utils.BUNDLE_HARD_THRESHOLD, config.getResouceUrgentThreshold());
bundle.putInt(Utils.BUNDLE_CURRENT_COUNT, mResourceCountControl.getTotalCount(id));
bundle.putBoolean(Utils.BUNDLE_IS_IN_WHITELIST, isInWhiteList(pkg, 0));
return bundle;
}
}
| [
"dstmath@163.com"
] | dstmath@163.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.