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
3c67400b5bd20984d4a5f8b95e4d7dc62055c3d0
f1849da2e471bf428c20312a3ddccb49131d6fb7
/TimePicker/src/pax/ex/TimePickerActivity.java
9a849dedc1df710ec36e85f20f31728d5bffb77a
[]
no_license
JanAtanasoff/androidX
d9783fff8733f040256a44390899b93754753b22
764feef998bd29da7584a1992d4289d4e760885e
refs/heads/master
2021-01-01T05:49:42.149646
2012-03-07T10:17:51
2012-03-07T10:17:51
3,647,910
0
1
null
2015-06-17T10:01:46
2012-03-07T10:07:13
Java
UTF-8
Java
false
false
2,376
java
package pax.ex; import java.util.Calendar; import android.app.Activity; import android.app.Dialog; import android.app.TimePickerDialog; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; import android.widget.TimePicker; public class TimePickerActivity extends Activity { private TextView mTimeDisplay; private Button mPickTime; private int mHour; private int mMinute; static final int TIME_DIALOG_ID = 0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // capture our View elements mTimeDisplay = (TextView) findViewById(R.id.timeDisplay); mPickTime = (Button) findViewById(R.id.pickTime); // add a click listener to the button mPickTime.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { showDialog(TIME_DIALOG_ID); } }); // get the current time final Calendar c = Calendar.getInstance(); mHour = c.get(Calendar.HOUR_OF_DAY); mMinute = c.get(Calendar.MINUTE); // display the current date updateDisplay(); } // updates the time we display in the TextView private void updateDisplay() { mTimeDisplay.setText( new StringBuilder() .append(pad(mHour)).append(":") .append(pad(mMinute))); } private static String pad(int c) { if (c >= 10) return String.valueOf(c); else return "0" + String.valueOf(c); } // the callback received when the user "sets" the time in the dialog private TimePickerDialog.OnTimeSetListener mTimeSetListener = new TimePickerDialog.OnTimeSetListener() { public void onTimeSet(TimePicker view, int hourOfDay, int minute) { mHour = hourOfDay; mMinute = minute; updateDisplay(); } }; @Override protected Dialog onCreateDialog(int id) { switch (id) { case TIME_DIALOG_ID: return new TimePickerDialog(this, mTimeSetListener, mHour, mMinute, false); } return null; } }
[ "yanko.atanasov@gmail.com" ]
yanko.atanasov@gmail.com
b848250dc7bda19f290395b38f50da47ec8c84dc
5f63a60fd029b8a74d2b1b4bf6992f5e4c7b429b
/com/planet_ink/coffee_mud/Abilities/Spells/Spell_ImprovedClanWard.java
0b4d00d05f2a596bf7a4d57180116797a8e01bd6
[ "Apache-2.0" ]
permissive
bozimmerman/CoffeeMud
5da8b5b98c25b70554ec9a2a8c0ef97f177dc041
647864922e07572b1f6c863de8f936982f553288
refs/heads/master
2023-09-04T09:17:12.656291
2023-09-02T00:30:19
2023-09-02T00:30:19
5,267,832
179
122
Apache-2.0
2023-04-30T11:09:14
2012-08-02T03:22:12
Java
UTF-8
Java
false
false
1,924
java
package com.planet_ink.coffee_mud.Abilities.Spells; import com.planet_ink.coffee_mud.core.interfaces.*; import com.planet_ink.coffee_mud.core.*; import com.planet_ink.coffee_mud.core.collections.*; import com.planet_ink.coffee_mud.Abilities.interfaces.*; import com.planet_ink.coffee_mud.Areas.interfaces.*; import com.planet_ink.coffee_mud.Behaviors.interfaces.*; import com.planet_ink.coffee_mud.CharClasses.interfaces.*; import com.planet_ink.coffee_mud.Commands.interfaces.*; import com.planet_ink.coffee_mud.Common.interfaces.*; import com.planet_ink.coffee_mud.Exits.interfaces.*; import com.planet_ink.coffee_mud.Items.interfaces.*; import com.planet_ink.coffee_mud.Libraries.interfaces.*; import com.planet_ink.coffee_mud.Locales.interfaces.*; import com.planet_ink.coffee_mud.MOBS.interfaces.*; import com.planet_ink.coffee_mud.Races.interfaces.*; import java.util.*; /* Copyright 2018-2023 Bo Zimmerman 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. */ public class Spell_ImprovedClanWard extends Spell_ClanWard { @Override public String ID() { return "Spell_ImprovedClanWard"; } private final static String localizedName = CMLib.lang().L("Improved Clan Ward"); @Override public String name() { return localizedName; } @Override public void setMiscText(final String txt) { super.setMiscText(txt); super.noSneak=true; } }
[ "bo@zimmers.net" ]
bo@zimmers.net
df79a24be7ba48e066580c3be8fc15fc8e7adf3b
02470e5b45caae33fdaa8838075a7a8ab22324a1
/Zajecia1/src/tablice1.java
65b9d460b9501a41076d4bd3626f05b4d0f750ec
[]
no_license
proenix/wsfip5java
093f70f2a54f6f889772d7356cc5be4c6ae4d464
654b14acb97bc299b7b954d963afafc7dcddbe93
refs/heads/master
2021-01-10T04:39:59.414914
2016-01-09T17:57:38
2016-01-09T17:57:38
44,008,928
0
0
null
null
null
null
UTF-8
Java
false
false
279
java
public class tablice1 { public static void main (String args[]) { String[][] nazwy = { {"Pan", "Państwo", "Pani"}, {"Kowalski", "Kowalscy", "Kowalska"} }; System.out.println(nazwy[0][0] + nazwy[1][0]); System.out.println(nazwy[1][0] + nazwy[1][0]); } }
[ "piotr26ch@gmail.com" ]
piotr26ch@gmail.com
a212adc446d35dfda7befec0e846b7cb7acdd7c1
8ff2bed2a635febf818311d0df41addbc6a20296
/src/jason/company/ISaveable.java
4a46a7b2098ada9438a19825fb60f8859b2df4e4
[]
no_license
codingplumber/InterfacesChallenge
bf2179823b5a9eb36b5b414ea7723ee7dced4438
5abf1b34c8a9d48b3390e23ef9845b88558c50d8
refs/heads/master
2020-12-31T22:28:20.417187
2020-02-13T01:03:50
2020-02-13T01:03:50
239,054,934
0
0
null
null
null
null
UTF-8
Java
false
false
226
java
package jason.company; import java.util.ArrayList; import java.util.List; public interface ISaveable { void saveList(List<String> list); List<String> returnList(); void getDamage(int damage); int attack(); }
[ "jasonstickel@Jasons-MacBook-Pro.local" ]
jasonstickel@Jasons-MacBook-Pro.local
5cea907c1ce97c2acd1859574860754a66d7f3e9
4689740591ba6c68efab84ed1d27c234745ddc93
/src/main/java/com/westside/controller/CourseController.java
5b0ee7b8e1d83eebbdd408fad33c951e62a30d09
[ "MIT" ]
permissive
koalagon/maven-spring-jpa-annotation
7aca9b7ac9895d2aa8144b996faed7df3525e8ef
be30f7456db3773dd76a94d51920eaf32e26add6
refs/heads/master
2021-01-20T08:41:21.973793
2017-05-04T13:51:10
2017-05-04T13:51:10
90,178,588
0
0
null
null
null
null
UTF-8
Java
false
false
111
java
package com.westside.controller; /** * Created by bkwak on 05/01/2017. */ public class CourseController { }
[ "koalagon@gmail.com" ]
koalagon@gmail.com
847c6454f7a8bc361671b0dda553b5e21ed3dd6b
fd97478e9696fb47a8af93b318c364803ae70cfa
/peach-service/peach-service-user/src/main/java/com/kopever/peach/service/UserApplication.java
079bb48e50d8f5a274fc915098a1f692aa69e81e
[]
no_license
kopstill/peach
57a0b168ea8e354bd59b89338b4b85b5359e703a
5b39eeeaeecf3f1dbcd7d2fadb8e8b92dadcf213
refs/heads/master
2020-03-17T07:20:41.300677
2018-07-17T16:55:32
2018-07-17T16:55:32
133,394,439
0
0
null
null
null
null
UTF-8
Java
false
false
326
java
package com.kopever.peach.service; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class UserApplication { public static void main(String[] args) { SpringApplication.run(UserApplication.class, args); } }
[ "kop.still@gmail.com" ]
kop.still@gmail.com
fbc071fae6c70ec080d3ddd939ac32eb7ef2d992
2a717f6461fb71c42ae7bc263264c116bbb2dacd
/src/sebastianougterolsen/BMI.java
02375b3b5b9258d92c18117cc0525e0b8ad1e6c6
[]
no_license
SebastianOugterOlsen/Hjemmeopgave10_2
0b772627efd217ba7e9d4f582e2240383105d690
26fa74867beb40e069fc3362aa6b10b79677817b
refs/heads/master
2021-07-18T03:46:17.113290
2017-10-22T19:35:28
2017-10-22T19:35:28
107,896,581
0
0
null
null
null
null
UTF-8
Java
false
false
1,052
java
package sebastianougterolsen; public class BMI { private String name; private int age; private double height, weight; //kilo M public BMI(String name, int age, double height, double weight){ this.name = name; this.age = age; this.height = height; this.weight = weight; } public BMI(String name, double weight, double height) { this(name, 20, weight, height); } public double getBMI(){ double bmiCal= weight/(height*height); return bmiCal; } public String getStatus(){ double bmi = getBMI(); if (bmi < 18.5) return "Underweight"; else if (bmi < 25) return "Normal"; else if (bmi < 30) return "Overweight"; else return "Obese"; } public String getName(){ return name; } public int getAge(){ return age; } public double getHeight(){ return height; } public double getWeight(){ return weight; } }
[ "seba3440@edu.easj.dk" ]
seba3440@edu.easj.dk
54b9b33d3bce7d4c115089df18978ea4cf1ae221
90374236e0e13db1e5f066cf0c0c3bd739208df9
/NetBeansProjects/JavaApplication39/src/javaapplication39/JavaApplication39.java
6426e434e11609dd6df4dae16ad8c08d6dabe3ab
[]
no_license
areeba3000/areeba-khan
d876e2d5d4b6f84e4cfd44dec7562113882cf7c6
5be18a8b84ad4ddd24c5c59b3e67c287537fac45
refs/heads/master
2022-11-09T17:18:19.099355
2020-06-27T11:37:59
2020-06-27T11:37:59
268,779,994
0
0
null
null
null
null
UTF-8
Java
false
false
436
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 javaapplication39; /** * * @author hp */ public class JavaApplication39 { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here } }
[ "66309608+areeba3000@users.noreply.github.com" ]
66309608+areeba3000@users.noreply.github.com
5c3dc9d23e612cee7c8e770b2b0e0a54a4577cd4
5e2375666837098c202b3edc91f26593e3dcb5bf
/src/main/java/com/namibank/Disruptor/multi/Consumer.java
3eaebd87d279ce3142a81dcf9fab3d3df16c46fd
[]
no_license
ruanyuanping/nb-disruport
9ca6f6233200d817147f94d151a4c0a12bb1b889
ca083fa40ffc8cba0b68aba586ee9a3e1eafdbfb
refs/heads/master
2021-08-27T21:26:56.787592
2017-12-10T11:35:07
2017-12-10T11:35:07
113,741,177
2
0
null
null
null
null
UTF-8
Java
false
false
706
java
package com.namibank.Disruptor.multi; import java.util.concurrent.atomic.AtomicInteger; import com.lmax.disruptor.WorkHandler; /** * 消费者实现 WorkHandler * @author Administrator * */ public class Consumer implements WorkHandler<Order>{ private String consumerId; private static AtomicInteger count = new AtomicInteger(0); public Consumer(String consumerId){ this.consumerId = consumerId; } /**计数器*/ @Override public void onEvent(Order order) throws Exception { System.out.println("当前消费者: " + this.consumerId + ",消费信息:" + order.getId()); count.incrementAndGet(); } /**获取计数总数*/ public int getCount(){ return count.get(); } }
[ "824315813@qq.com" ]
824315813@qq.com
6c03e58e0bd151e5737dc8b1d6b888792454b206
ac3a7a8d120d4e281431329c8c9d388fcfb94342
/src/test/java/com/leetcode/algorithm/medium/reorderlist/SolutionTest.java
546885a9d5fd567592a7c9d064f774a91643d25f
[ "MIT" ]
permissive
paulxi/LeetCodeJava
c69014c24cda48f80a25227b7ac09c6c5d6cfadc
10b4430629314c7cfedaae02c7dc4c2318ea6256
refs/heads/master
2021-04-03T08:03:16.305484
2021-03-02T06:20:24
2021-03-02T06:20:24
125,126,097
3
3
null
null
null
null
UTF-8
Java
false
false
1,260
java
package com.leetcode.algorithm.medium.reorderlist; import com.leetcode.algorithm.common.ListNode; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; public class SolutionTest { @Test public void testCase1() { Solution solution = new Solution(); ListNode head = new ListNode(1); head.next = new ListNode(2); head.next.next = new ListNode(3); head.next.next.next = new ListNode(4); ListNode expected = new ListNode(1); expected.next = new ListNode(4); expected.next.next = new ListNode(2); expected.next.next.next = new ListNode(3); solution.reorderList(head); assertEquals(expected, head); } @Test public void testCase2() { Solution solution = new Solution(); ListNode head = new ListNode(1); head.next = new ListNode(2); head.next.next = new ListNode(3); head.next.next.next = new ListNode(4); head.next.next.next.next = new ListNode(5); ListNode expected = new ListNode(1); expected.next = new ListNode(5); expected.next.next = new ListNode(2); expected.next.next.next = new ListNode(4); expected.next.next.next.next = new ListNode(3); solution.reorderList(head); assertEquals(expected, head); } }
[ "paulxi@gmail.com" ]
paulxi@gmail.com
e7cb872531485e15a07f0de64b1dcca3457e12e3
5e73f5a6ccffc7fb30197ec8dc2a99f4619bef60
/dailyEx/daily-studay/src/webTest2/Test.java
4a5a9e7da25f17dd3fa2f102003a585b720fee68
[]
no_license
Deerlet-7/exercise
47a26bb0bd0dcbbfaf0302e0b73371b1acd6dae5
925eadc9d2b65a7fef70729541750e35473594ce
refs/heads/master
2021-07-24T03:45:16.375668
2020-09-05T13:13:25
2020-09-05T13:13:25
215,069,832
1
0
null
null
null
null
UTF-8
Java
false
false
221
java
package webTest2; /** * Created by Deerlet-7 on 2020/6/24 21:55 * 航线 */ import java.util.*; public class Test { public static void main(String[] args) { Scanner sc = new Scanner(System.in); } }
[ "liyan000611@outlook.com" ]
liyan000611@outlook.com
e48730e5641f164718cd33deb1f09449df3b56df
c3ca5abb9a3b2faf7289bcb59fef83b799b8fd1a
/src/main/java/com/ljl/feigncall/FeignApi.java
0c98807e52fe610dd5e9840db0bb5aa90d9ae58a
[]
no_license
lvjunlongGitHub/gateway
7e848395e020d7aa50dfa9c39d1f040e8663968d
598cd5b9faff2ee6feddab038afdccf4644e7779
refs/heads/master
2023-08-04T11:58:20.677676
2019-08-27T07:04:10
2019-08-27T07:04:10
203,555,818
0
0
null
2023-07-22T14:08:47
2019-08-21T09:53:57
Java
UTF-8
Java
false
false
676
java
package com.ljl.feigncall; import com.ljl.entity.Channel; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; /** * @author lvjunlong * @date 2019/8/22 上午9:47 */ @FeignClient(name = "springdemo", url = "${springdemo.host}") @RequestMapping(value = "/channel", produces = "application/json;charset=UTF-8") public interface FeignApi { @RequestMapping(value = "getChannel", method = RequestMethod.POST) Channel getChannel(@RequestParam("channelId") Integer channelId); }
[ "15617822176@163.com" ]
15617822176@163.com
93f5b7d8d95906d62c675b69f4b9559a8b087fca
d23cd56f846e382b845fbf5d310ccc27971a2132
/app/src/test/java/com/example/lumi/pracainzynierska/ExampleUnitTest.java
4606a1b59d32d1f6eb82ce1e892c36e90b21ae6e
[]
no_license
chmod770/PracaInzGit
23ca3aa078ee2a066a4448807855f3084968dfa7
89f5813983f3162365071ccb4a5ab78aa96e90e9
refs/heads/master
2021-05-06T00:31:44.244097
2018-02-28T19:02:08
2018-02-28T19:02:08
117,258,772
0
0
null
null
null
null
UTF-8
Java
false
false
411
java
package com.example.lumi.pracainzynierska; 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); } }
[ "gabriel-sochacki@o2.pl" ]
gabriel-sochacki@o2.pl
c6c2aaf3b89adc53396271364f8122e95edeecf2
f7f299c54cf2879790300a33198a43a09456149b
/reactor-extra/src/main/java/reactor/retry/IterationContext.java
571aa05ed4a428ee3a050dc38134936241234336
[ "Apache-2.0" ]
permissive
soulcub/reactor-addons
ecaf11eded906265bb4b5e405e38a1a4c92bac5b
9d84ddc05122c3f523bf0f6798eb5c2ebb570847
refs/heads/master
2020-04-26T20:16:42.611593
2019-02-25T11:19:28
2019-02-25T11:19:28
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,900
java
/* * Copyright (c) 2017 Pivotal Software Inc, All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package reactor.retry; import java.time.Duration; /** * Context provided to retry or repeat callbacks. * * @param <T> Application context type */ public interface IterationContext<T> { /** * Application context that may be used to perform any rollbacks before * a retry. Application context can be configured using {@link Retry#withApplicationContext(Object)} * or {@link Repeat#withApplicationContext(Object)}. * * @return application context */ public T applicationContext(); /** * The next iteration number. This is a zero-based incrementing number with * the first attempt prior to any retries as iteration zero. * @return the current iteration number */ public long iteration(); /** * The backoff delay. When {@link Backoff} function is invoked, the previous * backoff is provided in the context. The context provided for the retry * predicates {@link Retry#onlyIf(java.util.function.Predicate)} and * {@link Repeat#onlyIf(java.util.function.Predicate)} as well as the retry * callbacks {@link Retry#doOnRetry(java.util.function.Consumer)} and * {@link Repeat#doOnRepeat(java.util.function.Consumer)} provide the * backoff delay for the next retry. * * @return Backoff delay */ public Duration backoff(); }
[ "noreply@github.com" ]
noreply@github.com
3d946b26008c96536ed7a81b799b877e33395bb3
b27bfe9db8f0c7e5ca9377397b23ef2ef27d4ddc
/morozov/system/kinect/converters/errors/InputDeviceIsNotDefined.java
d174527b425e7c8fce9d101a17d64446aea210c0
[]
no_license
Morozov2012/actor-prolog-java-library
85fe97eb6a37709d742f4ab06b29d0718c7269c3
5a7e2011ac2152278b8ebae3dfb2da4d925619a3
refs/heads/master
2021-01-20T15:39:14.173431
2019-12-13T13:09:01
2019-12-13T13:09:01
7,780,078
5
3
null
null
null
null
UTF-8
Java
false
false
155
java
// (c) 2016 IRE RAS Alexei A. Morozov package morozov.system.kinect.converters.errors; public class InputDeviceIsNotDefined extends RuntimeException { }
[ "AlexeiMorozov2006@rambler.ru" ]
AlexeiMorozov2006@rambler.ru
b4515ef4bed83f8aa72a54722c37ca4ca7a12dc3
26dadc418c3b9c5c0bce9b45781e2c7af3dc58d1
/src/main/java/com/bwei/service/imp/GoodsServiceImp.java
badbf29f92daf03ab7210777cc06ea53c66b5bcc
[]
no_license
guoyue1216/123
52a8a4802f73f09d6fc56236bc2a89cb1c93f104
9e105140801008c9f30edba0ca135cbdc14b8457
refs/heads/master
2022-12-20T23:27:56.755846
2019-11-07T01:43:21
2019-11-07T01:43:21
220,126,763
0
0
null
2022-12-16T10:32:16
2019-11-07T01:41:37
CSS
UTF-8
Java
false
false
461
java
package com.bwei.service.imp; import java.util.List; import javax.annotation.Resource; import org.springframework.stereotype.Service; import com.bwei.beans.Goods; import com.bwei.dao.GoodsDao; import com.bwei.service.GoodsService; @Service public class GoodsServiceImp implements GoodsService { @Resource private GoodsDao dao; public List<Goods> getGoods() { // TODO Auto-generated method stub return dao.getGoods(); } }
[ "2465659771@qq.com" ]
2465659771@qq.com
b473f63b2912f0ea9590eec4d088072f9177b381
1aef918b207c3e67b049ce88f3b6e1313d49879f
/src/com/practice/interviewcake/BalancedBinaryTree.java
7525b574a2b9490b7628834f46d716a0615ff9b5
[]
no_license
georgeerol/WhosDaMaster
9a0e38028bf43cb05c47a5b29e9cdbe36a3b0484
285914255e003784a7832d0a1f8ff0942a7818e7
refs/heads/master
2020-03-31T15:27:23.514379
2019-02-27T22:23:40
2019-02-27T22:25:27
152,337,770
0
0
null
2019-02-27T22:25:29
2018-10-10T00:09:49
Java
UTF-8
Java
false
false
121
java
package com.practice.interviewcake; /** * Created by George Fouche on 10/8/18. */ public class BalancedBinaryTree { }
[ "fouliex@gmail.com" ]
fouliex@gmail.com
6577219a2f793ebaadc9378638bb855ba01084a9
98d66bf8deeb8a5aba4d295c8ba3a86acc4e2032
/src/main/java/io/explore/StreamPeek.java
ece43820494c3ebe589e4f0d04bfb9837286addf
[]
no_license
mgkabir/explore-java
4f2b9689bf4c6a2ef64faba29449d4671d127497
9a3b9de3183535ae8d0ef95580001c8518d8a848
refs/heads/master
2021-06-13T13:02:49.104209
2019-09-11T00:59:11
2019-09-11T00:59:11
119,776,075
0
0
null
null
null
null
UTF-8
Java
false
false
342
java
package io.explore; import java.util.stream.Stream; public class StreamPeek { public static void main(String[] args) { Stream.of("ace", "jack", "queen", "king", "joker") .peek(System.out::println) .mapToInt(card -> card.length()) .filter(len -> len > 3) .peek(System.out::println) .limit(2).forEach(System.out::println); } }
[ "mkabir@semanticsoftware.com.au" ]
mkabir@semanticsoftware.com.au
1e9952b763a7ced6b3ef48e404c8d15b377cdf2f
0de11161bbffdd45ee0e907196df1495aa4cf71f
/build/generated-sources/ap-source-output/com/isw2/nahuat/model/CatalogoEdepartamento_.java
2a484015d24a418a0fb7a610d79ee82161bf7e53
[]
no_license
carlos99/SistemaCallCenterNahuat
ca299e3da0ff8e8ee61b2257340ab68a06ca3834
d423c53a25fdde6bd4eead9ba9fd6b6093020a92
refs/heads/master
2016-09-05T15:43:00.508479
2013-10-25T23:06:36
2013-10-25T23:06:36
null
0
0
null
null
null
null
UTF-8
Java
false
false
616
java
package com.isw2.nahuat.model; import javax.annotation.Generated; import javax.persistence.metamodel.SingularAttribute; import javax.persistence.metamodel.StaticMetamodel; @Generated(value="EclipseLink-2.5.0.v20130507-rNA", date="2013-10-23T05:10:01") @StaticMetamodel(CatalogoEdepartamento.class) public class CatalogoEdepartamento_ { public static volatile SingularAttribute<CatalogoEdepartamento, String> nombre; public static volatile SingularAttribute<CatalogoEdepartamento, String> idCatalogoEdepartamento; public static volatile SingularAttribute<CatalogoEdepartamento, String> descripcion; }
[ "carlos.cw2106@gmail.com" ]
carlos.cw2106@gmail.com
7440c89dc2c7795a452e66c3764a77a4ed8f4f44
08a3d3ec5c8aef609c66ccd052f51f8e84e47f22
/febs-gateway/src/main/java/cc/mrbird/febs/gateway/common/filter/FebsGatewayRequestFilter.java
a51ef7371e421467e35763fce0a0b5644b42f03b
[ "Apache-2.0" ]
permissive
wx7614140/FEBS-Cloud
4be3e36708fab687ba520973182c1629783350a4
82640fefe5c674116f237021da2d6fccfbcc7bae
refs/heads/master
2021-09-23T18:21:24.010334
2021-09-10T06:23:50
2021-09-10T06:23:50
207,196,363
2
0
Apache-2.0
2020-10-31T12:40:06
2019-09-09T01:08:50
Java
UTF-8
Java
false
false
2,240
java
package cc.mrbird.febs.gateway.common.filter; import cc.mrbird.febs.common.core.entity.constant.FebsConstant; import cc.mrbird.febs.gateway.enhance.service.RouteEnhanceService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Value; import org.springframework.cloud.gateway.filter.GatewayFilterChain; import org.springframework.cloud.gateway.filter.GlobalFilter; import org.springframework.core.annotation.Order; import org.springframework.http.server.reactive.ServerHttpRequest; import org.springframework.stereotype.Component; import org.springframework.util.AntPathMatcher; import org.springframework.util.Base64Utils; import org.springframework.web.server.ServerWebExchange; import reactor.core.publisher.Mono; /** * @author MrBird */ @Slf4j @Component @Order(0) @RequiredArgsConstructor public class FebsGatewayRequestFilter implements GlobalFilter { private final RouteEnhanceService routeEnhanceService; private final AntPathMatcher pathMatcher = new AntPathMatcher(); @Value("${febs.gateway.enhance:false}") private Boolean routeEhance; @Override public Mono<Void> filter(ServerWebExchange exchange, GatewayFilterChain chain) { if (routeEhance) { Mono<Void> blackListResult = routeEnhanceService.filterBlackList(exchange); if (blackListResult != null) { routeEnhanceService.saveBlockLogs(exchange); return blackListResult; } Mono<Void> rateLimitResult = routeEnhanceService.filterRateLimit(exchange); if (rateLimitResult != null) { routeEnhanceService.saveRateLimitLogs(exchange); return rateLimitResult; } routeEnhanceService.saveRequestLogs(exchange); } byte[] token = Base64Utils.encode((FebsConstant.GATEWAY_TOKEN_VALUE).getBytes()); String[] headerValues = {new String(token)}; ServerHttpRequest build = exchange.getRequest().mutate().header(FebsConstant.GATEWAY_TOKEN_HEADER, headerValues).build(); ServerWebExchange newExchange = exchange.mutate().request(build).build(); return chain.filter(newExchange); } }
[ "852252810@qq.com" ]
852252810@qq.com
1665fe0b45f8c9ec0c2b50c421b92c063e03c70e
abc7e2b2a4f4f835b5bc695dd8087e1c8c1199df
/satish/src/com/transset/CouponDiscountType.java
15629b00ef3b0ed99aeaf6417b44a57bee0dc6e2
[]
no_license
katpb/spark-mongo-test
db54e83f94fc8f4d7638ea0838742331711025ed
4489ae3315dafc828ec5fbeefd3257bc2252be8c
refs/heads/master
2023-04-28T15:34:31.788929
2020-07-19T17:49:46
2020-07-19T17:49:46
268,293,363
0
2
null
2023-04-21T20:44:21
2020-05-31T14:09:23
Java
UTF-8
Java
false
false
3,879
java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // 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: 2020.06.07 at 01:19:54 PM IST // package com.transset; import java.math.BigDecimal; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for couponDiscountType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType name="couponDiscountType"> * &lt;complexContent> * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * &lt;sequence> * &lt;element name="discountAmt" type="{http://www.w3.org/2001/XMLSchema}decimal"/> * &lt;element name="affectsTax" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * &lt;element name="entryMethod" type="{}couponEntryMethod"/> * &lt;element name="couponData" type="{http://www.w3.org/2001/XMLSchema}string"/> * &lt;/sequence> * &lt;/restriction> * &lt;/complexContent> * &lt;/complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "couponDiscountType", propOrder = { "discountAmt", "affectsTax", "entryMethod", "couponData" }) public class CouponDiscountType { @XmlElement(required = true) protected BigDecimal discountAmt; protected boolean affectsTax; @XmlElement(required = true) @XmlSchemaType(name = "string") protected CouponEntryMethod entryMethod; @XmlElement(required = true) protected String couponData; /** * Gets the value of the discountAmt property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getDiscountAmt() { return discountAmt; } /** * Sets the value of the discountAmt property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setDiscountAmt(BigDecimal value) { this.discountAmt = value; } /** * Gets the value of the affectsTax property. * */ public boolean isAffectsTax() { return affectsTax; } /** * Sets the value of the affectsTax property. * */ public void setAffectsTax(boolean value) { this.affectsTax = value; } /** * Gets the value of the entryMethod property. * * @return * possible object is * {@link CouponEntryMethod } * */ public CouponEntryMethod getEntryMethod() { return entryMethod; } /** * Sets the value of the entryMethod property. * * @param value * allowed object is * {@link CouponEntryMethod } * */ public void setEntryMethod(CouponEntryMethod value) { this.entryMethod = value; } /** * Gets the value of the couponData property. * * @return * possible object is * {@link String } * */ public String getCouponData() { return couponData; } /** * Sets the value of the couponData property. * * @param value * allowed object is * {@link String } * */ public void setCouponData(String value) { this.couponData = value; } }
[ "satish_r1@verifone.com" ]
satish_r1@verifone.com
a50e296b9e2b017d0818eb967f41d97764d58f17
2a90ed40e69ece73a61542a223072af0b3d87c06
/Documents/TAA/TAA_YOUSEFIAN_M2_CCN/TAA_YOUSEFIAN_M2_CCN/TAA_TP3_Partie1/src/main/java/istic/TAA_TP3/Partie_1/Bank/Bank.java
6caa87e76c619a78974af8f3ae6404bde76b3166
[]
no_license
Ndusf/TPs-TAA
f82eb0578cba08f628865a37fe91da4f2426016e
d69efea0a384f599b2890e07317c98bc2d3a731b
refs/heads/main
2023-01-08T12:50:39.610310
2020-11-06T12:32:32
2020-11-06T12:32:32
310,592,531
0
0
null
null
null
null
UTF-8
Java
false
false
306
java
package istic.TAA_TP3.Partie_1.Bank; import org.springframework.stereotype.Component; @Component public class Bank implements IBank{ @Override public void transfert(String from, String to, int prix) { System.out.println("- Virement de "+ prix + " euros depuis" + from + " vers"+ to + "!"); } }
[ "neda.yousefian@etudiant.univ-rennes1.fr" ]
neda.yousefian@etudiant.univ-rennes1.fr
990a1016e42d21e14d77e7f7d457efe19ad477bd
f27b23f5d0f2e447d690716dd76d6d5d816af4f6
/src/com/disease_control/web/action/xtsz/sjzd/DataWorkStatusAction.java
83939829f49ef807c4b904b23f1b84773e8298b7
[]
no_license
studypower/cnjk
f1a36f97bdb911b70985eb951e64dc2b6257839a
6abd903a2a2d7b8a0cdde89ecb60511ddeec1bcf
refs/heads/master
2021-01-17T08:15:52.160808
2017-03-04T08:41:52
2017-03-04T08:41:52
83,876,467
0
0
null
null
null
null
UTF-8
Java
false
false
1,833
java
package com.disease_control.web.action.xtsz.sjzd; import java.util.HashMap; import com.disease_control.core.page.Page; import com.disease_control.core.status.BaseAction; import com.disease_control.service.DataWorkStatusService; import com.disease_control.web.form.DataWorkStatus; import com.yakov.utils.JsonUtil; public class DataWorkStatusAction extends BaseAction<DataWorkStatus> { public String initList() { return SUCCESS; } public void list() { initRequest(); DataWorkStatus dataWorkStatus = getForm(); Page page = dataWorkStatusService.list(dataWorkStatus.getPageIndex(), dataWorkStatus.getPageSize()); HashMap jsonMap = new HashMap(); jsonMap.put("total", page.getTotalPageCount()); jsonMap.put("page", page.getCurrentPageNo()); jsonMap.put("records", page.getTotalCount()); jsonMap.put("rows", page.getResult()); getPrintWriter().println(JsonUtil.ObjToJsonStr(jsonMap)); } public String initAdd() { return SUCCESS; } public String add() { DataWorkStatus dataWorkStatus = getForm(); dataWorkStatusService.save(dataWorkStatus); return SUCCESS; } public String initUpdate() { initRequest(); DataWorkStatus dataWorkStatus = getForm(); request.setAttribute("dataWorkStatus", dataWorkStatusService.info(dataWorkStatus.getId())); return SUCCESS; } public String update() { initRequest(); DataWorkStatus dataWorkStatus = getForm(); dataWorkStatusService.update(dataWorkStatus); return SUCCESS; } public void del() { initRequest(); DataWorkStatus dataWorkStatus = getForm(); dataWorkStatusService.del(dataWorkStatus.getId()); getPrintWriter().println(1); } private DataWorkStatusService dataWorkStatusService; public void setDataWorkStatusService(DataWorkStatusService dataWorkStatusService) { this.dataWorkStatusService = dataWorkStatusService; } }
[ "357658848@qq.com" ]
357658848@qq.com
40f7d6d6cc0fe83c6b95f7ad7d7f8ba8ea57b41e
8f92c94f949b1da5f09ec37cfb6995925b0dd227
/src/test/java/th/co/baiwa/buckwaframework/preferences/service/MessageServiceTest.java
d3607db73824aae456f5074c14a13eabf15aa3b4
[]
no_license
flame123flame/backend-springboot-ims
f36af2ed1797e1a0003f09067e31f1ce60d7fde7
4ee8a4e6f85e7f3f28976bdf6b4a314d1e54b20f
refs/heads/master
2022-07-05T14:08:53.055975
2019-09-10T09:30:04
2019-09-10T09:30:04
207,516,525
0
1
null
2022-06-29T17:38:16
2019-09-10T09:22:01
Java
UTF-8
Java
false
false
2,571
java
package th.co.baiwa.buckwaframework.preferences.service; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.security.test.context.support.WithMockUser; import org.springframework.test.context.ActiveProfiles; import org.springframework.test.context.junit4.SpringRunner; import th.co.baiwa.buckwaframework.common.constant.CommonConstants.PROFILE; import th.co.baiwa.buckwaframework.preferences.constant.MessageConstants.MESSAGE_TYPE; import th.co.baiwa.buckwaframework.preferences.persistence.entity.Message; @RunWith(SpringRunner.class) @SpringBootTest @WithMockUser(username = "admin", roles = { "ADMIN", "USER" }) @ActiveProfiles(value = PROFILE.UNITTEST) public class MessageServiceTest { @Autowired private MessageService messageService; @Test public void test_getMessageList() { // System.out.println("- - - - - getMessageList - - - - -"); // List<Message> messageList = messageService.getMessageList(0, 10); // Assert.assertNotEquals(0, messageList.size()); // for (Message message : messageList) { // System.out.println(message); // } } //@Test public void test_getMessageById_Found() { System.out.println("- - - - - getMessageById_Found - - - - -"); Message message = messageService.getById(3L); Assert.assertNotNull(message); System.out.println(message); } //@Test public void test_getMessageCount() { System.out.println("- - - - - getMessageCount - - - - -"); long count = messageService.count(); Assert.assertNotEquals(0, count); } //@Test public void test_insertMessage() { System.out.println("- - - - - insertMessage - - - - -"); Message message = new Message(); message.setMessageCode("003"); message.setMessageEn("desc eng"); message.setMessageTh("desc thai"); message.setMessageType(MESSAGE_TYPE.INFO); messageService.addMessage(message); Assert.assertNotNull(message.getMessageId()); } //@Test public void test_updateMessage() { System.out.println("- - - - - updateMessage - - - - -"); Message message = new Message(); message.setMessageId(3L); message.setMessageCode("003"); message.setMessageEn("desc eng 44"); message.setMessageTh("desc thai 55"); message.setMessageType(MESSAGE_TYPE.WARN); messageService.updateMessage(message); } //@Test public void test_deleteMessage() { System.out.println("- - - - - deleteMessage - - - - -"); // messageService.deleteMessage(3L); } }
[ "flame.tana@gmail.com" ]
flame.tana@gmail.com
2162b85f644a120d827764a214ed78f28a50384c
ca6e1130614abaff45788a191734631143a7ae39
/src/main/java/com/spontzoug/server/model/ResidentialMenu.java
0d5da0b0c8bea95b445aeda98c910d690db951b1
[]
no_license
JerryftGuo/spontzoug-backend
a3d5445ee646d9377320e716b6aec6f80dccc544
78cdd29033c276623f8a175dc3f7572f705559c2
refs/heads/main
2023-02-20T07:36:28.186077
2021-01-18T20:12:20
2021-01-18T20:12:20
330,771,579
0
0
null
null
null
null
UTF-8
Java
false
false
1,099
java
package com.spontzoug.server.model; import com.spontzoug.server.util.*; import com.spontzoug.server.util.Sale; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import org.springframework.data.annotation.CreatedDate; import org.springframework.data.annotation.Id; import org.springframework.data.annotation.LastModifiedDate; import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; import java.math.BigDecimal; import java.util.Date; import java.util.List; @Document @Data @NoArgsConstructor @AllArgsConstructor public class ResidentialMenu { @Id private String id; @Indexed private String businessid; private String region; private String category; private String brand; private String name; private String color; private String size; private BigDecimal baseprice; private List<ImageItem> images; private Sale onsale; private Boolean deleted; @CreatedDate private Date created; @LastModifiedDate private Date modified; }
[ "ft_guo@yahoo.ca" ]
ft_guo@yahoo.ca
e17113f00fa67e0ce154c613b2b1b7b134bb2f63
a047e7725bab3c5b1c814cdd6042eea2894f4223
/src/main/java/com/taobao/api/request/ItemPropimgDeleteRequest.java
29c1421c882a4c5c0b678835c4461891d05ccda4
[]
no_license
yangdd1205/taobao-sdk-java
8a2d8604f1634d62c2ffbcbddf4d8516c9f83dbb
50582240cb3c14de3c67b753a82428256bd93c72
refs/heads/master
2020-12-25T12:17:48.330795
2012-04-06T04:04:36
2012-04-06T04:04:36
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,894
java
package com.taobao.api.request; import com.taobao.api.internal.util.RequestCheckUtils; import java.util.Map; import com.taobao.api.TaobaoRequest; import com.taobao.api.internal.util.TaobaoHashMap; import com.taobao.api.response.ItemPropimgDeleteResponse; import com.taobao.api.ApiRuleException; /** * TOP API: taobao.item.propimg.delete request * * @author auto create * @since 1.0, 2011-09-09 13:49:10 */ public class ItemPropimgDeleteRequest implements TaobaoRequest<ItemPropimgDeleteResponse> { private TaobaoHashMap udfParams; // add user-defined text parameters private Long timestamp; /** * 商品属性图片ID */ private Long id; /** * 商品数字ID,必选 */ private Long numIid; public void setId(Long id) { this.id = id; } public Long getId() { return this.id; } public void setNumIid(Long numIid) { this.numIid = numIid; } public Long getNumIid() { return this.numIid; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public String getApiMethodName() { return "taobao.item.propimg.delete"; } public Map<String, String> getTextParams() { TaobaoHashMap txtParams = new TaobaoHashMap(); txtParams.put("id", this.id); txtParams.put("num_iid", this.numIid); if(udfParams != null) { txtParams.putAll(this.udfParams); } return txtParams; } public void putOtherTextParam(String key, String value) { if(this.udfParams == null) { this.udfParams = new TaobaoHashMap(); } this.udfParams.put(key, value); } public Class<ItemPropimgDeleteResponse> getResponseClass() { return ItemPropimgDeleteResponse.class; } public void check() throws ApiRuleException { RequestCheckUtils.checkNotEmpty(id,"id"); RequestCheckUtils.checkNotEmpty(numIid,"numIid"); RequestCheckUtils.checkMinValue(numIid,0L,"numIid"); } }
[ "ggd543@gmail.com" ]
ggd543@gmail.com
bf645117c6ba4841027700fe228c824a6c4276f4
0f48f97e6d18f8c2e4f91b185faccf06efe26bbf
/src/main/java/com/infotech/app/dao/TopicDAO.java
b95c36f99c5858d75c535645e464feb42b22f9e8
[]
no_license
Mohit-jindal/SpringBootCustomSecurityWithDatabase
e50e7624c557f8d0290cac66852c0afed70c0cf9
14067e8010fb172a2b96513a24fbf14791a6aa62
refs/heads/master
2020-06-05T04:46:58.652202
2019-06-17T09:39:18
2019-06-17T09:39:18
192,318,150
0
0
null
null
null
null
UTF-8
Java
false
false
378
java
package com.infotech.app.dao; import java.util.List; import com.infotech.app.entities.Topic; public interface TopicDAO { public Topic getTopicById(int topicId); public List<Topic> getAllTopics(); public void addTopic(Topic topic); public void updateTopic(Topic topic); public void deleteTopic(int topicId); public boolean topicExists(String title, String category); }
[ "ZJINMOH@ericsson.com" ]
ZJINMOH@ericsson.com
4bda6093f8c29bbf0acf73d692ae61bb9b92920a
adddb1e2d321fd66d2cad5b78051451ceee09074
/app/src/main/java/pl/nauka/jarek/udemy_mg/ApiActivity.java
e8e8a85ccdf7dd1321353e9afc7241c9934bfbf5
[]
no_license
Jarekgab/Udemy_JG
57d126cdd0285d0ab778855cb21720aab8eae9c7
d854922cdad93da4b027d6c10d241ba88ac324f6
refs/heads/master
2020-04-03T02:46:48.852412
2019-01-28T12:38:14
2019-01-28T12:38:14
154,966,832
0
0
null
null
null
null
UTF-8
Java
false
false
7,779
java
package pl.nauka.jarek.udemy_mg; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.graphics.Color; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.Button; import android.widget.ImageView; import android.widget.TextView; import com.android.volley.Request; import com.android.volley.RequestQueue; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.JsonArrayRequest; import com.android.volley.toolbox.StringRequest; import com.android.volley.toolbox.Volley; import com.google.gson.Gson; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import butterknife.BindView; import butterknife.ButterKnife; import pl.nauka.jarek.udemy_mg.common.Connectivity; import pl.nauka.jarek.udemy_mg.model.User; public class ApiActivity extends AppCompatActivity{ @BindView(R.id.htmlDataButton) Button htmlDataButton; @BindView(R.id.resoultTextView) TextView resultTextView; @BindView(R.id.jsonDataButton) Button jsonDataButton; @BindView(R.id.isConnectedTextView) TextView isConnectedTextView; @BindView(R.id.isConnectedWifiTextView) TextView isConnectedWifiTextView; @BindView(R.id.isConnectedMobileTextView) TextView isConnectedMobileTextView; @BindView(R.id.imageView) ImageView imageView; private RequestQueue requestQueue; BroadcastReceiver updateUIReciver; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_api); ButterKnife.bind(this); //Pobieranie danych z ConnectivityChange bez onCreate() IntentFilter filter = new IntentFilter(); filter.addAction("service.to.activity.transfer"); updateUIReciver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { if(intent != null){ String s = intent.getStringExtra("CONNECTIVITY"); connectivityChange(); } } }; registerReceiver(updateUIReciver, filter); connectivityChange(); requestQueue = Volley.newRequestQueue(this); //kolejka do obsługi sieci, zamiast wielowatkosci htmlDataButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { resultTextView.setText(""); StringRequest stringRequest = new StringRequest(Request.Method.GET, "https://jsonplaceholder.typicode.com/users", new Response.Listener<String>() { //https://www.google.pl/ @Override public void onResponse(String response) { //response wszystkie dane // resultTextView.setText(response); //odpowiwedz, że udało się coś pobrać //Liczenie "\"name\": " -> czyli ustalenie wartości skrajnych petli for String in = response; int i = 0; Pattern p = Pattern.compile("\"name\": "); Matcher m = p.matcher(in); while (m.find()) { i++; } //Zapisywanie name String userCut = response; int a = 0; int lp = 1; for (int k = 0; k < i; k++) { if (a == 2) { a = 0; } userCut = userCut.substring(userCut.indexOf("\"name\": ") + 8); String name = userCut.substring(userCut.indexOf("\"") + 1, userCut.indexOf("\",")); if (a == 0) { resultTextView.append(lp + ". " + name + "\n"); lp++; } a++; } } }, new Response.ErrorListener() { @Override public void onErrorResponse(VolleyError error) { //w przypadku błędu resultTextView.setText("!!!"); } }); requestQueue.add(stringRequest); } }); final String jsonUrl = "https://jsonplaceholder.typicode.com/users"; final List<User> users = new ArrayList<>(); jsonDataButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { resultTextView.setText(""); users.clear(); JsonArrayRequest jar = new JsonArrayRequest(jsonUrl, new Response.Listener<JSONArray>() { @Override public void onResponse(JSONArray response) { for (int i = 0; i < response.length(); i++) { try { JSONObject user = (JSONObject) response.get(i); Gson gson = new Gson(); User u = gson.fromJson(user.toString(), User.class); users.add(u); } catch (JSONException e) { e.printStackTrace(); } } for (int i = 0; i < users.size(); i++) { resultTextView.append(i + 1 + ". " + users.get(i).getName() + "\n"); } } }, new Response.ErrorListener() { @Override public void onErrorResponse(VolleyError error) { //w przypadku błędu resultTextView.setText("!!!"); } } ); requestQueue.add(jar); } }); } private void connectivityChange() { if (Connectivity.isConnected(this)) { htmlDataButton.setVisibility(View.VISIBLE); jsonDataButton.setVisibility(View.VISIBLE); resultTextView.setVisibility(View.VISIBLE); resultTextView.setTextColor(Color.BLACK); resultTextView.setText(""); resultTextView.setTextSize(15); imageView.setImageResource(R.drawable.ic_check_circle); } else { htmlDataButton.setVisibility(View.INVISIBLE); jsonDataButton.setVisibility(View.INVISIBLE); resultTextView.setTextColor(Color.RED); resultTextView.setText(" Sprawdź dostęp do internetu :-/"); resultTextView.setTextSize(20); imageView.setImageResource(R.drawable.ic_remove_circle); } if (Connectivity.isConnectedWifi(this)) { isConnectedWifiTextView.setText("Wifi ON"); } else { isConnectedWifiTextView.setText("Wifi OFF"); } if (Connectivity.isConnectedMobile(this)) { isConnectedMobileTextView.setText("Mobile ON"); } else { isConnectedMobileTextView.setText("Mobile OFF"); } } }
[ "jarekgab1@gmail.com" ]
jarekgab1@gmail.com
e59878ad80eeac1f3300c5841622de20de7d8dd1
4a69dd43f45b841d38fa4b1b6fffc2ecc048e4b5
/Practice/Algorithm/QuickSort.java
776fe054675762f637cc252948b5e768128b2251
[]
no_license
shashanksahu11/Object-Oriented-Design
51647adbddf885f56c953899c2138744ff286628
d867a9ab56375d516044d1ccbf39e4a655af3777
refs/heads/master
2020-12-14T15:44:27.741890
2019-01-01T08:07:30
2019-01-01T08:07:30
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,357
java
package design.practice.designEx.algorithm; import java.util.ArrayList; import java.util.List; public class QuickSort { public static void main(String[] args) { List<Integer> listIntegers = new ArrayList<Integer>(); listIntegers.add(12); listIntegers.add(2); listIntegers.add(120); listIntegers.add(30); listIntegers.add(12); listIntegers.add(55); List<Integer> sorted = quickSort(listIntegers); System.out.println(listIntegers); System.out.println(sorted); } public static List<Integer> quickSort(List<Integer> list) { if(list == null || list.size() <= 1) return list; Integer pivot = list.get(0); List<Integer> greaterThenPivot = new ArrayList<Integer>(); List<Integer> lesserThenPivot = new ArrayList<Integer>(); for (int i = 1; i < list.size(); i++) { if(list.get(i) <= pivot){ lesserThenPivot.add(list.get(i)); }else{ greaterThenPivot.add(list.get(i)); } } List<Integer> returnedList = new ArrayList<Integer>(); returnedList.addAll(quickSort(lesserThenPivot)); returnedList.add(pivot); returnedList.addAll(quickSort(greaterThenPivot)); return returnedList; } }
[ "chaklader@macs-MacBook-Pro.local" ]
chaklader@macs-MacBook-Pro.local
0d78e17b0cb48a59994093a0f3edabf6ace30335
c0c97c15adf22236785e086368a006f8bced4019
/invoice/src/main/java/com/mycompany/invoice/core/repository/memory/InvoiceRepositoryMemory.java
e8a134cc85740c312345c9de3dc70ebef556ea8f
[]
no_license
devman223/SpringBoot-Pratices
95c9c3f6d5f3d85a35b6ae1c181fd8f083127d80
8c7ca35480a91e5b636a85008103c515010475bd
refs/heads/main
2023-07-14T08:31:24.640387
2021-08-02T06:13:13
2021-08-02T06:13:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,855
java
package com.mycompany.invoice.core.repository.memory; import com.mycompany.invoice.core.entity.Invoice; import com.mycompany.invoice.core.repository.InvoiceRepositoryInterface; import java.util.ArrayList; import java.util.List; import java.util.Optional; //@Repository public class InvoiceRepositoryMemory implements InvoiceRepositoryInterface { private static List<Invoice> invoices = new ArrayList<>(); public Invoice save (Invoice invoice){ invoices.add(invoice); System.out.println("Memory : Invoices added with number " + invoice.getNumber() + " for " + invoice.getCustomer().getName()); return invoice; } @Override public List<Invoice> findAll() { throw new UnsupportedOperationException(); } @Override public Iterable<Invoice> findAllById(Iterable<String> iterable) { throw new UnsupportedOperationException(); } @Override public long count() { throw new UnsupportedOperationException(); } @Override public void deleteById(String s) { throw new UnsupportedOperationException(); } @Override public void delete(Invoice invoice) { throw new UnsupportedOperationException(); } @Override public void deleteAll(Iterable<? extends Invoice> iterable) { throw new UnsupportedOperationException(); } @Override public void deleteAll() { throw new UnsupportedOperationException(); } @Override public <S extends Invoice> Iterable<S> saveAll(Iterable<S> iterable) { throw new UnsupportedOperationException(); } @Override public Optional<Invoice> findById(String number) { throw new UnsupportedOperationException(); } @Override public boolean existsById(String s) { throw new UnsupportedOperationException(); } }
[ "70981701+josue-lubaki@users.noreply.github.com" ]
70981701+josue-lubaki@users.noreply.github.com
07d9d8179a7f7bec3c62bca217887bd4938dae6c
f0218e7aace313330ff3ed1af1812a623c26aac2
/taxe/core/src/test/MapTest.java
0a968919763cb63fa57507318453e5b422c27802
[]
no_license
SEPRFVS/FVS2
9c66616a2b628bdcfd9173f2913199e3d15fb604
1cca80f431e7d1851be3b961c6b69dd76a052fab
refs/heads/master
2021-01-22T04:41:27.115585
2015-01-19T20:10:22
2015-01-19T20:10:22
26,494,033
1
12
null
2021-06-16T17:46:19
2014-11-11T16:39:00
Java
UTF-8
Java
false
false
968
java
package test; import gameLogic.map.Map; import gameLogic.map.Position; import org.junit.Before; import org.junit.Test; import static org.junit.Assert.assertTrue; public class MapTest extends LibGdxTest{ private Map map; @Before public void mapSetup() throws Exception { map = new Map(); } @Test public void addStationAndConnectionTest() throws Exception { String name1 = "station1"; String name2 = "station2"; int previousSize = map.getStations().size(); map.addStation(name1, new Position(9999, 9999)); map.addStation(name2, new Position(200,200)); assertTrue("Failed to add stations", map.getStations().size() - previousSize == 2); map.addConnection(name1, name2); assertTrue("Connection addition failed", map.doesConnectionExist(name2, name1)); // Should throw an error by itself map.getStationFromPosition(new Position(9999, 9999)); } }
[ "ml1118@york.ac.uk" ]
ml1118@york.ac.uk
9d6ee76c7f2e36a8129ce01dcec18cb3649b6cff
6cdbb3b707296c16b995d0d1e6f807dc85ea0ec6
/src/android/rockchip/update/interfaces/IClient.java
554bdedae7c4303714ef2961e6534f3f8e0ca85d
[]
no_license
lishangren/RKUpdateService-mid7.1
90cc3a87e4725e1582eb58043950c6b8c46fca21
d31b57eda768ab8b593d1344341263842380f633
refs/heads/master
2021-10-24T09:57:04.992280
2019-02-27T10:10:30
2019-02-27T10:10:30
null
0
0
null
null
null
null
UTF-8
Java
false
false
584
java
package android.rockchip.update.interfaces; import android.rockchip.update.dataRecord.RemoteRequestMsg; import android.rockchip.update.dataRecord.RemoteServiceAcountInfo; /**用于描述与服务器进行通信的一端 */ public interface IClient{ /**与服务器建立链接 */ int connectToService(RemoteServiceAcountInfo acountInfo, ServiceCallBack callBack); /**与服务器断开链接 */ int disconnectToService(); /**注册要监听的内容 */ int subscribeTopics(); /**发送msg至服务器 */ int sendMsgToService(RemoteRequestMsg msg); }
[ "chenqigan@usr.cn" ]
chenqigan@usr.cn
a391bb752b191aac25bf2bb26b072d9cddf50f06
0b82313fcb6c0adf71da7c88fb148424d9307446
/web-console/src/main/java/com/ztgm/mqtt/pojo/Procompany.java
b64e1ab7bc34f8a78cd91be92de95510e86a5147
[ "Apache-2.0" ]
permissive
kxjl168/jmqtt
9777e9800e23d3552f5e4bcd84e2a26c1c2f71a3
e03a24e16d6262c9bd0c4b781bb968bbd48c27e9
refs/heads/master
2020-09-24T16:55:28.962202
2020-02-14T05:31:13
2020-02-14T05:31:13
225,802,304
0
0
Apache-2.0
2019-12-04T07:08:07
2019-12-04T07:08:06
null
UTF-8
Java
false
false
1,427
java
package com.ztgm.mqtt.pojo; public class Procompany { /** * */ private String id; /** * 公司名称 */ private String name; /** * prokey */ private String productKey; /** * secret */ private String secret; /** * * @return id */ public String getId() { return id; } /** * * @param id */ public void setId(String id) { this.id = id == null ? null : id.trim(); } /** * 公司名称 * @return name 公司名称 */ public String getName() { return name; } /** * 公司名称 * @param name 公司名称 */ public void setName(String name) { this.name = name == null ? null : name.trim(); } /** * prokey * @return productKey prokey */ public String getProductKey() { return productKey; } /** * prokey * @param productKey prokey */ public void setProductKey(String productKey) { this.productKey = productKey == null ? null : productKey.trim(); } /** * secret * @return secret secret */ public String getSecret() { return secret; } /** * secret * @param secret secret */ public void setSecret(String secret) { this.secret = secret == null ? null : secret.trim(); } }
[ "kxjl168@foxmail.com" ]
kxjl168@foxmail.com
863eff22aca75c4ebe276cc5c753376d0eb9320b
1ecf05f47b8fd019b3aec21ed19d1db23ba25e52
/javafx_treeview/src/filetreeviewsample/CopyModalDialog.java
b105d00ddf3c89d121cdd6b524e2bd2c994744e6
[]
no_license
paddlelaw/selenium_java
3db82a33af9964ff2d222bf0a841d07e47f21ab9
3dfa0706a500fcd437181ddf7181c54223cdba28
refs/heads/master
2023-07-13T21:07:06.470189
2021-08-14T04:43:38
2021-08-14T04:43:38
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,380
java
package filetreeviewsample; import javafx.beans.property.BooleanProperty; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Label; import javafx.scene.layout.GridPane; import javafx.stage.Modality; import javafx.stage.Stage; import javafx.stage.StageStyle; /** * Dialog for confirm copying file * * @author tomo */ public class CopyModalDialog { public CopyModalDialog(Stage owner, final BooleanProperty replaceProp) { final Stage dialog = new Stage(StageStyle.UTILITY); dialog.initOwner(owner); dialog.initModality(Modality.APPLICATION_MODAL); GridPane root = new GridPane(); root.setPadding(new Insets(30)); root.setHgap(5); root.setVgap(10); Label label = new Label("The item already exists in this location. Do you want to replace it?"); Button okButton = new Button("OK"); okButton.setOnAction(event -> { replaceProp.set(true); dialog.hide(); }); Button cancelButton = new Button("Cancel"); cancelButton.setOnAction(event -> { replaceProp.set(false); dialog.hide(); }); root.add(label, 0, 0, 2, 1); root.addRow(1, okButton, cancelButton); dialog.setScene(new Scene(root)); dialog.show(); } }
[ "kouzmine_serguei@yahoo.com" ]
kouzmine_serguei@yahoo.com
b1bc8a11a7d3f5925c25521da9d69f6dd3ae073b
24a32bc2aafcca19cf5e5a72ee13781387be7f0b
/src/framework/tags/gwt-test-utils-parent-0.28.3/gwt-test-utils/src/main/java/com/octo/gwt/test/internal/patchers/dom/ElementPatcher.java
0a747f04d3ee037a6f5ecb3215fde47d6a160bd0
[]
no_license
google-code-export/gwt-test-utils
27d6ee080f039a8b4111e04f32ba03e5396dced5
0391347ea51b3db30c4433566a8985c4e3be240e
refs/heads/master
2016-09-09T17:24:59.969944
2012-11-20T07:13:03
2012-11-20T07:13:03
32,134,062
0
0
null
null
null
null
UTF-8
Java
false
false
6,623
java
package com.octo.gwt.test.internal.patchers.dom; import java.util.List; import com.google.gwt.dom.client.Element; import com.google.gwt.dom.client.Node; import com.google.gwt.dom.client.NodeList; import com.google.gwt.dom.client.Style; import com.octo.gwt.test.internal.utils.GwtHtmlParser; import com.octo.gwt.test.internal.utils.GwtStringUtils; import com.octo.gwt.test.internal.utils.JsoProperties; import com.octo.gwt.test.internal.utils.PropertyContainer; import com.octo.gwt.test.patchers.OverlayPatcher; import com.octo.gwt.test.patchers.PatchClass; import com.octo.gwt.test.patchers.PatchMethod; @PatchClass(Element.class) public class ElementPatcher extends OverlayPatcher { @PatchMethod public static void blur(Element element) { } @PatchMethod public static void focus(Element element) { } @PatchMethod public static String getClassName(Element element) { return element.getAttribute(JsoProperties.ELEM_CLASS); } @PatchMethod public static NodeList<Element> getElementsByTagName(Element elem, String tagName) { return DocumentPatcher.getElementsByTagName(elem, tagName); } @PatchMethod public static String getId(Element element) { return element.getAttribute(JsoProperties.ELEM_ID); } @PatchMethod public static int getOffsetHeight(Element element) { return GwtStringUtils.parseInt(element.getStyle().getHeight(), 0); } @PatchMethod public static int getOffsetLeft(Element element) { return GwtStringUtils.parseInt(element.getStyle().getLeft(), 0); } @PatchMethod public static Element getOffsetParent(Element element) { if (element == null) return null; return element.getParentElement(); } @PatchMethod public static int getOffsetTop(Element element) { return GwtStringUtils.parseInt(element.getStyle().getTop(), 0); } @PatchMethod public static int getOffsetWidth(Element element) { return GwtStringUtils.parseInt(element.getStyle().getWidth(), 0); } @PatchMethod public static boolean getPropertyBoolean(Element element, String propertyName) { PropertyContainer properties = JavaScriptObjects.getObject(element, JsoProperties.ELEM_PROPERTIES); return properties.getBoolean(propertyName); } @PatchMethod public static double getPropertyDouble(Element element, String propertyName) { PropertyContainer properties = JavaScriptObjects.getObject(element, JsoProperties.ELEM_PROPERTIES); return properties.getDouble(propertyName); } @PatchMethod public static int getPropertyInt(Element element, String propertyName) { PropertyContainer properties = JavaScriptObjects.getObject(element, JsoProperties.ELEM_PROPERTIES); return properties.getInteger(propertyName); } @PatchMethod public static Object getPropertyObject(Element element, String propertyName) { // TODO: remove this test ? if ("tagName".equals(propertyName)) { return element.getTagName(); } PropertyContainer properties = JavaScriptObjects.getObject(element, JsoProperties.ELEM_PROPERTIES); return properties.getObject(propertyName); } @PatchMethod public static String getPropertyString(Element element, String propertyName) { String value = (String) getPropertyObject(element, propertyName); // null (javascript undefined) is a possible value here if not a DOM // standard property if (value == null) { String propertyNameCaseSensitive = JsoProperties.get().getPropertyName( propertyName); if (propertyName.equals(propertyNameCaseSensitive)) { value = ""; } } return value; } @PatchMethod public static Style getStyle(Element element) { return JavaScriptObjects.getObject(element, JsoProperties.STYLE_OBJECT_FIELD); } @PatchMethod public static String getTitle(Element element) { return element.getAttribute(JsoProperties.ELEM_TITLE); } @PatchMethod public static void removeAttribute(Element element, String name) { PropertyContainer properties = JavaScriptObjects.getObject(element, JsoProperties.ELEM_PROPERTIES); properties.remove(name); } @PatchMethod public static void setAttribute(Element element, String attributeName, String value) { PropertyContainer properties = JavaScriptObjects.getObject(element, JsoProperties.ELEM_PROPERTIES); properties.put(attributeName.toLowerCase(), value); } @PatchMethod public static void setClassName(Element element, String className) { element.setAttribute(JsoProperties.ELEM_CLASS, className); } @PatchMethod public static void setId(Element element, String id) { element.setAttribute(JsoProperties.ELEM_ID, id); } @PatchMethod public static void setInnerHTML(Element element, String html) { List<Node> innerList = JavaScriptObjects.getObject(element.getChildNodes(), JsoProperties.NODE_LIST_INNER_LIST); innerList.clear(); NodeList<Node> nodes = GwtHtmlParser.parse(html); for (int i = 0; i < nodes.getLength(); i++) { innerList.add(nodes.getItem(i)); } } @PatchMethod public static void setPropertyBoolean(Element element, String propertyName, boolean value) { PropertyContainer properties = JavaScriptObjects.getObject(element, JsoProperties.ELEM_PROPERTIES); properties.put(propertyName.toLowerCase(), value); } @PatchMethod public static void setPropertyDouble(Element element, String propertyName, double value) { PropertyContainer properties = JavaScriptObjects.getObject(element, JsoProperties.ELEM_PROPERTIES); properties.put(propertyName.toLowerCase(), value); } @PatchMethod public static void setPropertyInt(Element element, String propertyName, int value) { PropertyContainer properties = JavaScriptObjects.getObject(element, JsoProperties.ELEM_PROPERTIES); properties.put(propertyName.toLowerCase(), value); } @PatchMethod public static void setPropertyString(Element element, String propertyName, String value) { PropertyContainer properties = JavaScriptObjects.getObject(element, JsoProperties.ELEM_PROPERTIES); properties.put(propertyName.toLowerCase(), value); } @PatchMethod public static void setTitle(Element element, String title) { element.setAttribute(JsoProperties.ELEM_TITLE, title); } }
[ "gael.lazzari@d9eb14d4-a931-11de-b950-3d5b5f4ea0aa" ]
gael.lazzari@d9eb14d4-a931-11de-b950-3d5b5f4ea0aa
3ca047041bea6d268052f5a5ed20c2176e6f9a79
a3ed19d464dc6e5fbecab4dce99e2a3404e056b0
/baseCode/src/chapter04/jten/TestConversion.java
6c991918ed84b0c252e8f87f4bdde214854d0af4
[]
no_license
Marviszhao/JAVA-WEB-Projects
ef03fbb51545b95dccf56ca09509e19a5fafd6f6
5e9f7d9cf61a51518b65ed1e61bfaa868cf3f4a1
refs/heads/master
2020-05-27T21:23:22.433102
2017-03-04T10:44:44
2017-03-04T10:44:44
83,676,575
0
0
null
null
null
null
GB18030
Java
false
false
848
java
package chapter04.jten; //面试笔试题常见的问题点 //int 和 float 的转换出现的精度损失 //浮点类型的四舍五入的实现 //a + b 默认返回一个int类型的整型 public class TestConversion{ public static void main(String args[]){ int i1 = 1234567891; float f = i1; //合法,但仍然可能存在精度损失 System.out.println(f); double d1 = i1; //合法,不存在精度损失 System.out.println(d1); double d2 = 3.99; int i2 = (int)(d2+0.5); System.out.println(i2); byte a = 3; //合法 byte b = 112; //合法 // //byte c = 200; //非法,超出表数范围 // byte d = a + b; //非法,可能存在精度损失 int e = a + b; //合法 System.out.println(e); int k = 1299; byte b1 = (byte)k; //非法,可能存在精度损失 System.out.println(b1); } }
[ "zhaozhifei668@163.com" ]
zhaozhifei668@163.com
86696ba1a37948c307b68b0b40bf4b947401b79a
08e56bcd65965a8c8924c4679a6ed8f01c0ac620
/src/main/java/net/mcreator/biomeores/procedures/TourmalineOreStoneUpdateTickProcedure.java
d900e3fe99b8cf9119c8ee0db0d7c7964550667b
[]
no_license
Shadowdragon019/Environmental-Ores
861546e35e0ce8812a922ba1bc349184a7705814
8796d0c209d34bd769b284337b65b649352286a3
refs/heads/master
2022-12-31T19:26:46.996417
2020-10-18T14:45:09
2020-10-18T14:45:09
305,123,748
0
0
null
null
null
null
UTF-8
Java
false
false
4,808
java
package net.mcreator.biomeores.procedures; import net.minecraft.world.IWorld; import net.minecraft.util.math.BlockPos; import net.minecraft.util.ResourceLocation; import net.minecraft.tags.BlockTags; import net.mcreator.biomeores.block.TourmalineOreStoneBlock; import net.mcreator.biomeores.EnvironmentaloresModElements; import java.util.Map; import java.util.HashMap; @EnvironmentaloresModElements.ModElement.Tag public class TourmalineOreStoneUpdateTickProcedure extends EnvironmentaloresModElements.ModElement { public TourmalineOreStoneUpdateTickProcedure(EnvironmentaloresModElements instance) { super(instance, 16); } public static void executeProcedure(Map<String, Object> dependencies) { if (dependencies.get("x") == null) { if (!dependencies.containsKey("x")) System.err.println("Failed to load dependency x for procedure TourmalineOreStoneUpdateTick!"); return; } if (dependencies.get("y") == null) { if (!dependencies.containsKey("y")) System.err.println("Failed to load dependency y for procedure TourmalineOreStoneUpdateTick!"); return; } if (dependencies.get("z") == null) { if (!dependencies.containsKey("z")) System.err.println("Failed to load dependency z for procedure TourmalineOreStoneUpdateTick!"); return; } if (dependencies.get("world") == null) { if (!dependencies.containsKey("world")) System.err.println("Failed to load dependency world for procedure TourmalineOreStoneUpdateTick!"); return; } double x = dependencies.get("x") instanceof Integer ? (int) dependencies.get("x") : (double) dependencies.get("x"); double y = dependencies.get("y") instanceof Integer ? (int) dependencies.get("y") : (double) dependencies.get("y"); double z = dependencies.get("z") instanceof Integer ? (int) dependencies.get("z") : (double) dependencies.get("z"); IWorld world = (IWorld) dependencies.get("world"); double RandomNumber = 0; for (int index0 = 0; index0 < (int) ((((new java.util.Random()).nextInt((int) 5 + 1)) + 1)); index0++) { RandomNumber = (double) ((new java.util.Random()).nextInt((int) 5 + 1)); if (((BlockTags.getCollection().getOrCreate(new ResourceLocation(("forge:stone_tourmalineible").toLowerCase(java.util.Locale.ENGLISH))) .contains((world.getBlockState(new BlockPos((int) x, (int) y, (int) (z + 1)))).getBlock())) && ((RandomNumber) == 0))) { world.setBlockState(new BlockPos((int) x, (int) y, (int) (z + 1)), TourmalineOreStoneBlock.block.getDefaultState(), 3); } else if (((BlockTags.getCollection() .getOrCreate(new ResourceLocation(("forge:stone_tourmalineible").toLowerCase(java.util.Locale.ENGLISH))) .contains((world.getBlockState(new BlockPos((int) x, (int) y, (int) (z + (-1))))).getBlock())) && ((RandomNumber) == 1))) { world.setBlockState(new BlockPos((int) x, (int) y, (int) (z + (-1))), TourmalineOreStoneBlock.block.getDefaultState(), 3); } else if (((BlockTags.getCollection() .getOrCreate(new ResourceLocation(("forge:stone_tourmalineible").toLowerCase(java.util.Locale.ENGLISH))) .contains((world.getBlockState(new BlockPos((int) (x + 1), (int) y, (int) z))).getBlock())) && ((RandomNumber) == 2))) { world.setBlockState(new BlockPos((int) (x + 1), (int) y, (int) z), TourmalineOreStoneBlock.block.getDefaultState(), 3); } else if (((BlockTags.getCollection() .getOrCreate(new ResourceLocation(("forge:stone_tourmalineible").toLowerCase(java.util.Locale.ENGLISH))) .contains((world.getBlockState(new BlockPos((int) (x + (-1)), (int) y, (int) z))).getBlock())) && ((RandomNumber) == 3))) { world.setBlockState(new BlockPos((int) (x + (-1)), (int) y, (int) z), TourmalineOreStoneBlock.block.getDefaultState(), 3); } else if (((BlockTags.getCollection() .getOrCreate(new ResourceLocation(("forge:stone_tourmalineible").toLowerCase(java.util.Locale.ENGLISH))) .contains((world.getBlockState(new BlockPos((int) x, (int) (y + 1), (int) z))).getBlock())) && ((RandomNumber) == 4))) { world.setBlockState(new BlockPos((int) x, (int) (y + 1), (int) z), TourmalineOreStoneBlock.block.getDefaultState(), 3); } else if (((BlockTags.getCollection() .getOrCreate(new ResourceLocation(("forge:stone_tourmalineible").toLowerCase(java.util.Locale.ENGLISH))) .contains((world.getBlockState(new BlockPos((int) x, (int) (y + (-1)), (int) z))).getBlock())) && ((RandomNumber) == 5))) { world.setBlockState(new BlockPos((int) x, (int) (y + (-1)), (int) z), TourmalineOreStoneBlock.block.getDefaultState(), 3); } { Map<String, Object> $_dependencies = new HashMap<>(); $_dependencies.put("world", world); $_dependencies.put("x", x); $_dependencies.put("y", y); $_dependencies.put("z", z); SpreadTourmalineSpikesProcedure.executeProcedure($_dependencies); } } } }
[ "45351052+wolfboycoolkid@users.noreply.github.com" ]
45351052+wolfboycoolkid@users.noreply.github.com
b0815b4e035ff4bb67aa6b4a2cbd57c9e083254c
d8e86983050941f997271163d8d517a6ddfaad09
/Juno_back-end-test/src/main/java/br/com/bb/Controllers/CategoryController.java
17008f27f6608392f8ad91bf875f2a2f91c20705
[]
no_license
rodneuson/Juno
856bca59a4149aa96c503f5470cff6ac62393126
41b1b5504a7ba4d9869b9c4ff4e09b55e92f132c
refs/heads/master
2020-05-15T08:05:45.476122
2019-04-18T20:42:59
2019-04-18T20:42:59
182,154,289
0
0
null
null
null
null
UTF-8
Java
false
false
599
java
package br.com.bb.Controllers; import java.util.List; import br.com.bb.Models.Category; import br.com.bb.Service.CategoryService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/category") public class CategoryController { @Autowired CategoryService categoryService; @RequestMapping("/listAll") public List<Category> listAll(){ return categoryService.getAll(); } }
[ "noreply@github.com" ]
noreply@github.com
34bf2224515d4a1075ec95c3d404ad4c76379425
d57af656595d7e80d064e0b8ac1e9215a4759bb1
/tutorial-2/tut2_src/src/MyserviceHandler.java
5f7f40eb57d99529b79ffb13d8ee66ea4c51d96d
[ "MIT" ]
permissive
simar7/thrift-hadoop-pig
4446e8e84ef414a37137500c68d414d6b4eb756a
0a2fd8beaf86b7a367bd49bcec09a3979e2ef2a4
refs/heads/master
2021-01-18T02:46:08.763679
2015-08-24T03:30:02
2015-08-24T03:30:02
35,891,834
0
0
null
null
null
null
UTF-8
Java
false
false
1,716
java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import org.apache.thrift.TException; // Generated code import tutorial.*; import java.util.HashMap; public class MyserviceHandler implements Myservice.Iface { private HashMap<Integer,Item> map; public MyserviceHandler() { map = new HashMap<Integer, Item>(); } public int add(int n1, int n2) { System.out.println("add(" + n1 + "," + n2 + ")"); return n1 + n2; } public int DelayAdd(int n1, int n2, int delay) { System.out.println("Sleep " + delay + " seconds."); try{Thread.sleep(delay * 1000);}catch(InterruptedException e){System.out.println(e);} System.out.println("Delayadd(" + n1 + "," + n2 + ")"); return n1 + n2; } public void putItem(Item item) { System.out.println("putItem key(" + item.key + ")"); map.put(item.key, item); } public Item getItem(int key) { System.out.println("getItem(" + key + ")"); return map.get(key); } }
[ "simar@linux.com" ]
simar@linux.com
1f0dd57065c87e350870aef3a7d066ff8c2dbff2
14b138f49f84ebb573d90a74772e0de5f69c1e9d
/src/main/java/com/renanazzolim/helpdesk/api/dto/Summary.java
1dbfd12b1575d728eff539b21d17e3e57518c313
[]
no_license
razzolim/helpdesk-backend
a87525300c7ac8e2bb8d0574724fbe21cc1491ea
2359ab66ad23d2394f2641bbc6bf88a41f32a406
refs/heads/master
2023-03-21T00:50:38.862124
2021-03-23T15:32:53
2021-03-23T15:32:53
350,761,422
0
0
null
null
null
null
UTF-8
Java
false
false
1,378
java
package com.renanazzolim.helpdesk.api.dto; import java.io.Serializable; public class Summary implements Serializable { private static final long serialVersionUID = -5822592064082345958L; private Integer amountNew; private Integer amountResolved; private Integer amountApproved; private Integer amountDisapproved; private Integer amountAssigned; private Integer amountClosed; public Integer getAmountNew() { return amountNew; } public void setAmountNew(Integer amountNew) { this.amountNew = amountNew; } public Integer getAmountResolved() { return amountResolved; } public void setAmountResolved(Integer amountResolved) { this.amountResolved = amountResolved; } public Integer getAmountApproved() { return amountApproved; } public void setAmountApproved(Integer amountApproved) { this.amountApproved = amountApproved; } public Integer getAmountDisapproved() { return amountDisapproved; } public void setAmountDisapproved(Integer amountDisapproved) { this.amountDisapproved = amountDisapproved; } public Integer getAmountAssigned() { return amountAssigned; } public void setAmountAssigned(Integer amountAssigned) { this.amountAssigned = amountAssigned; } public Integer getAmountClosed() { return amountClosed; } public void setAmountClosed(Integer amountClosed) { this.amountClosed = amountClosed; } }
[ "azzolimrenan2@gmail.com" ]
azzolimrenan2@gmail.com
028e697330d9ab0f97a5f78425a277aa7bb371bd
9f5fa206bfd77a7af97b5a4905d61fa1e258a378
/src/google/trees/FindKthLargestNodeInBinarySearchTree.java
e923f31350df2c0fa0faa7261205d254bb6766c7
[]
no_license
rahulkhanna89/AlgorithmPractices
5c35e08c1d0c588b2d9697ebe3a842872a260993
5bd410ca64efa7009648116fdb7091fc3b616553
refs/heads/master
2020-04-05T23:12:30.902652
2015-01-15T13:51:39
2015-01-15T13:51:39
52,381,731
0
1
null
2016-02-23T18:25:38
2016-02-23T18:25:38
null
UTF-8
Java
false
false
1,167
java
package google.trees; import myUtils.TreeUtils; import myUtils.datastructure.TreeNode; /** * FindKthLargestNodeInBinarySearchTree.java * * Description: Find kth largest node in a binary search tree * * @author John Qiao <qiaoshun8888@gmail.com> Date: Feb 2, 2014 */ public class FindKthLargestNodeInBinarySearchTree { // O(n) public static TreeNode find(TreeNode root, int k) { if (k <= 0) return null; return findHelper(root, k); } private static int n = 1; private static TreeNode findHelper(TreeNode node, int k) { if (node.right != null) { TreeNode temp = findHelper(node.right, k); if (temp != null) return temp; n++; } if (k == n) return node; if (node.left != null) { n++; TreeNode temp = findHelper(node.left, k); if (temp != null) return temp; } return null; } // If the node has the size of the left sub-tree and the size of the right // sub-tree, we can do this in average O(n) public static void main(String[] args) { int[] vs = { -1, 4, 2, 6, 1, 3, 5, 7 }; TreeNode root = TreeUtils.generateBinaryTree(vs); TreeUtils.print(root); System.out.println(find(root, 5)); } }
[ "qiaoshun8888@gmail.com" ]
qiaoshun8888@gmail.com
e142e0e9f30772627c81ce60fce3365b674f22da
1e85c2b1176e6874b3bae5f8a11f529c58da0fe2
/src/main/java/com/swarup/system/monitoring/exceptions/CommandTimedOutException.java
5774f5ca338954f18f2be7d239168715977a6d05
[]
no_license
swaroopvincent/system-monitoring
bdf0c2eb069010f9c68f4511ee678e024646fe35
e8a8417159fd7216635cb78dd0fd8ad2894dfe42
refs/heads/master
2021-01-23T07:27:26.334167
2017-01-31T10:29:27
2017-01-31T10:29:27
80,509,862
0
0
null
null
null
null
UTF-8
Java
false
false
596
java
package com.swarup.system.monitoring.exceptions; /** * Created by eswavin on 6/25/16. */ public class CommandTimedOutException extends SystemMonitoringException { private String command; public CommandTimedOutException(final String command) { this.command = command; } @Override public String getFailureCause() { return "command [ "+ command+" ] timed out."; } @Override public String getSuggestionMessage() { return "The application currently doesn't support metric collection which takes more than 20 seconds to execute."; } }
[ "swaroop.vincent@datalex.com" ]
swaroop.vincent@datalex.com
d49fdfa652cb76b652cea0a8e6cc13c5ac3919dd
5e04a44ed4a62627e8a6bec5b7a8e893ccd6366b
/boki-client/src/main/java/com/boki/bokiclient/controller/UserInfoController.java
dd403458fb534a36f7af3910099cd2c4e37318f2
[]
no_license
luoxiaoluo97/-
9c7f89bfa8ac3241bb53d6ff75cde63b706d1638
b3d73715797fc404b5d18769226df13de43f9b4d
refs/heads/master
2022-07-13T21:47:39.593003
2020-04-19T14:10:30
2020-04-19T14:10:30
234,908,563
0
0
null
2022-06-21T02:50:06
2020-01-19T13:54:21
JavaScript
UTF-8
Java
false
false
8,052
java
package com.boki.bokiclient.controller; import com.alibaba.fastjson.JSON; import com.auth0.jwt.JWT; import com.boki.bokiapi.entity.dto.request.UserInfoDTO; import com.boki.bokiapi.entity.vo.DataWithTotal; import com.boki.bokiapi.entity.vo.ReplyHistoryVO; import com.boki.bokiapi.entity.vo.ResultVO; import com.boki.bokiapi.entity.vo.UserInfoVO; import com.boki.bokiapi.execption.BusinessException; import com.boki.bokiapi.execption.enums.RequestResultCode; import com.boki.bokiapi.value.Common; import com.boki.bokiclient.security.Token; import com.boki.bokiclient.service.inter.UserService; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.List; /** * @Author: LJF * @Date: 2020/3/5 * @Description: 用户信息 */ @Slf4j @RestController @RequestMapping("/user") public class UserInfoController { @Autowired private UserService userService; /** * 用户个人信息 */ @Token @GetMapping("/info") public ResultVO info(HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); UserInfoVO vo = userService.userInfo(Long.parseLong(audience.get(0))); return vo != null ? RequestResultCode.SUCCESS.getResult().setData(vo) : RequestResultCode.FAIL.getResult(); } /** * 用户修改个人信息 */ @Token @PostMapping("/modifyInfo") public ResultVO modifyInfo(@RequestBody @Valid UserInfoDTO dto, HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); try { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); if(sdf.parse(dto.getBirth()).after(new Date())){ throw new BusinessException().setType(RequestResultCode.BIRTH_IN_THE_PATH); } } catch (ParseException e) { throw new BusinessException("日期转换错误"+e.getMessage()).setType(RequestResultCode.ERROR_DATE); } dto.setId(Long.parseLong(audience.get(0))); int count = userService.modifyInfo(dto); return count >= 1 ? RequestResultCode.SUCCESS.getResult() : count == 0 ? RequestResultCode.NOTHING_HAS_CHANGED.getResult() : RequestResultCode.FAIL.getResult(); } /** * 用户头像上传 */ @Token @PostMapping("/modifyPhoto") public ResultVO modifyPhoto(@RequestBody String url,HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); url = JSON.parseObject(url).get("url").toString(); int count = userService.setUserPhoto(Long.parseLong(audience.get(0)), url); return count >= 1 ? RequestResultCode.SUCCESS.getResult() : count == 0 ? RequestResultCode.NOTHING_HAS_CHANGED.getResult() : RequestResultCode.FAIL.getResult(); } /** * 收藏帖子 */ @Token @PostMapping("/collect/{postId}") public ResultVO collect(@PathVariable("postId")Long postId,HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); int count = userService.collectPost(postId,Long.parseLong(audience.get(0))); return count == 1 ? RequestResultCode.SUCCESS.getResult() : count == -1 ? RequestResultCode.COLLECTION_EXIST.getResult() : RequestResultCode.FAIL.getResult(); } /** * 移除收藏 * @param postId 这个实际上是id,写错了 */ @Token @PostMapping("/removeCollection/{postId}") public ResultVO removeCollection(@PathVariable("postId")Long postId,HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); int count = userService.removeCollection(postId,Long.parseLong(audience.get(0))); return count >= 1 ? RequestResultCode.SUCCESS.getResult() : RequestResultCode.FAIL.getResult(); } /** * 帖子收藏列表 */ @Token @GetMapping("/postCollection") public ResultVO postCollection(Integer page,HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); page = page == null ? 1 : page <= 0 ? 1 : page; DataWithTotal dwt = userService.findPostCollectionByUid(Long.parseLong(audience.get(0)),page); return RequestResultCode.SUCCESS.getResult().setData(dwt); } /** * 关注他 */ @Token @PostMapping("/addFollow/{targetUserId}") public ResultVO addFollow(@PathVariable("targetUserId")Long targetUserId,HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); if(targetUserId.longValue() == Long.parseLong(audience.get(0))){ return RequestResultCode.FOLLOW_CANNOT_SELF.getResult(); } int count = userService.addFollow(Long.parseLong(audience.get(0)),targetUserId); return count == 1 ? RequestResultCode.SUCCESS.getResult() : count == -1 ? RequestResultCode.FOLLOW_EXIST.getResult() : RequestResultCode.FAIL.getResult(); } /** * 取消关注 */ @Token @PostMapping("/removeFollow/{targetId}") public ResultVO removeFollow(@PathVariable("targetId")Long targetId,HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); int count = userService.removeFollow(Long.parseLong(audience.get(0)),targetId); return count >= 1 ? RequestResultCode.SUCCESS.getResult() : RequestResultCode.FAIL.getResult(); } /** * 关注列表 */ @Token @GetMapping("/followList") public ResultVO followList(Integer page,HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); page = page == null ? 1 : page <= 0 ? 1 : page; DataWithTotal dwt = userService.findFollowList(Long.parseLong(audience.get(0)),page); return RequestResultCode.SUCCESS.getResult().setData(dwt); } /** * 我的粉丝 */ @Token @GetMapping("/myFans") public ResultVO myFans(Integer page, HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); page = page == null ? 1 : page <= 0 ? 1 : page; DataWithTotal dwt = userService.findFans(Long.parseLong(audience.get(0)),page); return RequestResultCode.SUCCESS.getResult().setData(dwt); } /** * 我的发帖记录 */ @Token @GetMapping("/postHistory") public ResultVO postHistory(Integer page,Long userId,HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); if(userId == null ){ userId = Long.parseLong(audience.get(0)); } page = page == null ? 1 : page <= 0 ? 1 : page; DataWithTotal dwt = userService.postHistory(userId,page); return RequestResultCode.SUCCESS.getResult().setData(dwt); } /** * 我的回复记录 */ @Token @GetMapping("/replyHistory") public ResultVO replyHistory(Integer page,Long userId,HttpServletRequest request){ List<String> audience= JWT.decode(request.getHeader(Common.TOKEN)).getAudience(); if(userId == null ){ userId = Long.parseLong(audience.get(0)); } page = page == null ? 1 : page <= 0 ? 1 : page; DataWithTotal<ReplyHistoryVO> dwt = userService.replyHistory(userId,page); return RequestResultCode.SUCCESS.getResult().setData(dwt); } }
[ "1459840399@qq.com" ]
1459840399@qq.com
492f02193f90cf8878a14e6e4dd42c2e321e6b02
bde219c1c4e3d3161d0c78028ef8c8028dd92f1c
/rose/red.java
3948d861719444be6d2cc84dae097c75bbc66035
[]
no_license
Nagurbayapureddy/Test
c8e8ea0ad5ab6f145f9f0ecfccbed289eb946359
91ec2b8b9169204b45b56a4455e5c577f123f929
refs/heads/master
2020-03-28T17:15:32.074351
2018-09-14T10:34:23
2018-09-14T10:34:23
148,772,588
0
0
null
null
null
null
UTF-8
Java
false
false
9
java
i am red
[ "nagurdevops@gmail.com" ]
nagurdevops@gmail.com
2ebd61ef8c6bab80531ba83c4bb67716bc25bbb1
d58e9421402654a019b84903dbaa2252dce83062
/ProductMadeIn.java
4c9a87c0093cdfc677fabeb3fa9bc23eb584864e
[]
no_license
pspms51920/gitskills
212cc190bd83a040f1250ca14fc9aa3450c5d650
1d3f3001a84e1a69c9b5ebf2b99fcb7a9bf88d92
refs/heads/master
2021-04-15T16:22:39.974963
2018-03-27T03:42:35
2018-03-27T03:42:35
126,838,398
0
0
null
null
null
null
UTF-8
Java
false
false
518
java
package com.kkh.patient.model.mall; import java.io.Serializable; /** * Created by winner on 18/3/8. */ public class ProductMadeIn implements Serializable{ private String name; //":"新西兰", private String icon; //":"" private int code; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getIcon() { return icon; } public void setIcon(String icon) { this.icon = icon; } }
[ "pengsipin@kangkanghui.com" ]
pengsipin@kangkanghui.com
ab732d3702beea3b9fa2220c7683e11a4684b06a
20b3a8110cb18fe2ee3f0b2b12cf2cc53fc305f8
/android/app/build/generated/source/r/debug/com/realmimgur/R.java
68124812934b559eb73b2bc5446ef7e23d00ab8d
[]
no_license
Aguaraio/RealmImgur
f6398e8b1094cf870927f456aaca11e23064c086
c23e9a70bd5723a31ec18098aca2af6b0a69a816
refs/heads/master
2020-04-02T06:00:06.082664
2016-08-01T15:59:54
2016-08-01T15:59:54
64,680,594
1
0
null
null
null
null
UTF-8
Java
false
false
404,153
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.realmimgur; public final class R { public static final class anim { public static final int abc_fade_in=0x7f050000; public static final int abc_fade_out=0x7f050001; public static final int abc_grow_fade_in_from_bottom=0x7f050002; public static final int abc_popup_enter=0x7f050003; public static final int abc_popup_exit=0x7f050004; public static final int abc_shrink_fade_out_from_bottom=0x7f050005; public static final int abc_slide_in_bottom=0x7f050006; public static final int abc_slide_in_top=0x7f050007; public static final int abc_slide_out_bottom=0x7f050008; public static final int abc_slide_out_top=0x7f050009; public static final int catalyst_push_up_in=0x7f05000a; public static final int catalyst_push_up_out=0x7f05000b; public static final int fade_in=0x7f05000c; public static final int fade_out=0x7f05000d; public static final int slide_down=0x7f05000e; public static final int slide_up=0x7f05000f; } public static final class attr { /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarDivider=0x7f010080; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f010081; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f01007a; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> */ public static final int actionBarSize=0x7f01007f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f01007c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarStyle=0x7f01007b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f010076; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f010075; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f010077; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTheme=0x7f01007d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f01007e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionButtonStyle=0x7f01009a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f010096; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionLayout=0x7f01004c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f010082; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int actionMenuTextColor=0x7f010083; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeBackground=0x7f010086; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f010085; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f010088; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f01008a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f010089; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f01008e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f01008b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f010090; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f01008c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeShareDrawable=0x7f01008d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f010087; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeStyle=0x7f010084; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f01008f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f010078; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f010079; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionProviderClass=0x7f01004e; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionViewClass=0x7f01004d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f0100a2; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int actualImageScaleType=0x7f01003a; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actualImageUri=0x7f010063; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f0100c4; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alertDialogCenterButtons=0x7f0100c5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogStyle=0x7f0100c3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogTheme=0x7f0100c6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowHeadLength=0x7f01002b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowShaftLength=0x7f01002c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f0100cb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int background=0x7f01000c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int backgroundImage=0x7f01003b; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f01000e; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f01000d; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int backgroundTint=0x7f0100e7; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int backgroundTintMode=0x7f0100e8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int barLength=0x7f01002d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f01009f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f01009c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f0100c9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f0100ca; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f0100c8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarStyle=0x7f01009b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f01001f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyle=0x7f0100cc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f0100cd; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int buttonTint=0x7f010025; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int buttonTintMode=0x7f010026; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkboxStyle=0x7f0100ce; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f0100cf; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeIcon=0x7f01005a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeItemLayout=0x7f01001c; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int collapseContentDescription=0x7f0100de; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapseIcon=0x7f0100dd; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int color=0x7f010027; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorAccent=0x7f0100bc; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorButtonNormal=0x7f0100c0; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlActivated=0x7f0100be; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlHighlight=0x7f0100bf; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlNormal=0x7f0100bd; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimary=0x7f0100ba; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimaryDark=0x7f0100bb; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorSwitchThumbNormal=0x7f0100c1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int commitIcon=0x7f01005f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEnd=0x7f010017; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetLeft=0x7f010018; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetRight=0x7f010019; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStart=0x7f010016; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int controlBackground=0x7f0100c2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int customNavigationLayout=0x7f01000f; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int defaultQueryHint=0x7f010059; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dialogPreferredPadding=0x7f010094; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dialogTheme=0x7f010093; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> */ public static final int displayOptions=0x7f010005; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int divider=0x7f01000b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerHorizontal=0x7f0100a1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dividerPadding=0x7f01004a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerVertical=0x7f0100a0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int drawableSize=0x7f010029; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f010000; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f0100b2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dropdownListPreferredItemHeight=0x7f010097; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextBackground=0x7f0100a8; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int editTextColor=0x7f0100a7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextStyle=0x7f0100d0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int elevation=0x7f01001a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f01001e; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fadeDuration=0x7f01002f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int failureImage=0x7f010035; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int failureImageScaleType=0x7f010036; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int gapBetweenBars=0x7f01002a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=0x7f01005b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int height=0x7f010001; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hideOnContentScroll=0x7f010015; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f010099; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeLayout=0x7f010010; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int icon=0x7f010009; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconifiedByDefault=0x7f010057; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f010012; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int initialActivityCount=0x7f01001d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int isLightTheme=0x7f010002; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemPadding=0x7f010014; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout=0x7f010056; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layoutManager=0x7f010052; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f0100b9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f010095; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listItemLayout=0x7f010023; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listLayout=0x7f010020; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f0100b3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeight=0x7f0100ad; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightLarge=0x7f0100af; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightSmall=0x7f0100ae; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingLeft=0x7f0100b0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingRight=0x7f0100b1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int logo=0x7f01000a; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int logoDescription=0x7f0100e1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxButtonHeight=0x7f0100dc; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int measureWithLargestChild=0x7f010048; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f010021; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int navigationContentDescription=0x7f0100e0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int navigationIcon=0x7f0100df; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> */ public static final int navigationMode=0x7f010004; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int overlapAnchor=0x7f010050; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int overlayImage=0x7f01003c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingEnd=0x7f0100e5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingStart=0x7f0100e4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelBackground=0x7f0100b6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f0100b8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int panelMenuListWidth=0x7f0100b7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int placeholderImage=0x7f010031; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int placeholderImageScaleType=0x7f010032; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupMenuStyle=0x7f0100a5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupTheme=0x7f01001b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupWindowStyle=0x7f0100a6; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int preserveIconSpacing=0x7f01004f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int pressedStateOverlayImage=0x7f01003d; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int progressBarAutoRotateInterval=0x7f010039; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int progressBarImage=0x7f010037; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int progressBarImageScaleType=0x7f010038; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int progressBarPadding=0x7f010013; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int progressBarStyle=0x7f010011; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int queryBackground=0x7f010061; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int queryHint=0x7f010058; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int radioButtonStyle=0x7f0100d1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyle=0x7f0100d2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int retryImage=0x7f010033; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> */ public static final int retryImageScaleType=0x7f010034; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int reverseLayout=0x7f010054; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundAsCircle=0x7f01003e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundBottomLeft=0x7f010043; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundBottomRight=0x7f010042; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundTopLeft=0x7f010040; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundTopRight=0x7f010041; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundWithOverlayColor=0x7f010044; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundedCornerRadius=0x7f01003f; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundingBorderColor=0x7f010046; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundingBorderPadding=0x7f010047; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int roundingBorderWidth=0x7f010045; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchHintIcon=0x7f01005d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchIcon=0x7f01005c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchViewStyle=0x7f0100ac; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackground=0x7f01009d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f01009e; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> */ public static final int showAsAction=0x7f01004b; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> */ public static final int showDividers=0x7f010049; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int showText=0x7f01006a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f010022; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spanCount=0x7f010053; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spinBars=0x7f010028; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f010098; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerStyle=0x7f0100d3; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int splitTrack=0x7f010069; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int stackFromEnd=0x7f010055; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_above_anchor=0x7f010051; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int submitBackground=0x7f010062; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitle=0x7f010006; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f0100d6; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitleTextColor=0x7f0100e3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f010008; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f010060; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchMinWidth=0x7f010067; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchPadding=0x7f010068; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchStyle=0x7f0100d4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=0x7f010066; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". */ public static final int textAllCaps=0x7f010024; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f010091; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f0100b4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f0100b5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f0100aa; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f0100a9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f010092; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorAlertDialogListItem=0x7f0100c7; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorSearchUrl=0x7f0100ab; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int theme=0x7f0100e6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thickness=0x7f01002e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTextPadding=0x7f010065; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int title=0x7f010003; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginBottom=0x7f0100db; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginEnd=0x7f0100d9; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginStart=0x7f0100d8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginTop=0x7f0100da; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargins=0x7f0100d7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextAppearance=0x7f0100d5; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleTextColor=0x7f0100e2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextStyle=0x7f010007; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f0100a4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarStyle=0x7f0100a3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int track=0x7f010064; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int viewAspectRatio=0x7f010030; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int voiceIcon=0x7f01005e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBar=0x7f01006b; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBarOverlay=0x7f01006d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionModeOverlay=0x7f01006e; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMajor=0x7f010072; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMinor=0x7f010070; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMajor=0x7f01006f; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMinor=0x7f010071; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMajor=0x7f010073; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMinor=0x7f010074; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowNoTitle=0x7f01006c; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f0a0002; public static final int abc_action_bar_embed_tabs_pre_jb=0x7f0a0000; public static final int abc_action_bar_expanded_action_views_exclusive=0x7f0a0003; public static final int abc_config_actionMenuItemAllCaps=0x7f0a0004; public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0001; public static final int abc_config_closeDialogWhenTouchOutside=0x7f0a0005; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0006; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0c003b; public static final int abc_background_cache_hint_selector_material_light=0x7f0c003c; public static final int abc_color_highlight_material=0x7f0c003d; public static final int abc_input_method_navigation_guard=0x7f0c0000; public static final int abc_primary_text_disable_only_material_dark=0x7f0c003e; public static final int abc_primary_text_disable_only_material_light=0x7f0c003f; public static final int abc_primary_text_material_dark=0x7f0c0040; public static final int abc_primary_text_material_light=0x7f0c0041; public static final int abc_search_url_text=0x7f0c0042; public static final int abc_search_url_text_normal=0x7f0c0001; public static final int abc_search_url_text_pressed=0x7f0c0002; public static final int abc_search_url_text_selected=0x7f0c0003; public static final int abc_secondary_text_material_dark=0x7f0c0043; public static final int abc_secondary_text_material_light=0x7f0c0044; public static final int accent_material_dark=0x7f0c0004; public static final int accent_material_light=0x7f0c0005; public static final int background_floating_material_dark=0x7f0c0006; public static final int background_floating_material_light=0x7f0c0007; public static final int background_material_dark=0x7f0c0008; public static final int background_material_light=0x7f0c0009; public static final int bright_foreground_disabled_material_dark=0x7f0c000a; public static final int bright_foreground_disabled_material_light=0x7f0c000b; public static final int bright_foreground_inverse_material_dark=0x7f0c000c; public static final int bright_foreground_inverse_material_light=0x7f0c000d; public static final int bright_foreground_material_dark=0x7f0c000e; public static final int bright_foreground_material_light=0x7f0c000f; public static final int button_material_dark=0x7f0c0010; public static final int button_material_light=0x7f0c0011; public static final int catalyst_redbox_background=0x7f0c0012; public static final int dim_foreground_disabled_material_dark=0x7f0c0013; public static final int dim_foreground_disabled_material_light=0x7f0c0014; public static final int dim_foreground_material_dark=0x7f0c0015; public static final int dim_foreground_material_light=0x7f0c0016; public static final int foreground_material_dark=0x7f0c0017; public static final int foreground_material_light=0x7f0c0018; public static final int highlighted_text_material_dark=0x7f0c0019; public static final int highlighted_text_material_light=0x7f0c001a; public static final int hint_foreground_material_dark=0x7f0c001b; public static final int hint_foreground_material_light=0x7f0c001c; public static final int material_blue_grey_800=0x7f0c001d; public static final int material_blue_grey_900=0x7f0c001e; public static final int material_blue_grey_950=0x7f0c001f; public static final int material_deep_teal_200=0x7f0c0020; public static final int material_deep_teal_500=0x7f0c0021; public static final int material_grey_100=0x7f0c0022; public static final int material_grey_300=0x7f0c0023; public static final int material_grey_50=0x7f0c0024; public static final int material_grey_600=0x7f0c0025; public static final int material_grey_800=0x7f0c0026; public static final int material_grey_850=0x7f0c0027; public static final int material_grey_900=0x7f0c0028; public static final int primary_dark_material_dark=0x7f0c0029; public static final int primary_dark_material_light=0x7f0c002a; public static final int primary_material_dark=0x7f0c002b; public static final int primary_material_light=0x7f0c002c; public static final int primary_text_default_material_dark=0x7f0c002d; public static final int primary_text_default_material_light=0x7f0c002e; public static final int primary_text_disabled_material_dark=0x7f0c002f; public static final int primary_text_disabled_material_light=0x7f0c0030; public static final int ripple_material_dark=0x7f0c0031; public static final int ripple_material_light=0x7f0c0032; public static final int secondary_text_default_material_dark=0x7f0c0033; public static final int secondary_text_default_material_light=0x7f0c0034; public static final int secondary_text_disabled_material_dark=0x7f0c0035; public static final int secondary_text_disabled_material_light=0x7f0c0036; public static final int switch_thumb_disabled_material_dark=0x7f0c0037; public static final int switch_thumb_disabled_material_light=0x7f0c0038; public static final int switch_thumb_material_dark=0x7f0c0045; public static final int switch_thumb_material_light=0x7f0c0046; public static final int switch_thumb_normal_material_dark=0x7f0c0039; public static final int switch_thumb_normal_material_light=0x7f0c003a; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f08000b; public static final int abc_action_bar_default_height_material=0x7f080001; public static final int abc_action_bar_default_padding_end_material=0x7f08000c; public static final int abc_action_bar_default_padding_start_material=0x7f08000d; public static final int abc_action_bar_icon_vertical_padding_material=0x7f08000f; public static final int abc_action_bar_overflow_padding_end_material=0x7f080010; public static final int abc_action_bar_overflow_padding_start_material=0x7f080011; public static final int abc_action_bar_progress_bar_size=0x7f080002; public static final int abc_action_bar_stacked_max_height=0x7f080012; public static final int abc_action_bar_stacked_tab_max_width=0x7f080013; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f080014; public static final int abc_action_bar_subtitle_top_margin_material=0x7f080015; public static final int abc_action_button_min_height_material=0x7f080016; public static final int abc_action_button_min_width_material=0x7f080017; public static final int abc_action_button_min_width_overflow_material=0x7f080018; public static final int abc_alert_dialog_button_bar_height=0x7f080000; public static final int abc_button_inset_horizontal_material=0x7f080019; public static final int abc_button_inset_vertical_material=0x7f08001a; public static final int abc_button_padding_horizontal_material=0x7f08001b; public static final int abc_button_padding_vertical_material=0x7f08001c; public static final int abc_config_prefDialogWidth=0x7f080005; public static final int abc_control_corner_material=0x7f08001d; public static final int abc_control_inset_material=0x7f08001e; public static final int abc_control_padding_material=0x7f08001f; public static final int abc_dialog_list_padding_vertical_material=0x7f080020; public static final int abc_dialog_min_width_major=0x7f080021; public static final int abc_dialog_min_width_minor=0x7f080022; public static final int abc_dialog_padding_material=0x7f080023; public static final int abc_dialog_padding_top_material=0x7f080024; public static final int abc_disabled_alpha_material_dark=0x7f080025; public static final int abc_disabled_alpha_material_light=0x7f080026; public static final int abc_dropdownitem_icon_width=0x7f080027; public static final int abc_dropdownitem_text_padding_left=0x7f080028; public static final int abc_dropdownitem_text_padding_right=0x7f080029; public static final int abc_edit_text_inset_bottom_material=0x7f08002a; public static final int abc_edit_text_inset_horizontal_material=0x7f08002b; public static final int abc_edit_text_inset_top_material=0x7f08002c; public static final int abc_floating_window_z=0x7f08002d; public static final int abc_list_item_padding_horizontal_material=0x7f08002e; public static final int abc_panel_menu_list_width=0x7f08002f; public static final int abc_search_view_preferred_width=0x7f080030; public static final int abc_search_view_text_min_width=0x7f080006; public static final int abc_switch_padding=0x7f08000e; public static final int abc_text_size_body_1_material=0x7f080031; public static final int abc_text_size_body_2_material=0x7f080032; public static final int abc_text_size_button_material=0x7f080033; public static final int abc_text_size_caption_material=0x7f080034; public static final int abc_text_size_display_1_material=0x7f080035; public static final int abc_text_size_display_2_material=0x7f080036; public static final int abc_text_size_display_3_material=0x7f080037; public static final int abc_text_size_display_4_material=0x7f080038; public static final int abc_text_size_headline_material=0x7f080039; public static final int abc_text_size_large_material=0x7f08003a; public static final int abc_text_size_medium_material=0x7f08003b; public static final int abc_text_size_menu_material=0x7f08003c; public static final int abc_text_size_small_material=0x7f08003d; public static final int abc_text_size_subhead_material=0x7f08003e; public static final int abc_text_size_subtitle_material_toolbar=0x7f080003; public static final int abc_text_size_title_material=0x7f08003f; public static final int abc_text_size_title_material_toolbar=0x7f080004; public static final int dialog_fixed_height_major=0x7f080007; public static final int dialog_fixed_height_minor=0x7f080008; public static final int dialog_fixed_width_major=0x7f080009; public static final int dialog_fixed_width_minor=0x7f08000a; public static final int disabled_alpha_material_dark=0x7f080040; public static final int disabled_alpha_material_light=0x7f080041; public static final int highlight_alpha_material_colored=0x7f080042; public static final int highlight_alpha_material_dark=0x7f080043; public static final int highlight_alpha_material_light=0x7f080044; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080045; public static final int notification_large_icon_height=0x7f080046; public static final int notification_large_icon_width=0x7f080047; public static final int notification_subtext_size=0x7f080048; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; public static final int abc_action_bar_item_background_material=0x7f020001; public static final int abc_btn_borderless_material=0x7f020002; public static final int abc_btn_check_material=0x7f020003; public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; public static final int abc_btn_colored_material=0x7f020006; public static final int abc_btn_default_mtrl_shape=0x7f020007; public static final int abc_btn_radio_material=0x7f020008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; public static final int abc_cab_background_internal_bg=0x7f02000f; public static final int abc_cab_background_top_material=0x7f020010; public static final int abc_cab_background_top_mtrl_alpha=0x7f020011; public static final int abc_control_background_material=0x7f020012; public static final int abc_dialog_material_background_dark=0x7f020013; public static final int abc_dialog_material_background_light=0x7f020014; public static final int abc_edit_text_material=0x7f020015; public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; public static final int abc_ic_clear_mtrl_alpha=0x7f020017; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f; public static final int abc_ic_search_api_mtrl_alpha=0x7f020020; public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020021; public static final int abc_item_background_holo_dark=0x7f020022; public static final int abc_item_background_holo_light=0x7f020023; public static final int abc_list_divider_mtrl_alpha=0x7f020024; public static final int abc_list_focused_holo=0x7f020025; public static final int abc_list_longpressed_holo=0x7f020026; public static final int abc_list_pressed_holo_dark=0x7f020027; public static final int abc_list_pressed_holo_light=0x7f020028; public static final int abc_list_selector_background_transition_holo_dark=0x7f020029; public static final int abc_list_selector_background_transition_holo_light=0x7f02002a; public static final int abc_list_selector_disabled_holo_dark=0x7f02002b; public static final int abc_list_selector_disabled_holo_light=0x7f02002c; public static final int abc_list_selector_holo_dark=0x7f02002d; public static final int abc_list_selector_holo_light=0x7f02002e; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f02002f; public static final int abc_popup_background_mtrl_mult=0x7f020030; public static final int abc_ratingbar_full_material=0x7f020031; public static final int abc_spinner_mtrl_am_alpha=0x7f020032; public static final int abc_spinner_textfield_background_material=0x7f020033; public static final int abc_switch_thumb_material=0x7f020034; public static final int abc_switch_track_mtrl_alpha=0x7f020035; public static final int abc_tab_indicator_material=0x7f020036; public static final int abc_tab_indicator_mtrl_alpha=0x7f020037; public static final int abc_text_cursor_material=0x7f020038; public static final int abc_textfield_activated_mtrl_alpha=0x7f020039; public static final int abc_textfield_default_mtrl_alpha=0x7f02003a; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02003b; public static final int abc_textfield_search_default_mtrl_alpha=0x7f02003c; public static final int abc_textfield_search_material=0x7f02003d; public static final int notification_template_icon_bg=0x7f02003e; } public static final class id { public static final int action0=0x7f0d0057; public static final int action_bar=0x7f0d0047; public static final int action_bar_activity_content=0x7f0d0000; public static final int action_bar_container=0x7f0d0046; public static final int action_bar_root=0x7f0d0042; public static final int action_bar_spinner=0x7f0d0001; public static final int action_bar_subtitle=0x7f0d002b; public static final int action_bar_title=0x7f0d002a; public static final int action_context_bar=0x7f0d0048; public static final int action_divider=0x7f0d005b; public static final int action_menu_divider=0x7f0d0002; public static final int action_menu_presenter=0x7f0d0003; public static final int action_mode_bar=0x7f0d0044; public static final int action_mode_bar_stub=0x7f0d0043; public static final int action_mode_close_button=0x7f0d002c; public static final int activity_chooser_view_content=0x7f0d002d; public static final int alertTitle=0x7f0d0037; public static final int always=0x7f0d0024; public static final int beginning=0x7f0d0021; public static final int buttonPanel=0x7f0d003d; public static final int cancel_action=0x7f0d0058; public static final int catalyst_redbox_title=0x7f0d0066; public static final int center=0x7f0d0019; public static final int centerCrop=0x7f0d001a; public static final int centerInside=0x7f0d001b; public static final int checkbox=0x7f0d003f; public static final int chronometer=0x7f0d005e; public static final int collapseActionView=0x7f0d0025; public static final int contentPanel=0x7f0d0038; public static final int custom=0x7f0d003c; public static final int customPanel=0x7f0d003b; public static final int decor_content_parent=0x7f0d0045; public static final int default_activity_button=0x7f0d0030; public static final int disableHome=0x7f0d000d; public static final int edit_query=0x7f0d0049; public static final int end=0x7f0d0022; public static final int end_padder=0x7f0d0063; public static final int expand_activities_button=0x7f0d002e; public static final int expanded_menu=0x7f0d003e; public static final int fitCenter=0x7f0d001c; public static final int fitEnd=0x7f0d001d; public static final int fitStart=0x7f0d001e; public static final int fitXY=0x7f0d001f; public static final int focusCrop=0x7f0d0020; public static final int fps_text=0x7f0d0056; public static final int home=0x7f0d0004; public static final int homeAsUp=0x7f0d000e; public static final int icon=0x7f0d0032; public static final int ifRoom=0x7f0d0026; public static final int image=0x7f0d002f; public static final int info=0x7f0d0062; public static final int item_touch_helper_previous_elevation=0x7f0d0005; public static final int line1=0x7f0d005c; public static final int line3=0x7f0d0060; public static final int listMode=0x7f0d000a; public static final int list_item=0x7f0d0031; public static final int media_actions=0x7f0d005a; public static final int middle=0x7f0d0023; public static final int multiply=0x7f0d0014; public static final int never=0x7f0d0027; public static final int none=0x7f0d000f; public static final int normal=0x7f0d000b; public static final int parentPanel=0x7f0d0034; public static final int progress_circular=0x7f0d0006; public static final int progress_horizontal=0x7f0d0007; public static final int radio=0x7f0d0041; public static final int rn_frame_file=0x7f0d0065; public static final int rn_frame_method=0x7f0d0064; public static final int rn_redbox_copy_button=0x7f0d006a; public static final int rn_redbox_dismiss_button=0x7f0d0068; public static final int rn_redbox_reload_button=0x7f0d0069; public static final int rn_redbox_stack=0x7f0d0067; public static final int screen=0x7f0d0015; public static final int scrollView=0x7f0d0039; public static final int search_badge=0x7f0d004b; public static final int search_bar=0x7f0d004a; public static final int search_button=0x7f0d004c; public static final int search_close_btn=0x7f0d0051; public static final int search_edit_frame=0x7f0d004d; public static final int search_go_btn=0x7f0d0053; public static final int search_mag_icon=0x7f0d004e; public static final int search_plate=0x7f0d004f; public static final int search_src_text=0x7f0d0050; public static final int search_voice_btn=0x7f0d0054; public static final int select_dialog_listview=0x7f0d0055; public static final int shortcut=0x7f0d0040; public static final int showCustom=0x7f0d0010; public static final int showHome=0x7f0d0011; public static final int showTitle=0x7f0d0012; public static final int split_action_bar=0x7f0d0008; public static final int src_atop=0x7f0d0016; public static final int src_in=0x7f0d0017; public static final int src_over=0x7f0d0018; public static final int status_bar_latest_event_content=0x7f0d0059; public static final int submit_area=0x7f0d0052; public static final int tabMode=0x7f0d000c; public static final int text=0x7f0d0061; public static final int text2=0x7f0d005f; public static final int textSpacerNoButtons=0x7f0d003a; public static final int time=0x7f0d005d; public static final int title=0x7f0d0033; public static final int title_template=0x7f0d0036; public static final int topPanel=0x7f0d0035; public static final int up=0x7f0d0009; public static final int useLogo=0x7f0d0013; public static final int withText=0x7f0d0028; public static final int wrap_content=0x7f0d0029; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0b0001; public static final int abc_config_activityShortDur=0x7f0b0002; public static final int abc_max_action_buttons=0x7f0b0000; public static final int cancel_button_image_alpha=0x7f0b0003; public static final int status_bar_notification_info_maxnum=0x7f0b0004; } public static final class layout { public static final int abc_action_bar_title_item=0x7f040000; public static final int abc_action_bar_up_container=0x7f040001; public static final int abc_action_bar_view_list_nav_layout=0x7f040002; public static final int abc_action_menu_item_layout=0x7f040003; public static final int abc_action_menu_layout=0x7f040004; public static final int abc_action_mode_bar=0x7f040005; public static final int abc_action_mode_close_item_material=0x7f040006; public static final int abc_activity_chooser_view=0x7f040007; public static final int abc_activity_chooser_view_list_item=0x7f040008; public static final int abc_alert_dialog_material=0x7f040009; public static final int abc_dialog_title_material=0x7f04000a; public static final int abc_expanded_menu_layout=0x7f04000b; public static final int abc_list_menu_item_checkbox=0x7f04000c; public static final int abc_list_menu_item_icon=0x7f04000d; public static final int abc_list_menu_item_layout=0x7f04000e; public static final int abc_list_menu_item_radio=0x7f04000f; public static final int abc_popup_menu_item_layout=0x7f040010; public static final int abc_screen_content_include=0x7f040011; public static final int abc_screen_simple=0x7f040012; public static final int abc_screen_simple_overlay_action_mode=0x7f040013; public static final int abc_screen_toolbar=0x7f040014; public static final int abc_search_dropdown_item_icons_2line=0x7f040015; public static final int abc_search_view=0x7f040016; public static final int abc_select_dialog_material=0x7f040017; public static final int fps_view=0x7f040018; public static final int notification_media_action=0x7f040019; public static final int notification_media_cancel_action=0x7f04001a; public static final int notification_template_big_media=0x7f04001b; public static final int notification_template_big_media_narrow=0x7f04001c; public static final int notification_template_lines=0x7f04001d; public static final int notification_template_media=0x7f04001e; public static final int notification_template_part_chronometer=0x7f04001f; public static final int notification_template_part_time=0x7f040020; public static final int redbox_item_frame=0x7f040021; public static final int redbox_item_title=0x7f040022; public static final int redbox_view=0x7f040023; public static final int select_dialog_item_material=0x7f040024; public static final int select_dialog_multichoice_material=0x7f040025; public static final int select_dialog_singlechoice_material=0x7f040026; public static final int support_simple_spinner_dropdown_item=0x7f040027; } public static final class mipmap { public static final int ic_launcher=0x7f030000; } public static final class string { public static final int abc_action_bar_home_description=0x7f070000; public static final int abc_action_bar_home_description_format=0x7f070001; public static final int abc_action_bar_home_subtitle_description_format=0x7f070002; public static final int abc_action_bar_up_description=0x7f070003; public static final int abc_action_menu_overflow_description=0x7f070004; public static final int abc_action_mode_done=0x7f070005; public static final int abc_activity_chooser_view_see_all=0x7f070006; public static final int abc_activitychooserview_choose_application=0x7f070007; public static final int abc_search_hint=0x7f070008; public static final int abc_searchview_description_clear=0x7f070009; public static final int abc_searchview_description_query=0x7f07000a; public static final int abc_searchview_description_search=0x7f07000b; public static final int abc_searchview_description_submit=0x7f07000c; public static final int abc_searchview_description_voice=0x7f07000d; public static final int abc_shareactionprovider_share_with=0x7f07000e; public static final int abc_shareactionprovider_share_with_application=0x7f07000f; public static final int abc_toolbar_collapse_description=0x7f070010; public static final int app_name=0x7f070012; public static final int catalyst_copy_button=0x7f070013; public static final int catalyst_debugjs=0x7f070014; public static final int catalyst_debugjs_off=0x7f070015; public static final int catalyst_dismiss_button=0x7f070016; public static final int catalyst_element_inspector=0x7f070017; public static final int catalyst_heap_capture=0x7f070018; public static final int catalyst_hot_module_replacement=0x7f070019; public static final int catalyst_hot_module_replacement_off=0x7f07001a; public static final int catalyst_jsload_error=0x7f07001b; public static final int catalyst_jsload_message=0x7f07001c; public static final int catalyst_jsload_title=0x7f07001d; public static final int catalyst_live_reload=0x7f07001e; public static final int catalyst_live_reload_off=0x7f07001f; public static final int catalyst_perf_monitor=0x7f070020; public static final int catalyst_perf_monitor_off=0x7f070021; public static final int catalyst_reload_button=0x7f070022; public static final int catalyst_reloadjs=0x7f070023; public static final int catalyst_remotedbg_error=0x7f070024; public static final int catalyst_remotedbg_message=0x7f070025; public static final int catalyst_settings=0x7f070026; public static final int catalyst_settings_title=0x7f070027; public static final int status_bar_notification_info_overflow=0x7f070011; } public static final class style { public static final int AlertDialog_AppCompat=0x7f09007a; public static final int AlertDialog_AppCompat_Light=0x7f09007b; public static final int Animation_AppCompat_Dialog=0x7f09007c; public static final int Animation_AppCompat_DropDownUp=0x7f09007d; public static final int Animation_Catalyst_RedBox=0x7f09007e; /** Customize your theme here. */ public static final int AppTheme=0x7f09007f; public static final int Base_AlertDialog_AppCompat=0x7f090080; public static final int Base_AlertDialog_AppCompat_Light=0x7f090081; public static final int Base_Animation_AppCompat_Dialog=0x7f090082; public static final int Base_Animation_AppCompat_DropDownUp=0x7f090083; public static final int Base_DialogWindowTitle_AppCompat=0x7f090084; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f090085; public static final int Base_TextAppearance_AppCompat=0x7f09002d; public static final int Base_TextAppearance_AppCompat_Body1=0x7f09002e; public static final int Base_TextAppearance_AppCompat_Body2=0x7f09002f; public static final int Base_TextAppearance_AppCompat_Button=0x7f090018; public static final int Base_TextAppearance_AppCompat_Caption=0x7f090030; public static final int Base_TextAppearance_AppCompat_Display1=0x7f090031; public static final int Base_TextAppearance_AppCompat_Display2=0x7f090032; public static final int Base_TextAppearance_AppCompat_Display3=0x7f090033; public static final int Base_TextAppearance_AppCompat_Display4=0x7f090034; public static final int Base_TextAppearance_AppCompat_Headline=0x7f090035; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f090003; public static final int Base_TextAppearance_AppCompat_Large=0x7f090036; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f090004; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f090037; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f090038; public static final int Base_TextAppearance_AppCompat_Medium=0x7f090039; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f090005; public static final int Base_TextAppearance_AppCompat_Menu=0x7f09003a; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f090086; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f09003b; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f09003c; public static final int Base_TextAppearance_AppCompat_Small=0x7f09003d; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f090006; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f09003e; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090007; public static final int Base_TextAppearance_AppCompat_Title=0x7f09003f; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f090008; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090040; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090041; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090042; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090043; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090044; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090045; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090046; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090047; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090076; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f090087; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090048; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090049; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09004a; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09004b; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f090088; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f09004c; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f09004d; public static final int Base_Theme_AppCompat=0x7f09004e; public static final int Base_Theme_AppCompat_CompactMenu=0x7f090089; public static final int Base_Theme_AppCompat_Dialog=0x7f090009; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f09008a; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f09008b; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f09008c; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090001; public static final int Base_Theme_AppCompat_Light=0x7f09004f; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f09008d; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f09000a; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f09008e; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f09008f; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f090090; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090002; public static final int Base_ThemeOverlay_AppCompat=0x7f090091; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f090092; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f090093; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f090094; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f090095; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f09000b; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f09000c; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090014; public static final int Base_V12_Widget_AppCompat_EditText=0x7f090015; public static final int Base_V21_Theme_AppCompat=0x7f090050; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090051; public static final int Base_V21_Theme_AppCompat_Light=0x7f090052; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090053; public static final int Base_V22_Theme_AppCompat=0x7f090074; public static final int Base_V22_Theme_AppCompat_Light=0x7f090075; public static final int Base_V23_Theme_AppCompat=0x7f090077; public static final int Base_V23_Theme_AppCompat_Light=0x7f090078; public static final int Base_V7_Theme_AppCompat=0x7f090096; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f090097; public static final int Base_V7_Theme_AppCompat_Light=0x7f090098; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f090099; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f09009a; public static final int Base_V7_Widget_AppCompat_EditText=0x7f09009b; public static final int Base_Widget_AppCompat_ActionBar=0x7f09009c; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f09009d; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f09009e; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090054; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090055; public static final int Base_Widget_AppCompat_ActionButton=0x7f090056; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f090057; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f090058; public static final int Base_Widget_AppCompat_ActionMode=0x7f09009f; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900a0; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f090016; public static final int Base_Widget_AppCompat_Button=0x7f090059; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09005a; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09005b; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900a1; public static final int Base_Widget_AppCompat_Button_Colored=0x7f090079; public static final int Base_Widget_AppCompat_Button_Small=0x7f09005c; public static final int Base_Widget_AppCompat_ButtonBar=0x7f09005d; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900a2; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f09005e; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f09005f; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900a3; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900a4; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090060; public static final int Base_Widget_AppCompat_EditText=0x7f090017; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900a5; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900a6; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900a7; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090061; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090062; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090063; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090064; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090065; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f090066; public static final int Base_Widget_AppCompat_ListView=0x7f090067; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f090068; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f090069; public static final int Base_Widget_AppCompat_PopupMenu=0x7f09006a; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f09006b; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900a8; public static final int Base_Widget_AppCompat_ProgressBar=0x7f09000d; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f09000e; public static final int Base_Widget_AppCompat_RatingBar=0x7f09006c; public static final int Base_Widget_AppCompat_SearchView=0x7f0900a9; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900aa; public static final int Base_Widget_AppCompat_Spinner=0x7f09006d; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f09006e; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f09006f; public static final int Base_Widget_AppCompat_Toolbar=0x7f0900ab; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090070; public static final int DialogAnimationFade=0x7f0900ac; public static final int DialogAnimationSlide=0x7f0900ad; public static final int Platform_AppCompat=0x7f09000f; public static final int Platform_AppCompat_Light=0x7f090010; public static final int Platform_ThemeOverlay_AppCompat=0x7f090071; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f090072; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f090073; public static final int Platform_V11_AppCompat=0x7f090011; public static final int Platform_V11_AppCompat_Light=0x7f090012; public static final int Platform_V14_AppCompat=0x7f090019; public static final int Platform_V14_AppCompat_Light=0x7f09001a; public static final int Platform_Widget_AppCompat_Spinner=0x7f090013; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090020; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090021; public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow=0x7f090022; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090023; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090024; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090025; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090026; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090027; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090028; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f090029; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f09002a; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f09002b; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f09002c; public static final int TextAppearance_AppCompat=0x7f0900ae; public static final int TextAppearance_AppCompat_Body1=0x7f0900af; public static final int TextAppearance_AppCompat_Body2=0x7f0900b0; public static final int TextAppearance_AppCompat_Button=0x7f0900b1; public static final int TextAppearance_AppCompat_Caption=0x7f0900b2; public static final int TextAppearance_AppCompat_Display1=0x7f0900b3; public static final int TextAppearance_AppCompat_Display2=0x7f0900b4; public static final int TextAppearance_AppCompat_Display3=0x7f0900b5; public static final int TextAppearance_AppCompat_Display4=0x7f0900b6; public static final int TextAppearance_AppCompat_Headline=0x7f0900b7; public static final int TextAppearance_AppCompat_Inverse=0x7f0900b8; public static final int TextAppearance_AppCompat_Large=0x7f0900b9; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900ba; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900bb; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900bc; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900bd; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900be; public static final int TextAppearance_AppCompat_Medium=0x7f0900bf; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900c0; public static final int TextAppearance_AppCompat_Menu=0x7f0900c1; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900c2; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900c3; public static final int TextAppearance_AppCompat_Small=0x7f0900c4; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900c5; public static final int TextAppearance_AppCompat_Subhead=0x7f0900c6; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900c7; public static final int TextAppearance_AppCompat_Title=0x7f0900c8; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900c9; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900ca; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900cb; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900cc; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900cd; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900ce; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900cf; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900d0; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900d1; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900d2; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900d3; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900d4; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900d5; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0900d6; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0900d7; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0900d8; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0900d9; public static final int TextAppearance_StatusBar_EventContent=0x7f09001b; public static final int TextAppearance_StatusBar_EventContent_Info=0x7f09001c; public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f09001d; public static final int TextAppearance_StatusBar_EventContent_Time=0x7f09001e; public static final int TextAppearance_StatusBar_EventContent_Title=0x7f09001f; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900da; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0900db; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0900dc; public static final int Theme=0x7f0900dd; public static final int Theme_AppCompat=0x7f0900de; public static final int Theme_AppCompat_CompactMenu=0x7f0900df; public static final int Theme_AppCompat_Dialog=0x7f0900e0; public static final int Theme_AppCompat_Dialog_Alert=0x7f0900e1; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0900e2; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0900e3; public static final int Theme_AppCompat_Light=0x7f0900e4; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0900e5; public static final int Theme_AppCompat_Light_Dialog=0x7f0900e6; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0900e7; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0900e8; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0900e9; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0900ea; public static final int Theme_AppCompat_NoActionBar=0x7f0900eb; public static final int Theme_Catalyst=0x7f0900ec; public static final int Theme_Catalyst_RedBox=0x7f0900ed; public static final int Theme_FullScreenDialog=0x7f0900ee; public static final int Theme_FullScreenDialogAnimatedFade=0x7f0900ef; public static final int Theme_FullScreenDialogAnimatedSlide=0x7f0900f0; public static final int Theme_ReactNative_AppCompat_Light=0x7f0900f1; public static final int Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen=0x7f0900f2; public static final int ThemeOverlay_AppCompat=0x7f0900f3; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0900f4; public static final int ThemeOverlay_AppCompat_Dark=0x7f0900f5; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900f6; public static final int ThemeOverlay_AppCompat_Light=0x7f0900f7; public static final int Widget_AppCompat_ActionBar=0x7f0900f8; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0900f9; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0900fa; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0900fb; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0900fc; public static final int Widget_AppCompat_ActionButton=0x7f0900fd; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0900fe; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0900ff; public static final int Widget_AppCompat_ActionMode=0x7f090100; public static final int Widget_AppCompat_ActivityChooserView=0x7f090101; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f090102; public static final int Widget_AppCompat_Button=0x7f090103; public static final int Widget_AppCompat_Button_Borderless=0x7f090104; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f090105; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f090106; public static final int Widget_AppCompat_Button_Colored=0x7f090107; public static final int Widget_AppCompat_Button_Small=0x7f090108; public static final int Widget_AppCompat_ButtonBar=0x7f090109; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f09010a; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f09010b; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f09010c; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f09010d; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f09010e; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f09010f; public static final int Widget_AppCompat_EditText=0x7f090110; public static final int Widget_AppCompat_Light_ActionBar=0x7f090111; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f090112; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f090113; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f090114; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f090115; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f090116; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090117; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f090118; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f090119; public static final int Widget_AppCompat_Light_ActionButton=0x7f09011a; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f09011b; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f09011c; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f09011d; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f09011e; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f09011f; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090120; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f090121; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f090122; public static final int Widget_AppCompat_Light_PopupMenu=0x7f090123; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090124; public static final int Widget_AppCompat_Light_SearchView=0x7f090125; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f090126; public static final int Widget_AppCompat_ListPopupWindow=0x7f090127; public static final int Widget_AppCompat_ListView=0x7f090128; public static final int Widget_AppCompat_ListView_DropDown=0x7f090129; public static final int Widget_AppCompat_ListView_Menu=0x7f09012a; public static final int Widget_AppCompat_PopupMenu=0x7f09012b; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f09012c; public static final int Widget_AppCompat_PopupWindow=0x7f09012d; public static final int Widget_AppCompat_ProgressBar=0x7f09012e; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f09012f; public static final int Widget_AppCompat_RatingBar=0x7f090130; public static final int Widget_AppCompat_SearchView=0x7f090131; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f090132; public static final int Widget_AppCompat_Spinner=0x7f090133; public static final int Widget_AppCompat_Spinner_DropDown=0x7f090134; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f090135; public static final int Widget_AppCompat_Spinner_Underlined=0x7f090136; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f090137; public static final int Widget_AppCompat_Toolbar=0x7f090138; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090139; } public static final class xml { public static final int preferences=0x7f060000; } 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.realmimgur:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.realmimgur:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.realmimgur:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.realmimgur:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.realmimgur:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.realmimgur:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.realmimgur:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.realmimgur:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.realmimgur:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider com.realmimgur:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation com.realmimgur:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height com.realmimgur:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.realmimgur:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.realmimgur:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.realmimgur:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon com.realmimgur:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.realmimgur:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.realmimgur:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo com.realmimgur:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.realmimgur:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.realmimgur:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.realmimgur:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.realmimgur:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle com.realmimgur:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.realmimgur:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title com.realmimgur:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.realmimgur:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionBar_background @see #ActionBar_backgroundSplit @see #ActionBar_backgroundStacked @see #ActionBar_contentInsetEnd @see #ActionBar_contentInsetLeft @see #ActionBar_contentInsetRight @see #ActionBar_contentInsetStart @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 = { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010099 }; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#background} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.realmimgur:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#backgroundStacked} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.realmimgur:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#contentInsetEnd} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#contentInsetLeft} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#contentInsetRight} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#contentInsetStart} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#customNavigationLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#displayOptions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> @attr name com.realmimgur:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#divider} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#elevation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:elevation */ public static final int ActionBar_elevation = 24; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#height} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#hideOnContentScroll} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 26; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#homeLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#icon} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#indeterminateProgressStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#itemPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#logo} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#navigationMode} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> @attr name com.realmimgur:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#popupTheme} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:popupTheme */ public static final int ActionBar_popupTheme = 25; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#progressBarPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#progressBarStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#subtitle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#title} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:titleTextStyle */ public static final int ActionBar_titleTextStyle = 5; /** Attributes that can be used with a ActionBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> </table> @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout = { 0x010100b3 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #ActionBarLayout} array. @attr name android:layout_gravity */ public static 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. @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth = 0; /** Attributes that can be used with a ActionMenuView. */ public static final int[] ActionMenuView = { }; /** Attributes that can be used with a ActionMode. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMode_background com.realmimgur:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.realmimgur:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.realmimgur:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height com.realmimgur:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.realmimgur:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.realmimgur: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 = { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#background} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionMode} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.realmimgur:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#closeItemLayout} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#height} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:titleTextStyle */ public static final int ActionMode_titleTextStyle = 1; /** Attributes that can be used with a ActivityChooserView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.realmimgur:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.realmimgur:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f01001d, 0x7f01001e }; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#expandActivityOverflowButtonDrawable} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#initialActivityCount} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a AlertDialog. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.realmimgur:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout com.realmimgur:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout com.realmimgur:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.realmimgur:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.realmimgur:singleChoiceItemLayout}</code></td><td></td></tr> </table> @see #AlertDialog_android_layout @see #AlertDialog_buttonPanelSideLayout @see #AlertDialog_listItemLayout @see #AlertDialog_listLayout @see #AlertDialog_multiChoiceItemLayout @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #AlertDialog} array. @attr name android:layout */ public static final int AlertDialog_android_layout = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#buttonPanelSideLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#listItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#listLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#multiChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#singleChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** 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_textAllCaps com.realmimgur:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010024 }; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextView} array. @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#textAllCaps} attribute's value can be found in the {@link #AppCompatTextView} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.realmimgur:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** 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.realmimgur:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode com.realmimgur:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f010025, 0x7f010026 }; /** <p>This symbol is the offset where the {@link android.R.attr#button} attribute's value can be found in the {@link #CompoundButton} array. @attr name android:button */ public static final int CompoundButton_android_button = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#buttonTint} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#buttonTintMode} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.realmimgur:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.realmimgur:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.realmimgur:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength com.realmimgur:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.realmimgur:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.realmimgur:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.realmimgur:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.realmimgur:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.realmimgur: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 = { 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#arrowHeadLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#arrowShaftLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#barLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#color} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#drawableSize} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#gapBetweenBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#spinBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#thickness} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a GenericDraweeHierarchy. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #GenericDraweeHierarchy_actualImageScaleType com.realmimgur:actualImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_backgroundImage com.realmimgur:backgroundImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_fadeDuration com.realmimgur:fadeDuration}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_failureImage com.realmimgur:failureImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_failureImageScaleType com.realmimgur:failureImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_overlayImage com.realmimgur:overlayImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_placeholderImage com.realmimgur:placeholderImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_placeholderImageScaleType com.realmimgur:placeholderImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_pressedStateOverlayImage com.realmimgur:pressedStateOverlayImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_progressBarAutoRotateInterval com.realmimgur:progressBarAutoRotateInterval}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_progressBarImage com.realmimgur:progressBarImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_progressBarImageScaleType com.realmimgur:progressBarImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_retryImage com.realmimgur:retryImage}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_retryImageScaleType com.realmimgur:retryImageScaleType}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundAsCircle com.realmimgur:roundAsCircle}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundBottomLeft com.realmimgur:roundBottomLeft}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundBottomRight com.realmimgur:roundBottomRight}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundTopLeft com.realmimgur:roundTopLeft}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundTopRight com.realmimgur:roundTopRight}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundWithOverlayColor com.realmimgur:roundWithOverlayColor}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundedCornerRadius com.realmimgur:roundedCornerRadius}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundingBorderColor com.realmimgur:roundingBorderColor}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundingBorderPadding com.realmimgur:roundingBorderPadding}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_roundingBorderWidth com.realmimgur:roundingBorderWidth}</code></td><td></td></tr> <tr><td><code>{@link #GenericDraweeHierarchy_viewAspectRatio com.realmimgur:viewAspectRatio}</code></td><td></td></tr> </table> @see #GenericDraweeHierarchy_actualImageScaleType @see #GenericDraweeHierarchy_backgroundImage @see #GenericDraweeHierarchy_fadeDuration @see #GenericDraweeHierarchy_failureImage @see #GenericDraweeHierarchy_failureImageScaleType @see #GenericDraweeHierarchy_overlayImage @see #GenericDraweeHierarchy_placeholderImage @see #GenericDraweeHierarchy_placeholderImageScaleType @see #GenericDraweeHierarchy_pressedStateOverlayImage @see #GenericDraweeHierarchy_progressBarAutoRotateInterval @see #GenericDraweeHierarchy_progressBarImage @see #GenericDraweeHierarchy_progressBarImageScaleType @see #GenericDraweeHierarchy_retryImage @see #GenericDraweeHierarchy_retryImageScaleType @see #GenericDraweeHierarchy_roundAsCircle @see #GenericDraweeHierarchy_roundBottomLeft @see #GenericDraweeHierarchy_roundBottomRight @see #GenericDraweeHierarchy_roundTopLeft @see #GenericDraweeHierarchy_roundTopRight @see #GenericDraweeHierarchy_roundWithOverlayColor @see #GenericDraweeHierarchy_roundedCornerRadius @see #GenericDraweeHierarchy_roundingBorderColor @see #GenericDraweeHierarchy_roundingBorderPadding @see #GenericDraweeHierarchy_roundingBorderWidth @see #GenericDraweeHierarchy_viewAspectRatio */ public static final int[] GenericDraweeHierarchy = { 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 }; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actualImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.realmimgur:actualImageScaleType */ public static final int GenericDraweeHierarchy_actualImageScaleType = 11; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#backgroundImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:backgroundImage */ public static final int GenericDraweeHierarchy_backgroundImage = 12; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#fadeDuration} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:fadeDuration */ public static final int GenericDraweeHierarchy_fadeDuration = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#failureImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:failureImage */ public static final int GenericDraweeHierarchy_failureImage = 6; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#failureImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.realmimgur:failureImageScaleType */ public static final int GenericDraweeHierarchy_failureImageScaleType = 7; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#overlayImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:overlayImage */ public static final int GenericDraweeHierarchy_overlayImage = 13; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#placeholderImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:placeholderImage */ public static final int GenericDraweeHierarchy_placeholderImage = 2; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#placeholderImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.realmimgur:placeholderImageScaleType */ public static final int GenericDraweeHierarchy_placeholderImageScaleType = 3; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#pressedStateOverlayImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:pressedStateOverlayImage */ public static final int GenericDraweeHierarchy_pressedStateOverlayImage = 14; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#progressBarAutoRotateInterval} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:progressBarAutoRotateInterval */ public static final int GenericDraweeHierarchy_progressBarAutoRotateInterval = 10; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#progressBarImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:progressBarImage */ public static final int GenericDraweeHierarchy_progressBarImage = 8; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#progressBarImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.realmimgur:progressBarImageScaleType */ public static final int GenericDraweeHierarchy_progressBarImageScaleType = 9; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#retryImage} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:retryImage */ public static final int GenericDraweeHierarchy_retryImage = 4; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#retryImageScaleType} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>-1</td><td></td></tr> <tr><td><code>fitXY</code></td><td>0</td><td></td></tr> <tr><td><code>fitStart</code></td><td>1</td><td></td></tr> <tr><td><code>fitCenter</code></td><td>2</td><td></td></tr> <tr><td><code>fitEnd</code></td><td>3</td><td></td></tr> <tr><td><code>center</code></td><td>4</td><td></td></tr> <tr><td><code>centerInside</code></td><td>5</td><td></td></tr> <tr><td><code>centerCrop</code></td><td>6</td><td></td></tr> <tr><td><code>focusCrop</code></td><td>7</td><td></td></tr> </table> @attr name com.realmimgur:retryImageScaleType */ public static final int GenericDraweeHierarchy_retryImageScaleType = 5; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#roundAsCircle} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:roundAsCircle */ public static final int GenericDraweeHierarchy_roundAsCircle = 15; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#roundBottomLeft} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:roundBottomLeft */ public static final int GenericDraweeHierarchy_roundBottomLeft = 20; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#roundBottomRight} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:roundBottomRight */ public static final int GenericDraweeHierarchy_roundBottomRight = 19; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#roundTopLeft} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:roundTopLeft */ public static final int GenericDraweeHierarchy_roundTopLeft = 17; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#roundTopRight} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:roundTopRight */ public static final int GenericDraweeHierarchy_roundTopRight = 18; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#roundWithOverlayColor} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:roundWithOverlayColor */ public static final int GenericDraweeHierarchy_roundWithOverlayColor = 21; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#roundedCornerRadius} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:roundedCornerRadius */ public static final int GenericDraweeHierarchy_roundedCornerRadius = 16; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#roundingBorderColor} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:roundingBorderColor */ public static final int GenericDraweeHierarchy_roundingBorderColor = 23; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#roundingBorderPadding} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:roundingBorderPadding */ public static final int GenericDraweeHierarchy_roundingBorderPadding = 24; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#roundingBorderWidth} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:roundingBorderWidth */ public static final int GenericDraweeHierarchy_roundingBorderWidth = 22; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#viewAspectRatio} attribute's value can be found in the {@link #GenericDraweeHierarchy} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:viewAspectRatio */ public static final int GenericDraweeHierarchy_viewAspectRatio = 1; /** Attributes that can be used with a LinearLayoutCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_divider com.realmimgur:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.realmimgur:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.realmimgur:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.realmimgur:showDividers}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_android_baselineAligned @see #LinearLayoutCompat_android_baselineAlignedChildIndex @see #LinearLayoutCompat_android_gravity @see #LinearLayoutCompat_android_orientation @see #LinearLayoutCompat_android_weightSum @see #LinearLayoutCompat_divider @see #LinearLayoutCompat_dividerPadding @see #LinearLayoutCompat_measureWithLargestChild @see #LinearLayoutCompat_showDividers */ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010048, 0x7f010049, 0x7f01004a }; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAligned} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAligned */ public static 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. @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #LinearLayoutCompat} array. @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. @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation = 1; /** <p>This symbol is the offset where the {@link android.R.attr#weightSum} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum = 4; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#divider} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#dividerPadding} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#measureWithLargestChild} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#showDividers} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> @attr name com.realmimgur:showDividers */ public static final int LinearLayoutCompat_showDividers = 7; /** Attributes that can be used with a LinearLayoutCompat_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_Layout_android_layout_gravity @see #LinearLayoutCompat_Layout_android_layout_height @see #LinearLayoutCompat_Layout_android_layout_weight @see #LinearLayoutCompat_Layout_android_layout_width */ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @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. @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; /** <p>This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width = 1; /** Attributes that can be used with a ListPopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> </table> @see #ListPopupWindow_android_dropDownHorizontalOffset @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownHorizontalOffset */ public static 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. @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; /** Attributes that can be used with a MenuGroup. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> </table> @see #MenuGroup_android_checkableBehavior @see #MenuGroup_android_enabled @see #MenuGroup_android_id @see #MenuGroup_android_menuCategory @see #MenuGroup_android_orderInCategory @see #MenuGroup_android_visible */ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior = 5; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuGroup} array. @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. @attr name android:id */ public static final int MenuGroup_android_id = 1; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuGroup} array. @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. @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory = 4; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:visible */ public static final int MenuGroup_android_visible = 2; /** Attributes that can be used with a MenuItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuItem_actionLayout com.realmimgur:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.realmimgur:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.realmimgur:actionViewClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_showAsAction com.realmimgur:showAsAction}</code></td><td></td></tr> </table> @see #MenuItem_actionLayout @see #MenuItem_actionProviderClass @see #MenuItem_actionViewClass @see #MenuItem_android_alphabeticShortcut @see #MenuItem_android_checkable @see #MenuItem_android_checked @see #MenuItem_android_enabled @see #MenuItem_android_icon @see #MenuItem_android_id @see #MenuItem_android_menuCategory @see #MenuItem_android_numericShortcut @see #MenuItem_android_onClick @see #MenuItem_android_orderInCategory @see #MenuItem_android_title @see #MenuItem_android_titleCondensed @see #MenuItem_android_visible @see #MenuItem_showAsAction */ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e }; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionLayout} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionProviderClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionViewClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:actionViewClass */ public static final int MenuItem_actionViewClass = 15; /** <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /** <p>This symbol is the offset where the {@link android.R.attr#checkable} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /** <p>This symbol is the offset where the {@link android.R.attr#checked} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuItem} array. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #MenuItem} array. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuItem} array. @attr name android:id */ public static final int MenuItem_android_id = 2; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /** <p>This symbol is the offset where the {@link android.R.attr#numericShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /** <p>This symbol is the offset where the {@link android.R.attr#onClick} attribute's value can be found in the {@link #MenuItem} array. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuItem} array. @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. @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. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuItem} array. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#showAsAction} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> @attr name com.realmimgur:showAsAction */ public static final int MenuItem_showAsAction = 13; /** Attributes that can be used with a MenuView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_preserveIconSpacing com.realmimgur:preserveIconSpacing}</code></td><td></td></tr> </table> @see #MenuView_android_headerBackground @see #MenuView_android_horizontalDivider @see #MenuView_android_itemBackground @see #MenuView_android_itemIconDisabledAlpha @see #MenuView_android_itemTextAppearance @see #MenuView_android_verticalDivider @see #MenuView_android_windowAnimationStyle @see #MenuView_preserveIconSpacing */ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01004f }; /** <p>This symbol is the offset where the {@link android.R.attr#headerBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:headerBackground */ public static final int MenuView_android_headerBackground = 4; /** <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider = 2; /** <p>This symbol is the offset where the {@link android.R.attr#itemBackground} attribute's value can be found in the {@link #MenuView} array. @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. @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha = 6; /** <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance = 1; /** <p>This symbol is the offset where the {@link android.R.attr#verticalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider = 3; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #MenuView} array. @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#preserveIconSpacing} attribute's value can be found in the {@link #MenuView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** 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_overlapAnchor com.realmimgur:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x7f010050 }; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#overlapAnchor} attribute's value can be found in the {@link #PopupWindow} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:overlapAnchor */ public static final int PopupWindow_overlapAnchor = 1; /** 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.realmimgur:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f010051 }; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#state_above_anchor} attribute's value can be found in the {@link #PopupWindowBackgroundState} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor = 0; /** 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_layoutManager com.realmimgur:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout com.realmimgur:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount com.realmimgur:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd com.realmimgur:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_orientation @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055 }; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:orientation */ public static final int RecyclerView_android_orientation = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#layoutManager} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:layoutManager */ public static final int RecyclerView_layoutManager = 1; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#reverseLayout} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:reverseLayout */ public static final int RecyclerView_reverseLayout = 3; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#spanCount} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:spanCount */ public static final int RecyclerView_spanCount = 2; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#stackFromEnd} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:stackFromEnd */ public static final int RecyclerView_stackFromEnd = 4; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_closeIcon com.realmimgur:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon com.realmimgur:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint com.realmimgur:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon com.realmimgur:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.realmimgur:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout com.realmimgur:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground com.realmimgur:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint com.realmimgur:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon com.realmimgur:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon com.realmimgur:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground com.realmimgur:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.realmimgur:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.realmimgur:voiceIcon}</code></td><td></td></tr> </table> @see #SearchView_android_focusable @see #SearchView_android_imeOptions @see #SearchView_android_inputType @see #SearchView_android_maxWidth @see #SearchView_closeIcon @see #SearchView_commitIcon @see #SearchView_defaultQueryHint @see #SearchView_goIcon @see #SearchView_iconifiedByDefault @see #SearchView_layout @see #SearchView_queryBackground @see #SearchView_queryHint @see #SearchView_searchHintIcon @see #SearchView_searchIcon @see #SearchView_submitBackground @see #SearchView_suggestionRowLayout @see #SearchView_voiceIcon */ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #SearchView} array. @attr name android:focusable */ public static final int SearchView_android_focusable = 0; /** <p>This symbol is the offset where the {@link android.R.attr#imeOptions} attribute's value can be found in the {@link #SearchView} array. @attr name android:imeOptions */ public static final int SearchView_android_imeOptions = 3; /** <p>This symbol is the offset where the {@link android.R.attr#inputType} attribute's value can be found in the {@link #SearchView} array. @attr name android:inputType */ public static final int SearchView_android_inputType = 2; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SearchView} array. @attr name android:maxWidth */ public static final int SearchView_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#closeIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#commitIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#defaultQueryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#goIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#iconifiedByDefault} attribute's value can be found in the {@link #SearchView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#layout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#queryBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#queryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#searchHintIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#searchIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#submitBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#suggestionRowLayout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#voiceIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a SimpleDraweeView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SimpleDraweeView_actualImageUri com.realmimgur:actualImageUri}</code></td><td></td></tr> </table> @see #SimpleDraweeView_actualImageUri */ public static final int[] SimpleDraweeView = { 0x7f010063 }; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actualImageUri} attribute's value can be found in the {@link #SimpleDraweeView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:actualImageUri */ public static final int SimpleDraweeView_actualImageUri = 0; /** Attributes that can be used with a Spinner. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme com.realmimgur:popupTheme}</code></td><td></td></tr> </table> @see #Spinner_android_dropDownWidth @see #Spinner_android_popupBackground @see #Spinner_android_prompt @see #Spinner_popupTheme */ public static final int[] Spinner = { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth} attribute's value can be found in the {@link #Spinner} array. @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth = 2; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link android.R.attr#prompt} attribute's value can be found in the {@link #Spinner} array. @attr name android:prompt */ public static final int Spinner_android_prompt = 1; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#popupTheme} attribute's value can be found in the {@link #Spinner} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:popupTheme */ public static final int Spinner_popupTheme = 3; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_showText com.realmimgur:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.realmimgur:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.realmimgur:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.realmimgur:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.realmimgur:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.realmimgur:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track com.realmimgur:track}</code></td><td></td></tr> </table> @see #SwitchCompat_android_textOff @see #SwitchCompat_android_textOn @see #SwitchCompat_android_thumb @see #SwitchCompat_showText @see #SwitchCompat_splitTrack @see #SwitchCompat_switchMinWidth @see #SwitchCompat_switchPadding @see #SwitchCompat_switchTextAppearance @see #SwitchCompat_thumbTextPadding @see #SwitchCompat_track */ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a }; /** <p>This symbol is the offset where the {@link android.R.attr#textOff} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOff */ public static final int SwitchCompat_android_textOff = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textOn} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOn */ public static final int SwitchCompat_android_textOn = 0; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:thumb */ public static final int SwitchCompat_android_thumb = 2; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#showText} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:showText */ public static final int SwitchCompat_showText = 9; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#splitTrack} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:splitTrack */ public static final int SwitchCompat_splitTrack = 8; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#switchMinWidth} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 6; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#switchPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:switchPadding */ public static final int SwitchCompat_switchPadding = 7; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#switchTextAppearance} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 5; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#thumbTextPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 4; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#track} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:track */ public static final int SwitchCompat_track = 3; /** 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_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps com.realmimgur:textAllCaps}</code></td><td></td></tr> </table> @see #TextAppearance_android_textColor @see #TextAppearance_android_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f010024 }; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static final int TextAppearance_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static final int TextAppearance_android_textSize = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static final int TextAppearance_android_textStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static final int TextAppearance_android_typeface = 1; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#textAllCaps} attribute's value can be found in the {@link #TextAppearance} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.realmimgur:textAllCaps */ public static final int TextAppearance_textAllCaps = 4; /** Attributes that can be used with a Theme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Theme_actionBarDivider com.realmimgur:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarItemBackground com.realmimgur:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarPopupTheme com.realmimgur:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarSize com.realmimgur:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarSplitStyle com.realmimgur:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarStyle com.realmimgur:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabBarStyle com.realmimgur:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabStyle com.realmimgur:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTabTextStyle com.realmimgur:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarTheme com.realmimgur:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionBarWidgetTheme com.realmimgur:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionButtonStyle com.realmimgur:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionDropDownStyle com.realmimgur:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionMenuTextAppearance com.realmimgur:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionMenuTextColor com.realmimgur:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeBackground com.realmimgur:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCloseButtonStyle com.realmimgur:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCloseDrawable com.realmimgur:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCopyDrawable com.realmimgur:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeCutDrawable com.realmimgur:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeFindDrawable com.realmimgur:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModePasteDrawable com.realmimgur:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModePopupWindowStyle com.realmimgur:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeSelectAllDrawable com.realmimgur:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeShareDrawable com.realmimgur:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeSplitBackground com.realmimgur:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeStyle com.realmimgur:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionModeWebSearchDrawable com.realmimgur:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionOverflowButtonStyle com.realmimgur:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_actionOverflowMenuStyle com.realmimgur:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_activityChooserViewStyle com.realmimgur:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogButtonGroupStyle com.realmimgur:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogCenterButtons com.realmimgur:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogStyle com.realmimgur:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_alertDialogTheme com.realmimgur:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #Theme_autoCompleteTextViewStyle com.realmimgur:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_borderlessButtonStyle com.realmimgur:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarButtonStyle com.realmimgur:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarNegativeButtonStyle com.realmimgur:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarNeutralButtonStyle com.realmimgur:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarPositiveButtonStyle com.realmimgur:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonBarStyle com.realmimgur:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonStyle com.realmimgur:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_buttonStyleSmall com.realmimgur:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_checkboxStyle com.realmimgur:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_checkedTextViewStyle com.realmimgur:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorAccent com.realmimgur:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorButtonNormal com.realmimgur:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlActivated com.realmimgur:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlHighlight com.realmimgur:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorControlNormal com.realmimgur:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorPrimary com.realmimgur:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorPrimaryDark com.realmimgur:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #Theme_colorSwitchThumbNormal com.realmimgur:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_controlBackground com.realmimgur:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dialogPreferredPadding com.realmimgur:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dialogTheme com.realmimgur:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dividerHorizontal com.realmimgur:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dividerVertical com.realmimgur:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dropDownListViewStyle com.realmimgur:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.realmimgur:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextBackground com.realmimgur:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextColor com.realmimgur:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_editTextStyle com.realmimgur:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_homeAsUpIndicator com.realmimgur:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.realmimgur:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listDividerAlertDialog com.realmimgur:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPopupWindowStyle com.realmimgur:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeight com.realmimgur:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeightLarge com.realmimgur:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemHeightSmall com.realmimgur:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemPaddingLeft com.realmimgur:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #Theme_listPreferredItemPaddingRight com.realmimgur:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelBackground com.realmimgur:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelMenuListTheme com.realmimgur:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #Theme_panelMenuListWidth com.realmimgur:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #Theme_popupMenuStyle com.realmimgur:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_popupWindowStyle com.realmimgur:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_radioButtonStyle com.realmimgur:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_ratingBarStyle com.realmimgur:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_searchViewStyle com.realmimgur:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_selectableItemBackground com.realmimgur:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #Theme_selectableItemBackgroundBorderless com.realmimgur:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #Theme_spinnerDropDownItemStyle com.realmimgur:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_spinnerStyle com.realmimgur:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_switchStyle com.realmimgur:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceLargePopupMenu com.realmimgur:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceListItem com.realmimgur:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceListItemSmall com.realmimgur:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSearchResultSubtitle com.realmimgur:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSearchResultTitle com.realmimgur:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textAppearanceSmallPopupMenu com.realmimgur:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textColorAlertDialogListItem com.realmimgur:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #Theme_textColorSearchUrl com.realmimgur:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #Theme_toolbarNavigationButtonStyle com.realmimgur:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_toolbarStyle com.realmimgur:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionBar com.realmimgur:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionBarOverlay com.realmimgur:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowActionModeOverlay com.realmimgur:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedHeightMajor com.realmimgur:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedHeightMinor com.realmimgur:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedWidthMajor com.realmimgur:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowFixedWidthMinor com.realmimgur:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowMinWidthMajor com.realmimgur:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowMinWidthMinor com.realmimgur:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #Theme_windowNoTitle com.realmimgur:windowNoTitle}</code></td><td></td></tr> </table> @see #Theme_actionBarDivider @see #Theme_actionBarItemBackground @see #Theme_actionBarPopupTheme @see #Theme_actionBarSize @see #Theme_actionBarSplitStyle @see #Theme_actionBarStyle @see #Theme_actionBarTabBarStyle @see #Theme_actionBarTabStyle @see #Theme_actionBarTabTextStyle @see #Theme_actionBarTheme @see #Theme_actionBarWidgetTheme @see #Theme_actionButtonStyle @see #Theme_actionDropDownStyle @see #Theme_actionMenuTextAppearance @see #Theme_actionMenuTextColor @see #Theme_actionModeBackground @see #Theme_actionModeCloseButtonStyle @see #Theme_actionModeCloseDrawable @see #Theme_actionModeCopyDrawable @see #Theme_actionModeCutDrawable @see #Theme_actionModeFindDrawable @see #Theme_actionModePasteDrawable @see #Theme_actionModePopupWindowStyle @see #Theme_actionModeSelectAllDrawable @see #Theme_actionModeShareDrawable @see #Theme_actionModeSplitBackground @see #Theme_actionModeStyle @see #Theme_actionModeWebSearchDrawable @see #Theme_actionOverflowButtonStyle @see #Theme_actionOverflowMenuStyle @see #Theme_activityChooserViewStyle @see #Theme_alertDialogButtonGroupStyle @see #Theme_alertDialogCenterButtons @see #Theme_alertDialogStyle @see #Theme_alertDialogTheme @see #Theme_android_windowAnimationStyle @see #Theme_android_windowIsFloating @see #Theme_autoCompleteTextViewStyle @see #Theme_borderlessButtonStyle @see #Theme_buttonBarButtonStyle @see #Theme_buttonBarNegativeButtonStyle @see #Theme_buttonBarNeutralButtonStyle @see #Theme_buttonBarPositiveButtonStyle @see #Theme_buttonBarStyle @see #Theme_buttonStyle @see #Theme_buttonStyleSmall @see #Theme_checkboxStyle @see #Theme_checkedTextViewStyle @see #Theme_colorAccent @see #Theme_colorButtonNormal @see #Theme_colorControlActivated @see #Theme_colorControlHighlight @see #Theme_colorControlNormal @see #Theme_colorPrimary @see #Theme_colorPrimaryDark @see #Theme_colorSwitchThumbNormal @see #Theme_controlBackground @see #Theme_dialogPreferredPadding @see #Theme_dialogTheme @see #Theme_dividerHorizontal @see #Theme_dividerVertical @see #Theme_dropDownListViewStyle @see #Theme_dropdownListPreferredItemHeight @see #Theme_editTextBackground @see #Theme_editTextColor @see #Theme_editTextStyle @see #Theme_homeAsUpIndicator @see #Theme_listChoiceBackgroundIndicator @see #Theme_listDividerAlertDialog @see #Theme_listPopupWindowStyle @see #Theme_listPreferredItemHeight @see #Theme_listPreferredItemHeightLarge @see #Theme_listPreferredItemHeightSmall @see #Theme_listPreferredItemPaddingLeft @see #Theme_listPreferredItemPaddingRight @see #Theme_panelBackground @see #Theme_panelMenuListTheme @see #Theme_panelMenuListWidth @see #Theme_popupMenuStyle @see #Theme_popupWindowStyle @see #Theme_radioButtonStyle @see #Theme_ratingBarStyle @see #Theme_searchViewStyle @see #Theme_selectableItemBackground @see #Theme_selectableItemBackgroundBorderless @see #Theme_spinnerDropDownItemStyle @see #Theme_spinnerStyle @see #Theme_switchStyle @see #Theme_textAppearanceLargePopupMenu @see #Theme_textAppearanceListItem @see #Theme_textAppearanceListItemSmall @see #Theme_textAppearanceSearchResultSubtitle @see #Theme_textAppearanceSearchResultTitle @see #Theme_textAppearanceSmallPopupMenu @see #Theme_textColorAlertDialogListItem @see #Theme_textColorSearchUrl @see #Theme_toolbarNavigationButtonStyle @see #Theme_toolbarStyle @see #Theme_windowActionBar @see #Theme_windowActionBarOverlay @see #Theme_windowActionModeOverlay @see #Theme_windowFixedHeightMajor @see #Theme_windowFixedHeightMinor @see #Theme_windowFixedWidthMajor @see #Theme_windowFixedWidthMinor @see #Theme_windowMinWidthMajor @see #Theme_windowMinWidthMinor @see #Theme_windowNoTitle */ public static final int[] Theme = { 0x01010057, 0x010100ae, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4 }; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionBarDivider} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionBarDivider */ public static final int Theme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionBarItemBackground */ public static final int Theme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionBarPopupTheme */ public static final int Theme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionBarSize} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name com.realmimgur:actionBarSize */ public static final int Theme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionBarSplitStyle */ public static final int Theme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionBarStyle */ public static final int Theme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionBarTabBarStyle */ public static final int Theme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionBarTabStyle */ public static final int Theme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionBarTabTextStyle */ public static final int Theme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionBarTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionBarTheme */ public static final int Theme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionBarWidgetTheme */ public static final int Theme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionButtonStyle */ public static final int Theme_actionButtonStyle = 49; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionDropDownStyle */ public static final int Theme_actionDropDownStyle = 45; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionMenuTextAppearance */ public static final int Theme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.realmimgur:actionMenuTextColor */ public static final int Theme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModeBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModeBackground */ public static final int Theme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModeCloseButtonStyle */ public static final int Theme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModeCloseDrawable */ public static final int Theme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModeCopyDrawable */ public static final int Theme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModeCutDrawable */ public static final int Theme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModeFindDrawable */ public static final int Theme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModePasteDrawable */ public static final int Theme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModePopupWindowStyle */ public static final int Theme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModeSelectAllDrawable */ public static final int Theme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModeShareDrawable */ public static final int Theme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModeSplitBackground */ public static final int Theme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModeStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModeStyle */ public static final int Theme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionModeWebSearchDrawable */ public static final int Theme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionOverflowButtonStyle */ public static final int Theme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:actionOverflowMenuStyle */ public static final int Theme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:activityChooserViewStyle */ public static final int Theme_activityChooserViewStyle = 57; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:alertDialogButtonGroupStyle */ public static final int Theme_alertDialogButtonGroupStyle = 91; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:alertDialogCenterButtons */ public static final int Theme_alertDialogCenterButtons = 92; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#alertDialogStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:alertDialogStyle */ public static final int Theme_alertDialogStyle = 90; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#alertDialogTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:alertDialogTheme */ public static final int Theme_alertDialogTheme = 93; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #Theme} array. @attr name android:windowAnimationStyle */ public static final int Theme_android_windowAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #Theme} array. @attr name android:windowIsFloating */ public static final int Theme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:autoCompleteTextViewStyle */ public static final int Theme_autoCompleteTextViewStyle = 98; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:borderlessButtonStyle */ public static final int Theme_borderlessButtonStyle = 54; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:buttonBarButtonStyle */ public static final int Theme_buttonBarButtonStyle = 51; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:buttonBarNegativeButtonStyle */ public static final int Theme_buttonBarNegativeButtonStyle = 96; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:buttonBarNeutralButtonStyle */ public static final int Theme_buttonBarNeutralButtonStyle = 97; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:buttonBarPositiveButtonStyle */ public static final int Theme_buttonBarPositiveButtonStyle = 95; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#buttonBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:buttonBarStyle */ public static final int Theme_buttonBarStyle = 50; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#buttonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:buttonStyle */ public static final int Theme_buttonStyle = 99; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:buttonStyleSmall */ public static final int Theme_buttonStyleSmall = 100; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#checkboxStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:checkboxStyle */ public static final int Theme_checkboxStyle = 101; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:checkedTextViewStyle */ public static final int Theme_checkedTextViewStyle = 102; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#colorAccent} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:colorAccent */ public static final int Theme_colorAccent = 83; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#colorButtonNormal} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:colorButtonNormal */ public static final int Theme_colorButtonNormal = 87; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#colorControlActivated} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:colorControlActivated */ public static final int Theme_colorControlActivated = 85; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#colorControlHighlight} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:colorControlHighlight */ public static final int Theme_colorControlHighlight = 86; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#colorControlNormal} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:colorControlNormal */ public static final int Theme_colorControlNormal = 84; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#colorPrimary} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:colorPrimary */ public static final int Theme_colorPrimary = 81; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:colorPrimaryDark */ public static final int Theme_colorPrimaryDark = 82; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #Theme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:colorSwitchThumbNormal */ public static final int Theme_colorSwitchThumbNormal = 88; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#controlBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:controlBackground */ public static final int Theme_controlBackground = 89; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:dialogPreferredPadding */ public static final int Theme_dialogPreferredPadding = 43; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#dialogTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:dialogTheme */ public static final int Theme_dialogTheme = 42; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#dividerHorizontal} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:dividerHorizontal */ public static final int Theme_dividerHorizontal = 56; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#dividerVertical} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:dividerVertical */ public static final int Theme_dividerVertical = 55; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:dropDownListViewStyle */ public static final int Theme_dropDownListViewStyle = 73; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:dropdownListPreferredItemHeight */ public static final int Theme_dropdownListPreferredItemHeight = 46; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#editTextBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:editTextBackground */ public static final int Theme_editTextBackground = 63; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#editTextColor} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.realmimgur:editTextColor */ public static final int Theme_editTextColor = 62; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#editTextStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:editTextStyle */ public static final int Theme_editTextStyle = 103; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:homeAsUpIndicator */ public static final int Theme_homeAsUpIndicator = 48; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:listChoiceBackgroundIndicator */ public static final int Theme_listChoiceBackgroundIndicator = 80; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:listDividerAlertDialog */ public static final int Theme_listDividerAlertDialog = 44; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:listPopupWindowStyle */ public static final int Theme_listPopupWindowStyle = 74; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:listPreferredItemHeight */ public static final int Theme_listPreferredItemHeight = 68; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:listPreferredItemHeightLarge */ public static final int Theme_listPreferredItemHeightLarge = 70; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:listPreferredItemHeightSmall */ public static final int Theme_listPreferredItemHeightSmall = 69; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:listPreferredItemPaddingLeft */ public static final int Theme_listPreferredItemPaddingLeft = 71; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:listPreferredItemPaddingRight */ public static final int Theme_listPreferredItemPaddingRight = 72; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#panelBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:panelBackground */ public static final int Theme_panelBackground = 77; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:panelMenuListTheme */ public static final int Theme_panelMenuListTheme = 79; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #Theme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:panelMenuListWidth */ public static final int Theme_panelMenuListWidth = 78; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#popupMenuStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:popupMenuStyle */ public static final int Theme_popupMenuStyle = 60; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#popupWindowStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:popupWindowStyle */ public static final int Theme_popupWindowStyle = 61; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#radioButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:radioButtonStyle */ public static final int Theme_radioButtonStyle = 104; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#ratingBarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:ratingBarStyle */ public static final int Theme_ratingBarStyle = 105; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#searchViewStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:searchViewStyle */ public static final int Theme_searchViewStyle = 67; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#selectableItemBackground} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:selectableItemBackground */ public static final int Theme_selectableItemBackground = 52; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:selectableItemBackgroundBorderless */ public static final int Theme_selectableItemBackgroundBorderless = 53; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:spinnerDropDownItemStyle */ public static final int Theme_spinnerDropDownItemStyle = 47; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#spinnerStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:spinnerStyle */ public static final int Theme_spinnerStyle = 106; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#switchStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:switchStyle */ public static final int Theme_switchStyle = 107; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:textAppearanceLargePopupMenu */ public static final int Theme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:textAppearanceListItem */ public static final int Theme_textAppearanceListItem = 75; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:textAppearanceListItemSmall */ public static final int Theme_textAppearanceListItemSmall = 76; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:textAppearanceSearchResultSubtitle */ public static final int Theme_textAppearanceSearchResultSubtitle = 65; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:textAppearanceSearchResultTitle */ public static final int Theme_textAppearanceSearchResultTitle = 64; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:textAppearanceSmallPopupMenu */ public static final int Theme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.realmimgur:textColorAlertDialogListItem */ public static final int Theme_textColorAlertDialogListItem = 94; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #Theme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.realmimgur:textColorSearchUrl */ public static final int Theme_textColorSearchUrl = 66; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:toolbarNavigationButtonStyle */ public static final int Theme_toolbarNavigationButtonStyle = 59; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#toolbarStyle} attribute's value can be found in the {@link #Theme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:toolbarStyle */ public static final int Theme_toolbarStyle = 58; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#windowActionBar} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:windowActionBar */ public static final int Theme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:windowActionBarOverlay */ public static final int Theme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:windowActionModeOverlay */ public static final int Theme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:windowFixedHeightMajor */ public static final int Theme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:windowFixedHeightMinor */ public static final int Theme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:windowFixedWidthMajor */ public static final int Theme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:windowFixedWidthMinor */ public static final int Theme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:windowMinWidthMajor */ public static final int Theme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #Theme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:windowMinWidthMinor */ public static final int Theme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#windowNoTitle} attribute's value can be found in the {@link #Theme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:windowNoTitle */ public static final int Theme_windowNoTitle = 3; /** 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_collapseContentDescription com.realmimgur:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.realmimgur:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.realmimgur:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.realmimgur:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.realmimgur:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.realmimgur:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo com.realmimgur:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription com.realmimgur:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.realmimgur:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.realmimgur:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.realmimgur:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.realmimgur:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle com.realmimgur:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.realmimgur:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor com.realmimgur:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title com.realmimgur:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.realmimgur:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.realmimgur:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.realmimgur:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.realmimgur:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.realmimgur:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.realmimgur:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor com.realmimgur:titleTextColor}</code></td><td></td></tr> </table> @see #Toolbar_android_gravity @see #Toolbar_android_minHeight @see #Toolbar_collapseContentDescription @see #Toolbar_collapseIcon @see #Toolbar_contentInsetEnd @see #Toolbar_contentInsetLeft @see #Toolbar_contentInsetRight @see #Toolbar_contentInsetStart @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_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, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3 }; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #Toolbar} array. @attr name android:gravity */ public static 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. @attr name android:minHeight */ public static final int Toolbar_android_minHeight = 1; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#collapseContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 19; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#collapseIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:collapseIcon */ public static final int Toolbar_collapseIcon = 18; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#contentInsetEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#contentInsetLeft} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#contentInsetRight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#contentInsetStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#logo} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#logoDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:logoDescription */ public static final int Toolbar_logoDescription = 22; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#maxButtonHeight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 17; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#navigationContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 21; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#navigationIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:navigationIcon */ public static final int Toolbar_navigationIcon = 20; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#popupTheme} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:popupTheme */ public static final int Toolbar_popupTheme = 9; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#subtitle} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#subtitleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 11; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#subtitleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 24; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#title} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#titleMarginBottom} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 16; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#titleMarginEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 14; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#titleMarginStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:titleMarginStart */ public static final int Toolbar_titleMarginStart = 13; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#titleMarginTop} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:titleMarginTop */ public static final int Toolbar_titleMarginTop = 15; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#titleMargins} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:titleMargins */ public static final int Toolbar_titleMargins = 12; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#titleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 10; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#titleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:titleTextColor */ public static final int Toolbar_titleTextColor = 23; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd com.realmimgur:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart com.realmimgur:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme com.realmimgur:theme}</code></td><td></td></tr> </table> @see #View_android_focusable @see #View_android_theme @see #View_paddingEnd @see #View_paddingStart @see #View_theme */ public static final int[] View = { 0x01010000, 0x010100da, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #View} array. @attr name android:focusable */ public static final int View_android_focusable = 1; /** <p>This symbol is the offset where the {@link android.R.attr#theme} attribute's value can be found in the {@link #View} array. @attr name android:theme */ public static final int View_android_theme = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#paddingEnd} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#paddingStart} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#theme} attribute's value can be found in the {@link #View} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.realmimgur: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.realmimgur:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.realmimgur:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100e7, 0x7f0100e8 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #ViewBackgroundHelper} array. @attr name android:background */ public static final int ViewBackgroundHelper_android_background = 0; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#backgroundTint} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.realmimgur:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.realmimgur.R.attr#backgroundTintMode} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.realmimgur: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_inflatedId android:inflatedId}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr> </table> @see #ViewStubCompat_android_id @see #ViewStubCompat_android_inflatedId @see #ViewStubCompat_android_layout */ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:id */ public static final int ViewStubCompat_android_id = 0; /** <p>This symbol is the offset where the {@link android.R.attr#inflatedId} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:layout */ public static final int ViewStubCompat_android_layout = 1; }; }
[ "gordsftrl@gmail.com" ]
gordsftrl@gmail.com
45e9b8caebbca35388f7c3df1302a4c2e767a92a
7ef7c4fbcf8c2541c816c1aade33c0797f466d89
/DateUtils/src/main/java/com/dongyp/test/Test.java
18b8f8e9f752e51506e2c9a82251e39f7b87809a
[]
no_license
DongYP666/utils
de2cffd9cfd0b784cb34315d772234b83f2147b2
9b1c2bf97c14624d3355b7fe08e8931a127b9947
refs/heads/master
2021-08-23T19:20:19.644483
2017-12-06T06:13:32
2017-12-06T06:13:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,060
java
package com.dongyp.test; import com.dongyp.dateUtils.DateUtils; import com.dongyp.vo.YearWeekVo; import org.joda.time.DateTime; import org.joda.time.LocalDate; import java.text.SimpleDateFormat; import java.util.Calendar; /** * Copyright (C), 2014-2015, 深圳云集智造系统技术有限公司 * * @Title: * @Description: * @Author by dongyp * @date on 2017/12/5 */ public class Test { public static final String DATA_TIME_FORMAT = "E yyyy-MM-dd HH:mm:ss.SSS"; public static void main(String[] args) { //创建用时间表示某个瞬间的对象,并输出 ----------------------------------- Calendar calendar = Calendar.getInstance(); calendar.set(2017,11,5,13,57,0);//calendar month 0 - 11 DateTime dateTime = new DateTime(2017,12,5,13,57,0); SimpleDateFormat sdf = new SimpleDateFormat(DATA_TIME_FORMAT); System.out.println(sdf.format(calendar.getTime())); System.out.println(dateTime.toString(DATA_TIME_FORMAT)); System.out.println(); //向一个瞬间加上90,并输出结果 ----------------------------------- calendar.add(Calendar.DAY_OF_MONTH,90); dateTime = dateTime.plusDays(90); System.out.println(sdf.format(calendar.getTime())); System.out.println(dateTime.toString(DATA_TIME_FORMAT)); System.out.println(); //距离45天之后的某天在下一个月的当前周的最后一天的日期 ----------------------------------- dateTime = dateTime.plusDays(45).plusMonths(1).dayOfWeek().withMaximumValue(); System.out.println(dateTime.toString(DATA_TIME_FORMAT)); System.out.println(); //Joda 和 JDK 互操作性 ----------------------------------- calendar.setTime(dateTime.toDate()); System.out.println(sdf.format(calendar.getTime())); System.out.println(); //希望获得任何一年中的第 11 月的第一个星期二的日期,而这天必须是在这个月的第一个星期一之后 ----------------------------------- LocalDate now = new LocalDate(); LocalDate electionDate = now .monthOfYear() .setCopy(11) // November .dayOfMonth() // Access Day Of Month Property .withMinimumValue() // Get its minimum value .plusDays(6) // Add 6 days .dayOfWeek() // Access Day Of Week Property .setCopy(1) // Set to Monday(1) (it will round down) .plusDays(1); // Gives us Tuesday System.out.println(electionDate.toString(DATA_TIME_FORMAT)); System.out.println(); DateTime testDateTime = new DateTime(); YearWeekVo yearWeekVo = DateUtils.getYeaWeek(testDateTime.toDate()); System.out.println(yearWeekVo.getClass().getName() + ", \n" + sdf.format(yearWeekVo.getWeekBeginDate()) + " -- " + sdf.format(yearWeekVo.getWeekEndDate()) + " \n" + yearWeekVo.getVal()); } }
[ "dongyp@ecworking.com" ]
dongyp@ecworking.com
60913314524a8d37425deb6faac443e22cf05695
e9434958ebaaf058fdf407dd3d7886f255fbb307
/creational-patterns/src/main/java/com/neel/builderPattern/Bottle.java
2c9d40b689bab725d0ab22f4a6d9f7211d1327ef
[]
no_license
neelkoul/DesignPatterns
fcded92692589cf8b6eb4d2c563717712fbba8e0
7b7936a0a96343071f38c1830e62f05f855f020b
refs/heads/master
2020-12-31T06:55:18.701555
2016-05-11T09:35:00
2016-05-11T09:35:00
58,325,812
1
0
null
null
null
null
UTF-8
Java
false
false
177
java
package com.neel.builderPattern; /** * Created by Neel on 08-05-2016. */ public class Bottle implements Packing { public String pack() { return "Bottle"; } }
[ "neelkoul@gmail.com" ]
neelkoul@gmail.com
29d74f2d281c9bbbeeb0ecfdab46a49f83f2eed0
41aca3b11610b36b9aecf70d989b240464674104
/src/main/java/tw/base/qualifier/App.java
e5c645c8245ac634bb3c9b640fa2bff2eaa73d26
[]
no_license
steventzeng-base/spring-example1
d0ed61b355e0928a4a8f398c8c5eaac9f134f3a4
77c17d4d799caa2846aa309491760c1b9a5e37b7
refs/heads/master
2021-01-25T07:39:51.547083
2014-07-11T04:15:16
2014-07-11T04:15:16
3,459,127
0
0
null
null
null
null
UTF-8
Java
false
false
962
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package tw.base.qualifier; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import tw.base.QualifierConfig; /** * * @author steven */ public class App { public static void main(String[] args) { //Use default config AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(); applicationContext.scan("tw.base.qualifier"); applicationContext.refresh(); applicationContext.getBean( Someone.class).watchTime(); //alter default config applicationContext = new AnnotationConfigApplicationContext(); applicationContext.scan("tw.base.qualifier"); applicationContext.register(QualifierConfig.class); applicationContext.refresh(); applicationContext.getBean("kitty", Someone.class).watchTime(); } }
[ "steventzeng@base.tw" ]
steventzeng@base.tw
d511e67d56dd1e6351dd7fefc0dea9d33dd23a00
25cfbbb243aef9514848b160b0e8d7ba31d44a7d
/src/main/java/com/tencentcloudapi/ocr/v20181119/models/AdvertiseOCRResponse.java
9093a4fd1a79269ba7fb9cf47251ed3ab0052a82
[ "Apache-2.0" ]
permissive
feixueck/tencentcloud-sdk-java
ceaf3c493eec493878c0373f5d07f6fe34fa5f7b
ebdfb9cf12ce7630f53b387e2ac8d17471c6c7d0
refs/heads/master
2021-08-17T15:37:34.198968
2021-01-08T01:30:26
2021-01-08T01:30:26
240,156,902
0
0
Apache-2.0
2021-01-08T02:57:29
2020-02-13T02:04:37
Java
UTF-8
Java
false
false
3,371
java
/* * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.tencentcloudapi.ocr.v20181119.models; import com.tencentcloudapi.common.AbstractModel; import com.google.gson.annotations.SerializedName; import com.google.gson.annotations.Expose; import java.util.HashMap; public class AdvertiseOCRResponse extends AbstractModel{ /** * 检测到的文本信息,包括文本行内容、置信度、文本行坐标以及文本行旋转纠正后的坐标,具体内容请点击左侧链接。 */ @SerializedName("TextDetections") @Expose private AdvertiseTextDetection [] TextDetections; /** * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ @SerializedName("RequestId") @Expose private String RequestId; /** * Get 检测到的文本信息,包括文本行内容、置信度、文本行坐标以及文本行旋转纠正后的坐标,具体内容请点击左侧链接。 * @return TextDetections 检测到的文本信息,包括文本行内容、置信度、文本行坐标以及文本行旋转纠正后的坐标,具体内容请点击左侧链接。 */ public AdvertiseTextDetection [] getTextDetections() { return this.TextDetections; } /** * Set 检测到的文本信息,包括文本行内容、置信度、文本行坐标以及文本行旋转纠正后的坐标,具体内容请点击左侧链接。 * @param TextDetections 检测到的文本信息,包括文本行内容、置信度、文本行坐标以及文本行旋转纠正后的坐标,具体内容请点击左侧链接。 */ public void setTextDetections(AdvertiseTextDetection [] TextDetections) { this.TextDetections = TextDetections; } /** * Get 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 * @return RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ public String getRequestId() { return this.RequestId; } /** * Set 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 * @param RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 */ public void setRequestId(String RequestId) { this.RequestId = RequestId; } /** * Internal implementation, normal users should not use it. */ public void toMap(HashMap<String, String> map, String prefix) { this.setParamArrayObj(map, prefix + "TextDetections.", this.TextDetections); this.setParamSimple(map, prefix + "RequestId", this.RequestId); } }
[ "tencentcloudapi@tenent.com" ]
tencentcloudapi@tenent.com
3ccaf001d0502c26e776a44e0773425a3aedf5b4
f21d6fb7578957c7492d73bc8a45153ef6a42f23
/src/soy/web/action/SysMaintainAction.java
5e293080e1ff98df82c496ff89d8c90f5d56764b
[]
no_license
soy502636321/CustSys
11ac374ef7ba5aad7718b4b67b94f6f811f3de13
35ea00e64e440801322f82ac9e90fd99f538a6ee
refs/heads/master
2020-05-16T22:14:04.201037
2013-10-16T14:03:49
2013-10-16T14:04:45
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,760
java
package soy.web.action; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import soy.basic.database.entity.SysCust; import soy.basic.vo.SysMaintainVO; import soy.util.ForwardUtil; import soy.util.PaginatedList; import soy.util.SystemUtil; import soy.web.service.SysMaintainService; public class SysMaintainAction extends BaseAction { private static final Logger log = LoggerFactory .getLogger(SysMaintainAction.class); private SysMaintainService sysMaintainService; private SysMaintainVO sysMaintainVO; private boolean edit = false; private Integer page; private PaginatedList list; private Integer cbId[]; public String query() { log.debug("跳转到维护管理的主界面"); PaginatedList list = getSysMaintainService().find( new PaginatedList(getPage()), getSysMaintainVO(), null); setList(list); return ForwardUtil.FORWARD_QUERY_PAGE; } public String search() { log.debug(""); return ForwardUtil.FORWARD_SEARCH_PAGE; } public String add() { log.debug("跳转到增加维护的主界面"); setEdit(false); SysMaintainVO sysMaintainVO = new SysMaintainVO(); setSysMaintainVO(sysMaintainVO); return ForwardUtil.FORWARD_ADD_PAGE; } public String save() { log.debug("ACTION:开始增加维护记录"); if (getSysMaintainVO() == null) { addActionError("增加维护记录失败!"); } else { SysMaintainVO sysMaintainVO = getSysMaintainService().save(getSysMaintainVO()); if (sysMaintainVO == null) { addActionError("增加维护记录失败!"); } else { addActionMessage("成功增加维护记录!"); addActionMessage("维护记录编号:(" + sysMaintainVO.getId() + ")"); setSysMaintainVO(sysMaintainVO); setEdit(true); log.debug("ACTION:成功增加维护记录,并跳转到修改该记录的修改界面"); } } return ForwardUtil.FORWARD_ADD_PAGE; } public String edit() { log.debug("跳转到修改维护的主界面"); setEdit(true); if (SystemUtil.isNull(getCbId())) { addActionError("请先选择维护记录!"); } else { SysMaintainVO sysMaintainVO = getSysMaintainService().findById(getCbId()[0]); if (sysMaintainVO == null) { addActionError("不存在你所选择的维护记录!"); } else { setSysMaintainVO(sysMaintainVO); } } return ForwardUtil.FORWARD_EDIT_PAGE; } public String update() { log.debug("ACTION:开始修改维护记录"); setEdit(true); if (getSysMaintainVO() == null) { addActionError("修改维护记录失败!"); } else { SysMaintainVO sysMaintainVO = getSysMaintainService().update(getSysMaintainVO()); if (sysMaintainVO == null) { addActionError("修改维护记录失败!"); } else { addActionMessage("成功修改维护记录!"); setSysMaintainVO(sysMaintainVO); } } return ForwardUtil.FORWARD_EDIT_PAGE; } public String back() { log.debug(""); setSysMaintainVO(null); return query(); } public SysMaintainVO getSysMaintainVO() { return sysMaintainVO; } public void setSysMaintainVO(SysMaintainVO sysMaintainVO) { this.sysMaintainVO = sysMaintainVO; } public boolean isEdit() { return edit; } public void setEdit(boolean edit) { this.edit = edit; } public Integer getPage() { return page; } public void setPage(Integer page) { this.page = page; } public SysMaintainService getSysMaintainService() { return sysMaintainService; } public void setSysMaintainService(SysMaintainService sysMaintainService) { this.sysMaintainService = sysMaintainService; } public PaginatedList getList() { return list; } public void setList(PaginatedList list) { this.list = list; } public Integer[] getCbId() { return cbId; } public void setCbId(Integer[] cbId) { this.cbId = cbId; } }
[ "soy502636321@gmail.com" ]
soy502636321@gmail.com
85990380a9b74e1a961b8175cd1499b56ac399a5
b0ee8da367bae185e7d160f74761c7b6d9b50078
/app/src/test/java/com/example/aine/cardview/ExampleUnitTest.java
6a9cd20b99ed36a3a8b93f1cf23da95abf2847f5
[]
no_license
lauracbaa/WhereWazza
fde376ef393c948fcf8bc35bfa028fc7d20db4b6
72adc80cfbf2a0e9d4cbf9bbfb173997982b258e
refs/heads/master
2021-01-19T21:47:06.472610
2017-04-19T13:03:41
2017-04-19T13:03:41
88,702,783
0
0
null
null
null
null
UTF-8
Java
false
false
403
java
package com.example.aine.cardview; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); } }
[ "Aine Flynn" ]
Aine Flynn
0f1de8ef240251e4fc9a5535ae5f86c2ea3b6f5b
747a9fbd3ea6a3d3e469d63ade02b7620d970ca6
/AndroidSource/app/src/main/java/org/chromium/content/browser/SelectActionModeCallback.java
3035251f454138e67e1c198437cc0c1099afb571
[]
no_license
xievxin/GitWorkspace
3b88601ebb4718dc34a2948c673367ba79c202f0
81f4e7176daa85bf8bf5858ca4462e9475227aba
refs/heads/master
2021-01-21T06:18:33.222406
2019-01-31T01:28:50
2019-01-31T01:28:50
95,727,159
3
0
null
null
null
null
UTF-8
Java
false
false
5,400
java
// Copyright 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.content.browser; import android.content.ClipboardManager; import android.content.Context; import android.view.ActionMode; import android.view.Menu; import android.view.MenuItem; import org.chromium.content.R; /** * An ActionMode.Callback for in-page selection. This class handles both the editable and * non-editable cases. */ public class SelectActionModeCallback implements ActionMode.Callback { /** * An interface to retrieve information about the current selection, and also to perform * actions based on the selection or when the action bar is dismissed. */ public interface ActionHandler { /** * Perform a select all action. */ void selectAll(); /** * Perform a copy (to clipboard) action. */ void copy(); /** * Perform a cut (to clipboard) action. */ void cut(); /** * Perform a paste action. */ void paste(); /** * Perform a share action. */ void share(); /** * Perform a search action. */ void search(); /** * @return true iff the current selection is editable (e.g. text within an input field). */ boolean isSelectionEditable(); /** * Called when the onDestroyActionMode of the SelectActionmodeCallback is called. */ void onDestroyActionMode(); /** * @return Whether or not share is available. */ boolean isShareAvailable(); /** * @return Whether or not web search is available. */ boolean isWebSearchAvailable(); /** * @return true if the current selection is of password type. */ boolean isSelectionPassword(); } private final Context mContext; private final ActionHandler mActionHandler; private final boolean mIncognito; private boolean mEditable; private boolean mIsPasswordType; protected SelectActionModeCallback( Context context, ActionHandler actionHandler, boolean incognito) { mContext = context; mActionHandler = actionHandler; mIncognito = incognito; } protected Context getContext() { return mContext; } @Override public boolean onCreateActionMode(ActionMode mode, Menu menu) { mode.setTitle(null); mode.setSubtitle(null); mEditable = mActionHandler.isSelectionEditable(); mIsPasswordType = mActionHandler.isSelectionPassword(); createActionMenu(mode, menu); return true; } @Override public boolean onPrepareActionMode(ActionMode mode, Menu menu) { boolean isEditableNow = mActionHandler.isSelectionEditable(); boolean isPasswordNow = mActionHandler.isSelectionPassword(); if (mEditable != isEditableNow || mIsPasswordType != isPasswordNow) { mEditable = isEditableNow; mIsPasswordType = isPasswordNow; menu.clear(); createActionMenu(mode, menu); return true; } return false; } private void createActionMenu(ActionMode mode, Menu menu) { mode.getMenuInflater().inflate(R.menu.select_action_menu, menu); if (!mEditable || !canPaste()) { menu.removeItem(R.id.select_action_menu_paste); } if (!mEditable) { menu.removeItem(R.id.select_action_menu_cut); } if (mEditable || !mActionHandler.isShareAvailable()) { menu.removeItem(R.id.select_action_menu_share); } if (mEditable || mIncognito || !mActionHandler.isWebSearchAvailable()) { menu.removeItem(R.id.select_action_menu_web_search); } if (mIsPasswordType) { menu.removeItem(R.id.select_action_menu_copy); menu.removeItem(R.id.select_action_menu_cut); } } @Override public boolean onActionItemClicked(ActionMode mode, MenuItem item) { int id = item.getItemId(); if (id == R.id.select_action_menu_select_all) { mActionHandler.selectAll(); } else if (id == R.id.select_action_menu_cut) { mActionHandler.cut(); mode.finish(); } else if (id == R.id.select_action_menu_copy) { mActionHandler.copy(); mode.finish(); } else if (id == R.id.select_action_menu_paste) { mActionHandler.paste(); mode.finish(); } else if (id == R.id.select_action_menu_share) { mActionHandler.share(); mode.finish(); } else if (id == R.id.select_action_menu_web_search) { mActionHandler.search(); mode.finish(); } else { return false; } return true; } @Override public void onDestroyActionMode(ActionMode mode) { mActionHandler.onDestroyActionMode(); } private boolean canPaste() { ClipboardManager clipMgr = (ClipboardManager) getContext().getSystemService(Context.CLIPBOARD_SERVICE); return clipMgr.hasPrimaryClip(); } }
[ "xx@chuangke18.com" ]
xx@chuangke18.com
729d95d485949bc855f38abc78a0eda274242335
269bf3006a65742fb67537e43645604ac73813cf
/app/src/main/java/net/amazonaws/mobile/downloader/query/DownloadQueueProvider.java
487b27d96a38f494c2b2a632616ec4bcc2e57f09
[]
no_license
followmyego/ego
c12d7fc01a01555d052fb1346f819509313eeec0
3b1a7f8a5bf791c0b799d37d2e3c83915a0762eb
refs/heads/master
2021-05-03T18:04:58.571120
2016-09-21T01:20:01
2016-09-21T01:20:07
61,327,013
0
0
null
null
null
null
UTF-8
Java
false
false
11,901
java
package net.amazonaws.mobile.downloader.query; import android.content.ContentProvider; import android.content.ContentUris; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteException; import android.database.sqlite.SQLiteOpenHelper; import android.net.Uri; import android.util.Log; /** * A class which implements a content provider that gives access to * the download queue. Note that we only support querying. Updates, * deletes, inserts must all happen by firing intents at the download * service. */ public class DownloadQueueProvider extends ContentProvider { /** The authority for download content provider. */ private static String authority = null; /** * Gets the authority for the download queue content provider. * @param context a context * @return the authority for the download queue content provider. */ public static synchronized String getAuthority(final Context context) { if (authority == null) { authority = "com.amazonaws.mobile.downloader-" + context.getPackageName(); } return authority; } /** The base path for download content provider's content Uri. */ public static final String BASE_PATH = "Downloads"; public static final String OPEN_TRANSACTION_PATH = "Downloads/StartTransaction"; public static final String COMPLETE_TRANSACTION_PATH = "Downloads/CompleteTransaction"; /** The download content Uri. */ private static volatile Uri downloadContentUri = null; private static volatile Uri downloadOpenTransactionUri = null; private static volatile Uri downloadCompleteTransactionUri = null; /** * Gets the uri for the download queue content provider. * @param context a context * @return the uri for the download queue content provider. */ public static synchronized Uri getDownloadContentUri(final Context context) { if (downloadContentUri == null) { downloadContentUri = Uri.parse("content://" + getAuthority(context) + "/" + BASE_PATH); } return downloadContentUri; } public static synchronized Uri getDownloadOpenTransactionUri(final Context context) { if (downloadOpenTransactionUri == null) { downloadOpenTransactionUri = Uri.parse("content://" + getAuthority(context) + "/" + OPEN_TRANSACTION_PATH); } return downloadOpenTransactionUri; } public static synchronized Uri getDownloadCompleteTransactionUri(final Context context) { if (downloadCompleteTransactionUri == null) { downloadCompleteTransactionUri = Uri.parse("content://" + getAuthority(context) + "/" + COMPLETE_TRANSACTION_PATH); } return downloadCompleteTransactionUri; } /** Our MIME type for single rows. */ public static final String ROW_MIME_TYPE = "vnd.android.cursor.item/vnd.com.amazonaws.mobile.downloader." + BASE_PATH; /** Our MIME type for sets of rows. */ public static final String TABLE_MIME_TYPE = "vnd.android.cursor.dir/vnd.com.amazonaws.mobile.downloader." + BASE_PATH; /** The table name. */ public static final String TABLE_NAME = "download_queue"; /** The column containing download id. */ public static final String COLUMN_DOWNLOAD_ID = "_id"; /** The column containing the download file location. */ public static final String COLUMN_DOWNLOAD_FILE_LOCATION = "fileLocation"; /** The column containing the download description. */ public static final String COLUMN_DOWNLOAD_DESCRIPTION = "description"; /** The column containing the download Uri. */ public static final String COLUMN_DOWNLOAD_URL = "url"; /** The column containing the user interaction flags. */ public static final String COLUMN_DOWNLOAD_USER_FLAGS = "userFlags"; /** The column containing the MIME type. */ public static final String COLUMN_DOWNLOAD_MIME_TYPE = "mimeType"; /** The column containing the serialized intent passed in. */ public static final String COLUMN_DOWNLOAD_INTENT_URI = "intentURI"; /** The column containing the eTag. */ public static final String COLUMN_DOWNLOAD_ETAG = "eTag"; /** The column containing the status enum. */ public static final String COLUMN_DOWNLOAD_STATUS = "status"; /** The column containing the size of the thing being downloaded. */ public static final String COLUMN_DOWNLOAD_TOTAL_SIZE = "size"; /** The column containing the amount downloaded so far. */ public static final String COLUMN_DOWNLOAD_CURRENT_SIZE = "bytesDownloaded"; /** The column containing the pause/fail reason. */ public static final String COLUMN_DOWNLOAD_STOP_REASON = "stoppedBecause"; /** The column containing the timestamp of when the status was last modified (in milliseconds). */ public static final String COLUMN_DOWNLOAD_CREATE_TIMESTAMP = "createTimestamp"; /** The column containing the download title. */ public static final String COLUMN_DOWNLOAD_TITLE = "title"; /** An instance of our helper class used to access the DB. */ private DatabaseHelper helper; /** * Called when a the content provider is created by the Android system. * * @return true if initialization successful */ @Override public boolean onCreate() { helper = new DatabaseHelper(getContext()); return true; } /** * Called to make a query to the content provider. * * @param uri * the URI to query * @param projection * the columns desired in the output * @param selection * the "where" clause to use * @param selectionArgs * variables to insert into the ? in the "where" clause * @param sortOrder * the "order by" clause * @return the cursor with the results in it */ @Override public Cursor query(final Uri uri, final String[] projection, final String selection, final String[] selectionArgs, final String sortOrder) { if (uri.equals(downloadContentUri)) { final SQLiteDatabase db = helper.getReadableDatabase(); return db.query(TABLE_NAME, projection, selection, selectionArgs, null, null, sortOrder, null); } final SQLiteDatabase db = helper.getWritableDatabase(); if (uri.equals(downloadOpenTransactionUri)) { db.beginTransaction(); } else if (uri.equals(downloadCompleteTransactionUri)) { db.setTransactionSuccessful(); db.endTransaction(); } return null; } /** * Called to insert an item. * * @param uri * the URI to insert to * @param values * the values to insert. * @return the URI for the new row */ @Override public Uri insert(final Uri uri, final ContentValues values) { final SQLiteDatabase db = helper.getWritableDatabase(); final long id = db.insert(TABLE_NAME, null, values); return ContentUris.withAppendedId(uri, id); } /** * Called to update an item. * * @param uri * the URI to update * @param values * the values to change * @param selection * the "where" clause * @param selectionArgs * the variables to be inserted into the ? of the "where" clause * @return the count of rows changed */ @Override public int update(final Uri uri, final ContentValues values, final String selection, final String[] selectionArgs) { final SQLiteDatabase db = helper.getWritableDatabase(); return db.update(TABLE_NAME, values, selection, selectionArgs); } /** * Delete an item. * * @param uri * the URI to update * @param selection * the "where" clause * @param selectionArgs * the variables to be inserted into the ? of the "where" clause * @return the count of rows deleted. */ @Override public int delete(final Uri uri, final String selection, final String[] selectionArgs) { final SQLiteDatabase db = helper.getWritableDatabase(); return db.delete(TABLE_NAME, selection, selectionArgs); } /** * Get the mime type of this content. * * @param uri * the URI to query * @return the mime type */ @Override public String getType(final Uri uri) { final String result; final String query = uri.getQuery(); if (query.startsWith("id=")) { result = ROW_MIME_TYPE; } else { result = TABLE_MIME_TYPE; } return result; } /** * A class to help us manage our SQLite database. */ /* package */static final class DatabaseHelper extends SQLiteOpenHelper { /** Log Tag. */ private static final String LOG_TAG = DatabaseHelper.class.getSimpleName(); /** Current database version. */ private static final int VERSION = 1; /** Database name. */ private static final String NAME = "downloadQueue"; /** SQL to create table. */ public static final String CREATE_TABLE = "CREATE TABLE " + DownloadQueueProvider.TABLE_NAME + "(" + DownloadQueueProvider.COLUMN_DOWNLOAD_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, " + DownloadQueueProvider.COLUMN_DOWNLOAD_URL + " TEXT, " + DownloadQueueProvider.COLUMN_DOWNLOAD_FILE_LOCATION + " TEXT, " + DownloadQueueProvider.COLUMN_DOWNLOAD_DESCRIPTION + " TEXT, " + DownloadQueueProvider.COLUMN_DOWNLOAD_USER_FLAGS + " INTEGER, " + DownloadQueueProvider.COLUMN_DOWNLOAD_MIME_TYPE + " TEXT, " + DownloadQueueProvider.COLUMN_DOWNLOAD_INTENT_URI + " TEXT, " + DownloadQueueProvider.COLUMN_DOWNLOAD_ETAG + " TEXT, " + DownloadQueueProvider.COLUMN_DOWNLOAD_STATUS + " TEXT, " + DownloadQueueProvider.COLUMN_DOWNLOAD_TOTAL_SIZE + " INTEGER, " + DownloadQueueProvider.COLUMN_DOWNLOAD_CURRENT_SIZE + " INTEGER, " + DownloadQueueProvider.COLUMN_DOWNLOAD_STOP_REASON + " TEXT, " + DownloadQueueProvider.COLUMN_DOWNLOAD_CREATE_TIMESTAMP + " INTEGER, " + DownloadQueueProvider.COLUMN_DOWNLOAD_TITLE + " TEXT " + ")"; /** * Create a new instance. * * @param context * the Context to be used. */ /* package */DatabaseHelper(final Context context) { super(context, NAME, null, VERSION); } /** * Create a database schema. * * @param db * the database in which to create the schema. */ @Override public void onCreate(final SQLiteDatabase db) { try { db.execSQL(CREATE_TABLE); } catch (SQLiteException e) { Log.e(LOG_TAG, "Error trying to create table", e); } } /** * Upgrade a database schema. * * @param db * the database to upgrade. * @param oldVersion * the current version * @param newVersion * the version to upgrade to. */ @Override public void onUpgrade(final SQLiteDatabase db, final int oldVersion, final int newVersion) { Log.i(LOG_TAG, "upgrading db from v" + oldVersion + " to v" + newVersion); // No versions yet except version 1. } } }
[ "followmyego@gmail.com" ]
followmyego@gmail.com
ba82ac1424c47e6b14c5515755d07a3b5fdea1f6
9f08be9a6c6f51f201352efa39a267141c5a0de8
/src/main/java/org/docksidestage/remote/maihama/showbase/wx/remogen/tricky/nobody/RemoteWxRemogenTrickyNobodyReturn.java
404dca786842f47088ebc9a4adcc6f7cdaf46fde
[ "Apache-2.0" ]
permissive
decoch/lastaflute-test-fortress
4599439c7183e4bc52b26a58bbf2fd4792814816
a8916aecf9d2b12e4335306c66c4f2e1e652127b
refs/heads/master
2021-09-14T18:53:45.437459
2018-05-17T15:54:34
2018-05-17T15:54:34
115,714,243
0
0
null
2017-12-29T10:45:29
2017-12-29T10:45:29
null
UTF-8
Java
false
false
1,122
java
/* * Copyright 2015-2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.docksidestage.remote.maihama.showbase.wx.remogen.tricky.nobody; import org.lastaflute.core.util.Lato; /** * The bean class as return for remote API of POST /wx/remogen/tricky/nobody. * @author FreeGen */ public class RemoteWxRemogenTrickyNobodyReturn { /** The property of key. (NullAllowed) */ public String key; /** The property of value. (NullAllowed) */ public Object value; @Override public String toString() { return Lato.string(this); } }
[ "dbflute@gmail.com" ]
dbflute@gmail.com
50f01b9c73c0bbe44904fd2b75f3504169e14b60
79072e85a5cbb606105ccee9f2b103b3940158de
/opdockerfile/wbm/apache-tomcat/tomcat-upms-8800/work/Catalina/localhost/upms/org/apache/jsp/WEB_002dINF/jsp/manage/system/update_jsp.java
df51611116beb323111f85c2ea54d76a7a5493aa
[]
no_license
mingshic/service_cluster_base_docker
2bef30f2a4f32b7ca42c3f7cb76edd1d42678d83
545db23240e663d0abdd2c6ccf2b223971ce6cd2
refs/heads/master
2020-04-20T10:23:39.271491
2019-02-02T03:15:12
2019-02-02T03:15:12
168,789,105
0
0
null
null
null
null
UTF-8
Java
false
false
26,917
java
/* * Generated by the Jasper component of Apache Tomcat * Version: Apache Tomcat/8.0.47 * Generated at: 2018-11-06 06:50:54 UTC * Note: The last modified time of this file was set to * the last modified time of the source file after * generation to assist with modification tracking. */ package org.apache.jsp.WEB_002dINF.jsp.manage.system; import javax.servlet.*; import javax.servlet.http.*; import javax.servlet.jsp.*; public final class update_jsp extends org.apache.jasper.runtime.HttpJspBase implements org.apache.jasper.runtime.JspSourceDependent, org.apache.jasper.runtime.JspSourceImports { private static final javax.servlet.jsp.JspFactory _jspxFactory = javax.servlet.jsp.JspFactory.getDefaultFactory(); private static java.util.Map<java.lang.String,java.lang.Long> _jspx_dependants; static { _jspx_dependants = new java.util.HashMap<java.lang.String,java.lang.Long>(9); _jspx_dependants.put("jar:file:/opt/www/webserver/zheng-upms-server/WEB-INF/lib/spring-webmvc-4.3.20.RELEASE.jar!/META-INF/spring-form.tld", Long.valueOf(1539563356000L)); _jspx_dependants.put("jar:file:/opt/www/webserver/zheng-upms-server/WEB-INF/lib/spring-webmvc-4.3.20.RELEASE.jar!/META-INF/spring.tld", Long.valueOf(1539563356000L)); _jspx_dependants.put("/WEB-INF/lib/spring-webmvc-4.3.20.RELEASE.jar", Long.valueOf(1541076044000L)); _jspx_dependants.put("jar:file:/opt/www/webserver/zheng-upms-server/WEB-INF/lib/jstl-1.2.jar!/META-INF/c-1_0-rt.tld", Long.valueOf(1153356282000L)); _jspx_dependants.put("jar:file:/opt/www/webserver/zheng-upms-server/WEB-INF/lib/jstl-1.2.jar!/META-INF/fn.tld", Long.valueOf(1153356282000L)); _jspx_dependants.put("/WEB-INF/lib/jstl-1.2.jar", Long.valueOf(1528799796000L)); _jspx_dependants.put("jar:file:/opt/www/webserver/zheng-upms-server/WEB-INF/lib/jstl-1.2.jar!/META-INF/fmt.tld", Long.valueOf(1153356282000L)); _jspx_dependants.put("jar:file:/opt/www/webserver/zheng-upms-server/WEB-INF/lib/shiro-web-1.3.2.jar!/META-INF/shiro.tld", Long.valueOf(1473414826000L)); _jspx_dependants.put("/WEB-INF/lib/shiro-web-1.3.2.jar", Long.valueOf(1528799788000L)); } private static final java.util.Set<java.lang.String> _jspx_imports_packages; private static final java.util.Set<java.lang.String> _jspx_imports_classes; static { _jspx_imports_packages = new java.util.HashSet<>(); _jspx_imports_packages.add("javax.servlet"); _jspx_imports_packages.add("javax.servlet.http"); _jspx_imports_packages.add("javax.servlet.jsp"); _jspx_imports_classes = null; } private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fvalue_005fnobody; private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fc_005fif_0026_005ftest; private volatile javax.el.ExpressionFactory _el_expressionfactory; private volatile org.apache.tomcat.InstanceManager _jsp_instancemanager; public java.util.Map<java.lang.String,java.lang.Long> getDependants() { return _jspx_dependants; } public java.util.Set<java.lang.String> getPackageImports() { return _jspx_imports_packages; } public java.util.Set<java.lang.String> getClassImports() { return _jspx_imports_classes; } public javax.el.ExpressionFactory _jsp_getExpressionFactory() { if (_el_expressionfactory == null) { synchronized (this) { if (_el_expressionfactory == null) { _el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory(); } } } return _el_expressionfactory; } public org.apache.tomcat.InstanceManager _jsp_getInstanceManager() { if (_jsp_instancemanager == null) { synchronized (this) { if (_jsp_instancemanager == null) { _jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig()); } } } return _jsp_instancemanager; } public void _jspInit() { _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fvalue_005fnobody = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); _005fjspx_005ftagPool_005fc_005fif_0026_005ftest = org.apache.jasper.runtime.TagHandlerPool.getTagHandlerPool(getServletConfig()); } public void _jspDestroy() { _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fvalue_005fnobody.release(); _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.release(); } public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response) throws java.io.IOException, javax.servlet.ServletException { final java.lang.String _jspx_method = request.getMethod(); if (!"GET".equals(_jspx_method) && !"POST".equals(_jspx_method) && !"HEAD".equals(_jspx_method) && !javax.servlet.DispatcherType.ERROR.equals(request.getDispatcherType())) { response.sendError(HttpServletResponse.SC_METHOD_NOT_ALLOWED, "JSPs only permit GET POST or HEAD"); return; } final javax.servlet.jsp.PageContext pageContext; javax.servlet.http.HttpSession session = null; final javax.servlet.ServletContext application; final javax.servlet.ServletConfig config; javax.servlet.jsp.JspWriter out = null; final java.lang.Object page = this; javax.servlet.jsp.JspWriter _jspx_out = null; javax.servlet.jsp.PageContext _jspx_page_context = null; try { response.setContentType("text/html; charset=utf-8"); pageContext = _jspxFactory.getPageContext(this, request, response, null, true, 8192, true); _jspx_page_context = pageContext; application = pageContext.getServletContext(); config = pageContext.getServletConfig(); session = pageContext.getSession(); out = pageContext.getOut(); _jspx_out = out; out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); out.write("\n"); if (_jspx_meth_c_005fset_005f0(_jspx_page_context)) return; out.write("\n"); out.write("<div id=\"updateDialog\" class=\"crudDialog\">\n"); out.write("\t<form id=\"updateForm\" method=\"post\">\n"); out.write("\t\t<div class=\"form-group\">\n"); out.write("\t\t\t<label for=\"theme\"></label>\n"); out.write("\t\t\t<input id=\"theme\" type=\"color\" class=\"form-control\" name=\"theme\" maxlength=\"50\" value=\""); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${system.theme}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); out.write("\">\n"); out.write("\t\t</div>\n"); out.write("\t\t<div class=\"form-group\">\n"); out.write("\t\t\t<label for=\"icon\">图标</label>\n"); out.write("\t\t\t<input id=\"icon\" type=\"text\" class=\"form-control\" name=\"icon\" maxlength=\"20\" value=\""); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${system.icon}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); out.write("\">\n"); out.write("\t\t</div>\n"); out.write("\t\t<div class=\"form-group\">\n"); out.write("\t\t\t<label for=\"title\">标题</label>\n"); out.write("\t\t\t<input id=\"title\" type=\"text\" class=\"form-control\" name=\"title\" maxlength=\"20\" value=\""); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${system.title}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); out.write("\" required=\"true\">\n"); out.write("\t\t</div>\n"); out.write("\t\t<div class=\"form-group\">\n"); out.write("\t\t\t<label for=\"name\">名称</label>\n"); out.write("\t\t\t<input id=\"name\" type=\"text\" class=\"form-control\" name=\"name\" maxlength=\"20\" value=\""); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${system.name}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); out.write("\" required=\"true\">\n"); out.write("\t\t</div>\n"); out.write("\t\t<div class=\"row\">\n"); out.write("\t\t\t<div class=\"col-lg-8 form-group\">\n"); out.write("\t\t\t\t<label for=\"name\">背景图</label>\n"); out.write("\t\t\t\t<input id=\"banner\" type=\"text\" class=\"form-control\" name=\"banner\" maxlength=\"150\" value=\""); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${system.banner}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); out.write("\">\n"); out.write("\t\t\t</div>\n"); out.write("\t\t\t<div class=\"col-lg-4\">\n"); out.write("\t\t\t\t<div id=\"picker\">上传背景图</div>\n"); out.write("\t\t\t</div>\n"); out.write("\t\t</div>\n"); out.write("\t\t<div class=\"form-group\">\n"); out.write("\t\t\t<label for=\"description\">描述</label>\n"); out.write("\t\t\t<input id=\"description\" type=\"text\" class=\"form-control\" name=\"description\" maxlength=\"300\" value=\""); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${system.description}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); out.write("\">\n"); out.write("\t\t</div>\n"); out.write("\t\t<div class=\"form-group\">\n"); out.write("\t\t\t<label for=\"basepath\">根目录</label>\n"); out.write("\t\t\t<input id=\"basepath\" type=\"text\" class=\"form-control\" name=\"basepath\" maxlength=\"100\" value=\""); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${system.basepath}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); out.write("\">\n"); out.write("\t\t</div>\n"); out.write("\t\t<div class=\"radio\">\n"); out.write("\t\t\t<div class=\"radio radio-inline radio-success\">\n"); out.write("\t\t\t\t<input id=\"status_1\" type=\"radio\" name=\"status\" value=\"1\" "); if (_jspx_meth_c_005fif_005f0(_jspx_page_context)) return; out.write(">\n"); out.write("\t\t\t\t<label for=\"status_1\">正常 </label>\n"); out.write("\t\t\t</div>\n"); out.write("\t\t\t<div class=\"radio radio-inline\">\n"); out.write("\t\t\t\t<input id=\"status_0\" type=\"radio\" name=\"status\" value=\"-1\" "); if (_jspx_meth_c_005fif_005f1(_jspx_page_context)) return; out.write(">\n"); out.write("\t\t\t\t<label for=\"status_0\">锁定 </label>\n"); out.write("\t\t\t</div>\n"); out.write("\t\t</div>\n"); out.write("\t\t<div class=\"form-group text-right dialog-buttons\">\n"); out.write("\t\t\t<a class=\"waves-effect waves-button\" href=\"javascript:;\" onclick=\"createSubmit();\">保存</a>\n"); out.write("\t\t\t<a class=\"waves-effect waves-button\" href=\"javascript:;\" onclick=\"updateDialog.close();\">取消</a>\n"); out.write("\t\t</div>\n"); out.write("\t</form>\n"); out.write("</div>\n"); out.write("<script>\n"); out.write(" function initUploader() {\n"); out.write(" //百度上传按钮\n"); out.write(" var uploader = WebUploader.create({\n"); out.write(" // swf文件路径\n"); out.write(" swf: '"); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${basePath}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); out.write("/resources/zheng-admin/plugins/webuploader-0.1.5/Uploader.swf',\n"); out.write(" // 文件接收服务端\n"); out.write(" method: 'POST',\n"); out.write(" // 选择文件的按钮。可选。\n"); out.write(" // 内部根据当前运行是创建,可能是input元素,也可能是flash.\n"); out.write(" pick: {\n"); out.write(" \"id\": '#picker',\n"); out.write(" \"multiple\": false\n"); out.write(" },\n"); out.write(" // 不压缩image, 默认如果是jpeg,文件上传前会压缩一把再上传!\n"); out.write(" resize: false,\n"); out.write(" // 选完文件后,是否自动上传。\n"); out.write(" auto: false,\n"); out.write(" // 只允许选择图片文件\n"); out.write(" accept: {\n"); out.write(" title: '图片文件',\n"); out.write(" extensions: 'gif,jpg,jpeg,bmp,png',\n"); out.write(" mimeTypes: 'image/*'\n"); out.write(" }\n"); out.write(" });\n"); out.write(" uploader.on( 'fileQueued', function(file) {\n"); out.write(" $.ajax({\n"); out.write(" url: '"); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${ZHENG_OSS_ALIYUN_OSS_POLICY}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); out.write("',\n"); out.write(" type: 'GET',\n"); out.write(" dataType: 'jsonp',\n"); out.write(" jsonp: 'callback',\n"); out.write(" success: function(result) {\n"); out.write(" var suffix = get_suffix(file.name);\n"); out.write(" var random_name = random_string();\n"); out.write(" uploader.options.formData.key = result.dir + '/' + random_name + suffix;\n"); out.write(" uploader.options.formData.policy = result.policy;\n"); out.write(" uploader.options.formData.OSSAccessKeyId = result.OSSAccessKeyId;\n"); out.write(" uploader.options.formData.success_action_status = 200;\n"); out.write(" uploader.options.formData.callback = result.callback;\n"); out.write(" uploader.options.formData.signature = result.signature;\n"); out.write(" uploader.options.server = result.action;\n"); out.write(" uploader.upload();\n"); out.write(" },\n"); out.write(" error: function(msg) {\n"); out.write(" console.log(msg);\n"); out.write(" }\n"); out.write(" });\n"); out.write(" });\n"); out.write(" uploader.on( 'uploadSuccess', function(file, response) {\n"); out.write(" $('#banner').val(response.data.filename).focus();\n"); out.write(" });\n"); out.write(" uploader.on( 'uploadError', function(file) {\n"); out.write(" console.log('uploadError', file);\n"); out.write(" });\n"); out.write(" }\n"); out.write(" // 根据路径获取后缀\n"); out.write(" function get_suffix(filename) {\n"); out.write(" var pos = filename.lastIndexOf('.');\n"); out.write(" var suffix = '';\n"); out.write(" if (pos != -1) {\n"); out.write(" suffix = filename.substring(pos);\n"); out.write(" }\n"); out.write(" return suffix;\n"); out.write(" }\n"); out.write(" // 随机字符串\n"); out.write(" function random_string(len) {\n"); out.write(" len = len || 32;\n"); out.write(" var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';\n"); out.write(" var maxPos = chars.length;\n"); out.write(" var pwd = '';\n"); out.write(" for (i = 0; i < len; i++) {\n"); out.write(" pwd += chars.charAt(Math.floor(Math.random() * maxPos));\n"); out.write(" }\n"); out.write(" return pwd;\n"); out.write(" }\n"); out.write("function createSubmit() {\n"); out.write(" $.ajax({\n"); out.write(" type: 'post',\n"); out.write(" url: '"); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${basePath}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); out.write("/manage/system/update/"); out.write((java.lang.String) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${system.systemId}", java.lang.String.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); out.write("',\n"); out.write(" data: $('#updateForm').serialize(),\n"); out.write(" beforeSend: function() {\n"); out.write(" if ($('#title').val() == '') {\n"); out.write(" $('#title').focus();\n"); out.write(" return false;\n"); out.write(" }\n"); out.write(" if ($('#name').val() == '') {\n"); out.write(" $('#name').focus();\n"); out.write(" return false;\n"); out.write(" }\n"); out.write(" },\n"); out.write(" success: function(result) {\n"); out.write("\t\t\tif (result.code != 1) {\n"); out.write("\t\t\t\tif (result.data instanceof Array) {\n"); out.write("\t\t\t\t\t$.each(result.data, function(index, value) {\n"); out.write("\t\t\t\t\t\t$.confirm({\n"); out.write("\t\t\t\t\t\t\ttheme: 'dark',\n"); out.write("\t\t\t\t\t\t\tanimation: 'rotateX',\n"); out.write("\t\t\t\t\t\t\tcloseAnimation: 'rotateX',\n"); out.write("\t\t\t\t\t\t\ttitle: false,\n"); out.write("\t\t\t\t\t\t\tcontent: value.errorMsg,\n"); out.write("\t\t\t\t\t\t\tbuttons: {\n"); out.write("\t\t\t\t\t\t\t\tconfirm: {\n"); out.write("\t\t\t\t\t\t\t\t\ttext: '确认',\n"); out.write("\t\t\t\t\t\t\t\t\tbtnClass: 'waves-effect waves-button waves-light'\n"); out.write("\t\t\t\t\t\t\t\t}\n"); out.write("\t\t\t\t\t\t\t}\n"); out.write("\t\t\t\t\t\t});\n"); out.write("\t\t\t\t\t});\n"); out.write("\t\t\t\t} else {\n"); out.write("\t\t\t\t\t\t$.confirm({\n"); out.write("\t\t\t\t\t\t\ttheme: 'dark',\n"); out.write("\t\t\t\t\t\t\tanimation: 'rotateX',\n"); out.write("\t\t\t\t\t\t\tcloseAnimation: 'rotateX',\n"); out.write("\t\t\t\t\t\t\ttitle: false,\n"); out.write("\t\t\t\t\t\t\tcontent: result.data.errorMsg,\n"); out.write("\t\t\t\t\t\t\tbuttons: {\n"); out.write("\t\t\t\t\t\t\t\tconfirm: {\n"); out.write("\t\t\t\t\t\t\t\t\ttext: '确认',\n"); out.write("\t\t\t\t\t\t\t\t\tbtnClass: 'waves-effect waves-button waves-light'\n"); out.write("\t\t\t\t\t\t\t\t}\n"); out.write("\t\t\t\t\t\t\t}\n"); out.write("\t\t\t\t\t\t});\n"); out.write("\t\t\t\t}\n"); out.write("\t\t\t} else {\n"); out.write("\t\t\t\tupdateDialog.close();\n"); out.write("\t\t\t\t$table.bootstrapTable('refresh');\n"); out.write("\t\t\t}\n"); out.write(" },\n"); out.write(" error: function(XMLHttpRequest, textStatus, errorThrown) {\n"); out.write("\t\t\t$.confirm({\n"); out.write("\t\t\t\ttheme: 'dark',\n"); out.write("\t\t\t\tanimation: 'rotateX',\n"); out.write("\t\t\t\tcloseAnimation: 'rotateX',\n"); out.write("\t\t\t\ttitle: false,\n"); out.write("\t\t\t\tcontent: textStatus,\n"); out.write("\t\t\t\tbuttons: {\n"); out.write("\t\t\t\t\tconfirm: {\n"); out.write("\t\t\t\t\t\ttext: '确认',\n"); out.write("\t\t\t\t\t\tbtnClass: 'waves-effect waves-button waves-light'\n"); out.write("\t\t\t\t\t}\n"); out.write("\t\t\t\t}\n"); out.write("\t\t\t});\n"); out.write(" }\n"); out.write(" });\n"); out.write("}\n"); out.write("</script>"); } catch (java.lang.Throwable t) { if (!(t instanceof javax.servlet.jsp.SkipPageException)){ out = _jspx_out; if (out != null && out.getBufferSize() != 0) try { if (response.isCommitted()) { out.flush(); } else { out.clearBuffer(); } } catch (java.io.IOException e) {} if (_jspx_page_context != null) _jspx_page_context.handlePageException(t); else throw new ServletException(t); } } finally { _jspxFactory.releasePageContext(_jspx_page_context); } } private boolean _jspx_meth_c_005fset_005f0(javax.servlet.jsp.PageContext _jspx_page_context) throws java.lang.Throwable { javax.servlet.jsp.PageContext pageContext = _jspx_page_context; javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); // c:set org.apache.taglibs.standard.tag.rt.core.SetTag _jspx_th_c_005fset_005f0 = (org.apache.taglibs.standard.tag.rt.core.SetTag) _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fvalue_005fnobody.get(org.apache.taglibs.standard.tag.rt.core.SetTag.class); boolean _jspx_th_c_005fset_005f0_reused = false; try { _jspx_th_c_005fset_005f0.setPageContext(_jspx_page_context); _jspx_th_c_005fset_005f0.setParent(null); // /WEB-INF/jsp/manage/system/update.jsp(8,0) name = var type = java.lang.String reqTime = false required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_c_005fset_005f0.setVar("basePath"); // /WEB-INF/jsp/manage/system/update.jsp(8,0) name = value type = null reqTime = true required = false fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_c_005fset_005f0.setValue((java.lang.Object) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${pageContext.request.contextPath}", java.lang.Object.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)); int _jspx_eval_c_005fset_005f0 = _jspx_th_c_005fset_005f0.doStartTag(); if (_jspx_th_c_005fset_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { return true; } _005fjspx_005ftagPool_005fc_005fset_0026_005fvar_005fvalue_005fnobody.reuse(_jspx_th_c_005fset_005f0); _jspx_th_c_005fset_005f0_reused = true; } finally { org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fset_005f0, _jsp_getInstanceManager(), _jspx_th_c_005fset_005f0_reused); } return false; } private boolean _jspx_meth_c_005fif_005f0(javax.servlet.jsp.PageContext _jspx_page_context) throws java.lang.Throwable { javax.servlet.jsp.PageContext pageContext = _jspx_page_context; javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); // c:if org.apache.taglibs.standard.tag.rt.core.IfTag _jspx_th_c_005fif_005f0 = (org.apache.taglibs.standard.tag.rt.core.IfTag) _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.IfTag.class); boolean _jspx_th_c_005fif_005f0_reused = false; try { _jspx_th_c_005fif_005f0.setPageContext(_jspx_page_context); _jspx_th_c_005fif_005f0.setParent(null); // /WEB-INF/jsp/manage/system/update.jsp(46,62) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_c_005fif_005f0.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${system.status==1}", boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)).booleanValue()); int _jspx_eval_c_005fif_005f0 = _jspx_th_c_005fif_005f0.doStartTag(); if (_jspx_eval_c_005fif_005f0 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { do { out.write("checked"); int evalDoAfterBody = _jspx_th_c_005fif_005f0.doAfterBody(); if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) break; } while (true); } if (_jspx_th_c_005fif_005f0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { return true; } _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f0); _jspx_th_c_005fif_005f0_reused = true; } finally { org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fif_005f0, _jsp_getInstanceManager(), _jspx_th_c_005fif_005f0_reused); } return false; } private boolean _jspx_meth_c_005fif_005f1(javax.servlet.jsp.PageContext _jspx_page_context) throws java.lang.Throwable { javax.servlet.jsp.PageContext pageContext = _jspx_page_context; javax.servlet.jsp.JspWriter out = _jspx_page_context.getOut(); // c:if org.apache.taglibs.standard.tag.rt.core.IfTag _jspx_th_c_005fif_005f1 = (org.apache.taglibs.standard.tag.rt.core.IfTag) _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.get(org.apache.taglibs.standard.tag.rt.core.IfTag.class); boolean _jspx_th_c_005fif_005f1_reused = false; try { _jspx_th_c_005fif_005f1.setPageContext(_jspx_page_context); _jspx_th_c_005fif_005f1.setParent(null); // /WEB-INF/jsp/manage/system/update.jsp(50,63) name = test type = boolean reqTime = true required = true fragment = false deferredValue = false expectedTypeName = null deferredMethod = false methodSignature = null _jspx_th_c_005fif_005f1.setTest(((java.lang.Boolean) org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${system.status!=1}", boolean.class, (javax.servlet.jsp.PageContext)_jspx_page_context, null)).booleanValue()); int _jspx_eval_c_005fif_005f1 = _jspx_th_c_005fif_005f1.doStartTag(); if (_jspx_eval_c_005fif_005f1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) { do { out.write("checked"); int evalDoAfterBody = _jspx_th_c_005fif_005f1.doAfterBody(); if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN) break; } while (true); } if (_jspx_th_c_005fif_005f1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) { return true; } _005fjspx_005ftagPool_005fc_005fif_0026_005ftest.reuse(_jspx_th_c_005fif_005f1); _jspx_th_c_005fif_005f1_reused = true; } finally { org.apache.jasper.runtime.JspRuntimeLibrary.releaseTag(_jspx_th_c_005fif_005f1, _jsp_getInstanceManager(), _jspx_th_c_005fif_005f1_reused); } return false; } }
[ "13667636243@163.com" ]
13667636243@163.com
d9690500119980ccd4b12dc17ca6f791602f9295
bfed0d992f925ee137eb94026f0283724eba17fa
/V3.0/ZIDM/src/nl/zeesoft/zidm/test/TestModelDialogHandler.java
2521cf0993ba88ca707675848bf23d752f13d345
[]
no_license
DyzLecticus/Zeesoft
c17c469b000f15301ff2be6c19671b12bba25f99
b5053b762627762ffeaa2de4f779d6e1524a936d
refs/heads/master
2023-04-15T01:42:36.260351
2023-04-10T06:50:40
2023-04-10T06:50:40
28,697,832
7
2
null
2023-02-27T16:30:37
2015-01-01T22:57:39
Java
UTF-8
Java
false
false
3,951
java
package nl.zeesoft.zidm.test; import java.util.Date; import nl.zeesoft.zdk.test.Tester; import nl.zeesoft.zdm.test.ZDM; import nl.zeesoft.zid.dialog.DialogHandler; import nl.zeesoft.zid.test.TestDialogHandlerObject; import nl.zeesoft.zidm.dialog.ModelDialogFactory; import nl.zeesoft.zidm.dialog.model.DialogModel; import nl.zeesoft.zidm.dialog.pattern.ModelPatternManager; public class TestModelDialogHandler extends TestDialogHandlerObject { public TestModelDialogHandler(Tester tester) { super(tester); } public static void main(String[] args) { (new TestModelDialogHandler(new Tester())).test(args); } @Override protected void describe() { // TODO: describe /* System.out.println("This test shows how to create a *DialogHandler* and then use it to produce dialog output for input. "); System.out.println(); System.out.println("**Example implementation** "); System.out.println("~~~~"); System.out.println("// Create dialog handler"); System.out.println("DialogHandler handler = new DialogHandler(dialogs,patternManager);"); System.out.println("// Initialize dialog handler"); System.out.println("handler.initialize();"); System.out.println("// Handle dialog input"); System.out.println("ZStringSymbolParser output = handler.handleInput(new ZStringSymbolParser(\"hello\"));"); System.out.println("~~~~"); System.out.println(); System.out.println("A *DialogHandler* requires a list of dialogs and a *PatternManager*. "); System.out.println(); getTester().describeMock(MockDialogHandler.class.getName()); System.out.println(); System.out.println("Class references; "); System.out.println(" * " + getTester().getLinkForClass(TestModelDialogHandler.class)); System.out.println(" * " + getTester().getLinkForClass(MockDialogHandler.class)); System.out.println(" * " + getTester().getLinkForClass(MockDialogs.class)); System.out.println(" * " + getTester().getLinkForClass(DialogHandler.class)); System.out.println(); System.out.println("**Test output** "); System.out.println("The output of this test shows the mock initialization duration, the dialog handler log and the average time spent thinking per response. "); */ } @Override protected void test(String[] args) { System.out.println("Initializing model dialog handler ..."); Date start = new Date(); ModelDialogFactory mdf = new ModelDialogFactory(); ModelPatternManager mpm = mdf.getModelPatternManager(); mpm.initializePatterns(); DialogModel model = mdf.getDialogModel(); DialogHandler handler = new DialogHandler(mdf.getModelDialogs(model),mpm); handler.initialize(); System.out.println("Initializing model dialog handler took " + ((new Date()).getTime() - start.getTime()) + " ms"); System.out.println(); addScriptLine("A primitive is an object that has a value",ModelDialogFactory.defaultAnswer); addScriptLine("Primitives is the plural of primitive",ModelDialogFactory.defaultAnswer); addScriptLine("A string is a primitive",ModelDialogFactory.defaultAnswer); addScriptLine("Strings is the plural form of string",ModelDialogFactory.defaultAnswer); addScriptLine("A name is a string",ModelDialogFactory.defaultAnswer); addScriptLine("Names is the plural for name",ModelDialogFactory.defaultAnswer); addScriptLine("An organism is an object",ModelDialogFactory.defaultAnswer); addScriptLine("An animal is an organism",ModelDialogFactory.defaultAnswer); addScriptLine("A plant is an organism",ModelDialogFactory.defaultAnswer); addScriptLine("A primate is an animal",ModelDialogFactory.defaultAnswer); addScriptLine("A human is a primate",ModelDialogFactory.defaultAnswer); addScriptLine("humans have names","What are humans?"); addScriptLine("humans is the plural of human",ModelDialogFactory.defaultAnswer); testScript(handler); System.out.println(handler.getLog()); ZDM.describeModelVersionLogs(model); ZDM.describeModelPackages(model,true); } }
[ "dyz@xs4all.nl" ]
dyz@xs4all.nl
db6441c38c8dde8a920fd3a43cce724fac0eb73e
295b2b42204c3430dc1fe1f12af42fc9bf8f791f
/src/main/java/com/server/tool/PacketSendUtil.java
6d43e52a5f2cfc643fe6ed71d7f0682b32c7a4cf
[]
no_license
yyy0/GameDemo
e53687744390dc06d3a64aee9000f1e20338e55e
1b19919e61670c83ca4a126d59f01617b317f070
refs/heads/master
2022-11-26T23:22:02.538801
2020-02-06T07:39:58
2020-02-06T07:39:58
182,914,882
1
1
null
2022-11-16T08:51:15
2019-04-23T02:55:02
Java
UTF-8
Java
false
false
942
java
package com.server.tool; import com.SpringContext; import com.server.session.model.TSession; import com.server.user.account.model.Account; /** * @author yuxianming * @date 2019/5/16 16:15 */ public class PacketSendUtil { public static void send(Account account, Object packet) { TSession session = SpringContext.getSessionService().getSession(account.getAccountId()); if (session != null) { send(session, packet); } } public static void send(String accountId, Object packet) { TSession session = SpringContext.getSessionService().getSession(accountId); if (session != null) { send(session, packet); } } public static void send(TSession session, Object packet) { if (session != null) { System.out.println("发送back消息:" + packet.getClass().getSimpleName()); session.sendPacket(packet); } } }
[ "649675065@qq.com" ]
649675065@qq.com
428b247d993aeb279e51b1dbdfb7642236a82844
b9d5cbf54640dde6cb0aa176a5298c05e4c8105d
/app/src/main/java/com/example/ductien/viewlist/FabricView/FabricView.java
c3e07e58e7b4d4a0790d2bfbf2ebb94e7d8f9747
[]
no_license
ductienuit/DemoRecyclerView
0c81d6821f42cf4a59e50339fd53e78532f643c6
23a4c781ec15961805572ef419e9a8312dd028af
refs/heads/master
2020-03-22T15:34:14.187796
2018-07-23T04:00:32
2018-07-23T04:00:32
140,262,219
0
0
null
null
null
null
UTF-8
Java
false
false
9,907
java
// // Source code recreated from a .class file by IntelliJ IDEA // (powered by Fernflower decompiler) // package com.example.ductien.viewlist.FabricView; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.Paint.Join; import android.graphics.Paint.Style; import android.graphics.RectF; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.View; import android.widget.Toast; import com.example.ductien.viewlist.FabricView.DrawableObjects.CBitmap; import com.example.ductien.viewlist.FabricView.DrawableObjects.CDrawable; import com.example.ductien.viewlist.FabricView.DrawableObjects.CPath; import com.example.ductien.viewlist.FabricView.DrawableObjects.CText; import java.util.ArrayList; public class FabricView extends View { private ArrayList<CDrawable> mDrawableList = new ArrayList(); private int mColor = -16777216; private int mInteractionMode = 0; private int mBackgroundColor = -1; private Style mStyle; private float mSize; private boolean mRedrawBackground; private int mBackgroundMode; public static final int NOTEBOOK_LEFT_LINE_COLOR = -65536; private boolean mTextExpectTouch; private float lastTouchX; private float lastTouchY; private final RectF dirtyRect; CPath currentPath; Paint currentPaint; public static final int BACKGROUND_STYLE_BLANK = 0; public static final int BACKGROUND_STYLE_NOTEBOOK_PAPER = 1; public static final int BACKGROUND_STYLE_GRAPH_PAPER = 2; public static final int DRAW_MODE = 0; public static final int SELECT_MODE = 1; public static final int ROTATE_MODE = 2; public static final int LOCKED_MODE = 3; public static final int NOTEBOOK_LEFT_LINE_PADDING = 120; private float mZoomLevel; private float mHorizontalOffset; private float mVerticalOffset; public int mAutoscrollDistance; public FabricView(Context context, AttributeSet attrs) { super(context, attrs); this.mStyle = Style.STROKE; this.mSize = 5.0F; this.mBackgroundMode = 0; this.dirtyRect = new RectF(); this.mZoomLevel = 1.0F; this.mHorizontalOffset = 1.0F; this.mVerticalOffset = 1.0F; this.mAutoscrollDistance = 100; this.setFocusable(true); this.setFocusableInTouchMode(true); this.setBackgroundColor(this.mBackgroundColor); this.mTextExpectTouch = false; } protected void onDraw(Canvas canvas) { this.drawBackground(canvas, this.mBackgroundMode); for(int i = 0; i < this.mDrawableList.size(); ++i) { try { ((CDrawable)this.mDrawableList.get(i)).draw(canvas); } catch (Exception var4) { ; } } } public boolean onTouchEvent(MotionEvent event) { return this.getInteractionMode() == 0?this.onTouchDrawMode(event):(this.getInteractionMode() == 1?this.onTouchSelectMode(event):(this.getInteractionMode() == 2?this.onTouchRotateMode(event):this.onTouchLockedMode(event))); } private boolean onTouchLockedMode(MotionEvent event) { return false; } private boolean onTouchRotateMode(MotionEvent event) { return false; } public boolean onTouchDrawMode(MotionEvent event) { float eventX = event.getX(); float eventY = event.getY(); switch(event.getAction()) { case 0: this.currentPath = new CPath(); this.currentPaint = new Paint(); this.currentPaint.setAntiAlias(true); this.currentPaint.setColor(this.mColor); this.currentPaint.setStyle(this.mStyle); this.currentPaint.setStrokeJoin(Join.ROUND); this.currentPaint.setStrokeWidth(this.mSize); this.currentPath.moveTo(eventX, eventY); this.currentPath.setPaint(this.currentPaint); this.lastTouchX = eventX; this.lastTouchY = eventY; this.mDrawableList.add(this.currentPath); return true; case 1: case 2: this.currentPath.lineTo(eventX, eventY); int historySize = event.getHistorySize(); for(int i = 0; i < historySize; ++i) { float historicalX = event.getHistoricalX(i); float historicalY = event.getHistoricalY(i); if(historicalX < this.dirtyRect.left) { this.dirtyRect.left = historicalX; } else if(historicalX > this.dirtyRect.right) { this.dirtyRect.right = historicalX; } if(historicalY < this.dirtyRect.top) { this.dirtyRect.top = historicalY; } else if(historicalY > this.dirtyRect.bottom) { this.dirtyRect.bottom = historicalY; } this.currentPath.lineTo(historicalX, historicalY); } this.currentPath.lineTo(eventX, eventY); this.cleanDirtyRegion(eventX, eventY); this.invalidate((int)(this.dirtyRect.left - 20.0F), (int)(this.dirtyRect.top - 20.0F), (int)(this.dirtyRect.right + 20.0F), (int)(this.dirtyRect.bottom + 20.0F)); this.lastTouchX = eventX; this.lastTouchY = eventY; return true; default: return false; } } private boolean onTouchSelectMode(MotionEvent event) { return false; } public void drawBackground(Canvas canvas, int backgroundMode) { canvas.drawColor(this.mBackgroundColor); if(backgroundMode != 0) { Paint linePaint = new Paint(); linePaint.setColor(Color.argb(50, 0, 0, 0)); linePaint.setStyle(this.mStyle); linePaint.setStrokeJoin(Join.ROUND); linePaint.setStrokeWidth(this.mSize - 2.0F); switch(backgroundMode) { case 1: this.drawNotebookPaperBackground(canvas, linePaint); break; case 2: this.drawGraphPaperBackground(canvas, linePaint); } } this.mRedrawBackground = false; } private void drawGraphPaperBackground(Canvas canvas, Paint paint) { int i = 0; boolean doneH = false; for(boolean doneV = false; !doneH || !doneV; i += 75) { if(i < canvas.getHeight()) { canvas.drawLine(0.0F, (float)i, (float)canvas.getWidth(), (float)i, paint); } else { doneH = true; } if(i < canvas.getWidth()) { canvas.drawLine((float)i, 0.0F, (float)i, (float)canvas.getHeight(), paint); } else { doneV = true; } } } private void drawNotebookPaperBackground(Canvas canvas, Paint paint) { int i = 0; for(boolean doneV = false; !doneV; i += 75) { if(i < canvas.getHeight()) { canvas.drawLine(0.0F, (float)i, (float)canvas.getWidth(), (float)i, paint); } else { doneV = true; } } paint.setColor(-65536); canvas.drawLine(120.0F, 0.0F, 120.0F, (float)canvas.getHeight(), paint); } public void drawText(String text, int x, int y, Paint p) { this.mDrawableList.add(new CText(text, x, y, p)); this.invalidate(); } private void drawTextFromKeyboard() { Toast.makeText(this.getContext(), "Touch where you want the text to be", Toast.LENGTH_LONG).show(); this.mTextExpectTouch = true; } private void cleanDirtyRegion(float eventX, float eventY) { this.dirtyRect.left = Math.min(this.lastTouchX, eventX); this.dirtyRect.right = Math.max(this.lastTouchX, eventX); this.dirtyRect.top = Math.min(this.lastTouchY, eventY); this.dirtyRect.bottom = Math.max(this.lastTouchY, eventY); } public void cleanPage() { while(!this.mDrawableList.isEmpty()) { this.mDrawableList.remove(0); } this.invalidate(); } public void drawImage(int x, int y, int width, int height, Bitmap pic) { CBitmap bitmap = new CBitmap(pic, x, y); bitmap.setWidth(width); bitmap.setHeight(height); this.mDrawableList.add(bitmap); this.invalidate(); } public Bitmap getCanvasBitmap() { this.buildDrawingCache(); Bitmap mCanvasBitmap = Bitmap.createBitmap(this.getDrawingCache()); this.destroyDrawingCache(); return mCanvasBitmap; } public int getColor() { return this.mColor; } public void setColor(int mColor) { this.mColor = mColor; } public int getBackgroundColor() { return this.mBackgroundColor; } public int getBackgroundMode() { return this.mBackgroundMode; } public void setBackgroundMode(int mBackgroundMode) { this.mBackgroundMode = mBackgroundMode; this.invalidate(); } public void setBackgroundColor(int mBackgroundColor) { this.mBackgroundColor = mBackgroundColor; } public Style getStyle() { return this.mStyle; } public void setStyle(Style mStyle) { this.mStyle = mStyle; } public float getSize() { return this.mSize; } public void setSize(float mSize) { this.mSize = mSize; } public int getInteractionMode() { return this.mInteractionMode; } public void setInteractionMode(int interactionMode) { if(interactionMode > 3) { interactionMode = 3; } else if(interactionMode < 0) { interactionMode = 3; } this.mInteractionMode = interactionMode; } }
[ "ductien.uit@gmail.com" ]
ductien.uit@gmail.com
87f43617a02c65dcf2c6b7d04b70365f8db22592
0a043ab0546ce38284f817838728261c2c24d1e6
/Edge.java
e61d0bacbe10905951e93c717843da668e68dbe8
[]
no_license
olegh1/Data-Structures-Practice
f3163c984d5cc32fff27757abd4d95717c7ba570
2903d82e80b2f5580d64510328a2800be25220af
refs/heads/main
2023-03-25T06:58:35.324584
2021-03-25T03:22:06
2021-03-25T03:22:06
314,937,570
0
0
null
null
null
null
UTF-8
Java
false
false
606
java
public class Edge{ private Vertex source; private Vertex destination; public Edge(Vertex source, Vertex destination){ this.source = source; this.destination = destination; } public Vertex getSource(){ return this.source; } public Edge getEdge(){ return this; } public Vertex getDestination(){ return this.destination; } public void setSource(Vertex newSource){ this.source = newSource; } public void setDestination(Vertex newDestination){ this.destination = newDestination; } public String toString(){ return source.toString() + " -> " + destination.toString(); } }
[ "oleghumenyuk@Olegs-MacBook-Pro.local" ]
oleghumenyuk@Olegs-MacBook-Pro.local
fca82827e77e3681685f4543d88bdd34f9927cb8
de537d0877a711382fa490192de26fe3a1adbe7b
/src/main/java/org/fiek/bloodmanagementsystem/specification/DonationWithName.java
b4fc33f355915b6742d8394849e8e78b19d4d408
[]
no_license
AGegaj/Blood-Bank-Management-System
18374f102e37a2372e81d082e67b456f92320bf1
4a706a29597ef147e1a7c41925448ac506ed2a42
refs/heads/master
2020-09-29T07:21:47.216872
2020-01-16T08:42:09
2020-01-16T08:42:09
226,985,682
0
0
null
null
null
null
UTF-8
Java
false
false
913
java
package org.fiek.bloodmanagementsystem.specification; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import org.fiek.bloodmanagementsystem.entity.Donation; import org.springframework.data.jpa.domain.Specification; import javax.persistence.criteria.CriteriaBuilder; import javax.persistence.criteria.CriteriaQuery; import javax.persistence.criteria.Predicate; import javax.persistence.criteria.Root; @Getter @Setter @AllArgsConstructor @NoArgsConstructor public class DonationWithName implements Specification<Donation> { String firstName; @Override public Predicate toPredicate(Root<Donation> root, CriteriaQuery<?> criteriaQuery, CriteriaBuilder criteriaBuilder) { if (firstName == null){ return null; } return criteriaBuilder.like(root.get("user").get("firstName"),"%"+ this.firstName +"%"); } }
[ "erzengegaj7@gmail.com" ]
erzengegaj7@gmail.com
9b84793f7cb5e9ff097fd3b9f14ddf57080802ec
56582b23800edb799bdd7c50d0d0ddde70dd97f2
/Poly.java
c25df346a81feb556fe4002d8bf932aecc1f348c
[]
no_license
meta-yash-porwal/Abstract-Concrete-Data-Types
4271ccf2205a94c8ed1b2d6f9ff61159b79fa538
0022babfcdd241bc87b5351e3423fd61f878d462
refs/heads/main
2023-03-15T17:58:21.282518
2021-03-08T11:02:58
2021-03-08T11:02:58
343,823,879
0
0
null
null
null
null
UTF-8
Java
false
false
5,507
java
import java.util.Scanner; /** * Poly class has 8 methods * evaluate {which evaluate the polynomial taking parameters of value of polynomial variable, returns integer value.} * degree {this method finds the maximum power of polynomial variable, return degree of polynomial.} * returnInputPoly { it returns polynomial after taking input from user } * addPolynomial {it add 2 polynomial taking parameter as a object of polynomial class and returns added polynomial } * multiplyPoly {it multiply 2 polynomial taking parameter as a object of polynomial class and returns multiplied polynomial} * printPoly {prints polynomial after taking array as parameter } * main {where the program starts on console} * @author yash.porwal_metacube * */ public final class Poly { final static int [] polynomial = new int[15]; /** * Poly constructor which takes user input for coefficient */ Poly(){} /** * this method evaluate the polynomial * @param valueOfX input from user, value of polynomial expression x. * @return it returns integer value which is evaluated value of polynomial. */ public static int evaluate(float valueOfX) { int total = 0; for(int i=0; i<polynomial.length; i++) { total += polynomial[i] * Math.pow(valueOfX, i); } return total; } /** * this finds the highest degree of polynomial * @return highest degree in integer */ public static int degree() { for(int i=polynomial.length - 1 ; i>=0; i--){ if(polynomial[i] !=0){ return i; } } return 0; } /** * this method places polynomial to unchanged polynomial * array of data member of a class * it takes input input from the user regarding input and * places in the polynomial */ public void inputPoly(){ Scanner sc = new Scanner(System.in); int maxPower; System.out.print("Enter Maximum Power of Polynomial: "); maxPower = sc.nextInt(); for(int i=0; i<=maxPower; i++) { System.out.printf("Enter the Coefficient of %dth Power of Polynomial: ", i); polynomial[i] = sc.nextInt(); } for(int i = maxPower+1; i<polynomial.length; i++) { polynomial[i] = 0; } } /** * this return the polynomial of user input value of coefficients of polynomial * @return array of coefficients of polynomial */ public int[] returnInputPoly(){ Scanner sc = new Scanner(System.in); int maxPower; System.out.print("Enter Maximum Power of Polynomial: "); maxPower = sc.nextInt(); int [] polynomial = new int[maxPower+1]; for(int i=0; i<=maxPower; i++) { System.out.printf("Enter the Coefficient of %dth Power of Polynomial: ", i); polynomial[i] = sc.nextInt(); } for(int i = maxPower+1; i<polynomial.length; i++) { polynomial[i] = 0; } return polynomial; } /** * it adds two user input polynomial * @param p1 object of Poly class * @param p2 object of Poly class * @return it returns added polynomial in integer array */ public static int [] addPolynomial(Poly p1, Poly p2) { int [] poly1 = p1.returnInputPoly(); int [] poly2 = p2. returnInputPoly(); int maxIndex = Math.max(poly1.length, poly2.length); int [] addPoly = new int[maxIndex]; for(int i=0; i<maxIndex; i++){ if(i < poly1.length && i< poly2.length) { addPoly[i] = poly1[i] + poly2[i]; } else if(i>=poly1.length && i<poly2.length) { addPoly[i] = poly2[i]; } else if(i<poly1.length && i>=poly2.length) { addPoly[i] = poly1[i]; } } return addPoly; } /** * this multiply two user input multiply * @param p1 it is the object of class Poly * @param p2 it is the object of class Poly * @return it return the multiplied polynomial in the integer array form */ public static int[] multiplyPoly(Poly p1, Poly p2){ int [] poly1 = p1.returnInputPoly(); int [] poly2 = p2.returnInputPoly(); int poly1Length = poly1.length; int poly2Length = poly2.length; int [] mulPoly = new int[(poly1Length-1) + (poly2Length-1) + 1]; for(int i=0; i<poly1Length; i++){ for(int j=0; j<poly2Length; j++){ mulPoly[i+j] += (poly1[i] * poly2[j]) ; } } return mulPoly; } /** * this method prints the polynomial * @param poly it prints that polynomial */ public static void printPoly(int [] poly){ for(int i=poly.length-1; i>=0; i--) { if(poly[i] == 0){ continue; } System.out.print(poly[i] + "x^" + i +" "); } } public static void main(String[] args) { Scanner sc = new Scanner(System.in); Poly polyObj = new Poly(); System.out.println("1. Evaluate \n2. Degree of Polynomial \n3. Add Polynomial \n4. Multiply Polynial \nEnter your Choice: "); int choice = sc.nextInt(); switch(choice){ case 1: polyObj.inputPoly(); System.out.print("Enter the value of Polynomial: "); float valueOfPolynomial = sc.nextFloat(); int evaluateValue = evaluate(valueOfPolynomial); System.out.println("Evaluated Value is " + evaluateValue); break; case 2: polyObj.inputPoly(); int degree = degree(); System.out.println("Degree of Polynomial is " + degree); break; case 3: int [] addPoly = addPolynomial(new Poly(), new Poly()); printPoly(addPoly); break; case 4: int [] mulPoly = multiplyPoly(new Poly(), new Poly()); printPoly(mulPoly); break; default: System.out.println("Enter the Correct Choice"); } } }
[ "yash.porwal@metacube.com" ]
yash.porwal@metacube.com
4c135dc168ad03f89ae92c5ab5e861743ea66b28
25a5538d86c5a0d50c3707859ecc65c43d4a37fc
/SampleJava/src/amazone/FivePercentageTwo.java
88ba12ab3d4667a4b74abdacd456b26e6b095ef5
[]
no_license
narendrachouhan1992/practice
2f06d3beeb37f0e313b67e001c6d41d9072def47
77e7911f782ae5aa3bd8e15b7f988d19149c193c
refs/heads/master
2023-01-24T07:14:43.924602
2020-09-13T08:21:34
2020-09-13T08:21:34
251,018,674
0
0
null
2020-03-29T11:47:32
2020-03-29T11:44:02
Java
UTF-8
Java
false
false
108
java
package amazone; public class FivePercentageTwo { public static void main(String[] args) { } }
[ "vishwajeet@Narendras-MacBook-Air.local" ]
vishwajeet@Narendras-MacBook-Air.local
3f4f156cebad7d0739526c2252b4e8c6161714bd
5b0ce864c855ef605c898107156aed18c1445d7a
/PowerUp2018/src/org/usfirst/frc/team4662/robot/commands/TurnAnglePID.java
201c8ad7033172176881805fffc13914b9135b36
[]
no_license
4662FRCRobotics/PowerUp2018
2ae6bc93a6fbb6642802e372b14ff44680979c7a
99f2ae1ed7d024c9a6df153f409090dd35e7a665
refs/heads/master
2021-05-04T23:03:34.813823
2018-05-02T20:47:22
2018-05-02T20:47:22
120,047,415
0
0
null
null
null
null
UTF-8
Java
false
false
1,766
java
package org.usfirst.frc.team4662.robot.commands; import org.usfirst.frc.team4662.robot.Robot; import edu.wpi.first.wpilibj.command.Command; import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard; /** * */ public class TurnAnglePID extends Command { private double m_dAngle; private boolean m_bIsDashboard; public TurnAnglePID(double angle) { System.out.println("TurnAnglePID(double angle): " + angle); requires(Robot.m_driveSubsystem); m_dAngle = angle; m_bIsDashboard = false; } public TurnAnglePID() { System.out.println("TurnAnglePID()"); requires(Robot.m_driveSubsystem); SmartDashboard.putNumber("TurnAngleTest", 0); m_bIsDashboard = true; } // Called just before this Command runs the first time protected void initialize() { System.out.println("TurnAnglePID.initialize()"); if ( m_bIsDashboard ) { m_dAngle = Robot.m_driveSubsystem.getDashboardAngle(); } System.out.println("TurnAnglePID.initialize():1 "); Robot.m_driveSubsystem.setTurnAngle(m_dAngle); System.out.println("TurnAnglePID.initialize():2 "); } // Called repeatedly when this Command is scheduled to run protected void execute() { } // Make this return true when this Command no longer needs to run execute() protected boolean isFinished() { return Robot.m_driveSubsystem.turnAngleOnTarget(); } // Called once after isFinished returns true protected void end() { Robot.m_driveSubsystem.arcadeDrive(0, 0); Robot.m_driveSubsystem.disableTurnAngle(); } // Called when another command which requires one or more of the same // subsystems is scheduled to run protected void interrupted() { end(); } }
[ "4662programming@gmail.com" ]
4662programming@gmail.com
bc2564f21ff4414fb5190c01a7ee8e48e6d276b5
d868e10f6d4c32a4f068bb1aefc7344b530d83f2
/app/src/main/java/com/example/login/DashboardActivity.java
c994da55be747a810b19b82c84a6dc5f1c8d367b
[]
no_license
roisinmurray/Login-11747-rm
2e4bc864054a99767ceb3fc04457e25ec973bea6
cf50aaa07f672c9de8fe404620b4bcc33b9f7c39
refs/heads/master
2023-01-18T22:36:03.982678
2020-11-25T21:22:55
2020-11-25T21:22:55
316,055,981
0
0
null
null
null
null
UTF-8
Java
false
false
63
java
package com.example.login; public class DashboardActivity { }
[ "117476974@umail.ucc.ie" ]
117476974@umail.ucc.ie
4457d7b3c9f3c370dea36258e84efe3be710a4a7
447520f40e82a060368a0802a391697bc00be96f
/apks/malware/app49/source/com/google/android/gms/internal/jy.java
e6b2c7a5e60778bae64468bbad3187fb5e9146e5
[ "Apache-2.0" ]
permissive
iantal/AndroidPermissions
7f3343a9c29d82dbcd4ecd98b3a50ddf8d179465
d623b732734243590b5f004d167e542e2e2ae249
refs/heads/master
2023-07-19T01:29:26.689186
2019-09-30T19:01:42
2019-09-30T19:01:42
107,239,248
0
0
Apache-2.0
2023-07-16T07:41:38
2017-10-17T08:22:57
null
UTF-8
Java
false
false
3,997
java
package com.google.android.gms.internal; import android.os.Parcel; import android.os.Parcelable.Creator; import com.google.android.gms.common.internal.safeparcel.a; import com.google.android.gms.common.internal.safeparcel.b; import com.google.android.gms.common.internal.safeparcel.c; import java.util.ArrayList; public final class jy implements Parcelable.Creator<fk> { public jy() {} public static fk a(Parcel paramParcel) { int m = a.a(paramParcel); int k = 0; String str6 = null; String str5 = null; ArrayList localArrayList3 = null; int j = 0; ArrayList localArrayList2 = null; long l4 = 0L; boolean bool6 = false; long l3 = 0L; ArrayList localArrayList1 = null; long l2 = 0L; int i = 0; String str4 = null; long l1 = 0L; String str3 = null; boolean bool5 = false; String str2 = null; String str1 = null; boolean bool4 = false; boolean bool3 = false; boolean bool2 = false; boolean bool1 = false; while (paramParcel.dataPosition() < m) { int n = paramParcel.readInt(); switch (0xFFFF & n) { case 16: case 17: case 20: default: a.b(paramParcel, n); break; case 1: k = a.g(paramParcel, n); break; case 2: str6 = a.o(paramParcel, n); break; case 3: str5 = a.o(paramParcel, n); break; case 4: localArrayList3 = a.v(paramParcel, n); break; case 5: j = a.g(paramParcel, n); break; case 6: localArrayList2 = a.v(paramParcel, n); break; case 7: l4 = a.i(paramParcel, n); break; case 8: bool6 = a.c(paramParcel, n); break; case 9: l3 = a.i(paramParcel, n); break; case 10: localArrayList1 = a.v(paramParcel, n); break; case 11: l2 = a.i(paramParcel, n); break; case 12: i = a.g(paramParcel, n); break; case 13: str4 = a.o(paramParcel, n); break; case 14: l1 = a.i(paramParcel, n); break; case 15: str3 = a.o(paramParcel, n); break; case 19: str2 = a.o(paramParcel, n); break; case 18: bool5 = a.c(paramParcel, n); break; case 21: str1 = a.o(paramParcel, n); break; case 23: bool3 = a.c(paramParcel, n); break; case 22: bool4 = a.c(paramParcel, n); break; case 25: bool1 = a.c(paramParcel, n); break; case 24: bool2 = a.c(paramParcel, n); } } if (paramParcel.dataPosition() != m) { throw new b("Overread allowed size end=" + m, paramParcel); } return new fk(k, str6, str5, localArrayList3, j, localArrayList2, l4, bool6, l3, localArrayList1, l2, i, str4, l1, str3, bool5, str2, str1, bool4, bool3, bool2, bool1); } static void a(fk paramFk, Parcel paramParcel) { int i = c.a(paramParcel); c.a(paramParcel, 1, paramFk.b); c.a(paramParcel, 2, paramFk.c, false); c.a(paramParcel, 3, paramFk.d, false); c.a(paramParcel, 4, paramFk.e, false); c.a(paramParcel, 5, paramFk.f); c.a(paramParcel, 6, paramFk.g, false); c.a(paramParcel, 7, paramFk.h); c.a(paramParcel, 8, paramFk.i); c.a(paramParcel, 9, paramFk.j); c.a(paramParcel, 10, paramFk.k, false); c.a(paramParcel, 11, paramFk.l); c.a(paramParcel, 12, paramFk.m); c.a(paramParcel, 13, paramFk.n, false); c.a(paramParcel, 14, paramFk.o); c.a(paramParcel, 15, paramFk.p, false); c.a(paramParcel, 19, paramFk.r, false); c.a(paramParcel, 18, paramFk.q); c.a(paramParcel, 21, paramFk.s, false); c.a(paramParcel, 23, paramFk.u); c.a(paramParcel, 22, paramFk.t); c.a(paramParcel, 25, paramFk.w); c.a(paramParcel, 24, paramFk.v); c.a(paramParcel, i); } }
[ "antal.micky@yahoo.com" ]
antal.micky@yahoo.com
b9e09d2f3314591c31e5f9682c7a1d99dcd20479
472a792809094b08d5d4f3a630d5410b10915657
/B_Saving_the_City.java
cc874ecee6563e60ab5c20d2555a65bd66eaf949
[]
no_license
AmitRoy3370/Code-forces
1f91120659c7b12dcf964d2478f706f8cfde4064
398b5a01ca7a2da762e573181c6727f03f6013e6
refs/heads/master
2023-09-05T14:41:31.012447
2021-11-20T14:37:35
2021-11-20T14:37:35
312,186,120
0
0
null
null
null
null
UTF-8
Java
false
false
3,166
java
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.util.StringTokenizer; public class B_Saving_the_City{ static Scanner in=new Scanner(); static PrintWriter out=new PrintWriter( new OutputStreamWriter(System.out) ); static int testCases,activating,placing; static char a[]; static void solve(){ int first=-1,last=-1,n=a.length; if(n==1){ if( a[0]=='0' ){ out.println(0); out.flush(); }else{ out.println(activating); out.flush(); } return; } for(int i=0;i<n;i++){ if( a[i]=='1' ){ first=i; break; } } for(int i=n-1;i>=0;i--){ if( a[i]=='1' ){ last=i; break; } } if( first==last && first==-1 ){ out.println(0); out.flush(); return; } long totalCost=activating; for(int i=first;i<=last;i++){ int addition=0; while(i<n && a[i]=='0' ){ i++; addition++; } totalCost+=Math.min( activating,addition*placing ); } out.println(totalCost); out.flush(); } public static void main(String amit[]) throws IOException{ testCases=in.nextInt(); for(int t=0;t<testCases;t++){ activating=in.nextInt(); placing=in.nextInt(); a=in.next().toCharArray(); solve(); } } static class Scanner{ BufferedReader in; StringTokenizer st; public Scanner() { in=new BufferedReader( new InputStreamReader(System.in) ); } String next() throws IOException{ while(st==null || !st.hasMoreElements()){ st=new StringTokenizer(in.readLine()); } return st.nextToken(); } int nextInt() throws IOException{ return Integer.parseInt(next()); } long nextLong() throws IOException{ return Long.parseLong(next()); } String nextLine() throws IOException{ return in.readLine(); } char nextChar() throws IOException{ return next().charAt(0); } double nextDouble() throws IOException{ return Double.parseDouble(next()); } float nextFloat() throws IOException{ return Float.parseFloat(next()); } boolean nextBoolean() throws IOException{ return Boolean.parseBoolean(next()); } void close() throws IOException{ in.close(); } } }
[ "noreply@github.com" ]
noreply@github.com
f28332130a0386e0a0b8fcfc185ee671205c565c
066dd02d00443d870fc8bae1207ade73a5c3ab63
/src/ch/epfl/collections/ArrayListTest.java
09f1716233eb639cdc4465e6a7cf88657affd93c
[]
no_license
Gilthoniel/Collections
e6bbef9cb0b402e02efbd1e27e7971afc3e1a735
41676cdbcd9773b359b9e1d80ae474b82420ed98
refs/heads/master
2016-08-12T22:19:41.933399
2013-03-22T12:20:18
2013-03-22T12:20:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,566
java
package ch.epfl.collections; import static org.junit.Assert.*; import java.util.Iterator; import org.junit.Test; public class ArrayListTest { @Test public void testDeclaration(){ ArrayList<String> a = new ArrayList<String>(); a.add("Hello"); assertEquals("Hello", a.get(0)); } @Test public void testRemove(){ LinkedList<String> a = new LinkedList<String>(); a.add("Hello"); a.add("Test"); a.remove(0); assertEquals("Test", a.get(0)); } @Test(expected=java.util.NoSuchElementException.class) public void testGeneral(){ ArrayList<String> a = new ArrayList<String>(); a.add("Hello"); a.add(", my name"); a.add(" is Brian"); a.add(" and I'm"); a.remove(2); Iterator<String> i = a.iterator(); assertEquals("Hello", i.next()); i.remove(); assertEquals(", my name", i.next()); assertEquals(" and I'm", i.next()); assertEquals(", my name", a.get(1)); i.next(); } @Test public void testToString(){ ArrayList<String> a = new ArrayList<String>(); a.add("Hello, my name"); a.add(" is "); a.add("Gaylor"); assertEquals("[Hello, my name, is ,Gaylor]", a.toString()); } @Test public void testGeneral2(){ ArrayList<String> a = new ArrayList<String>(); a.add("Test 1"); a.add("Test 2"); a.add("Test 3"); a.set(2, "Test 4"); assertEquals("Test 4", a.get(2)); a.remove(0); assertEquals("Test 2", a.get(0)); a.remove(1); for(Iterator<String> i = a.iterator(); i.hasNext();){ assertEquals("Test 2", i.next()); i.remove(); } assertEquals(true, a.isEmpty()); } }
[ "gaylor.bosson@gmail.com" ]
gaylor.bosson@gmail.com
a32da29c45b5394761d706e8ec572d19379d717d
bb63932d7a328f286f58cff7be36194dd056a762
/src/main/java/com/yunda/store/agent/controller/PickAndRecivedController.java
18828871f93872df1c4f15e5c73fc8d7c895ffed
[]
no_license
liuwu365/StoreSM
0970dcd4a652f03a244a22f9fb69823c2eb93755
cbc2dfb11ba60c3f0a6db0efeb86a124a25399eb
refs/heads/master
2020-03-20T13:31:00.352229
2018-06-15T09:16:15
2018-06-15T09:16:57
null
0
0
null
null
null
null
UTF-8
Java
false
false
468
java
package com.yunda.store.agent.controller; import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/agent/monitor") public class PickAndRecivedController { @GetMapping() String pickAndRecived() { return "agent/monitor/pickAndRecived"; } }
[ "liuwu_eva@163.com" ]
liuwu_eva@163.com
af349ed486f559aa80d97b86243e697d26fd184a
0c42c514a789ccdf0c1c1ac59d14e79eb6919eb1
/trunk/assn3/src/cs569/object/Scene.java
cca67c6f165d2b957092dc1ee2b274bf3f115f0d
[]
no_license
phelpsw/cs569pwrl
b85f0f81c7c7d3b38a02f5b365221c3a0c965a44
538cef632c03d28219fef2033ad3ba615a301431
refs/heads/master
2020-05-20T02:41:26.241304
2008-05-16T04:58:54
2008-05-16T04:58:54
32,282,268
0
0
null
null
null
null
UTF-8
Java
false
false
594
java
package cs569.object; /** * Created on January 26, 2007 * Course: CS569 (Interactive Computer Graphics) by Steve Marschner * Originally written for CS467/468 (Computer Graphics II and Practicum) by Kavita Bala * Copyright 2007 Computer Science Department, Cornell University * * @author Adam Arbree -- arbree@cs.cornell.edu */ public class Scene extends Group { /** * Should be used only be the Parser. Please name your objects! */ public Scene() { super("Scene"); } /** * @param inName */ public Scene(String inName) { super(inName); } }
[ "signal20k@a1adfbe7-6f45-0410-adc5-f5a783de4af1" ]
signal20k@a1adfbe7-6f45-0410-adc5-f5a783de4af1
d00d947790b93f98e30a01316d1ba83d3163b860
07fd7412a3df8bcdd1b53ce7f28aedfc080061a1
/Edge-Weighted-Graph/GA5/UF.java
46aa2a0b7ac42635c633324fb405b19edb3f73f8
[]
no_license
AsadZaheer93/java-school-projects
c6de21e3a1a1b684f356cbb5539a25e90a4cc62f
d14561959392cc6b17ceacbb1c4bca96550c5e6d
refs/heads/main
2023-05-02T01:29:31.369066
2021-05-27T02:13:52
2021-05-27T02:13:52
371,207,981
0
0
null
null
null
null
UTF-8
Java
false
false
6,692
java
package GA5; /** * The {@code UF} class represents a <em>union�find data type</em> * (also known as the <em>disjoint-sets data type</em>). * It supports the classic <em>union</em> and <em>find</em> operations, * along with a <em>count</em> operation that returns the total number * of sets. * <p> * The union-find data type models a collection of sets containing * <em>n</em> elements, with each element in exactly one set. * The elements are named 0 through <em>n</em>�1. * Initially, there are <em>n</em> sets, with each element in its * own set. The <em>canonical element</em> of a set * (also known as the <em>root</em>, <em>identifier</em>, * <em>leader</em>, or <em>set representative</em>) * is one distinguished element in the set. Here is a summary of * the operations: * <ul> * <li><em>find</em>(<em>p</em>) returns the canonical element * of the set containing <em>p</em>. The <em>find</em> operation * returns the same value for two elements if and only if * they are in the same set. * <li><em>union</em>(<em>p</em>, <em>q</em>) merges the set * containing element <em>p</em> with the set containing * element <em>q</em>. That is, if <em>p</em> and <em>q</em> * are in different sets, replace these two sets * with a new set that is the union of the two. * <li><em>count</em>() returns the number of sets. * </ul> * <p> * The canonical element of a set can change only when the set * itself changes during a call to <em>union</em>&mdash;it cannot * change during a call to either <em>find</em> or <em>count</em>. * <p> * This implementation uses <em>weighted quick union by rank</em> * with <em>path compression by halving</em>. * The constructor takes &Theta;(<em>n</em>) time, where * <em>n</em> is the number of elements. * The <em>union</em> and <em>find</em> operations take * &Theta;(log <em>n</em>) time in the worst case. * The <em>count</em> operation takes &Theta;(1) time. * Moreover, starting from an empty data structure with <em>n</em> sites, * any intermixed sequence of <em>m</em> <em>union</em> and <em>find</em> * operations takes <em>O</em>(<em>m</em> &alpha;(<em>n</em>)) time, * where &alpha;(<em>n</em>) is the inverse of * <a href = "https://en.wikipedia.org/wiki/Ackermann_function#Inverse">Ackermann's function</a>. * <p> * For alternative implementations of the same API, see * {@link QuickUnionUF}, {@link QuickFindUF}, and {@link WeightedQuickUnionUF}. * For additional documentation, see * <a href="https://algs4.cs.princeton.edu/15uf">Section 1.5</a> of * <i>Algorithms, 4th Edition</i> by Robert Sedgewick and Kevin Wayne. * * @author Robert Sedgewick * @author Kevin Wayne */ public class UF { private int[] parent; // parent[i] = parent of i private byte[] rank; // rank[i] = rank of subtree rooted at i (never more than 31) private int count; // number of components /** * Initializes an empty union-find data structure with * {@code n} elements {@code 0} through {@code n-1}. * Initially, each elements is in its own set. * * @param n the number of elements * @throws IllegalArgumentException if {@code n < 0} */ public UF(int n) { if (n < 0) throw new IllegalArgumentException(); count = n; parent = new int[n]; rank = new byte[n]; for (int i = 0; i < n; i++) { parent[i] = i; rank[i] = 0; } } /** * Returns the canonical element of the set containing element {@code p}. * * @param p an element * @return the canonical element of the set containing {@code p} * @throws IllegalArgumentException unless {@code 0 <= p < n} */ public int find(int p) { validate(p); while (p != parent[p]) { parent[p] = parent[parent[p]]; // path compression by halving p = parent[p]; } return p; } /** * Returns the number of sets. * * @return the number of sets (between {@code 1} and {@code n}) */ public int count() { return count; } /** * Returns true if the two elements are in the same set. * * @param p one element * @param q the other element * @return {@code true} if {@code p} and {@code q} are in the same set; * {@code false} otherwise * @throws IllegalArgumentException unless * both {@code 0 <= p < n} and {@code 0 <= q < n} * @deprecated Replace with two calls to {@link #find(int)}. */ @Deprecated public boolean connected(int p, int q) { return find(p) == find(q); } /** * Merges the set containing element {@code p} with the * the set containing element {@code q}. * * @param p one element * @param q the other element * @throws IllegalArgumentException unless * both {@code 0 <= p < n} and {@code 0 <= q < n} */ public void union(int p, int q) { int rootP = find(p); int rootQ = find(q); if (rootP == rootQ) return; // make root of smaller rank point to root of larger rank if (rank[rootP] < rank[rootQ]) parent[rootP] = rootQ; else if (rank[rootP] > rank[rootQ]) parent[rootQ] = rootP; else { parent[rootQ] = rootP; rank[rootP]++; } count--; } // validate that p is a valid index private void validate(int p) { int n = parent.length; if (p < 0 || p >= n) { throw new IllegalArgumentException("index " + p + " is not between 0 and " + (n-1)); } } /** * Reads an integer {@code n} and a sequence of pairs of integers * (between {@code 0} and {@code n-1}) from standard input, where each integer * in the pair represents some element; * if the elements are in different sets, merge the two sets * and print the pair to standard output. * * @param args the command-line arguments */ public static void main(String[] args) { int n = StdIn.readInt(); UF uf = new UF(n); while (!StdIn.isEmpty()) { int p = StdIn.readInt(); int q = StdIn.readInt(); if (uf.find(p) == uf.find(q)) continue; uf.union(p, q); StdOut.println(p + " " + q); } StdOut.println(uf.count() + " components"); } }
[ "noreply@github.com" ]
noreply@github.com
be7e22e833845628c5eabbf472d9cce3aadca4cd
50640200e11c020a5a8a1c1ed3ee526fa36b1c5c
/src/com/bjsxt/controller/UrlController.java
94feadad553e04f57d0aac38cfa3c06535d63838
[]
no_license
dabai-thinker/rbac
b59fdf09edd5e319c314d1237046193014341f64
bded0adbb049066b65d709e57ad61dd6da455bae
refs/heads/master
2022-10-13T01:08:55.531762
2020-06-02T08:43:26
2020-06-02T08:43:26
268,729,143
0
0
null
null
null
null
UTF-8
Java
false
false
397
java
package com.bjsxt.controller; import javax.annotation.Resource; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import com.bjsxt.service.UrlService; @Controller public class UrlController { @Resource private UrlService urlService; @RequestMapping("showAllUrl") public String showAll(){ return "redirect:/main.jsp"; } }
[ "404695823@qq.com" ]
404695823@qq.com
9af6fbd2495d4d2b84cc0281fdfe1fd30cb744a2
b4e5a4b8a8e58dbc9f141c2749862c3e997019f3
/src/base/Punto.java
d37d7d0a025b39f75196c7fe3600db9c2adc6ba3
[]
no_license
CPP-PrograAv/TP-Snake
a618ea7a873ea3bfb5c2c95b2797cbda9d179fa2
89df5ee32c02831cc6f2173606b5cca51f959ef7
refs/heads/master
2020-04-02T19:08:21.544537
2018-12-01T07:14:03
2018-12-01T07:14:03
154,723,677
0
0
null
null
null
null
UTF-8
Java
false
false
942
java
package base; public class Punto { private int x, y; public Punto(int x, int y) { this.x = x; this.y = y; } public void setPunto(int x, int y) { this.x = x; this.y = y; } public Punto getUbicacion() { return this; } public int getX() { return x; } public void setX(int x) { this.x = x; } public int getY() { return y; } public void setY(int y) { this.y = y; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + x; result = prime * result + y; return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; Punto other = (Punto) obj; if (x != other.x) return false; if (y != other.y) return false; return true; } @Override public String toString() { return "[X=" + x + ", Y=" + y + "]"; } }
[ "lucianopulido1996@gmail.com" ]
lucianopulido1996@gmail.com
90283e6db1e07dfe46678cb1ce94cc834a58aac2
f90dc186154030698abb9e9a7267367191bb748a
/myProject/src/main/java/com/myProject/model/JwtRequest.java
e2766050e4ea552b4c6c11656f601a41058a315d
[]
no_license
omarDRamirez/myProyject-courses
2848a95a2d69fc3c02f8eee40158d1d15e7c978a
ba18deba06eb75140f26086119161bc314b33286
refs/heads/master
2022-12-18T19:22:18.777329
2020-09-21T01:57:28
2020-09-21T01:57:28
297,172,684
0
0
null
null
null
null
UTF-8
Java
false
false
700
java
package com.myProject.model; import java.io.Serializable; public class JwtRequest implements Serializable { private static final long serialVersionUID = 5926468583005150707L; private String username; private String password; //need default constructor for JSON Parsing public JwtRequest() { } public JwtRequest(String username, String password) { this.setUsername(username); this.setPassword(password); } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; } }
[ "32550146+omarDRamirez@users.noreply.github.com" ]
32550146+omarDRamirez@users.noreply.github.com
672430ad24f623861f67178f99ff38637d1f2ea2
85e50710ff38302fe9e3ccda105c62dd41b19479
/app/src/main/java/com/example/bragalund/taxiorder/Activities/StartScreenActivity.java
dcb42d930d840fae0cab0d207836bf5adfbc5993
[ "MIT" ]
permissive
Bragalund/TaxiOrder
38f84e75939603b4444b5dbd29738b49cdb49ddb
482571e3174bd3442bf4f1e03480cb8b51a0c3d1
refs/heads/master
2021-01-20T12:42:04.616248
2017-05-27T14:22:05
2017-05-27T14:22:05
90,398,263
0
0
null
null
null
null
UTF-8
Java
false
false
1,442
java
package com.example.bragalund.taxiorder.Activities; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.TextView; import com.example.bragalund.taxiorder.R; import com.example.bragalund.taxiorder.Util.AnimatorClass; public class StartScreenActivity extends AppCompatActivity { private TextView textview; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_start_screen); initWidgets(); //doAnimation(); // <------ comment out this method to do integrationtests in StartScreenActivityIntrumentedTest.class } private void initWidgets() { textview = (TextView) findViewById(R.id.firstTextView); } private void doAnimation() { AnimatorClass animator = new AnimatorClass(textview, new String[]{ "We hope to see you again.", "Order your taxi here!", "Get it instantly.", "The easy way to order a taxi." }); animator.startAnimation(); } //Button covering the whole start-screen uses this method as onClick (next_intent_button in activity_start_screen.xml) public void startOrder(View v) { Intent intent = new Intent(this, MapActivity.class); startActivity(intent); } }
[ "bakhen15@student.westerdals.no" ]
bakhen15@student.westerdals.no
2e1851f8b14efc4dc310849bb271221526b98eb8
4cfa8b04c6cd69edbfc14eb1acb91a5cfb47f40e
/src/com/bridgelabz/datastructure/LinkedList1.java
87d0046ac010d0c7009e3c5c860c9b18af7728ed
[]
no_license
Patil-Madhuri/datastructureprogram
506ed7b10cd5555f90834de6e2da9767d111b144
849df8261b9d3b23f765df30aeda1fdbfc3d3827
refs/heads/master
2021-04-15T18:51:35.497915
2018-04-02T13:50:16
2018-04-02T13:50:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,127
java
package com.bridgelabz.datastructure; /****************************************************************************** * Purpose: Linked list structure * @author Madhuri Chaudhari * @version 1.0 * @since 05-03-2018 ******************************************************************************/ class ListNode<T> { T value; ListNode<T> pointer; public ListNode(T value, ListNode<T> pointer) { this.value = value; this.pointer = pointer; } public T getValue() { return value; } public void setValue(T value) { this.value = value; } public ListNode<T> getPointer() { return pointer; } public void setPointer(ListNode<T> pointer) { this.pointer = pointer; } @Override public String toString() { return "Node [value=" + value + ", pointer=" + pointer + "]"; } } public class LinkedList1<T> { ListNode<T> start; ListNode<T> end; int size; public ListNode<T> emptyList() { start=null; end=null; size=0; return start; } public void add(T value) { ListNode<T> newnode=new ListNode<T>(value, null); size++; if(start==null) { start=newnode; end=start; } else { newnode.setPointer(start); start=newnode; } } public T getLastItem() { return end.getValue(); } public T getFirstItem() { return start.getValue(); } public void removeFirst() { ListNode<T> temp=start; start.setPointer(start.getPointer()); temp.setPointer(null); } public void remove(T value) { ListNode<T> temp=start; ListNode<T> prevpointer; size--; if(temp==end) { start=null; end=start; } else if(value.equals(start.getValue())) { start=temp.getPointer(); temp.setPointer(null); } else if(value.equals(end.getValue())) { do { prevpointer=temp; temp=temp.getPointer(); } while(temp!=end); end=prevpointer; prevpointer.setPointer(null); } else { do { prevpointer=temp; temp=temp.getPointer(); if(temp.getValue().equals(value)) { prevpointer.setPointer(temp.getPointer()); temp.setPointer(null); } } while(temp.getPointer()!=null); } } public boolean search(T value) { ListNode<T> temp=start; do { if(temp.getValue().equals(value)) { return true; } temp=temp.getPointer(); } while(temp!=null); return false; } public int size() { return size; } public void append(T value) { ListNode<T> newnode=new ListNode<T>(value, null); size++; if(start==null) { start=newnode; end=start; } else { end.setPointer(newnode); end=newnode; newnode.setPointer(null); } } public void display() { ListNode<T> temp=start; if(size==0) { System.out.println("Empty"); } else if(size==1) { System.out.println(start.getValue()+" "); } else { do { System.out.println(temp.getValue()); temp=temp.getPointer(); } while(temp!=null); } } @Override public String toString() { ListNode<T> temp=start; String tostring=""; if(start==null) { return ""; } else if(start==end) { return ""+start.getValue(); } else { do { tostring=""+tostring+""+temp.getValue()+" "; temp=temp.getPointer(); } while(temp!=null); } return tostring; } public void order() { T temp=null; int a,b; for(ListNode<T> i=start;i!=null;i=i.getPointer()) { for(ListNode<T> j=i.getPointer();j!=null;j=j.getPointer()) { a=(int)i.getValue(); b=(int)j.getValue(); if(a>b) { temp=i.getValue(); i.setValue(j.getValue()); j.setValue(temp); } } } } public void reverseStack() { LinkedList1<T> list=new LinkedList1<T>(); for(ListNode<T> i=start;i!=null;i=i.getPointer()) { list.add(i.getValue()); } start=null; end=null; size=0; int capacity=list.size; for(int i=0;i<capacity;i++) { add(list.getLastItem()); list.remove(list.getLastItem()); } } public void printlist() { ListNode<T> temp = start; while(temp != null) { System.out.print(temp.value+" "); temp = temp.pointer; } } }
[ "madhuripatil506@gmail.com" ]
madhuripatil506@gmail.com
ade82c5ee8032d4da5628a214ace5c718331ed3d
55839997e9e1aaa9ec5800eb69ce0ad9351f412d
/src/com/download/fvd/activity/YoutubeAdapter.java
a9bffce47dec84b8c87982bf4157cd9885aa2179
[]
no_license
fvdtube82/source-code
6294b9f9796f32823b563b2757590ed4ef29c3d1
c7f28b2abd83954dbbf6505464180ea753ccdd5c
refs/heads/master
2021-01-01T03:45:29.929764
2016-04-15T08:39:02
2016-04-15T08:39:02
56,040,368
0
1
null
null
null
null
UTF-8
Java
false
false
2,751
java
package com.download.fvd.activity; import java.util.ArrayList; import android.content.Context; import android.graphics.Color; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.RadioButton; import android.widget.TextView; import android.widget.Toast; public class YoutubeAdapter extends BaseAdapter{ ArrayList<Youtube_Data_Setter_Getter> youtube_data_refrence; Context context; LayoutInflater inflater; public YoutubeAdapter(Context context, ArrayList<Youtube_Data_Setter_Getter> youtube_data_refrence) { this.youtube_data_refrence=youtube_data_refrence; this.context=context; } @Override public int getCount() { return youtube_data_refrence.size(); } @Override public Object getItem(int position) { return youtube_data_refrence.get(position); } @Override public long getItemId(int position) { return position; } @Override public View getView(int position, View convertView, ViewGroup parent) { ViewhHolder viewhHolder; Youtube_Data_Setter_Getter data=this.youtube_data_refrence.get(position); if(convertView==null) { inflater= (LayoutInflater) context.getSystemService(context.LAYOUT_INFLATER_SERVICE); convertView=inflater.inflate(R.layout.youtube_listview,null); viewhHolder=new ViewhHolder(); viewhHolder.video_name=(TextView) convertView.findViewById(R.id.video_name); viewhHolder.video_title=(TextView) convertView.findViewById(R.id.video_title); convertView.setTag(viewhHolder); } else { viewhHolder=(ViewhHolder) convertView.getTag(); } if(YoutubePageFragment.popup_current_row_index==position) { //Toast.makeText(context, "Popup list="+MainActivity.popup_list_index,Toast.LENGTH_LONG).show(); convertView.setBackgroundColor(Color.LTGRAY); viewhHolder.video_name.setTag(data.getSongs_link()); viewhHolder.video_title.setTag(data.getTitle()); convertView.setSelected(true); } else { convertView.setBackgroundColor(Color.WHITE); convertView.setSelected(false); } viewhHolder.video_name.setText(data.getFormate()); //Toast.makeText(context,"songs link="+data.getSongs_link() ,Toast.LENGTH_LONG).show(); //viewhHolder.video_name.setTag(data.getSongs_link()); Log.e("Percent= list view=",String.valueOf(data.getPercent())+",formate="+data.getFormate()+","+data.getTitle()); Log.e("list view size=",String.valueOf(data.getRounded_size())+",formate="+data.getFormate()+","+data.getTitle() ); //viewhHolder.video_name.setTag(data.getSongs_link()); return convertView; } public static class ViewhHolder { TextView video_name; TextView video_title; } }
[ "innovatebizz@gmail.com" ]
innovatebizz@gmail.com
801353114eeb4c64273b4393e6be2fbb3b553fca
2cc267307759fa834ad7a4d86484b088e4cf2c79
/src/tss/android/koobe/controller/AddEquipmentFragment.java
dc2a4a0aba5827af76cc71e38eb01bd3ed9de9af
[]
no_license
sstulio/koobe-project
d446cc6d4b6bad4e2d981b96925040af6b3668b2
fa97ad0e679e65279c2faf39513e2c1ccbd14570
refs/heads/master
2021-01-02T09:08:38.962251
2013-11-01T03:43:31
2013-11-01T03:43:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,104
java
package tss.android.koobe.controller; import tss.android.koobe.R; import tss.android.koobe.adapter.EquipmentAdapter; import tss.android.koobe.adapter.ConfigurationListAdapter; import tss.android.koobe.model.Equipment; import tss.android.koobe.service.KoobeService; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.ListView; public class AddEquipmentFragment extends Fragment { public static final String TAG = "add_equipment"; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { KoobeService service = KoobeService.getInstance(); View view = inflater.inflate(R.layout.fragment_add_equipment, null); ListView equipmentList = (ListView) view.findViewById(R.id.equipments); equipmentList.setAdapter(new ConfigurationListAdapter(getActivity(), service.getEquipments())); return view; } }
[ "ss.tulio@gmail.com" ]
ss.tulio@gmail.com
f6239cb7395dc3baf081d2ecb268a363cb505b0b
b3b7d930c4154e8ed889eca61d865271d221ac7d
/Sammy/src/org/usfirst/frc/team6644/robot/commands/AutonomousMoveStraight.java
9712b90844c66bf7f90036ea6f3c40aea6a83776
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
AlexRandomkat/SammyRobit
07731933a297088bb105e48df7d1f54847454568
f4d9479494b9ea9892b101f8f2285fcc91114036
refs/heads/master
2021-09-10T06:53:13.885028
2018-03-21T22:44:11
2018-03-21T22:44:11
111,166,227
2
5
null
2018-02-01T00:32:55
2017-11-18T01:22:30
Java
UTF-8
Java
false
false
1,232
java
package org.usfirst.frc.team6644.robot.commands; import edu.wpi.first.wpilibj.command.Command; import org.usfirst.frc.team6644.robot.Robot; /** * incomplete */ public class AutonomousMoveStraight extends Command { private double speed = 0; private double time = 0; private double kP = 0.1; public AutonomousMoveStraight(double time, double speed) { // Use requires() here to declare subsystem dependencies requires(Robot.drivemotors); Robot.drivemotors.startAutoMode(); this.speed = speed; this.time = time; } // Called just before this Command runs the first time protected void initialize() { setTimeout(time); Robot.drivemotors.startAutoMode(); } // Called repeatedly when this Command is scheduled to run protected void execute() { Robot.drivemotors.arcadeDrive(speed, Robot.drivemotors.getDegrees() * kP); } // Make this return true when this Command no longer needs to run execute() protected boolean isFinished() { return isTimedOut(); } // Called once after isFinished returns true protected void end() { Robot.drivemotors.stop(); } // Called when another command which requires one or more of the same // subsystems is scheduled to run protected void interrupted() { } }
[ "awpalladium@gmail.com" ]
awpalladium@gmail.com
619da72c349b360bd39f06fe79f2f7cb52cd4c85
6861f0deacc2b4386c14e59b09b1dcb8c579fd01
/workspace1/usermanagement15-6/src/test/java/ua/nure/kn156/kazakova/db/HsqldbUserDaoTest.java
42c83b534024fd6110d5ad69f84915878b7ddbf4
[]
no_license
NUREKN15-JAVA/Kazakova_Anna
6e59d9176571274838ec8d86c8ab2e7a9cd24afc
9809a90aae898ebe0b437f59df7263e85d98bb94
refs/heads/master
2021-08-23T04:57:33.218410
2017-12-03T13:10:20
2017-12-03T13:10:20
105,380,436
0
0
null
null
null
null
UTF-8
Java
false
false
2,812
java
package ua.nure.kn156.kazakova.db; import java.util.Collection; import java.util.Date; import org.dbunit.DatabaseTestCase; import org.dbunit.database.DatabaseConnection; import org.dbunit.database.IDatabaseConnection; import org.dbunit.dataset.IDataSet; import org.dbunit.dataset.xml.XmlDataSet; import ua.nure.kn156.kazakova.User; public class HsqldbUserDaoTest extends DatabaseTestCase { private HsqldbUserDao dao; private ConnectionFactory connectionFactory; private User testUser; @Override protected void setUp() throws Exception { super.setUp(); dao = new HsqldbUserDao(connectionFactory); testUser= new User(); testUser.setFirstName("John"); testUser.setLastName("Doe"); testUser.setDate(new Date()); testUser = dao.create(testUser); } public void testCreate(){ User user = new User(); user.setFirstName("John"); user.setLastName("Doe"); user.setDate(new Date()); assertNull(user.getId()); User createdUser; try { createdUser = dao.create(user); assertNotNull(createdUser); assertNotNull(createdUser.getId()); assertEquals(user.getFullName(), createdUser.getFullName()); assertEquals(user.getAge(), createdUser.getAge()); } catch(DatabaseException e) { fail(e.toString()); } } public void testFindAll() { try{ Collection collection = dao.findAll(); assertNotNull("Collection is null", collection); assertEquals("Collection size.", 3, collection.size()); } catch(DatabaseException e) { fail(e.toString()); } } public void testFind() { try{ User foundUser = dao.find(testUser.getId()); assertEquals(testUser.getId(), foundUser.getId()); } catch(DatabaseException e) { fail(e.toString()); } } public void testUpdate() { try{ Long id = testUser.getId(); testUser.setFirstName("Mark"); dao.update(testUser); User foundUser = dao.find(id); assertEquals("Mark", foundUser.getFirstName()); } catch(DatabaseException e) { fail(e.toString()); } } public void testDelete() { try{ dao.delete(testUser); try{ dao.find(testUser.getId()); fail("Expected DatabaseException"); } catch (DatabaseException e) { assertEquals("No user in DB with such id", e.getMessage()); } } catch(DatabaseException e) { fail(e.toString()); } } @Override protected IDatabaseConnection getConnection() throws Exception { connectionFactory = new ConnectionFactoryImpl( "org.hsqldb.jdbcDriver", "jdbc:hsqldb:file:db/usermanagement", "sa", ""); return new DatabaseConnection(connectionFactory.createConnection()); } @Override protected IDataSet getDataSet() throws Exception { IDataSet dataSet = new XmlDataSet(getClass() .getClassLoader() .getResourceAsStream("usersDataSet.xml")); return dataSet; } }
[ "anna.kazakova@nure.ua" ]
anna.kazakova@nure.ua
8fd0d342489f172029b9153286e3ab94a1d9ef67
47eac21cb20228464d2fe4c979f2f22913546b24
/src/test/resources/tempjava/core/DomainRestService.java
794c8bd917dbbe681f02dd7d3ca5ef5dbbed37b6
[ "Apache-2.0" ]
permissive
tylerchen/tc-jgit-project
1daab5b882610398ddf29372b0cefa79e31cf447
b435e5e38416c4546a018b05889216d49f62b65a
refs/heads/master
2020-04-19T09:44:47.716613
2019-01-29T08:49:32
2019-01-29T08:49:32
168,119,372
0
0
null
null
null
null
UTF-8
Java
false
false
9,441
java
/******************************************************************************* * Copyright (c) 2018-10-14 @author <a href="mailto:iffiff1@gmail.com">Tyler Chen</a>. * All rights reserved. * * Contributors: * <a href="mailto:iffiff1@gmail.com">Tyler Chen</a> - initial API and implementation. * Auto Generate By foreveross.com Quick Deliver Platform. ******************************************************************************/ package org.iff.jgit.core; import org.apache.commons.lang3.StringUtils; import org.iff.infra.util.Exceptions; import org.iff.infra.util.GsonHelper; import org.iff.infra.util.MapHelper; import org.iff.infra.util.mybatis.plugin.Page; import org.iff.infra.util.mybatis.service.RepositoryService; import org.iff.netty.server.ProcessContext; import java.util.List; import java.util.Map; /** * DomainRestService * <pre> * rest path = /rest/:Namespace/:ModelName/:RestUri * GET /articles -> articles#index * GET /articles/find/:conditions -> articles#find * GET /articles/:id -> articles#show * POST /articles -> articles#create * PUT /articles/:id -> articles#update * DELETE /articles/:id -> articles#destroy * GET /articles/ex/name/:conditions -> articles#extra * POST /articles/ex/name -> articles#extra * PUT /articles/ex/name/:conditions -> articles#extra * DELETE /articles/ex/name/:conditions -> articles#extra * </pre> * * <pre> * DSL struct: * id: * namespace: * modelname: * name: * restpath:/rest/:Namespace/:ModelName/:RestUri@type[int|long|float|boolean|date|char|string|intArr|longArr|floatArr|booleanArr|dateArr|charArr|stringArr] * content: * createtime: * updatetime: * --- * DSL Parameter struct: * id: * dslid: * parameter: * type: * nullable: * nullchar: * defaultvalue: * createtime: * updatetime: * </pre> * * @author <a href="mailto:iffiff1@gmail.com">Tyler Chen</a> * @since 2018-10-14 * auto generate by qdp. */ public class DomainRestService { public static DomainRestService create() { return new DomainRestService(); } public Page index(String namespace, String modelName, ProcessContext ctx) { RepositoryService service = null; try { Object dsl = getDsl(namespace, modelName, "index", ctx); Page page = Page.pageable(10, 1, 0, null); service = service(namespace); page = service.queryPage("dsl", MapHelper.toMap("page", page)); return page; } finally { MyBatisSqlSessionFactory.close(service); } } public Page find(String namespace, String modelName, String[] pathConditions, ProcessContext ctx) { RepositoryService service = null; try { Object dsl = getDsl(namespace, modelName, "find", ctx); String restPath = "";//get rest path: /find/:name/:age[int|intArray]/:gender //TODO get name:type map Map<String/*name*/, String/*type*/> paramsDef = null; //TODO parse params map Map<String/*name*/, Object/*value*/> params = null; Page page = Page.pageable(10, 1, 0, null); service = service(namespace); page = service.queryPage("dsl", MapHelper.toMap("page", page, "vo", params)); return page; } finally { MyBatisSqlSessionFactory.close(service); } } public Object show(String namespace, String modelName, String id, ProcessContext ctx) { RepositoryService service = null; try { Object dsl = getDsl(namespace, modelName, "show", ctx); String restPath = "";//get rest path: /find/:name/:age[int|intArray]/:gender //TODO get name:type map Map<String/*name*/, String/*type*/> paramsDef = null; //TODO parse params map Map<String/*name*/, Object/*value*/> params = null; service = service(namespace); return service.queryOne("dsl", MapHelper.toMap("vo", params)); } finally { MyBatisSqlSessionFactory.close(service); } } public Object create(String namespace, String modelName, ProcessContext ctx) { RepositoryService service = null; Throwable error = null; try { Object dsl = getDsl(namespace, modelName, "create", ctx); //POVOCopyHelper.copyTo(arg, Class.forName(key)) List<String> list = ctx.getPostData().getFirst().values().iterator().next(); String postData = list.isEmpty() ? null : list.get(0); Object vo = GsonHelper.toJson(postData); return service.save("dsl", MapHelper.toMap("vo", vo)); } catch (Throwable t) { error = t; if (error instanceof RuntimeException) { throw (RuntimeException) error; } Exceptions.runtime("", error); return null;//Unreachable } finally { if (error != null) { MyBatisSqlSessionFactory.rollback(service); } else { MyBatisSqlSessionFactory.commit(service); } } } public Object update(String namespace, String modelName, String id, ProcessContext ctx) { RepositoryService service = null; Throwable error = null; try { Object dsl = getDsl(namespace, modelName, "update", ctx); //POVOCopyHelper.copyTo(arg, Class.forName(key)) List<String> list = ctx.getPostData().getFirst().values().iterator().next(); String postData = list.isEmpty() ? null : list.get(0); Object vo = GsonHelper.toJson(postData); return service.update("dsl", MapHelper.toMap("vo", vo)); } catch (Throwable t) { error = t; if (error instanceof RuntimeException) { throw (RuntimeException) error; } Exceptions.runtime("", error); return null;//Unreachable } finally { if (error != null) { MyBatisSqlSessionFactory.rollback(service); } else { MyBatisSqlSessionFactory.commit(service); } } } public boolean destroy(String namespace, String modelName, String id, ProcessContext ctx) { RepositoryService service = null; Throwable error = null; try { Object dsl = getDsl(namespace, modelName, "destroy", ctx); Object ids = null; if (StringUtils.contains(id, ',')) { String[] split = StringUtils.split(id, ','); //TODO convert to id type } return service.remove("dsl", MapHelper.toMap("vo", MapHelper.toMap("ids", ids))) > 0; } catch (Throwable t) { error = t; if (error instanceof RuntimeException) { throw (RuntimeException) error; } Exceptions.runtime("", error); return false;//Unreachable } finally { if (error != null) { MyBatisSqlSessionFactory.rollback(service); } else { MyBatisSqlSessionFactory.commit(service); } } } public Object extra(String namespace, String modelName, String extraName, String[] pathConditions, ProcessContext ctx) { RepositoryService service = null; Throwable error = null; try { Object dsl = getDsl(namespace, modelName, extraName, ctx); service = service(namespace); if (ctx.isGet()) { Page page = Page.pageable(10, 1, 0, null); page = service.queryPage("dsl", MapHelper.toMap("page", page)); return page; } else if (ctx.isPost()) { return service.save("dsl", MapHelper.toMap("vo", "vo")); } else if (ctx.isPut()) { return service.update("dsl", MapHelper.toMap("vo", "vo")); } else if (ctx.isDelete()) { return service.remove("dsl", MapHelper.toMap("vo", "vo")) > 0; } return null; } catch (Throwable t) { error = t; if (error instanceof RuntimeException) { throw (RuntimeException) error; } Exceptions.runtime("", error); return null;//Unreachable } finally { if (ctx.isGet()) { MyBatisSqlSessionFactory.close(service); } else if (error != null) { MyBatisSqlSessionFactory.rollback(service); } else { MyBatisSqlSessionFactory.commit(service); } } } public Object getDsl(String namespace, String modelName, String dslName, ProcessContext ctx) { //TODO get query dsl from system table. return extra("IFF_REST_SYSTEM", "Dsl", "getByNamespaceAndModelNameAndDslName", new String[]{namespace, modelName, dslName}, ctx); } public RepositoryService service(String namespace) { return MyBatisSqlSessionFactory.service(""); } }
[ "iffiff1@gmail.com" ]
iffiff1@gmail.com
350d51bcc71923d2e87e8e2b4329894c03c6ff68
f1932a42e5f75b84aa3e9ffba6235dfd85ee5682
/app/src/main/java/com/example/phuocsneaker/activity/NikeActivity.java
e62c415b0360cd175dffe9665f17e58df7113008
[]
no_license
hongphuoc0330/bangiay
c267d01f77db5ca92cab321711b7727de00bfbb7
f76001a2c5713799282233f4ea21573f6047d9a3
refs/heads/master
2020-06-26T15:27:36.754566
2019-07-30T15:02:48
2019-07-30T15:02:48
199,673,264
0
0
null
null
null
null
UTF-8
Java
false
false
8,098
java
package com.example.phuocsneaker.activity; import android.content.Intent; import android.os.Handler; import android.os.Message; import android.support.v7.app.ActionBar; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.Toolbar; import android.util.Log; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.AbsListView; import android.widget.AdapterView; import android.widget.ListView; import com.android.volley.AuthFailureError; import com.android.volley.Request; import com.android.volley.RequestQueue; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.StringRequest; import com.android.volley.toolbox.Volley; import com.example.phuocsneaker.R; import com.example.phuocsneaker.adapter.AdidasAdapter; import com.example.phuocsneaker.adapter.NikeAdapter; import com.example.phuocsneaker.model.Sanpham; import com.example.phuocsneaker.ultil.CheckConnection; import com.example.phuocsneaker.ultil.Server; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; public class NikeActivity extends AppCompatActivity { Toolbar toolbarnike; ListView lvnike ; NikeAdapter nikeAdapter; ArrayList<Sanpham> mangnike; int idnike = 0; int page = 1; View footerview; boolean isLoading = false; boolean limitdata = false; mHandler mHandler; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_nike); Anhxa(); if(CheckConnection.haveNetworkConnection(getApplicationContext())){ Anhxa(); GetIdloaisp(); ActionToolbar(); GetData(page); LoadMoreData(); }else { CheckConnection.ShowToast_Short(getApplicationContext(),"Bạn hãy kiểm tra lại internet"); finish(); } } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.menu,menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()){ case R.id.menugiohang: Intent intent = new Intent(getApplicationContext(), com.example.phuocsneaker.activity.Giohang.class); startActivity(intent); } return super.onOptionsItemSelected(item); } private void LoadMoreData() { lvnike.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) { Intent intent = new Intent(getApplicationContext(), com.example.phuocsneaker.activity.ChiTietSanPham.class); intent.putExtra("thongtinsanpham",mangnike.get(i)); startActivity(intent); } }); lvnike.setOnScrollListener(new AbsListView.OnScrollListener() { @Override public void onScrollStateChanged(AbsListView absListView, int scrollState) { } @Override public void onScroll(AbsListView absListView, int FirstItem, int VisibleItem, int TotalItem) { if (FirstItem + VisibleItem == TotalItem && TotalItem !=0 && isLoading == false && limitdata == false){ isLoading = true; NikeActivity.ThreadData threadData = new NikeActivity.ThreadData(); threadData.start(); } } }); } private void Anhxa() { toolbarnike = findViewById(R.id.toolbarnike); lvnike = findViewById(R.id.listviewnike); mangnike = new ArrayList<>(); LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE); footerview = inflater.inflate(R.layout.progressbar,null); mHandler = new mHandler (); nikeAdapter = new NikeAdapter(getApplicationContext(),mangnike); lvnike.setAdapter(nikeAdapter); } private void GetIdloaisp() { idnike = getIntent().getIntExtra("idloaisanpham",-1); } private void ActionToolbar() { setSupportActionBar(toolbarnike); getSupportActionBar().setDisplayHomeAsUpEnabled(true); toolbarnike.setNavigationOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { finish(); } }); } private void GetData(int Page) { RequestQueue requestQueue = Volley.newRequestQueue(getApplicationContext()); String duongdan= Server.Duongdannike+String.valueOf(Page); StringRequest stringRequest = new StringRequest(Request.Method.POST, duongdan, new Response.Listener<String>() { @Override public void onResponse(String response) { int id = 0; String Tennike = ""; int Gianike = 0; String Hinhanhnike = ""; String Motanike = ""; int Idspnike = 0 ; if (response !=null && response.length() != 2){ lvnike.removeFooterView(footerview); try { JSONArray jsonArray = new JSONArray(response); for (int i = 0 ; i<jsonArray.length();i++){ JSONObject jsonObject = jsonArray.getJSONObject(i); id = jsonObject.getInt("id"); Tennike = jsonObject.getString("tensp"); Gianike = jsonObject.getInt("giasp"); Hinhanhnike = jsonObject.getString("hinhanhsp"); Motanike = jsonObject.getString("motasp"); Idspnike = jsonObject.getInt("idsanpham"); mangnike.add(new Sanpham(id,Tennike,Gianike,Hinhanhnike,Motanike,Idspnike)); nikeAdapter.notifyDataSetChanged(); } nikeAdapter.notifyDataSetChanged(); } catch (JSONException e) { e.printStackTrace(); } }else { limitdata = true; lvnike.removeFooterView(footerview); CheckConnection.ShowToast_Short(getApplicationContext(),"Đã hết dữ liệu"); } } }, new Response.ErrorListener() { @Override public void onErrorResponse(VolleyError error) { } }){ @Override protected Map<String, String> getParams() throws AuthFailureError { HashMap<String,String> param = new HashMap<String,String>(); param.put("idsanpham",String.valueOf(idnike)); return param; } }; requestQueue.add(stringRequest); } public class mHandler extends Handler { @Override public void handleMessage(Message msg) { switch (msg.what){ case 0: lvnike.addFooterView(footerview); break; case 1: GetData(++page); isLoading = false; break; } super.handleMessage(msg); } } public class ThreadData extends Thread{ @Override public void run() { mHandler.sendEmptyMessage(0); try { Thread.sleep(3000); } catch (InterruptedException e) { e.printStackTrace(); } Message message = mHandler.obtainMessage(1); mHandler.sendMessage(message); super.run(); } } }
[ "hongphuoc0330@gmail.com" ]
hongphuoc0330@gmail.com
eb5b8dba1b5fd0854bd9394bc66b6355a2ce12d2
7957e9076d758ae0a36ca65a5f24ac36ddafd0a1
/src/main/java/com/ceshiren/appcrawler/report/LoadYaml.java
132702d6f1703d5e30cac93bca96667716a00e86
[]
no_license
seveniruby/AppCrawler
75e934d7bbd0a680cdb80a436a6383c4a021e665
c5242631fa4e9958383ef3926db9ace0777d8fc1
refs/heads/master
2023-07-08T20:22:38.319395
2021-12-13T17:04:48
2021-12-13T17:04:48
51,831,105
1,208
463
null
2021-11-03T18:51:01
2016-02-16T11:27:13
Scala
UTF-8
Java
false
false
628
java
package com.ceshiren.appcrawler.report; import com.ceshiren.appcrawler.model.URIElementStore; import org.ho.yaml.Yaml; import java.io.File; import java.io.FileNotFoundException; public class LoadYaml { public void loadYaml() throws FileNotFoundException { File dumpFile = new File("E://elements-test.yml"); //SimpleElementStore simpleElementStore = (SimpleElementStore) Yaml.load(dumpFile); URIElementStore simpleElementStore = Yaml.loadType(dumpFile, URIElementStore.class); System.out.println(simpleElementStore); //System.out.println(simpleElementStore.elementStore()); } }
[ "seveniruby@gmail.com" ]
seveniruby@gmail.com
8790c48afee9f2bfaf0606f4c78017ce42ebf0e4
8aba0c7efceabd397c98d847c0d7785d73c41d29
/HW05/src/hr/fer/zemris/java/tecaj/hw5/db/operators/NotEqualOperator.java
4b07420265191aa7a514cb3b2b373ef21126aee8
[]
no_license
vhanzek/java-course
3f9019945aba28ceeddd1249de985e9be5032cf4
f380d0fa1e3d15900c655e0451ad6da3fe1713ef
refs/heads/master
2021-10-28T11:43:17.725234
2019-04-23T16:20:53
2019-04-23T16:20:53
113,565,544
0
0
null
null
null
null
UTF-8
Java
false
false
651
java
package hr.fer.zemris.java.tecaj.hw5.db.operators; /** * The Class used for checking unequality of two {@link String} parameters. * This is one implementation of {@link IComparisonOperator} strategy. * * @author Vjeco */ public class NotEqualOperator implements IComparisonOperator { /** * Method returns <code>true</code> {@code value1} is not * equal to {@code value2}. * * @param value1 the first string value * @param value2 the second string value * @return <code>true</code>, if are not equal */ @Override public boolean satisfied(String value1, String value2) { return !croatianCollator.equals(value1, value2); } }
[ "vjeran.hanzek@gmail.com" ]
vjeran.hanzek@gmail.com
05d5389ce6ecf8ae36eb1a788ac79fe57d5753af
5e3c301e5b9d8a70c8ff861424f856967906e75a
/src/com/jackpf/blockchainsearch/View/AddressActivityUI.java
9fdcad1c3ec8dbbfafa443322abab931960cddba
[ "MIT" ]
permissive
jackpf/BlockchainSearch
e1f0dd2f9980d5d2fb5c08462626c7e4bd15145c
2feeb284e44b00ce006a7ee612fb9cb37c2bf737
refs/heads/master
2021-01-01T19:06:22.714854
2014-05-30T14:28:48
2014-05-30T14:28:48
16,988,053
1
0
null
null
null
null
UTF-8
Java
false
false
5,303
java
package com.jackpf.blockchainsearch.View; import java.util.HashMap; import android.content.Context; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentActivity; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentPagerAdapter; import android.support.v4.app.FragmentTransaction; import android.support.v4.view.ViewPager; import android.view.View; import android.view.animation.Animation; import android.view.animation.AnimationUtils; import android.widget.Button; import android.widget.Toast; import com.actionbarsherlock.app.ActionBar; import com.actionbarsherlock.app.ActionBar.Tab; import com.actionbarsherlock.app.ActionBar.TabListener; import com.actionbarsherlock.app.SherlockFragmentActivity; import com.jackpf.blockchainsearch.R; import com.jackpf.blockchainsearch.Model.UIInterface; public class AddressActivityUI extends UIInterface { protected SherlockFragmentActivity activity; protected ViewPager viewPager; protected TabsPagerAdapter tabAdapter; protected ActionBar actionBar; protected UpdatableFragment[] tabs = {new OverviewFragment(), new TransactionsFragment()}; protected final String[] tabTitles = {"Overview", "Transactions"}; public AddressActivityUI(Context context) { super(context); activity = (SherlockFragmentActivity) context; } public void initialise() { // Initilization viewPager = (ViewPager) activity.findViewById(R.id.content); actionBar = activity.getSupportActionBar(); tabAdapter = new TabsPagerAdapter(((FragmentActivity) context).getSupportFragmentManager()); viewPager.setAdapter(tabAdapter); actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); viewPager.setOnPageChangeListener(new ViewPager.OnPageChangeListener() { public void onPageSelected(int position) { actionBar.setSelectedNavigationItem(position); } public void onPageScrolled(int arg0, float arg1, int arg2) {} public void onPageScrollStateChanged(int arg0) {} }); // Adding Tabs for (String tab : tabTitles) { actionBar.addTab(actionBar.newTab().setText(tab).setTabListener(new TabSwipeListener())); } } protected void setLoading(boolean loading) { // Load more button Button nextPageButton = (Button) activity.findViewById(R.id._address_transactions_next_page); if (nextPageButton != null) { nextPageButton.setEnabled(!loading); if (loading) { nextPageButton.setText(context.getString(R.string.text_loading)); } else { nextPageButton.setText(context.getString(R.string.text_load_more)); } } // Hide loading spinner if (!loading) { activity.findViewById(R.id.loading).setVisibility(View.GONE); } // Refresh spinner View refreshView = activity.findViewById(R.id.action_refresh); if (refreshView != null) { // Options menu not created yet on the initial load, so this will only trigger on refresh if (loading) { Animation rotation = AnimationUtils.loadAnimation(context, R.anim.rotate); rotation.setRepeatCount(Animation.INFINITE); refreshView.startAnimation(rotation); } else { refreshView.clearAnimation(); } } } public void preUpdate() { setLoading(true); } public void update() { setLoading(false); actionBar.setSubtitle(vars.get("address").toString()); // Update fragments for (UpdatableFragment tab : tabs) { tab.update(vars); } activity.findViewById(R.id.content).setVisibility(View.VISIBLE); } public void error(Exception e) { e.printStackTrace(); Toast.makeText( context.getApplicationContext(), context.getString(R.string.text_exception, e.getMessage()), Toast.LENGTH_SHORT ).show(); } /** * Tab swipe listener * Sets the current tab when tabs are swept */ protected class TabSwipeListener implements TabListener { public void onTabReselected(Tab arg0, FragmentTransaction tx) { } public void onTabUnselected(Tab arg0, FragmentTransaction tx) { } @Override public void onTabSelected(Tab tab, FragmentTransaction arg1) { viewPager.setCurrentItem(tab.getPosition()); } } /** * Fragment adapter * Provides a fragment for a given index */ protected class TabsPagerAdapter extends FragmentPagerAdapter { public TabsPagerAdapter(FragmentManager fm) { super(fm); } @Override public Fragment getItem(int index) { return tabs[index]; } @Override public int getCount() { return tabs.length; } } public static abstract class UpdatableFragment extends Fragment { public abstract void update(HashMap<String, Object> vars); } }
[ "jf@studio-40.com" ]
jf@studio-40.com
171714e9189d635e3405516b765b5ee899fea2eb
07244b00b98ae647a1390d76d6bd7bed9035e63b
/gateway/common/src/main/java/com/smart/gateway/exception/BizException.java
fb41ba7769ab03e1eafc0f38ec896963c728c01c
[]
no_license
kongweixiang/wwwframework
16b2599623673d33dbeaf05454e2e0b4ad1383c0
5410088887f99dacd6e38bd3e01f59329ecbdef8
refs/heads/master
2020-03-16T21:31:06.227748
2018-07-09T01:50:58
2018-07-09T01:50:58
132,878,525
0
0
null
null
null
null
UTF-8
Java
false
false
91
java
package com.smart.gateway.exception; public class BizException extends BaseException { }
[ "kwxyzk@126.com" ]
kwxyzk@126.com
d52b7611d0ce2b435f2a0d335e12c5a1a5e023a2
c3c72a7627234dfa294c7fd573cc398281c5c716
/javaWeb_project/ssms/src/com/zhangjunjie/listener/SystemInitListener.java
0569b3cf496a16a4259ab573f2c677e5b34552e4
[]
no_license
c45449210/_project
8c69978389a79ec175144157763ec41697972b89
507326fade65ba9ec76dcb7b1bcf152a3c2cc7e7
refs/heads/master
2021-08-07T08:55:58.289257
2020-04-23T09:55:46
2020-04-23T09:56:02
159,633,449
0
0
null
null
null
null
UTF-8
Java
false
false
872
java
package com.zhangjunjie.listener; import javax.servlet.ServletContext; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; import javax.servlet.annotation.WebListener; import com.zhangjunjie.bean.SystemInfo; import com.zhangjunjie.dao.impl.BaseDaoImpl; /** * 系统初始化 * * */ public class SystemInitListener implements ServletContextListener { public SystemInitListener() { } public void contextInitialized(ServletContextEvent sce) { ServletContext application = sce.getServletContext(); //获取系统初始化对象 SystemInfo sys = (SystemInfo) new BaseDaoImpl().getObject(SystemInfo.class, "SELECT * FROM system1", null); //放到域中 application.setAttribute("systemInfo", sys); } public void contextDestroyed(ServletContextEvent sce) { } }
[ "c45449210@126.com" ]
c45449210@126.com
fcd467734bb4d3da71d3b310b18aefeedc8feaf3
7c8d178d382303e08e225176a6d5d96aaaf124b5
/src/main/java/com/reg/event/exception/ResourceNotFoundException.java
d3579fb28fc02f36a4815b7eda843ec4df90c2aa
[]
no_license
aniketsurya2205/shraddha
3f310ca1940b586397817f0cacfa9039cddfefab
e8f73b54b1f71fb52dafc2b8130a55e6e1c73854
refs/heads/master
2023-03-22T06:45:22.137247
2021-03-12T15:10:55
2021-03-12T15:10:55
347,104,783
0
0
null
null
null
null
UTF-8
Java
false
false
378
java
package com.reg.event.exception; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ResponseStatus; @ResponseStatus(value = HttpStatus.NOT_FOUND) public class ResourceNotFoundException extends Exception{ private static final long serialVersionUID = 1L; public ResourceNotFoundException(String message){ super(message); } }
[ "aniksuryawanshi@gmail.com" ]
aniksuryawanshi@gmail.com
52de94c2aca309cf0aad37fa756b69c9c0192f5b
891fb948d11418c4508b60125f92b2e68717cc27
/app/src/main/java/com/studiotyche/rocketlaunches/SharedPreference.java
678375fb11ae6aa15c7b5893f061c7d11c603f68
[]
no_license
anudeepsamaiya/RocketLaunches
78f8db521a258a0c506859efb09fd53588e86cde
0202da6d1a2d6e53e0b2c79c1429e2d02f5f6ab9
refs/heads/master
2021-01-14T12:06:50.372981
2016-04-03T04:59:17
2016-04-03T04:59:17
43,679,820
0
0
null
null
null
null
UTF-8
Java
false
false
2,223
java
package com.studiotyche.rocketlaunches; import android.content.Context; import android.content.SharedPreferences; import com.google.gson.Gson; import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * Created by edwn112 on 07-10-2015. */ public class SharedPreference { public static final String PREFS_NAME = "ROCKET"; public static final String PREFS_LIST = "ROCKET_LIST"; SharedPreferences settings = null; SharedPreferences.Editor editor = null; public SharedPreference() { super(); } public void saveRockets(Context context, List<Rocket> rockets) { settings = context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE); editor = settings.edit(); Gson gson = new Gson(); String jsonList = gson.toJson(rockets); editor.putString(PREFS_LIST, jsonList); editor.commit(); } public void addRocket(Context context, Rocket rocket) { List<Rocket> rockets = getRockets(context); if (rockets == null) rockets = new ArrayList<Rocket>(); rockets.add(rocket); saveRockets(context, rockets); } public void removeRocket(Context context, Rocket rocket) { ArrayList<Rocket> rockets = getRockets(context); if (rockets != null) { rockets.remove(rocket); saveRockets(context, rockets); } } public void removeRockets(Context context) { ArrayList<Rocket> rockets = new ArrayList<Rocket>(); saveRockets(context, rockets); } public ArrayList<Rocket> getRockets(Context context) { List<Rocket> rockets; settings = context.getSharedPreferences(PREFS_NAME, Context.MODE_PRIVATE); if (settings.contains(PREFS_LIST)) { String jsonList = settings.getString(PREFS_LIST, null); Gson gson = new Gson(); Rocket[] rocketsList = gson.fromJson(jsonList, Rocket[].class); rockets = Arrays.asList(rocketsList); rockets = new ArrayList<Rocket>(rockets); } else return null; return (ArrayList<Rocket>) rockets; } }
[ "anudeepsamaiya@gmail.com" ]
anudeepsamaiya@gmail.com
be23b1095a50c29234567c68abe49d4d95cd3224
8de2859fc320ba70b938ddbe78a750c12488b5ec
/app/src/main/java/com/example/hp/image/CacheStore.java
17e004da793bfbfe076571912d9227007ff7e5a5
[]
no_license
anithasathyapriya/Imagev1
82329df763e5a7a382c38dfa84fab7b09b2f65b3
751328af39c63ee1a884608332b4b9ce531d2cb3
refs/heads/master
2021-07-06T22:11:33.582807
2017-09-27T02:12:09
2017-09-27T02:12:09
104,866,676
0
0
null
null
null
null
UTF-8
Java
false
false
4,822
java
package com.example.hp.image; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.os.Environment; import android.util.Log; import android.support.v7.app.AppCompatActivity; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.StreamCorruptedException; import java.text.SimpleDateFormat; import java.util.HashMap; /** * Created by HP on 19/9/2017. */ public class CacheStore { private static CacheStore INSTANCE = null; private HashMap<String, String> cacheMap; private HashMap<String, Bitmap> bitmapMap; private static final String cacheDir = "/Android/data/com.example.hp.image/cache/"; private static final String CACHE_FILENAME = ".cache"; @SuppressWarnings("unchecked") public CacheStore() { cacheMap = new HashMap<String, String>(); bitmapMap = new HashMap<String, Bitmap>(); File fullCacheDir = new File(Environment.getExternalStorageDirectory().toString(),cacheDir); if(!fullCacheDir.exists()) { Log.i("CACHE", "Directory doesn't exist"); cleanCacheStart(); return; } try { ObjectInputStream is = new ObjectInputStream(new BufferedInputStream(new FileInputStream(new File(fullCacheDir.toString(), CACHE_FILENAME)))); cacheMap = (HashMap<String,String>)is.readObject(); is.close(); } catch (StreamCorruptedException e) { Log.i("CACHE", "Corrupted stream"); cleanCacheStart(); } catch (FileNotFoundException e) { Log.i("CACHE", "File not found"); cleanCacheStart(); } catch (IOException e) { Log.i("CACHE", "Input/Output error"); cleanCacheStart(); } catch (ClassNotFoundException e) { Log.i("CACHE", "Class not found"); cleanCacheStart(); } } private void cleanCacheStart() { cacheMap = new HashMap<String, String>(); File fullCacheDir = new File(Environment.getExternalStorageDirectory().toString(),cacheDir); fullCacheDir.mkdirs(); File noMedia = new File(fullCacheDir.toString(), ".nomedia"); try { noMedia.createNewFile(); Log.i("CACHE", "Cache created"); } catch (IOException e) { Log.i("CACHE", "Couldn't create .nomedia file"); e.printStackTrace(); } } private synchronized static void createInstance() { if(INSTANCE == null) { INSTANCE = new CacheStore(); } } public static CacheStore getInstance() { if(INSTANCE == null) createInstance(); return INSTANCE; } public void saveCacheFile(String cacheUri, Bitmap image) { File fullCacheDir = new File(Environment.getExternalStorageDirectory().toString(),cacheDir); File fileUri = new File(fullCacheDir.toString(), cacheUri); FileOutputStream outStream = null; try { outStream = new FileOutputStream(fileUri); image.compress(Bitmap.CompressFormat.JPEG, 100, outStream); outStream.flush(); outStream.close(); cacheMap.put(cacheUri, cacheUri); Log.i("CACHE", "Saved file "+cacheUri+" (which is now "+fileUri.toString()+") correctly"); bitmapMap.put(cacheUri, image); ObjectOutputStream os = new ObjectOutputStream(new BufferedOutputStream( new FileOutputStream(new File(fullCacheDir.toString(), CACHE_FILENAME)))); os.writeObject(cacheMap); os.close(); } catch (FileNotFoundException e) { Log.i("CACHE", "Error: File "+cacheUri+" was not found!"); e.printStackTrace(); } catch (IOException e) { Log.i("CACHE", "Error: File could not be stuffed!"); e.printStackTrace(); } } public Bitmap getCacheFile(String cacheUri) { if(bitmapMap.containsKey(cacheUri)) return (Bitmap)bitmapMap.get(cacheUri); if(!cacheMap.containsKey(cacheUri)) return null; String fileLocalName = cacheMap.get(cacheUri).toString(); File fullCacheDir = new File(Environment.getExternalStorageDirectory().toString(),cacheDir); File fileUri = new File(fullCacheDir.toString(), fileLocalName); if(!fileUri.exists()) return null; Log.i("CACHE", "File "+cacheUri+" has been found in the Cache"); Bitmap bm = BitmapFactory.decodeFile(fileUri.toString()); bitmapMap.put(cacheUri, bm); return bm; } }
[ "ANITHA@users.noreply.github.com" ]
ANITHA@users.noreply.github.com
4cfa89c5008e8525a71ef365216e18c8f74bbd7a
a2e4bf48447542b9e9d5093910f6a0cc4dbb2625
/Lab4/src/fourth/Rollable.java
5eaa506a9d10645cc188d209c785367c1378d670
[]
no_license
zhanabaikyzy2017/OOP-2018
3fc6ae86529af3f649c975858e1e2129402ae4d8
d46d1cf17a9ee847f4cd453214502b8881d2523a
refs/heads/master
2020-03-28T02:13:25.926037
2018-11-27T05:38:13
2018-11-27T05:38:13
147,555,888
0
0
null
null
null
null
UTF-8
Java
false
false
77
java
package fourth; interface Rollable extends Moveable { boolean Roll(); }
[ "zhanabaikyzy2017@gmail.com" ]
zhanabaikyzy2017@gmail.com
278f3eb0f552043b56ff3e4c2f842a2ff2863fc1
da5db66f6e5a01215669456354a99220ef129f6e
/JPA with Hibernate 3/src/com/cg/project/exceptions/InvalidAccountTypeException.java
96d4f3dd0472b70e3c08761ca4678f2ac6e3192a
[]
no_license
gajendrahedau/AssMod3
90bae5b581cdf02bce956a929e3f11f9cb14cca3
4b4a87d2bbb6640fa8d4fc11c3597b18a0bdf8a6
refs/heads/master
2020-04-02T13:44:29.727945
2018-11-13T19:46:37
2018-11-13T19:46:37
154,494,806
0
1
null
null
null
null
UTF-8
Java
false
false
629
java
package com.cg.project.exceptions; @SuppressWarnings("serial") public class InvalidAccountTypeException extends Exception{ public InvalidAccountTypeException() { super(); // TODO Auto-generated constructor stub } public InvalidAccountTypeException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } public InvalidAccountTypeException(String message) { super(message); // TODO Auto-generated constructor stub } public InvalidAccountTypeException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } }
[ "noreply@github.com" ]
noreply@github.com
60cfb8bff0fa3c7f13f269ee08bc050c57dd3acc
3b7b2ed5ebf06f7df4281cd980bd47eff1686d50
/icard-shared/src/main/java/com/diligrp/icard/shared/type/IEnumType.java
0728ef950b48abe5ea7b1158ad2f3f53576920a3
[]
no_license
openjava2017/etrade-icard
9b1fe85c0432b3a322f132b060afe11cd9ab730e
97b63a75f6cb14007cceeef7d1ab9d01765d51f5
refs/heads/master
2021-05-05T11:05:10.279115
2018-02-07T06:32:16
2018-02-07T06:32:16
118,111,808
0
0
null
null
null
null
UTF-8
Java
false
false
602
java
package com.diligrp.icard.shared.type; /** * Mybatis自定义TypeHandler实现枚举对象-数值转化的基础类 * * @author: brenthuang * @date: 2017/12/28 */ public interface IEnumType { /** * 枚举对象对应的数值 * * @return 返回枚举对象对应的数值 */ int getCode(); /** * 枚举对象对应的描述 * * @return 返回枚举对象对应的描述 */ String getName(); /** * 枚举对象字符串描述 * * @return 返回枚举对象字符串描述 */ @Override String toString(); }
[ "huanggang@diligrp.com" ]
huanggang@diligrp.com
40217a72545a52dbabeea9481b4929a0dc374882
ed04d21056928d4e52103d758c5b93f4106ebf91
/dSA/Try.java
902b185ba8ce91e86b5d401a14a831c9b5401d4f
[]
no_license
aygarg02/JavaWorkSpace
0f9d75e699aa0abc0658f04f2adbc97f089eeb91
691ea85226c1a717802e7f12ecea9608749272ff
refs/heads/master
2023-08-25T19:56:16.276363
2021-10-26T05:14:27
2021-10-26T05:14:27
413,456,305
0
0
null
null
null
null
UTF-8
Java
false
false
126
java
package dSA; public class Try { public static void main(String[] args) { int a=5; int b=4; System.out.println(a&b); } }
[ "aygarg02@gmail.com" ]
aygarg02@gmail.com
a2986423184fdf74dd659f372e1cdbcc832004b3
18f1f39695740b7fb0e90a9d80fa6550b7801517
/Templates/Template.java
719e562b1679101ee2b95a52c141eac287853e97
[]
no_license
RollinsonSoftware/MiraCosta-CS-111
4e2529b1008b96ab8b42a7052a043464c1ae096e
0cc2e274a1038a33a09a4ac960affb0d09f140fa
refs/heads/master
2021-08-15T01:35:40.497261
2017-11-17T04:43:04
2017-11-17T04:43:04
110,617,585
0
0
null
null
null
null
UTF-8
Java
false
false
4,371
java
/******************************************** * AUTHOR: <Jack Rollinson> * COURSE: CS 111 Intro to CS I * SECTION: <Mon. + Wed. 11:00AM> * HOMEWORK #: <homework #7> * PROJECT #: <project #2> * LAST MODIFIED: <3/13/2016> ********************************************/ /***************************************************************************** * <Pizza Menu!> ***************************************************************************** * PROGRAM DESCRIPTION: * <Takes a customers order for the size of the pizza and all the toppings they want on it!> ***************************************************************************** * ALGORITHM: * ***************************************************************************** * ALL IMPORTED PACKAGES NEEDED AND PURPOSE: * Scanner Class for user input. *****************************************************************************/ // <IMPORTS GO HERE> import java.util.Scanner; public class Template { /***** CONSTANT SECTION *****/ public static final String NAME = "Jack Rollinson"; public static final String COURSE = "CS 111 Intro to CS I"; public static final String SECTION = "Mon Wed 11:00am-1:00pm"; public static void main(String[] args) { /***** DECLARATION SECTION *****/ Scanner keyboard; /***** INITIALIZATION SECTION *****/ keyboard = new Scanner(System.in); /***** INPUT SECTION *****/ /***** PROCESSING SECTION *****/ /***** OUTPUT SECTION *****/ } // DESCRIPTION: Print author information for start of program // PRE-CONDITIONS: All parameters are given valid values // POST-CONDITIONS: Outputs author info to console public static void myPrintHeader(int hwNum, int projectNum, String lastMod) { System.out.println("============================"); System.out.println("Author: " + NAME); System.out.println("Course: " + COURSE); System.out.println("Section: " + SECTION); System.out.println("Homework #: " + hwNum); System.out.println("Project #: " + projectNum); System.out.println("Last Modified: " + lastMod); System.out.println("============================"); } // DESCRIPTION: reads input from user, returns integer value (error-checked using bounds) // PRECONDITIONS: key is instantiated, prompt is in form "Enter...: ", lower < upper // POSTCONDITIONS: returns integer value between lower and upper (inclusive) public static int readInt(String prompt, Scanner key, int lower, int upper) { String temp; int result; boolean isNotValid; do { System.out.print(prompt); temp = key.nextLine(); result = Integer.parseInt(temp); isNotValid = (result < lower) || (result > upper); if(isNotValid) { System.out.println("ERROR: please enter value between " + lower + " - " + upper); } } while(isNotValid); return result; } // DESCRIPTION: reads input from user, returns double value (error-checked using bounds) // PRECONDITIONS: key is instantiated, prompt is in the form of "Enter...:", double lower < double uper // POSTCONDITIONS: returns double value between lower and upper (inclusive) public static double readDouble(String prompt, Scanner key, double lower, double upper) { String temp; double result; boolean isNotValid; do { System.out.print(prompt); temp = key.nextLine(); result = Double.parseDouble(temp); isNotValid = (result < lower) || (result > upper); if (isNotValid) { System.out.println("ERROR: please enter value between " + lower + " - " + upper); } }while(isNotValid); return result; } // DESCRIPTION: reads input from user, returns char value (error-checked using validChars) // PRECONDITIONS: key is instantiated, prompt is in the form of "Enter...". // POSTCONDITIONS: check if the char entered by the user is in the list of valid chars. public static char readChar(String prompt, Scanner key, String validChars) { String temp; boolean isNotValid; char userInput; int charNum; do { System.out.print(prompt); temp = key.nextLine(); userInput = temp.charAt(0); charNum = validChars.indexOf(userInput); if (charNum == -1) { System.out.println("ERROR: Please enter a valid character"); } }while(charNum < 0); return userInput; } }
[ "noreply@github.com" ]
noreply@github.com
6fb51bae06310a777cc55d62f6a8127556ed6560
a9bf2a90a894af4a9b77a9cb3380b24494c6392a
/src/test/java/org/assertj/core/api/filter/Filter_with_common_Test.java
7d3909f2a152fc7d455db00f88650120b28c99a0
[ "Apache-2.0" ]
permissive
andyRokit/assertj-core
cc0e2fb50e43b2c752e3cb94af4513175b68e779
4d7dffe1a4f940952e5024a98686b6004f5184dc
refs/heads/master
2020-03-23T12:36:07.003905
2018-07-20T08:08:58
2018-07-20T08:08:58
141,569,523
0
0
null
null
null
null
UTF-8
Java
false
false
2,076
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * * Copyright 2012-2018 the original author or authors. */ package org.assertj.core.api.filter; import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; import static org.assertj.core.api.filter.Filters.filter; import static org.assertj.core.util.Lists.newArrayList; import java.util.List; import org.assertj.core.test.WithPlayerData; import org.assertj.core.test.Player; import org.junit.Test; public class Filter_with_common_Test extends WithPlayerData { @Test public void filter_does_not_modify_given_iterable() { List<Player> playersCopy = newArrayList(players); // filter players filter(players).with("reboundsPerGame").equalsTo(5).get(); assertThat(playersCopy).isEqualTo(players); } @Test public void should_fail_if_property_or_field_to_filter_on_is_null() { assertThatIllegalArgumentException().isThrownBy(() -> filter(players).with("reboundsPerGame").equalsTo(5).and(null) .equalsTo("OKC")) .withMessage("The property/field name to filter on should not be null or empty"); } @Test public void should_fail_if_property_or_field_to_filter_on_is_empty() { assertThatIllegalArgumentException().isThrownBy(() -> filter(players).with("").equalsTo("OKC")) .withMessage("The property/field name to filter on should not be null or empty"); } }
[ "joel.costigliola@gmail.com" ]
joel.costigliola@gmail.com
bacef0fc9eb1ba0bad014f2ada7818f6a38cde78
6c8026f9aca5c5644618e7ef1a03d090bc05e71b
/src/main/java/com/cjie/commons/okex/open/api/service/ett/impl/EttProductAPIServiceImpl.java
2c878f6c10aa14ece591e7741e63d9e391fc4915
[]
no_license
HuWenhai/Quant
cabc068eb4666f275a4781023046b860bfb0de3e
4d8a436e17d9ca176e8c77815bd13e2473e3df53
refs/heads/master
2021-09-21T23:43:51.134478
2018-09-03T10:28:57
2018-09-03T10:28:57
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,340
java
package com.cjie.commons.okex.open.api.service.ett.impl; import com.cjie.commons.okex.open.api.bean.ett.result.EttConstituentsResult; import com.cjie.commons.okex.open.api.bean.ett.result.EttSettlementDefinePrice; import com.cjie.commons.okex.open.api.client.APIClient; import com.cjie.commons.okex.open.api.bean.ett.result.EttConstituentsResult; import com.cjie.commons.okex.open.api.bean.ett.result.EttSettlementDefinePrice; import com.cjie.commons.okex.open.api.client.APIClient; import com.cjie.commons.okex.open.api.config.APIConfiguration; import com.cjie.commons.okex.open.api.service.ett.EttProductAPIService; import java.util.List; /** * @author chuping.cui * @date 2018/7/5 */ public class EttProductAPIServiceImpl implements EttProductAPIService { private final APIClient client; private final EttProductAPI api; public EttProductAPIServiceImpl(APIConfiguration config) { this.client = new APIClient(config); this.api = this.client.createService(EttProductAPI.class); } @Override public EttConstituentsResult getConstituents(String ett) { return this.client.executeSync(this.api.getConstituents(ett)); } @Override public List<EttSettlementDefinePrice> getDefinePrice(String ett) { return this.client.executeSync(this.api.getDefinePrice(ett)); } }
[ "xu.fu@okcoin.com" ]
xu.fu@okcoin.com
9d3261331e596e9c8b8f608922cda29ceb8cdee0
66bc50f34acefb18cbee8ca749563b00d709335e
/toolbarwebview/src/main/java/com/janrone/lib/listener/ToolbarWebViewScrollListener.java
43c365affc3740c5f1132c921aace6f3b0c1ebb9
[ "MIT" ]
permissive
waelchateur/ToolbarWebView
e8fb304ecc72bc4621983177372ac101c47761a4
ed21c7a32f1a51e15233a5c1a51f80609ded7663
refs/heads/master
2023-03-19T08:06:22.145635
2016-07-12T14:14:08
2016-07-12T14:14:08
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,508
java
package com.janrone.lib.listener; import com.janrone.lib.ui.ToolbarWebView; /* * This class is a ScrollListener for ToolbarWebView that allows to show/hide * views when list is scrolled. It assumes that you have added a header * to your webview. @see com.janrone.lib.ToolbarWebView.ScrollInterface * */ public abstract class ToolbarWebViewScrollListener implements ToolbarWebView.ScrollInterface { private static final int HIDE_THRESHOLD = 26; private int mScrolledDistance = 0; private boolean mControlsVisible = true; @Override public void onSChanged(ToolbarWebView toolbarWebView,int l, int t, int oldl, int oldt){ if (toolbarWebView.getScrollY() == 0) { if(!mControlsVisible) { onShow(); mControlsVisible = true; } } else { if (mScrolledDistance > HIDE_THRESHOLD && mControlsVisible) { onHide(); mControlsVisible = false; mScrolledDistance = 0; } else if (mScrolledDistance < -HIDE_THRESHOLD && !mControlsVisible) { onShow(); mControlsVisible = true; mScrolledDistance = 0; } } if((mControlsVisible && t-oldt>0) || (!mControlsVisible && t-oldt<0)) { mScrolledDistance += (t-oldt); } } public abstract void onHide(); public abstract void onShow(); }
[ "janrone@qq.com" ]
janrone@qq.com
8cd433489cebe21be9cda78313ddaf6f66aa589c
8f0606017835cdc2427d925dbc4a25d8b8a894e6
/src/java/com/stx/tbc/service/TbcItemAddStageSettingService.java
2f3e4cf05f75581d98f1690dea1f7e1c1f0a7882
[]
no_license
heumjun/common
1195c863c209c2ea214318ba54c52d0ff42ba5fc
fccd452d4c2e764094df2767d509e98503bcc048
refs/heads/master
2021-08-10T21:10:03.632352
2017-11-12T23:58:30
2017-11-12T23:58:30
110,476,448
0
0
null
null
null
null
UTF-8
Java
false
false
764
java
package com.stx.tbc.service; import java.util.ArrayList; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.stx.common.library.RequestBox; import com.stx.common.service.AService; import com.stx.common.service.ServiceForward; public class TbcItemAddStageSettingService extends AService { protected ServiceForward forwardPage(HttpServletRequest request, HttpServletResponse response, ArrayList ar, RequestBox box) throws Exception { // TODO Auto-generated method stub ServiceForward forward = new ServiceForward(); forward.setRedirect(false); forward.setForward(true); forward.setPath("/WEB-INF/jsp/tbc/tbc_ItemAddStageSettingMain.jsp"); return forward; } }
[ "jjs6582@stxship.co.kr" ]
jjs6582@stxship.co.kr
62a4b49eaa2ae6d48d84e94c45637e69ce9f0156
79e125d52dac96cd60da50c540aac8d90b6bcf9b
/src/main/java/com/tecacet/jflat/impl/HeaderRecordExtractor.java
0e008dc3a35207dbfd9254d5b530d023856010f0
[ "MIT" ]
permissive
algorythmist/jflat-core
d1471581442264ffae179438ad0c1affedbce056
031069a34423e42e0e9d07381b74d0327f18d47d
refs/heads/master
2020-07-17T11:24:24.374825
2020-01-20T05:37:16
2020-01-20T05:37:16
206,011,003
0
0
MIT
2020-01-20T01:05:37
2019-09-03T07:04:13
Java
UTF-8
Java
false
false
388
java
package com.tecacet.jflat.impl; import com.tecacet.jflat.RowRecord; public class HeaderRecordExtractor implements RecordExtractor { private final String[] header; public HeaderRecordExtractor(String[] header) { this.header = header; } @Override public String getRecordValue(RowRecord record, int index) { return record.get(header[index]); } }
[ "dimitri@tecacet.com" ]
dimitri@tecacet.com