blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
132 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
28 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
352
3e4af7e2735d7d1448939da0bda8e42746e2b09d
146054f398bf7fb1123928cccadc3399af95a3e6
/src/lesson6/homework/forum/ForumPollsOptions.java
dce753e7a754e11d8d9e3fd029f5cb2ddc8dd462
[]
no_license
AntonMiJu/workWithDB
91184fe4945fdcbb942d5d84ba515e8e0abea43d
49f36ed3ee08cb7136adfe24d830c074ae3947d6
refs/heads/master
2020-04-22T06:50:51.655071
2019-03-15T17:00:41
2019-03-15T17:00:41
170,204,329
0
0
null
null
null
null
UTF-8
Java
false
false
287
java
package lesson6.homework.forum; import java.util.Date; public class ForumPollsOptions extends ForumPolls { private ForumPosts post; public ForumPollsOptions(long id, String title, Date date, ForumPosts post) { super(id, title, date); this.post = post; } }
[ "anton.mi.ju@gmail.com" ]
anton.mi.ju@gmail.com
1307dd595f7dfa0ccb6837ef669b248f3fdc96eb
33afa99d6e57484cc6f659c300ec1d58b3a0d143
/app/src/main/java/com/example/m3app/ui/moviememoir/MovieMemoirViewModel.java
daab1894d25b4351dc63db035a97c204656f2af9
[]
no_license
maoyechao/Android-M3
5065a1a225ad0fe356a3d18eb150581f02fcb7e2
46635664930c76209d2385775f3b31d3892539c7
refs/heads/master
2022-11-16T09:27:24.811570
2020-07-15T06:49:24
2020-07-15T06:49:24
279,786,451
0
0
null
null
null
null
UTF-8
Java
false
false
15,053
java
package com.example.m3app.ui.moviememoir; import android.content.Context; import android.graphics.Bitmap; import android.os.AsyncTask; import android.os.Build; import android.util.Log; import androidx.annotation.RequiresApi; import androidx.lifecycle.LiveData; import androidx.lifecycle.MutableLiveData; import androidx.lifecycle.ViewModel; import com.example.m3app.data.Cinema; import com.example.m3app.data.Memoir; import com.example.m3app.data.MovieInfo; import com.example.m3app.networkconnection.NetworkConnection; import com.example.m3app.ui.SharedPreference; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.List; public class MovieMemoirViewModel extends ViewModel { // TODO: Implement the ViewModel NetworkConnection networkConnection = new NetworkConnection(); private Context context; private MutableLiveData<String> getMemoirResultLiveData; private MutableLiveData<Integer> addMemoirResult; private MutableLiveData<Integer> addCinemaResult; private List<Memoir> listMemoir = new ArrayList<>(); private Integer genreNumber; private MutableLiveData<Integer> disableProcessingBar; private List<Integer> genreNumberList = new ArrayList<>(); private MutableLiveData<List<Memoir>> listMemoirLiveData; private String option = "5"; private int count; private int publicCouunt; public static class Combine1{ int score; String memoir; Combine1(int score,String memoir) { this.score = score; this.memoir = memoir; } } private List<Combine1> list = new ArrayList<>(); public LiveData<List<Memoir>> getListMemoirLiveData() { return listMemoirLiveData; } public LiveData<String> getMemoirResultLiveData() { return getMemoirResultLiveData; } public LiveData<Integer> addMemoirResultLiveData() { return addMemoirResult; } public LiveData<Integer> addCinemaResultLiveData() { return addCinemaResult; } public LiveData<Integer> disableProcessingBar() { return disableProcessingBar; } public MovieMemoirViewModel() { count = 0; addMemoirResult = new MutableLiveData<>(); getMemoirResultLiveData = new MutableLiveData<>(); listMemoirLiveData = new MutableLiveData<>(); addCinemaResult = new MutableLiveData<>(); disableProcessingBar = new MutableLiveData<>(); } public String setSortingOption(String sortingOption) { option = sortingOption; return option; } public void getMemoirProcessing() { SharedPreference sp = SharedPreference.getInstance(context); try { GetMemoirsTask getMemoirsTask = new GetMemoirsTask(); getMemoirsTask.execute(Integer.toString(sp.getInt("personid"))); } catch (Exception e) { } } private class GetMemoirsTask extends AsyncTask<String, Void, String> { @Override protected String doInBackground(String... params) { return networkConnection.getMemoir(params[0]); } @Override protected void onPostExecute(String result) { list = new ArrayList<>(); listMemoir = new ArrayList<>(); count = 0; publicCouunt = 0; genreNumber = 0; genreNumberList = new ArrayList<>(); disableProcessingBar.postValue(0); try { JSONArray resultArray = new JSONArray(result); SharedPreference sp = SharedPreference.getInstance(context); if (resultArray.length()>0){ sp.putInt("memoirTotalCount", resultArray.length()); if (option.equals("0")) { for (int i = 0; i < resultArray.length(); i++) { sp.putString("memoir" + i, resultArray.get(i).toString()); JSONObject jsonObject = new JSONObject(resultArray.get(i).toString()); getImageProcessing(jsonObject.getString("moviename")); } } else if (option.equals("1")) { for (int i = 0; i < resultArray.length(); i++) { JSONObject jsonObject = new JSONObject(resultArray.get(i).toString()); int date = Integer.parseInt(jsonObject.getString("watchdatetime").substring(0,4) + jsonObject.getString("watchdatetime").substring(5,7) + jsonObject.getString("watchdatetime").substring(8,10)); Combine1 memoir = new Combine1(date,resultArray.get(i).toString()); list.add(memoir); } Collections.sort(list, new Comparator<Combine1>() { @Override public int compare(Combine1 o1, Combine1 o2) { return o2.score - o1.score; } }); for (int i = 0; i < list.size(); i++) { sp.putString("memoir" + i, list.get(i).memoir); JSONObject jsonObject = new JSONObject(list.get(i).memoir); getImageProcessing(jsonObject.getString("moviename")); } } else if (option.equals("2")) { for (int i = 0; i < resultArray.length(); i++) { JSONObject jsonObject = new JSONObject(resultArray.get(i).toString()); int rating = Double.valueOf(jsonObject.getDouble("ratingscore")*2).intValue(); Combine1 memoir = new Combine1(rating,resultArray.get(i).toString()); list.add(memoir); } Collections.sort(list, new Comparator<Combine1>() { @Override public int compare(Combine1 o1, Combine1 o2) { return o2.score - o1.score; } }); for (int i = 0; i < list.size(); i++) { sp.putString("memoir" + i, list.get(i).memoir); JSONObject jsonObject = new JSONObject(list.get(i).memoir); getImageProcessing(jsonObject.getString("moviename")); } } else { for (int i = 0; i < resultArray.length(); i++) { sp.putString("memoir" + i, resultArray.get(i).toString()); JSONObject jsonObject = new JSONObject(resultArray.get(i).toString()); getMemoirDetailProcessing(jsonObject.getString("moviename")); } } } } catch (JSONException e) { e.printStackTrace(); } } } public void getMemoirDetailProcessing(String movieName){ GetMemoirDetailTask getMemoirDetailTask = new GetMemoirDetailTask(); getMemoirDetailTask.execute(movieName); } private class GetMemoirDetailTask extends AsyncTask<String, Void, String> { @RequiresApi(api = Build.VERSION_CODES.KITKAT) @Override protected String doInBackground(String... params) { return networkConnection.getMemoirDetail(params[0]); } @Override protected void onPostExecute(String result) { SharedPreference sp = SharedPreference.getInstance(context); try { JSONObject jsonObject = new JSONObject(result); if (option.equals("3")) { list.add(new Combine1(Double.valueOf(jsonObject.getDouble("vote_average")*10).intValue(),sp.getString("memoir" + publicCouunt))); publicCouunt = publicCouunt + 1; if (list.size() == sp.getInt("memoirTotalCount")) { Collections.sort(list, new Comparator<Combine1>() { @Override public int compare(Combine1 o1, Combine1 o2) { return o2.score - o1.score; } }); for (int i = 0; i < list.size(); i++) { sp.putString("memoir" + i, list.get(i).memoir); JSONObject jsonObject1 = new JSONObject(list.get(i).memoir); getImageProcessing(jsonObject1.getString("moviename")); } } } else { JSONArray genresList = jsonObject.getJSONArray("genres"); if (genresList.length()>0) { for (int i = 0; i<genresList.length(); i++){ if (genresList.getJSONObject(i).getString("name").equals(option)) { genreNumberList.add(genreNumber); getImageProcessing(jsonObject.getString("original_title")); break; } } } genreNumber = genreNumber + 1; } } catch (JSONException e) { e.printStackTrace(); } } } public void getImageProcessing(String movieName){ GetImageTask getImageTask = new GetImageTask(); getImageTask.execute(movieName); } private class GetImageTask extends AsyncTask<String, Void, Bitmap> { @RequiresApi(api = Build.VERSION_CODES.KITKAT) @Override protected Bitmap doInBackground(String... params) { return networkConnection.getMemoirPooster(params[0]); } @Override protected void onPostExecute(Bitmap result) { SharedPreference sp = SharedPreference.getInstance(context); if (option.equals("0") || option.equals("1") || option.equals("2") || option.equals("3")) { Memoir memoir = new Memoir(count); try { JSONObject jsonObject = new JSONObject(sp.getString("memoir" + count)); JSONObject cinemaArray = jsonObject.getJSONObject("cinemaid"); memoir.setMovieName(jsonObject.getString("moviename")); memoir.setMovieReleaseDate(jsonObject.getString("moviereleasedate")); memoir.setWatchDateTime(jsonObject.getString("watchdatetime")); memoir.setPostcode(cinemaArray.getInt("postcode")); memoir.setComments(jsonObject.getString("comments")); memoir.setRatingScore(jsonObject.getDouble("ratingscore")); memoir.setPooster(result); listMemoir.add(memoir); count = count+1; listMemoirLiveData.postValue(listMemoir); if (count == sp.getInt("memoirTotalCount")) { disableProcessingBar.postValue(1); } } catch (JSONException e) { e.printStackTrace(); } } else { Memoir memoir = new Memoir(count); try { JSONObject jsonObject = new JSONObject(sp.getString("memoir" + genreNumberList.get(count))); JSONObject cinemaArray = jsonObject.getJSONObject("cinemaid"); memoir.setMovieName(jsonObject.getString("moviename")); memoir.setMovieReleaseDate(jsonObject.getString("moviereleasedate")); memoir.setWatchDateTime(jsonObject.getString("watchdatetime")); memoir.setPostcode(cinemaArray.getInt("postcode")); memoir.setComments(jsonObject.getString("comments")); memoir.setRatingScore(jsonObject.getDouble("ratingscore")); memoir.setPooster(result); listMemoir.add(memoir); count = count+1; listMemoirLiveData.postValue(listMemoir); if (count == genreNumberList.size()) { disableProcessingBar.postValue(1); } } catch (JSONException e) { e.printStackTrace(); } } } } public void getAllMemoirProcessing() { try { GetAllMemoirsTask getMemoirsTask = new GetAllMemoirsTask(); getMemoirsTask.execute(); } catch (Exception e) { } } private class GetAllMemoirsTask extends AsyncTask<String, Void, String> { @Override protected String doInBackground(String... params) { return networkConnection.getAllMemoir(); } @Override protected void onPostExecute(String result) { try { JSONArray resultArray = new JSONArray(result); SharedPreference sp = SharedPreference.getInstance(context); if (resultArray.length()>0){ sp.putInt("allMemoirTotalCount", resultArray.length()); } } catch (JSONException e) { e.printStackTrace(); } } } public void addMemoirProcessing(Memoir memoir) { addMemoirProcessingTask addMemoirTask = new addMemoirProcessingTask(); addMemoirTask.execute(memoir); } private class addMemoirProcessingTask extends AsyncTask<Memoir, Void, String> { @Override protected String doInBackground(Memoir... params) { return networkConnection.addMemoir(params[0]); } @Override protected void onPostExecute(String result) { if (result.equals("204")) addMemoirResult.setValue(0); else addMemoirResult.setValue(1); } } public void addCinemaProcessing(Cinema cinema) { addCinemaProcessingTask addCinemaTask = new addCinemaProcessingTask(); addCinemaTask.execute(cinema); } private class addCinemaProcessingTask extends AsyncTask<Cinema, Void, String> { @Override protected String doInBackground(Cinema... params) { return networkConnection.addCinema(params[0]); } @Override protected void onPostExecute(String result) { if (result.equals("204")) addCinemaResult.setValue(0); else addCinemaResult.setValue(1); } } }
[ "ymao0011@student.monash.edu" ]
ymao0011@student.monash.edu
dbf92b05d22eb00e4f81ae107118dbbff377d2ef
58a961999c259d7fc9e0b8c17a0990f4247f29bf
/CDM/pract3/P1/sources/com/google/android/gms/internal/zzld.java
8fd436fef6e5aed5615d0159f48c6871064002da
[]
no_license
Lulocu/4B-ETSINF
c50b4ca70ad14b9ec9af6a199c82fad333f7bc8c
65d492d0fbeb630c7bbe25d92dfbfd9e5f41bcd8
refs/heads/master
2023-06-05T23:41:02.297413
2021-06-20T10:53:30
2021-06-20T10:53:30
339,157,412
0
1
null
null
null
null
UTF-8
Java
false
false
681
java
package com.google.android.gms.internal; import android.os.SystemClock; public final class zzld implements zzlb { private static zzld zzacK; public static synchronized zzlb zzoQ() { zzld zzld; synchronized (zzld.class) { if (zzacK == null) { zzacK = new zzld(); } zzld = zzacK; } return zzld; } @Override // com.google.android.gms.internal.zzlb public long currentTimeMillis() { return System.currentTimeMillis(); } @Override // com.google.android.gms.internal.zzlb public long elapsedRealtime() { return SystemClock.elapsedRealtime(); } }
[ "lulocu99@gmail.com" ]
lulocu99@gmail.com
cc15fe3f488e479312affbb31f48c43d2686d6a9
5afa0b9db8ef74f9c7c05742b40dccf6810afe8a
/src/test/java/com/spm/iucr/config/NoOpMailConfiguration.java
5faf91a970f423d67ed3176be044676419f6ed74
[]
no_license
anh56/IUChatRoom
d20c21e45778f47f3d1cc702dc303361c311adb1
708950fc8a3e8cf2fa9e5e9c9455fad8d465b6a6
refs/heads/master
2023-01-05T00:35:52.214628
2020-10-24T14:52:59
2020-10-24T14:52:59
305,160,347
0
0
null
null
null
null
UTF-8
Java
false
false
673
java
package com.spm.iucr.config; import com.spm.iucr.service.MailService; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.doNothing; import static org.mockito.Mockito.mock; @Configuration public class NoOpMailConfiguration { private final MailService mockMailService; public NoOpMailConfiguration() { mockMailService = mock(MailService.class); doNothing().when(mockMailService).sendActivationEmail(any()); } @Bean public MailService mailService() { return mockMailService; } }
[ "01ntanh9a3@gmail.com" ]
01ntanh9a3@gmail.com
c3e32d8ad39a2660c771fb0ef18a2292fa6506c7
e45bdfe09f5abddcccbcbf44ca532729c6480123
/新版本eclipse/day05_dataSource_jdbcTemplate/src/druid/DruidDemo2.java
a0fa7de60d56a9a619f127436d01feee14934de1
[]
no_license
18222137497/Learning-path
71417330650c326637290cbbb9c77375a284b94f
12a415ffce3ba8528666792ad99b8c9e6f9d107f
refs/heads/master
2023-03-12T06:37:09.380592
2021-02-23T10:18:32
2021-02-23T10:18:32
303,752,409
0
0
null
null
null
null
GB18030
Java
false
false
874
java
package druid; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; /** * Druid工具类的测试类 * @author 123 * */ public class DruidDemo2 { public static void main(String[] args) { Connection c = null; PreparedStatement s =null; ResultSet r=null; try { //1.注册驱动 new DruidUtils(); //2.定义sql String sql = "select * from account where id=?"; //3.获取连接池对象 c = DruidUtils.getConnection(); //4.获取执行sql对象 s = c.prepareStatement(sql); s.setInt(1, 1); //5.执行sql r = s.executeQuery(); while (r.next()) { System.out.print("id="+r.getInt(1)+"|name="+r.getString(2)+"|balance="+r.getInt(3)); } } catch (SQLException e) { e.printStackTrace(); }finally { DruidUtils.closs(c, s, r); } } }
[ "67040612+18222137497@users.noreply.github.com" ]
67040612+18222137497@users.noreply.github.com
becd2d69f8e83c2ec746a9c3e237bc46ad48f59c
c885ef92397be9d54b87741f01557f61d3f794f3
/tests-without-trycatch/Closure-109/com.google.javascript.jscomp.parsing.JsDocInfoParser/BBC-F0-opt-50/3/com/google/javascript/jscomp/parsing/JsDocInfoParser_ESTest_scaffolding.java
ca6b262e6c583f4bad96b2f050e1e07f00cfee69
[ "CC-BY-4.0", "MIT" ]
permissive
pderakhshanfar/EMSE-BBC-experiment
f60ac5f7664dd9a85f755a00a57ec12c7551e8c6
fea1a92c2e7ba7080b8529e2052259c9b697bbda
refs/heads/main
2022-11-25T00:39:58.983828
2022-04-12T16:04:26
2022-04-12T16:04:26
309,335,889
0
1
null
2021-11-05T11:18:43
2020-11-02T10:30:38
null
UTF-8
Java
false
false
39,272
java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Wed Oct 13 16:20:02 GMT 2021 */ package com.google.javascript.jscomp.parsing; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.After; import org.junit.AfterClass; import org.evosuite.runtime.sandbox.Sandbox; import org.evosuite.runtime.sandbox.Sandbox.SandboxMode; @EvoSuiteClassExclude public class JsDocInfoParser_ESTest_scaffolding { @org.junit.Rule public org.evosuite.runtime.vnet.NonFunctionalRequirementRule nfr = new org.evosuite.runtime.vnet.NonFunctionalRequirementRule(); private static final java.util.Properties defaultProperties = (java.util.Properties) java.lang.System.getProperties().clone(); private org.evosuite.runtime.thread.ThreadStopper threadStopper = new org.evosuite.runtime.thread.ThreadStopper (org.evosuite.runtime.thread.KillSwitchHandler.getInstance(), 3000); @BeforeClass public static void initEvoSuiteFramework() { org.evosuite.runtime.RuntimeSettings.className = "com.google.javascript.jscomp.parsing.JsDocInfoParser"; org.evosuite.runtime.GuiSupport.initialize(); org.evosuite.runtime.RuntimeSettings.maxNumberOfThreads = 100; org.evosuite.runtime.RuntimeSettings.maxNumberOfIterationsPerLoop = 10000; org.evosuite.runtime.RuntimeSettings.mockSystemIn = true; org.evosuite.runtime.RuntimeSettings.sandboxMode = org.evosuite.runtime.sandbox.Sandbox.SandboxMode.RECOMMENDED; org.evosuite.runtime.sandbox.Sandbox.initializeSecurityManagerForSUT(); org.evosuite.runtime.classhandling.JDKClassResetter.init(); setSystemProperties(); initializeClasses(); org.evosuite.runtime.Runtime.getInstance().resetRuntime(); } @AfterClass public static void clearEvoSuiteFramework(){ Sandbox.resetDefaultSecurityManager(); java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); } @Before public void initTestCase(){ threadStopper.storeCurrentThreads(); threadStopper.startRecordingTime(); org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().initHandler(); org.evosuite.runtime.sandbox.Sandbox.goingToExecuteSUTCode(); setSystemProperties(); org.evosuite.runtime.GuiSupport.setHeadless(); org.evosuite.runtime.Runtime.getInstance().resetRuntime(); org.evosuite.runtime.agent.InstrumentingAgent.activate(); } @After public void doneWithTestCase(){ threadStopper.killAndJoinClientThreads(); org.evosuite.runtime.jvm.ShutdownHookHandler.getInstance().safeExecuteAddedHooks(); org.evosuite.runtime.classhandling.JDKClassResetter.reset(); resetClasses(); org.evosuite.runtime.sandbox.Sandbox.doneWithExecutingSUTCode(); org.evosuite.runtime.agent.InstrumentingAgent.deactivate(); org.evosuite.runtime.GuiSupport.restoreHeadlessMode(); } public static void setSystemProperties() { java.lang.System.setProperties((java.util.Properties) defaultProperties.clone()); java.lang.System.setProperty("user.dir", "/experiment"); } private static void initializeClasses() { org.evosuite.runtime.classhandling.ClassStateSupport.initializeClasses(JsDocInfoParser_ESTest_scaffolding.class.getClassLoader() , "com.google.common.collect.ArrayListMultimap", "com.google.javascript.rhino.jstype.TemplateTypeMapReplacer", "com.google.javascript.rhino.head.Icode", "com.google.javascript.rhino.jstype.PrototypeObjectType", "com.google.javascript.rhino.jstype.ArrowType", "com.google.javascript.rhino.SimpleErrorReporter", "com.google.common.collect.Lists$RandomAccessPartition", "com.google.javascript.rhino.head.WrappedException", "com.google.javascript.rhino.jstype.EquivalenceMethod", "com.google.common.collect.Collections2", "com.google.javascript.rhino.jstype.NumberType", "com.google.javascript.rhino.head.debug.DebuggableObject", "com.google.common.collect.PeekingIterator", "com.google.javascript.rhino.head.jdk13.VMBridge_jdk13", "com.google.javascript.jscomp.parsing.JsDocInfoParser", "com.google.common.collect.LinkedHashMultimap$ValueSetLink", "com.google.javascript.rhino.jstype.StaticScope", "com.google.javascript.rhino.jstype.InstanceObjectType", "com.google.javascript.rhino.head.Function", "com.google.javascript.jscomp.parsing.JsDocToken", "com.google.common.collect.Sets$2", "com.google.javascript.rhino.Node$IntPropListItem", "com.google.common.collect.Sets$3", "com.google.common.collect.ImmutableCollection$ArrayBasedBuilder", "com.google.javascript.rhino.jstype.ObjectType", "com.google.common.collect.Sets$1", "com.google.common.collect.Platform", "com.google.javascript.rhino.JSDocInfo$Marker", "com.google.common.collect.RegularImmutableMap", "com.google.common.collect.RegularImmutableBiMap", "com.google.javascript.rhino.jstype.RecordType", "com.google.javascript.rhino.Node$NodeMismatch", "com.google.javascript.rhino.head.ContextFactory$Listener", "com.google.javascript.rhino.head.ast.Jump", "com.google.javascript.jscomp.parsing.JsDocInfoParser$1", "com.google.javascript.rhino.head.NativeCall", "com.google.javascript.rhino.jstype.ModificationVisitor", "com.google.common.collect.AbstractMapEntry", "com.google.common.collect.Iterators$12", "com.google.common.collect.Iterators$11", "com.google.javascript.rhino.jstype.JSType$1", "com.google.common.collect.EmptyImmutableBiMap", "com.google.javascript.rhino.jstype.TemplateTypeMap", "com.google.common.collect.ImmutableMapEntry$TerminalEntry", "com.google.common.base.Joiner", "com.google.javascript.rhino.Node$SiblingNodeIterable", "com.google.common.collect.AbstractListMultimap", "com.google.javascript.rhino.Node$StringNode", "com.google.javascript.rhino.jstype.ProxyObjectType", "com.google.javascript.rhino.jstype.TemplateType", "com.google.javascript.rhino.jstype.NamedType", "com.google.common.collect.Iterators$13", "com.google.javascript.rhino.InputId", "com.google.common.collect.Lists$Partition", "com.google.common.collect.AbstractMapBasedMultimap", "com.google.common.collect.Lists", "com.google.javascript.rhino.head.ast.AstRoot", "com.google.javascript.rhino.head.Token$CommentType", "com.google.common.collect.UnmodifiableListIterator", "com.google.javascript.rhino.ErrorReporter", "com.google.javascript.rhino.jstype.UnknownType", "com.google.javascript.rhino.jstype.ValueType", "com.google.javascript.rhino.Token", "com.google.javascript.rhino.jstype.PropertyMap", "com.google.javascript.rhino.Node$FileLevelJsDocBuilder", "com.google.javascript.rhino.jstype.StaticSourceFile", "com.google.javascript.rhino.head.ScriptableObject$Slot", "org.mozilla.classfile.ClassFileWriter$ClassFileFormatException", "com.google.javascript.rhino.jstype.BooleanType", "com.google.common.base.Joiner$MapJoiner", "com.google.javascript.rhino.jstype.TemplateTypeMap$EquivalenceMatch", "com.google.javascript.rhino.head.Context$ClassShutterSetter", "com.google.javascript.rhino.head.GeneratedClassLoader", "com.google.javascript.rhino.JSDocInfo$1", "com.google.common.collect.Sets$ImprovedAbstractSet", "com.google.common.base.Preconditions", "com.google.javascript.rhino.JSDocInfo", "com.google.javascript.jscomp.parsing.Config", "com.google.common.collect.ImmutableMapValues", "com.google.common.collect.ImmutableEntry", "com.google.common.base.Joiner$1", "com.google.common.base.Joiner$2", "com.google.javascript.rhino.head.Callable", "com.google.javascript.jscomp.parsing.JsDocInfoParser$WhitespaceOption", "com.google.javascript.rhino.head.Token", "com.google.common.collect.ImmutableCollection", "com.google.javascript.rhino.head.debug.Debugger", "com.google.javascript.jscomp.parsing.JsDocInfoParser$State", "com.google.common.collect.ImmutableEnumMap", "com.google.javascript.rhino.head.ClassShutter", "com.google.javascript.rhino.head.ast.ScriptNode", "com.google.javascript.rhino.head.NativeArray", "com.google.javascript.rhino.jstype.EnumElementType", "com.google.javascript.rhino.Node$NumberNode", "com.google.common.collect.ImmutableCollection$Builder", "com.google.common.collect.Iterators$6", "com.google.common.collect.BiMap", "com.google.common.collect.Iterators$7", "com.google.javascript.jscomp.parsing.JsDocInfoParser$ErrorReporterParser", "com.google.javascript.rhino.head.NativeString", "com.google.common.collect.ImmutableSet", "com.google.common.collect.Lists$AbstractListWrapper", "com.google.common.collect.ImmutableMapEntry", "com.google.javascript.rhino.jstype.SimpleSourceFile", "com.google.javascript.rhino.jstype.EnumType", "com.google.common.collect.Iterators$1", "com.google.javascript.rhino.JSDocInfo$TypePosition", "com.google.common.collect.Iterators$2", "com.google.javascript.rhino.jstype.NamespaceType", "com.google.common.collect.Iterators$3", "com.google.javascript.rhino.head.Evaluator", "com.google.javascript.jscomp.parsing.Annotation", "com.google.javascript.rhino.head.ContinuationPending", "com.google.common.collect.Lists$StringAsImmutableList", "com.google.javascript.rhino.head.ast.IdeErrorReporter", "com.google.common.collect.Lists$2", "com.google.javascript.rhino.head.JavaScriptException", "com.google.common.collect.RegularImmutableMap$NonTerminalMapEntry", "com.google.common.collect.Lists$1", "com.google.javascript.rhino.head.TopLevel", "com.google.javascript.rhino.jstype.StaticReference", "com.google.javascript.rhino.jstype.FunctionType$PropAccess", "com.google.common.collect.Multiset", "com.google.common.collect.AbstractMultimap", "com.google.javascript.rhino.head.BaseFunction", "com.google.javascript.jscomp.parsing.JsDocTokenStream", "com.google.common.collect.EmptyImmutableSet", "com.google.common.collect.Maps$ImprovedAbstractMap", "com.google.javascript.rhino.JSDocInfo$NamePosition", "com.google.common.collect.AbstractMapBasedMultimap$SortedAsMap", "com.google.common.collect.ImmutableList", "com.google.common.collect.AbstractMapBasedMultimap$SortedKeySet", "com.google.javascript.rhino.Node$AbstractPropListItem", "com.google.javascript.rhino.jstype.TemplatizedType", "com.google.javascript.jscomp.parsing.Config$LanguageMode", "com.google.javascript.rhino.head.ScriptRuntime$1", "com.google.javascript.rhino.jstype.NoResolvedType", "com.google.common.collect.ImmutableMap$Builder", "com.google.javascript.rhino.head.ConstProperties", "com.google.common.collect.Maps$EntryTransformer", "com.google.javascript.rhino.head.debug.DebuggableScript", "com.google.javascript.rhino.head.RegExpProxy", "com.google.javascript.rhino.JSDocInfo$StringPosition", "com.google.common.collect.Hashing", "com.google.javascript.rhino.head.DefaultErrorReporter", "com.google.common.collect.ImmutableList$SubList", "com.google.javascript.rhino.JSDocInfo$Visibility", "com.google.javascript.rhino.jstype.NoType", "com.google.common.collect.ListMultimap", "com.google.javascript.rhino.head.Script", "com.google.javascript.rhino.head.ScriptRuntime$DefaultMessageProvider", "com.google.common.collect.AbstractMapBasedMultimap$WrappedCollection", "com.google.javascript.rhino.jstype.FunctionParamBuilder", "com.google.common.collect.RegularImmutableList", "com.google.javascript.rhino.head.ast.Comment", "com.google.common.collect.Lists$TransformingRandomAccessList", "com.google.javascript.rhino.head.ScriptableObject$RelinkedSlot", "com.google.javascript.rhino.Node$PropListItem", "com.google.common.collect.Maps$KeySet", "com.google.common.collect.LinkedHashMultimap", "com.google.javascript.rhino.Node", "com.google.javascript.rhino.head.RhinoException", "com.google.javascript.rhino.SourcePosition", "com.google.common.collect.ImmutableMapKeySet", "com.google.javascript.rhino.JSDocInfo$TrimmedStringPosition", "com.google.javascript.jscomp.parsing.NullErrorReporter$NewRhinoNullReporter", "com.google.javascript.rhino.head.ErrorReporter", "com.google.javascript.rhino.head.optimizer.Codegen", "com.google.javascript.jscomp.parsing.NullErrorReporter", "com.google.common.collect.SortedMapDifference", "com.google.common.collect.RegularImmutableSet", "com.google.javascript.rhino.jstype.PropertyMap$1", "com.google.javascript.rhino.head.ast.Scope", "com.google.common.collect.LinkedHashMultimap$ValueEntry", "com.google.javascript.rhino.head.Scriptable", "com.google.javascript.rhino.head.EcmaError", "com.google.javascript.rhino.head.FunctionObject", "com.google.javascript.rhino.jstype.VoidType", "com.google.javascript.rhino.head.NativeContinuation", "com.google.javascript.rhino.jstype.JSType", "com.google.javascript.rhino.head.xml.XMLObject", "com.google.common.collect.ImmutableAsList", "com.google.javascript.rhino.head.xml.XMLLib$Factory", "com.google.common.collect.Sets$SetView", "com.google.common.collect.RegularImmutableAsList", "com.google.common.collect.SingletonImmutableSet", "com.google.javascript.rhino.head.InterpretedFunction", "com.google.common.collect.ImmutableMapEntrySet", "com.google.javascript.rhino.jstype.UnionTypeBuilder", "com.google.javascript.rhino.jstype.RelationshipVisitor", "com.google.javascript.rhino.Node$SideEffectFlags", "com.google.javascript.rhino.jstype.NullType", "com.google.common.collect.Lists$TransformingSequentialList", "com.google.javascript.rhino.head.NativeNumber", "com.google.common.collect.AbstractMapBasedMultimap$AsMap", "com.google.common.collect.ObjectArrays", "com.google.javascript.rhino.jstype.NoObjectType", "com.google.common.collect.AbstractIterator", "com.google.javascript.rhino.jstype.FunctionBuilder", "com.google.javascript.rhino.head.ScriptableObject$GetterSlot", "com.google.common.collect.ImmutableList$1", "com.google.javascript.rhino.head.ScriptRuntime$MessageProvider", "com.google.common.collect.MapDifference", "com.google.common.collect.ImmutableMap$MapViewOfValuesAsSingletonSets", "com.google.javascript.rhino.jstype.ErrorFunctionType", "com.google.javascript.rhino.jstype.FunctionType", "com.google.javascript.rhino.head.ast.FunctionNode", "com.google.javascript.rhino.head.ast.AstNode", "com.google.common.collect.UnmodifiableIterator", "com.google.javascript.rhino.head.ast.ErrorCollector", "com.google.javascript.rhino.head.Context", "com.google.common.collect.AbstractMapBasedMultimap$RandomAccessWrappedList", "com.google.javascript.rhino.jstype.Property", "com.google.javascript.rhino.head.SecurityController", "com.google.javascript.rhino.jstype.CanCastToVisitor", "com.google.javascript.rhino.head.Node", "com.google.javascript.rhino.head.NativeBoolean", "com.google.javascript.rhino.head.ast.Name", "com.google.javascript.rhino.Node$AncestorIterable", "com.google.common.collect.AbstractMapBasedMultimap$KeySet", "com.google.common.collect.Lists$RandomAccessListWrapper", "com.google.common.collect.ImmutableEnumSet", "com.google.common.collect.AbstractMapBasedMultimap$WrappedList", "com.google.javascript.rhino.head.tools.ToolErrorReporter", "com.google.javascript.rhino.head.WrapFactory", "com.google.common.collect.ImmutableList$ReverseImmutableList", "com.google.javascript.rhino.jstype.UnionType", "com.google.common.collect.SingletonImmutableList", "com.google.javascript.rhino.jstype.JSTypeRegistry$1", "com.google.javascript.rhino.jstype.StaticSlot", "com.google.javascript.rhino.head.ContextFactory", "com.google.common.collect.AbstractSetMultimap", "com.google.common.base.Function", "com.google.common.collect.ImmutableMap", "com.google.javascript.rhino.head.VMBridge", "com.google.common.collect.AbstractIndexedListIterator", "com.google.common.collect.Maps$1", "com.google.common.collect.CollectPreconditions", "com.google.common.collect.Sets", "com.google.javascript.rhino.head.Kit", "com.google.javascript.rhino.JSDocInfo$LazilyInitializedInfo", "com.google.javascript.rhino.head.ContextListener", "com.google.javascript.rhino.Node$ObjectPropListItem", "com.google.javascript.rhino.head.jdk15.VMBridge_jdk15", "com.google.javascript.rhino.head.ContextAction", "com.google.javascript.rhino.IR", "com.google.javascript.rhino.head.EvaluatorException", "com.google.javascript.rhino.head.ast.NumberLiteral", "com.google.common.collect.ImmutableList$Builder", "com.google.javascript.jscomp.parsing.JsDocInfoParser$ExtractionInfo", "com.google.javascript.rhino.JSDocInfoBuilder", "com.google.common.collect.Multimap", "com.google.common.collect.Iterators", "com.google.javascript.rhino.head.IdFunctionCall", "com.google.common.collect.ImmutableBiMap", "com.google.javascript.rhino.JSDocInfo$LazilyInitializedDocumentation", "com.google.common.collect.SingletonImmutableBiMap", "com.google.javascript.rhino.head.Interpreter", "com.google.javascript.rhino.jstype.StringType", "com.google.javascript.rhino.head.ImporterTopLevel", "com.google.javascript.rhino.jstype.JSTypeRegistry", "com.google.common.collect.RegularImmutableMap$EntrySet", "com.google.javascript.rhino.head.ScriptRuntime", "com.google.javascript.rhino.jstype.Visitor", "com.google.javascript.rhino.jstype.JSTypeNative", "com.google.javascript.rhino.jstype.AllType", "com.google.common.collect.Maps", "com.google.common.collect.SetMultimap", "com.google.javascript.rhino.head.ContextFactory$GlobalSetter", "com.google.javascript.rhino.head.ast.NodeVisitor", "com.google.javascript.rhino.jstype.FunctionType$Kind", "com.google.javascript.rhino.JSTypeExpression", "com.google.common.collect.Iterators$MergingIterator", "com.google.javascript.rhino.head.ScriptableObject", "com.google.javascript.rhino.head.IdScriptableObject", "com.google.javascript.rhino.head.NativeFunction", "com.google.javascript.rhino.head.NativeObject" ); } private static void resetClasses() { org.evosuite.runtime.classhandling.ClassResetter.getInstance().setClassLoader(JsDocInfoParser_ESTest_scaffolding.class.getClassLoader()); org.evosuite.runtime.classhandling.ClassStateSupport.resetClasses( "com.google.common.collect.ImmutableCollection", "com.google.common.collect.ImmutableSet", "com.google.common.collect.ObjectArrays", "com.google.common.collect.Hashing", "com.google.common.collect.RegularImmutableSet", "com.google.javascript.jscomp.parsing.JsDocInfoParser", "com.google.javascript.jscomp.parsing.JsDocInfoParser$ErrorReporterParser", "com.google.javascript.jscomp.parsing.JsDocInfoParser$ExtractionInfo", "com.google.javascript.jscomp.parsing.JsDocInfoParser$ExtendedTypeInfo", "com.google.common.collect.EmptyImmutableSet", "com.google.javascript.jscomp.parsing.JsDocToken", "com.google.javascript.jscomp.parsing.Config$LanguageMode", "com.google.javascript.jscomp.parsing.JsDocInfoParser$State", "com.google.common.collect.ImmutableMap$Builder", "com.google.common.collect.ImmutableMap", "com.google.common.collect.CollectPreconditions", "com.google.common.collect.AbstractMapEntry", "com.google.common.collect.ImmutableEntry", "com.google.common.collect.ImmutableMapEntry", "com.google.common.collect.ImmutableMapEntry$TerminalEntry", "com.google.common.collect.ImmutableCollection$Builder", "com.google.common.collect.Platform", "com.google.common.collect.RegularImmutableMap", "com.google.common.collect.RegularImmutableMap$NonTerminalMapEntry", "com.google.javascript.jscomp.parsing.Annotation", "com.google.javascript.jscomp.parsing.JsDocInfoParser$1", "com.google.javascript.jscomp.parsing.JsDocInfoParser$WhitespaceOption", "com.google.common.base.CharMatcher$1", "com.google.common.base.CharMatcher$FastMatcher", "com.google.common.base.CharMatcher$13", "com.google.common.base.CharMatcher$RangesMatcher", "com.google.common.base.Preconditions", "com.google.common.base.CharMatcher$2", "com.google.common.base.CharMatcher$3", "com.google.common.base.CharMatcher$4", "com.google.common.base.CharMatcher$5", "com.google.common.base.CharMatcher$6", "com.google.common.base.CharMatcher$Or", "com.google.common.base.CharMatcher$7", "com.google.common.base.CharMatcher$8", "com.google.common.base.CharMatcher$15", "com.google.common.base.CharMatcher", "com.google.javascript.rhino.JSDocInfo$Visibility", "com.google.javascript.jscomp.parsing.JsDocTokenStream", "com.google.javascript.rhino.head.Node", "com.google.javascript.rhino.head.ast.AstNode", "com.google.javascript.rhino.head.ast.Comment", "com.google.javascript.rhino.Node", "com.google.javascript.rhino.Node$StringNode", "com.google.javascript.jscomp.parsing.Config", "com.google.common.collect.ImmutableMapEntrySet", "com.google.common.collect.RegularImmutableMap$EntrySet", "com.google.common.collect.RegularImmutableList", "com.google.common.collect.ImmutableList", "com.google.common.collect.ImmutableAsList", "com.google.common.collect.RegularImmutableAsList", "com.google.common.collect.UnmodifiableIterator", "com.google.common.collect.UnmodifiableListIterator", "com.google.common.collect.Iterators$1", "com.google.common.collect.Iterators$2", "com.google.common.collect.Iterators", "com.google.common.collect.AbstractIndexedListIterator", "com.google.common.collect.Iterators$11", "com.google.javascript.rhino.head.Kit", "com.google.javascript.rhino.head.ContextFactory", "com.google.javascript.rhino.head.ScriptableObject", "com.google.javascript.rhino.head.ScriptRuntime$DefaultMessageProvider", "com.google.javascript.rhino.head.ScriptRuntime", "com.google.javascript.rhino.head.optimizer.Codegen", "com.google.javascript.rhino.head.Icode", "com.google.javascript.rhino.head.Interpreter", "com.google.javascript.rhino.head.Context", "com.google.javascript.rhino.head.jdk13.VMBridge_jdk13", "com.google.javascript.rhino.head.jdk15.VMBridge_jdk15", "com.google.javascript.rhino.head.VMBridge", "com.google.javascript.rhino.Token", "com.google.javascript.rhino.SimpleErrorReporter", "com.google.javascript.rhino.jstype.JSTypeRegistry", "com.google.common.base.Joiner", "com.google.common.base.Joiner$1", "com.google.common.collect.Collections2", "com.google.common.base.Joiner$MapJoiner", "com.google.common.collect.Maps", "com.google.common.collect.AbstractMultimap", "com.google.common.collect.AbstractMapBasedMultimap", "com.google.common.collect.AbstractSetMultimap", "com.google.common.collect.LinkedHashMultimap", "com.google.common.collect.LinkedHashMultimap$ValueEntry", "com.google.common.collect.AbstractListMultimap", "com.google.common.collect.ArrayListMultimap", "com.google.javascript.rhino.jstype.TemplateTypeMap", "com.google.javascript.rhino.jstype.ModificationVisitor", "com.google.javascript.rhino.jstype.TemplateTypeMapReplacer", "com.google.common.collect.Sets", "com.google.common.collect.ImmutableCollection$ArrayBasedBuilder", "com.google.common.collect.ImmutableList$Builder", "com.google.javascript.rhino.jstype.CanCastToVisitor", "com.google.javascript.rhino.jstype.JSType$1", "com.google.javascript.rhino.jstype.JSType", "com.google.javascript.rhino.jstype.ObjectType", "com.google.javascript.rhino.jstype.ProxyObjectType", "com.google.javascript.rhino.jstype.TemplateType", "com.google.javascript.rhino.jstype.ValueType", "com.google.javascript.rhino.jstype.BooleanType", "com.google.javascript.rhino.jstype.NullType", "com.google.javascript.rhino.jstype.NumberType", "com.google.javascript.rhino.jstype.StringType", "com.google.javascript.rhino.jstype.UnknownType", "com.google.javascript.rhino.jstype.VoidType", "com.google.javascript.rhino.jstype.AllType", "com.google.javascript.rhino.jstype.PrototypeObjectType", "com.google.common.collect.ImmutableBiMap", "com.google.common.collect.EmptyImmutableBiMap", "com.google.javascript.rhino.jstype.PropertyMap$1", "com.google.javascript.rhino.jstype.PropertyMap", "com.google.javascript.rhino.jstype.FunctionType", "com.google.javascript.rhino.jstype.FunctionParamBuilder", "com.google.javascript.rhino.Node$AbstractPropListItem", "com.google.javascript.rhino.Node$IntPropListItem", "com.google.javascript.rhino.jstype.ArrowType", "com.google.javascript.rhino.jstype.FunctionType$Kind", "com.google.javascript.rhino.jstype.FunctionType$PropAccess", "com.google.javascript.rhino.jstype.InstanceObjectType", "com.google.javascript.rhino.jstype.Property", "com.google.common.collect.Lists", "com.google.javascript.rhino.jstype.NoObjectType", "com.google.javascript.rhino.jstype.NoType", "com.google.javascript.rhino.jstype.NoResolvedType", "com.google.common.collect.SingletonImmutableList", "com.google.javascript.rhino.jstype.ErrorFunctionType", "com.google.javascript.rhino.jstype.UnionTypeBuilder", "com.google.javascript.rhino.jstype.EquivalenceMethod", "com.google.javascript.rhino.jstype.TemplateTypeMap$EquivalenceMatch", "com.google.javascript.rhino.jstype.UnionType", "com.google.javascript.rhino.jstype.FunctionBuilder", "com.google.javascript.rhino.jstype.JSTypeRegistry$1", "com.google.javascript.rhino.jstype.NamedType", "com.google.javascript.rhino.JSDocInfo", "com.google.javascript.rhino.head.DefaultErrorReporter", "com.google.javascript.rhino.JSDocInfoBuilder", "com.google.javascript.rhino.JSDocInfo$LazilyInitializedDocumentation", "com.google.javascript.rhino.IR", "com.google.javascript.rhino.head.tools.ToolErrorReporter", "com.google.javascript.rhino.Node$FileLevelJsDocBuilder", "com.google.javascript.jscomp.parsing.NullErrorReporter", "com.google.javascript.jscomp.parsing.NullErrorReporter$NewRhinoNullReporter", "com.google.javascript.rhino.JSTypeExpression", "com.google.javascript.rhino.Node$NumberNode", "com.google.javascript.rhino.jstype.EnumType", "com.google.javascript.rhino.jstype.EnumElementType", "com.google.javascript.rhino.head.Node$NodeIterator", "com.google.javascript.rhino.head.ast.ErrorCollector", "com.google.javascript.rhino.head.ast.InfixExpression", "com.google.javascript.rhino.head.ast.ObjectProperty", "com.google.javascript.rhino.head.IdScriptableObject", "com.google.javascript.rhino.head.TopLevel", "com.google.javascript.rhino.head.ImporterTopLevel", "com.google.javascript.rhino.head.ObjArray", "com.google.javascript.rhino.head.ClassCache", "com.google.javascript.rhino.head.BaseFunction", "com.google.javascript.rhino.head.TopLevel$Builtins", "com.google.javascript.rhino.head.UniqueTag", "com.google.javascript.rhino.head.Scriptable", "com.google.javascript.rhino.head.IdScriptableObject$PrototypeValues", "com.google.javascript.rhino.head.IdFunctionObject", "com.google.javascript.rhino.head.ScriptableObject$Slot", "com.google.javascript.rhino.head.NativeObject", "com.google.javascript.rhino.head.ScriptableObject$RelinkedSlot", "com.google.javascript.rhino.head.NativeError", "com.google.javascript.rhino.head.NativeGlobal", "com.google.javascript.rhino.head.Undefined", "com.google.javascript.rhino.head.NativeArray", "com.google.javascript.rhino.head.NativeString", "com.google.javascript.rhino.head.NativeBoolean", "com.google.javascript.rhino.head.NativeNumber", "com.google.javascript.rhino.head.NativeDate", "com.google.javascript.rhino.head.NativeMath", "com.google.javascript.rhino.head.NativeJSON", "com.google.javascript.rhino.head.NativeWith", "com.google.javascript.rhino.head.NativeCall", "com.google.javascript.rhino.head.NativeScript", "com.google.javascript.rhino.head.NativeIterator", "com.google.javascript.rhino.head.NativeGenerator", "com.google.javascript.rhino.head.NativeIterator$StopIteration", "com.google.javascript.rhino.head.xml.XMLLib$Factory", "com.google.javascript.rhino.head.xml.XMLLib$Factory$1", "com.google.javascript.rhino.head.LazilyLoadedCtor", "com.google.javascript.rhino.head.ScriptableObject$GetterSlot", "com.google.javascript.rhino.head.LazilyLoadedCtor$1", "com.google.javascript.rhino.head.regexp.NativeRegExp", "com.google.javascript.rhino.head.FunctionObject", "com.google.javascript.rhino.head.regexp.RECompiled", "com.google.javascript.rhino.head.regexp.CompilerState", "com.google.javascript.rhino.head.regexp.RENode", "com.google.javascript.rhino.head.regexp.NativeRegExpCtor", "com.google.javascript.rhino.head.ast.Jump", "com.google.javascript.rhino.head.ast.Scope", "com.google.javascript.rhino.head.ast.Loop", "com.google.javascript.rhino.head.ast.WhileLoop", "com.google.javascript.rhino.head.ast.ContinueStatement", "com.google.javascript.rhino.Node$ObjectPropListItem", "com.google.javascript.rhino.JSDocInfo$LazilyInitializedInfo", "com.google.javascript.rhino.head.ast.ExpressionStatement", "com.google.javascript.rhino.head.ast.ObjectLiteral", "com.google.javascript.rhino.head.ast.FunctionCall", "com.google.javascript.rhino.head.ast.NewExpression", "com.google.javascript.rhino.head.RhinoException", "com.google.javascript.rhino.head.EvaluatorException", "com.google.javascript.rhino.Node$NodeMismatch", "com.google.javascript.rhino.head.Node$PropListItem", "com.google.common.collect.ImmutableList$ReverseImmutableList", "com.google.javascript.rhino.jstype.SimpleSourceFile", "com.google.javascript.rhino.Node$SideEffectFlags", "com.google.javascript.rhino.head.ast.WithStatement", "com.google.javascript.rhino.head.ast.AstNode$DebugPrintVisitor", "com.google.javascript.rhino.head.Token", "com.google.javascript.rhino.head.NativeArray$3", "com.google.javascript.rhino.head.ast.Name", "com.google.javascript.rhino.head.ast.Label", "com.google.javascript.rhino.head.ast.LabeledStatement", "com.google.javascript.rhino.head.JavaAdapter", "com.google.javascript.rhino.head.Delegator", "com.google.javascript.rhino.head.Synchronizer", "com.google.javascript.rhino.head.ast.GeneratorExpression", "com.google.javascript.rhino.head.ast.UnaryExpression", "com.google.javascript.rhino.InputId", "com.google.javascript.rhino.head.ast.ForLoop", "com.google.javascript.rhino.head.SecurityUtilities", "com.google.javascript.rhino.head.SecurityUtilities$1", "com.google.javascript.rhino.head.ast.ThrowStatement", "com.google.javascript.rhino.head.WrapFactory", "com.google.javascript.rhino.head.SecurityController", "com.google.javascript.rhino.jstype.NamespaceType", "com.google.javascript.rhino.head.EcmaError", "com.google.javascript.rhino.head.ast.ParseProblem", "com.google.javascript.rhino.head.ast.ParseProblem$Type", "com.google.javascript.rhino.head.JavaScriptException", "com.google.javascript.rhino.Node$SiblingNodeIterable", "com.google.javascript.rhino.Node$AncestorIterable", "com.google.javascript.rhino.head.ast.EmptyExpression", "com.google.javascript.rhino.head.ast.XmlRef", "com.google.javascript.rhino.head.ast.XmlElemRef", "com.google.javascript.rhino.head.CompilerEnvirons", "com.google.javascript.rhino.head.Parser", "com.google.javascript.rhino.head.TokenStream", "com.google.javascript.rhino.head.ObjToIntMap", "com.google.javascript.rhino.head.ast.ScriptNode", "com.google.javascript.rhino.head.ast.AstRoot", "com.google.javascript.rhino.head.ast.PropertyGet", "com.google.javascript.rhino.head.AttachJsDocs", "com.google.common.collect.Iterables", "com.google.javascript.rhino.head.ast.Symbol", "com.google.javascript.rhino.head.ast.ElementGet", "com.google.javascript.rhino.head.NativeJavaPackage", "com.google.javascript.rhino.head.WrappedException", "com.google.javascript.rhino.head.NativeJavaObject", "com.google.javascript.rhino.head.NativeJavaClass", "com.google.common.collect.ImmutableList$1", "com.google.javascript.rhino.head.NativeContinuation", "com.google.javascript.rhino.head.ast.SwitchCase", "com.google.javascript.rhino.head.ast.ArrayComprehension", "com.google.javascript.rhino.head.JavaMembers", "com.google.javascript.rhino.head.ast.NumberLiteral", "com.google.javascript.rhino.head.ContextFactory$1", "com.google.javascript.rhino.head.DefiningClassLoader", "com.google.common.collect.Iterators$12", "com.google.javascript.rhino.jstype.TemplatizedType", "com.google.common.collect.AbstractMapBasedMultimap$WrappedCollection", "com.google.common.collect.AbstractMapBasedMultimap$WrappedList", "com.google.common.collect.AbstractMapBasedMultimap$RandomAccessWrappedList", "com.google.common.collect.AbstractMapBasedMultimap$WrappedCollection$WrappedIterator", "com.google.javascript.rhino.head.ast.XmlLiteral", "com.google.javascript.rhino.head.ast.ConditionalExpression", "com.google.javascript.rhino.head.ast.EmptyStatement", "com.google.javascript.rhino.head.MemberBox", "com.google.javascript.rhino.head.Context$2", "com.google.javascript.rhino.jstype.NamedType$PropertyContinuation", "com.google.javascript.rhino.head.NativeFunction", "com.google.javascript.rhino.head.ast.Block", "com.google.javascript.rhino.head.ast.IfStatement", "com.google.javascript.rhino.head.ast.XmlPropRef", "com.google.javascript.rhino.head.ast.Assignment", "com.google.javascript.rhino.head.ast.BreakStatement", "com.google.javascript.rhino.head.ast.ArrayLiteral", "org.mozilla.classfile.ClassFileWriter", "org.mozilla.classfile.ConstantPool", "com.google.javascript.rhino.head.UintMap", "org.mozilla.classfile.ClassFileMethod", "org.mozilla.classfile.FieldOrMethodRef", "com.google.javascript.rhino.head.PolicySecurityController", "com.google.javascript.rhino.head.JavaAdapter$2", "com.google.javascript.rhino.head.tools.shell.Global", "com.google.javascript.rhino.head.tools.shell.Environment", "com.google.javascript.rhino.head.ast.XmlFragment", "com.google.javascript.rhino.head.ast.XmlString", "com.google.javascript.rhino.head.ast.ReturnStatement", "com.google.javascript.rhino.head.ast.LetNode", "com.google.javascript.rhino.head.IRFactory", "com.google.javascript.rhino.head.Decompiler", "com.google.javascript.rhino.head.NodeTransformer", "com.google.javascript.rhino.head.optimizer.OptTransformer", "org.mozilla.classfile.ClassFileField", "com.google.javascript.rhino.head.optimizer.BodyCodegen", "com.google.javascript.rhino.head.optimizer.BodyCodegen$ExceptionManager", "com.google.javascript.rhino.head.PolicySecurityController$1", "com.google.javascript.rhino.head.PolicySecurityController$Loader", "com.google.javascript.rhino.head.Parser$ParserException", "com.google.javascript.rhino.head.ast.VariableInitializer", "com.google.javascript.rhino.head.Context$1", "com.google.javascript.rhino.head.ast.ErrorNode", "com.google.javascript.rhino.head.v8dtoa.FastDtoa", "com.google.javascript.rhino.head.v8dtoa.FastDtoaBuilder", "com.google.javascript.rhino.head.v8dtoa.DoubleHelper", "com.google.javascript.rhino.head.v8dtoa.DiyFp", "com.google.javascript.rhino.head.v8dtoa.CachedPowers$CachedPower", "com.google.javascript.rhino.head.v8dtoa.CachedPowers", "com.google.javascript.rhino.head.ast.ForInLoop", "com.google.javascript.rhino.head.ast.ArrayComprehensionLoop", "com.google.javascript.rhino.head.ast.GeneratorExpressionLoop", "com.google.javascript.rhino.head.NativeJavaArray", "com.google.javascript.rhino.head.ContextFactory$1GlobalSetterImpl", "com.google.javascript.rhino.head.ast.FunctionNode", "com.google.javascript.rhino.head.ast.FunctionNode$Form", "com.google.common.collect.AbstractMultimap$Values", "com.google.common.collect.AbstractMapBasedMultimap$Itr", "com.google.common.collect.AbstractMapBasedMultimap$1", "com.google.common.collect.Multimaps$Entries", "com.google.common.collect.AbstractMultimap$Entries", "com.google.common.collect.AbstractMapBasedMultimap$2", "com.google.javascript.rhino.head.ast.DoLoop", "com.google.javascript.rhino.head.ast.Yield", "com.google.javascript.rhino.head.ast.CatchClause", "com.google.javascript.rhino.head.ast.RegExpLiteral", "com.google.javascript.rhino.head.ast.XmlMemberGet", "com.google.javascript.rhino.head.ast.StringLiteral", "com.google.javascript.rhino.jstype.BooleanLiteralSet", "com.google.javascript.rhino.jstype.TernaryValue", "com.google.javascript.rhino.jstype.JSType$2", "com.google.javascript.rhino.jstype.JSType$TypePair", "com.google.javascript.rhino.jstype.JSTypeNative", "com.google.javascript.rhino.JSDocInfo$Marker", "com.google.javascript.rhino.SourcePosition", "com.google.javascript.rhino.JSDocInfo$StringPosition", "com.google.javascript.rhino.JSDocInfo$TrimmedStringPosition" ); } }
[ "pouria.derakhshanfar@gmail.com" ]
pouria.derakhshanfar@gmail.com
123b2bd0eca13718fe06d099e3675cbfa28da445
7d3e265fe678f28aaae7228e65453c3169b8d94a
/src/com/xu/tiny/entity/token/NumToken.java
c51ef8f3eafe24d947280a04955eb02c57092cc8
[]
no_license
MyHerux/tiny
94bd186d57fc7043978d66d7a2d7850932f833a7
6d2db924eb67e9e20632d84a0676361dd53356ea
refs/heads/master
2021-01-23T05:04:18.962023
2017-07-07T07:31:15
2017-07-07T07:31:15
92,952,096
0
0
null
null
null
null
UTF-8
Java
false
false
403
java
package com.xu.tiny.entity.token; /** * 数字类型 */ public class NumToken extends Token { private int value; public NumToken(int lineNo, int val) { super(lineNo); value=val; } @Override public boolean isNumber() { return true; } @Override public String getText() { return value+""; } public int getValue(){return value;} }
[ "heroxu123@gmail.com" ]
heroxu123@gmail.com
6f529478414456c28146d63e268d52d1af8c159b
ac8710a10b89be519fe65c56e69694bf3b857646
/src/controller/wizard/classes/phases/Phase.java
5b2523ec1508c0bb6409f9388ac1965b972b56f5
[]
no_license
mikizas011/APOU
52bb92daade191b4a4feb0abe6e6b41a02b63d77
e598a62705586340c6817f8ab7e74b2562937007
refs/heads/master
2021-01-10T06:40:09.516428
2015-11-04T22:49:58
2015-11-04T22:49:58
43,670,113
0
0
null
null
null
null
UTF-8
Java
false
false
430
java
package controller.wizard.classes.phases; public class Phase { private int idPlan; private int fase; public Phase(int idPlan){ this.setIdPlan(idPlan); this.setFase(fase); } public int getIdPlan() { return idPlan; } public void setIdPlan(int idPlan) { this.idPlan = idPlan; } public int getFase() { return fase; } public void setFase(int fase) { this.fase = fase; } }
[ "mikizas@opendeusto.es" ]
mikizas@opendeusto.es
042b7dd573003e0758a22bff387cc9bf97f86326
1faa836a7d01d1a7b35773f15b02d0f8c9f2db03
/app/src/main/java/com/djxiao/cityselecteddemo/CityBean.java
3d42b2002f9643130e9832f446f655dca480f319
[]
no_license
seside/CitySelectedDemo
f564bfd9724eb9dba1ea8516b06221b7f63d45f8
e13a911d064df1f6723caf852c8d64c401bb9c24
refs/heads/master
2021-01-21T17:53:35.341151
2016-08-10T08:54:10
2016-08-10T08:54:10
65,993,442
2
0
null
2016-08-18T11:59:06
2016-08-18T11:59:06
null
UTF-8
Java
false
false
434
java
package com.djxiao.cityselecteddemo; /** * @author djxiao * @create 2016/8/10 13:59 * @DESC */ public class CityBean { public String cityName; public String cityPinyin; public String cityFirstPinyin; public CityBean(String cityName,String firstPinYin,String cityFirstPinyin){ this.cityName = cityName; this.cityFirstPinyin = firstPinYin; this.cityFirstPinyin = cityFirstPinyin; } }
[ "935589211@qq.com" ]
935589211@qq.com
80ceaadb6e78a67d0ea28c234a5264042608e770
91a57408437a63d835d7cac58fdb3db48c382166
/springframeworkguru-mssc-brewery/src/main/java/com/springframeworkguru/springframeworkgurumsscbrewery/web/model/BeerDto.java
bb7a2a38b550b677777812ccfd46513e1ae17d7a
[]
no_license
Manjinder50/springframeworkguru-mssc-brewery
f924223e5ac4ff8befc54ee6bf9316d4ef8b7c61
8a49b94c1c2b3f1f2f0c0921b0d17120a97f3f89
refs/heads/master
2021-02-16T02:26:48.871633
2020-03-08T23:42:13
2020-03-08T23:42:13
244,957,362
0
0
null
null
null
null
UTF-8
Java
false
false
392
java
package com.springframeworkguru.springframeworkgurumsscbrewery.web.model; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import java.util.UUID; @Data @NoArgsConstructor @AllArgsConstructor @Builder public class BeerDto { private UUID id; private String beerName; private String beerStyle; private Long upc; }
[ "manjinderbharaj50@gmail.com" ]
manjinderbharaj50@gmail.com
229e789da5eee4a2b22732440498f1041f81a5f1
43324b583bd3d6af9bffab0a83a741bbaef6ca2a
/app/src/main/java/com/OsMoDroid/Channel.java
2c54c4b283373a51f83663dd1c80690910f4c8bd
[]
no_license
sirmmo/OsMoDroid
0690599cda96f17e0a290ffcc8ddb19c2388c0e7
c5bd6b907ee57c839eb6216790441626ed3f705b
refs/heads/TLS
2021-01-21T06:18:25.154102
2017-02-25T11:56:35
2017-02-25T11:56:35
83,205,304
1
0
null
2017-02-26T12:00:55
2017-02-26T12:00:55
null
UTF-8
Java
false
false
10,620
java
package com.OsMoDroid; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.InputStream; import java.io.Serializable; import java.text.ParseException; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Date; import java.util.List; import java.util.Locale; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import org.osmdroid.views.overlay.PathOverlay; import com.OsMoDroid.ColoredGPX.Statuses; import com.OsMoDroid.Netutil.InitTask; import android.graphics.Color; import android.graphics.Paint; import android.location.Address; import android.os.AsyncTask; import android.provider.Settings.Global; import android.util.Log; public class Channel implements Serializable, ResultsListener { public ArrayList<ColoredGPX> gpxList = new ArrayList<ColoredGPX>(); public String name; public String description; public String myNameInGroup; public int u; public int gu; public String created; public String group_id; public String url; public List<Device> deviceList = new ArrayList<Device>(); public List<ChatMessage> messagesstringList = new ArrayList<ChatMessage>(); public boolean send = false; public int type=0; public boolean chatconnected = false; ArrayList<Point> pointList = new ArrayList<Channel.Point>(); File sdDir = android.os.Environment.getExternalStorageDirectory(); File fileName = new File(sdDir, "OsMoDroid/channelsgpx/"); public Channel() { } public void updChannel(JSONObject jo) { this.name = jo.optString("name"); this.u = jo.optInt("u"); this.created = jo.optString("created"); this.group_id = jo.optString("id"); this.url = "https://osmo.mobi/g/" + jo.optString("url"); this.myNameInGroup = jo.optString("nick"); this.gu=jo.optInt("gu"); this.type=jo.optInt("type"); if (jo.optInt("active") == 1) { this.send = true; } else { this.send = false; } JSONArray users = jo.optJSONArray("users"); ArrayList<Device> recieveddeviceList = new ArrayList<Device>(); for (int i = 0; i < users.length(); i++) { JSONObject jsonObject; try { jsonObject = users.getJSONObject(i); try { Device dev = new Device(jsonObject.getInt("u"), jsonObject.getString("name"), jsonObject.getString("color"),jsonObject.getInt("state")); if (jsonObject.has("lat") && jsonObject.has("lon")) { dev.lat = Float.parseFloat(jsonObject.getString("lat")); dev.lon = Float.parseFloat(jsonObject.getString("lon")); } dev.updatated= 1000*jsonObject.optLong("time"); //dev.updatated=System.currentTimeMillis(); IM.getDevtrace(jsonObject,dev); recieveddeviceList.add(dev); } catch (NumberFormatException e) { Log.d(getClass().getSimpleName(), "Wrong device info"); e.printStackTrace(); } } catch (JSONException e) { e.printStackTrace(); } } this.deviceList.retainAll(recieveddeviceList); for (Device dev : this.deviceList) { dev.color = recieveddeviceList.get(recieveddeviceList.indexOf(dev)).color; dev.name = recieveddeviceList.get(recieveddeviceList.indexOf(dev)).name; dev.updatated=recieveddeviceList.get(recieveddeviceList.indexOf(dev)).updatated; dev.lat=recieveddeviceList.get(recieveddeviceList.indexOf(dev)).lat; dev.lon=recieveddeviceList.get(recieveddeviceList.indexOf(dev)).lon; dev.state=recieveddeviceList.get(recieveddeviceList.indexOf(dev)).state; dev.online=recieveddeviceList.get(recieveddeviceList.indexOf(dev)).online; } recieveddeviceList.removeAll(this.deviceList); this.deviceList.addAll(recieveddeviceList); Collections.sort(this.deviceList); JSONArray points = jo.optJSONArray("point"); if (points != null) { this.pointList.clear(); for (int i = 0; i < points.length(); i++) { JSONObject jsonObject; try { jsonObject = points.getJSONObject(i); this.pointList.add(new Point(jsonObject)); } catch (JSONException e) { e.printStackTrace(); } } } JSONArray tracks = jo.optJSONArray("track"); if (tracks != null) { ArrayList<ColoredGPX> recievedgpxList = new ArrayList<ColoredGPX>(); for (int i = 0; i < tracks.length(); i++) { JSONObject jsonObject; try { jsonObject = tracks.getJSONObject(i); fileName.mkdirs(); Log.d(getClass().getSimpleName(), "filename=" + fileName); recievedgpxList.add(new ColoredGPX(jsonObject.getInt("u"), new File(sdDir, "OsMoDroid/channelsgpx/" + jsonObject.getString("u") + ".gpx"), jsonObject.getString("color"), jsonObject.getString("url"))); } catch (JSONException e) { e.printStackTrace(); } } gpxList.retainAll(recievedgpxList); recievedgpxList.removeAll(gpxList); gpxList.addAll(recievedgpxList); for (ColoredGPX cgpx : gpxList) { if (cgpx.status == ColoredGPX.Statuses.EMPTY) { cgpx.status = Statuses.DOWNLOADING; Netutil.downloadfile(this, cgpx.url, cgpx); } else if (cgpx.status == ColoredGPX.Statuses.DOWNLOADED) { cgpx.initPathOverlay(); } } } } @Override public boolean equals(Object o) { if ((o instanceof Channel) && this.u == ((Channel) o).u) { return true; } else { return false; } } @Override public String toString() { return name; } public void getPointList(JSONArray jsonArray) { pointList.clear(); for (int i = 0; i < jsonArray.length(); i++) { try { pointList.add(new Point(jsonArray.getJSONObject(i))); } catch (JSONException e) { e.printStackTrace(); } } } @Override public void onResultsSucceeded(APIComResult result) { Log.d(getClass().getSimpleName(), "download result=" + result.load); result.load.initPathOverlay(); } static class Point implements Serializable { int u; float lat; float lon; String name; String description; String color; int clusterid=0; String url=""; String time; Paint paint; Point() { name = ""; description = ""; url=""; } Point(JSONObject json) throws JSONException { u = json.getInt("u"); lat = Float.parseFloat(json.getString("lat")); lon = Float.parseFloat(json.getString("lon")); description = json.optString("description"); color = json.optString("color"); name = json.getString("name"); url=json.optString("url"); time= OsMoDroid.sdf.format(new Date(json.optLong("time")*1000)); } } }
[ "fokin_denis@mail.ru" ]
fokin_denis@mail.ru
a1f69e88d3b4ecff77dd47f24ab825f0b21dc0f0
15f0514701a78e12750f68ba09d68095172493ee
/Java/114.java
264ed0c5cd26d81b52d80da80bbcfdf21b229856
[ "MIT" ]
permissive
strengthen/LeetCode
5e38c8c9d3e8f27109b9124ae17ef8a4139a1518
3ffa6dcbeb787a6128641402081a4ff70093bb61
refs/heads/master
2022-12-04T21:35:17.872212
2022-11-30T06:23:24
2022-11-30T06:23:24
155,958,163
936
365
MIT
2021-11-15T04:02:45
2018-11-03T06:47:38
null
UTF-8
Java
false
false
2,037
java
__________________________________________________________________________________________________ sample 0 ms submission /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ class Solution { TreeNode prev; public void flatten(TreeNode root) { //base case if(root == null){ return; } prev = null; //run it in recursion pre-order flattenTree(root); } //Function to flatten tree with pre-order traversal public void flattenTree(TreeNode current){ if(current == null){ return; } //start addiing current to the right of the prev if(prev != null){ prev.right = current; prev.left = null; } prev = current; //get all nodes form left --> right and add to the prev TreeNode right = current.right; flattenTree(current.left); flattenTree(right); } } __________________________________________________________________________________________________ sample 34252 kb submission /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ // 04/03/2019 // Runtime: 0 ms, beat 100% class Solution { public void flatten(TreeNode root) { if (root == null) { return; } flattenHelper(root, new TreeNode[] {null}); } private void flattenHelper(TreeNode root, TreeNode[] prev) { if (root == null) { return; } flattenHelper(root.right, prev); flattenHelper(root.left, prev); root.right = prev[0]; root.left = null; prev[0] = root; } } __________________________________________________________________________________________________
[ "strengthen@users.noreply.github.com" ]
strengthen@users.noreply.github.com
e0cae84891f8999f9aa963b77a4b42cd3bcf9d14
fb9c267d863f7e74244b75560f3f23434daba450
/src/View.java
b41994d8d99d8ad34050f22d30854d7e7381cfee
[]
no_license
trainingNamchuk/TrainingJavaWeb
e1c420b78fca890fa36f80784bc42f0f7234b9a9
4462ab31694067401231d7075f06b3574e8c9ae0
refs/heads/master
2021-01-11T10:11:31.368464
2016-11-09T12:14:04
2016-11-09T12:14:04
72,426,421
0
0
null
null
null
null
UTF-8
Java
false
false
2,038
java
import java.util.ArrayList; /** * Created by Svitlana Namchuk on 02.11.2016. */ public class View { // Text's constants public static final String GREETING = "Welcome to the game!\nWe have picked a number between 0 and 100, try to guess it, we wish you good luck!;)"; public static final String CHANGE_BARRIER = "If you want to set your own barriers press Y, otherwise N"; public static final String INPUT = "Please, enter your number"; public static final String INPUT_MIN_BARRIER ="Enter min barrier"; public static final String INPUT_MAX_BARRIER ="Enter max barrier"; public static final String WRONG_INPUT = "Please, enter only integer numbers!"; public static final String WRONG_RANGE_DATA = "Wrong range! Repeat please! "; public static final String NUMBER_IS_SMALLER = "The number is smaller than "; public static final String NUMBER_IS_BIGGER = "The number is bigger than "; public static final String RANGE_FROM = "The number is in range from "; public static final String RANGE_TO = "..."; public static final String CONGRATULATION = "Congratulations! You won!"; public static final String STATISTICS = "N User_number From To"; View() { printMessage(GREETING); } public void printMessage(String message) { System.out.println(message); } /** * Method for concatenation strings and printing them out * * @param message * - from 1 to ... */ public void printMessage(String... message) { StringBuilder concatString = new StringBuilder(); for (String v : message) { concatString = concatString.append(v); } printMessage(new String(concatString)); } /** * Method for printing user`s statistic * * @param statistics * ArraList for output */ public void printResult(ArrayList<Integer> statistics) { System.out.println(STATISTICS); for (int i = 0; i < statistics.size(); i += 4) { System.out.println(statistics.get(i) + "\t" + statistics.get((i + 1)) + "\t" + statistics.get((i + 2)) + "\t" + statistics.get((i + 3))); } } }
[ "wild.rose050@gmail.com" ]
wild.rose050@gmail.com
23e66878743ae8ba5cf455a33603b15efe0fd6ef
2ac6a11309d4d3e9864d69c72273eadefb0fbe9e
/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/work/Catalina/localhost/ROOT/org/apache/jsp/WEB_002dINF/view/ocr/ImageFileUpload_jsp.java
5a337e8cc111624636a324636165ac41b4ff1d85
[]
no_license
ChoiYoungHa/first_Spring
5a7404fab4ebfb7dbcb9a6f13ce0aab36ce22a66
4f5faecdd8b31d96c7e8f9b9d385fb557538f63c
refs/heads/master
2023-01-07T16:00:42.379710
2020-11-10T10:44:22
2020-11-10T10:44:22
303,319,603
0
0
null
null
null
null
UTF-8
Java
false
false
5,541
java
/* * Generated by the Jasper component of Apache Tomcat * Version: Apache Tomcat/8.5.57 * Generated at: 2020-10-19 02:33:39 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.view.ocr; import javax.servlet.*; import javax.servlet.http.*; import javax.servlet.jsp.*; public final class ImageFileUpload_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; 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 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() { } public void _jspDestroy() { } 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, "JSP들은 오직 GET, POST 또는 HEAD 메소드만을 허용합니다. Jasper는 OPTIONS 메소드 또한 허용합니다."); 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("\r\n"); out.write("<!DOCTYPE html>\r\n"); out.write("<html>\r\n"); out.write("<head>\r\n"); out.write("<meta charset=\"UTF-8\">\r\n"); out.write("<title>이미지로부터 텍스트를 인식하기 위한 업로드 페이지</title>\r\n"); out.write("</head>\r\n"); out.write("<body>\r\n"); out.write("<h2>이미지 인식</h2>\r\n"); out.write("<hr/>\r\n"); out.write("<form name=\"form1\" method=\"post\" enctype=\"multipart/form-data\" action=\"/ocr/getReadforImageText.do\">\r\n"); out.write("\t<br />\r\n"); out.write("\t이미지 파일 업로드 : <input type=\"file\" name=\"fileUpload\" />\r\n"); out.write("\t<br />\r\n"); out.write("\t<br />\r\n"); out.write("\t<input type=\"submit\" value=\"전송\" />\r\n"); out.write("</form>\r\n"); out.write("</body>\r\n"); out.write("</html>"); } 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); } } }
[ "askillofgod159@naver.com" ]
askillofgod159@naver.com
d1028e759bca7a202dbe68cdf675a165fec6f1b8
6514036f57f916718070af39598b60d4a495f387
/WorkSpace/07_inheritance/src/ex12_abstract/Rectangle.java
5678695a5fe48de61d0254dfe0bf4dda22e51670
[]
no_license
ehtjd4893/javastudy
968f981a2da16918643913a487c9a2d07553627e
644d3c5033eb83e30528812ca6342b12d6023df1
refs/heads/main
2023-03-27T19:43:16.496601
2021-03-31T08:36:34
2021-03-31T08:36:34
347,885,772
0
0
null
null
null
null
UTF-8
Java
false
false
583
java
package ex12_abstract; public class Rectangle extends Shape { private int width; private int height; public Rectangle(int width, int height) { super(); this.width = width; this.height = height; } @Override public void info() { System.out.println("직사각형: "+getArea()); } @Override public double getArea() { return width*height; } public int getWidth() { return width; } public void setWidth(int width) { this.width = width; } public int getHeight() { return height; } public void setHeight(int height) { this.height = height; } }
[ "nsop4893@gmail.com" ]
nsop4893@gmail.com
8b9399c7adfe479b8905284c38e9636ba5062e39
9294686c6773b507979daac84b996c1e9a995167
/src/main/java/by/sashnikov/jfuture/model/Movie.java
60900b49c0daba86f16c5a78503ee630f2570b6c
[]
no_license
ilywka/movie-analytics
efd0332df102db3ce96480f227ab71deae9ff539
56ffc27745acf08b23f53338105f7426fd936cf9
refs/heads/master
2021-07-11T22:06:09.759814
2019-11-13T19:10:02
2019-11-13T19:10:02
221,273,536
0
0
null
2020-11-17T14:05:58
2019-11-12T17:25:45
Java
UTF-8
Java
false
false
1,149
java
package by.sashnikov.jfuture.model; import java.time.Year; import java.util.Objects; /** * @author Ilya_Sashnikau */ public class Movie { public final String link; public final Year year; public final Genre genre; public final Country country; public final Double rating; public Movie(String link, Year year, Genre genre, Country country) { this.link = link; this.year = year; this.genre = genre; this.country = country; this.rating = null; } public Movie(String link, Double rating) { this.link = link; this.rating = rating; this.year = null; this.genre = null; this.country = null; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof Movie)) { return false; } Movie movie = (Movie) o; return Objects.equals(link, movie.link) && Objects.equals(year, movie.year) && genre == movie.genre && country == movie.country && Objects.equals(rating, movie.rating); } @Override public int hashCode() { return Objects.hash(link, year, genre, country, rating); } }
[ "Ilya_Sashnikau@epam.com" ]
Ilya_Sashnikau@epam.com
a5704867c81d67a220403bde63fac999ad6dce59
347c6e03ca9fa5d681d880ee05f9db99f106f962
/src/main/java/de/chrthms/hmation/logic/devices/shutter/DefaultFeedbackRequestedListener.java
78f3f022dab6d4e3918a1e3691712fe66364f26a
[ "Apache-2.0" ]
permissive
Chris81T/hmation-logic
6bfb648365f9f088d401e122b48357e2b6215c44
62a84f1b62779ad51e86677847ae3cb0725a5fb6
refs/heads/master
2020-12-07T07:20:48.278447
2016-10-19T14:01:24
2016-10-19T14:01:24
67,072,494
0
0
null
null
null
null
UTF-8
Java
false
false
656
java
package de.chrthms.hmation.logic.devices.shutter; import org.camunda.bpm.engine.delegate.DelegateExecution; import org.camunda.bpm.engine.delegate.JavaDelegate; import static de.chrthms.hmation.logic.ProcessConstants.VAR_FEEDBACK_REQUESTED; /** * Created by christian on 15.10.16. */ public class DefaultFeedbackRequestedListener implements JavaDelegate { @Override public void execute(DelegateExecution execution) throws Exception { Object feedbackRequested = execution.getVariable(VAR_FEEDBACK_REQUESTED); if (feedbackRequested == null) { execution.setVariable(VAR_FEEDBACK_REQUESTED, false); } } }
[ "christian@chr-thomas.de" ]
christian@chr-thomas.de
ea4d5f2f191491f62b68eb765c419ad4e80503d4
4dbdd2d08abbf44150406370d986f931b351580c
/app/src/main/java/com/eaglerobotics/reconalpha/byMatchComparator.java
d4f17ac6d2e89073411dcb5b46d468171b2c103c
[]
no_license
thetomk/recon2015
de28016d3051c5717f1257febee6e4dd030b5073
20265d52dd4f5ad8f1c2bb120c061efd70248a24
refs/heads/master
2020-05-16T20:08:45.362920
2015-03-15T20:43:40
2015-03-15T20:43:40
30,138,084
1
0
null
null
null
null
UTF-8
Java
false
false
627
java
package com.eaglerobotics.reconalpha; import java.util.Comparator; import com.eaglerobotics.reconalpha.DynamoDBManager.TeamMatch; public class byMatchComparator implements Comparator<TeamMatch> { public int compare(TeamMatch p1, TeamMatch p2) { // int val1 = p1.getMatchNum().compareTo(p2.getMatchNum()); int val1 = (Integer.parseInt(p2.getMatchNum())>Integer.parseInt(p1.getMatchNum()) ? 1 : (Integer.parseInt(p1.getMatchNum())==Integer.parseInt(p2.getMatchNum()) ? 0 : -1)); if (val1 == 0) { return p1.getTeamNum().compareTo(p2.getTeamNum()); } else { return val1; } } }
[ "tom.kotlarek@gmail.com" ]
tom.kotlarek@gmail.com
cd751d1da889f9d9665668c4ac02a7eb6429c2f7
95a1d31c0eb7da21a9b3c9ef12619833d4ab2175
/wlhytestapp/src/main/java/com/quark/wanlihuanyunuser/AppYidaoActivity.java
42e9eae422c567b9f0922fe2d3ad84827a82eccc
[]
no_license
leonck/testtest
aba45553559716e8ad8342215a56783dcec334fa
c06885d28d60473c4c5dbee581de4252024cd305
refs/heads/master
2020-12-02T23:52:57.236224
2017-07-03T10:30:29
2017-07-03T10:30:29
95,955,840
0
0
null
null
null
null
UTF-8
Java
false
false
7,279
java
//package com.quark.kuaishi; // // //import android.app.Activity; //import android.content.Intent; //import android.content.SharedPreferences; //import android.content.SharedPreferences.Editor; //import android.os.Bundle; //import android.support.v4.view.PagerAdapter; //import android.support.v4.view.ViewPager; //import android.support.v4.view.ViewPager.OnPageChangeListener; //import android.util.Log; //import android.view.LayoutInflater; //import android.view.View; //import android.widget.ImageView; //import android.widget.TextView; // //import com.quark.kuaishi.ui.userinfo.LoginActivity; //import com.umeng.analytics.MobclickAgent; // //import java.util.ArrayList; // // //public class AppYidaoActivity extends Activity{ // private int pos = 0; // private int maxPos = 0; // private int currentPageScrollStatus; // // int height; // ////////// // private ArrayList<View> listViews = null; // private ViewPager pager; // private MyPageAdapter adapter; // ImageView rightrig; // TextView shop_text; // TextView order_text; // TextView terminal_number_text; // TextView id_text; // TextView goods_name; // TextView number; // int[] ids; // // TextView go; // @Override // public void onCreate(Bundle savedInstanceState) { // super.onCreate(savedInstanceState); // setContentView(R.layout.start_yindao); //// System.out.println(ApplicationControl.isFirstIn+"============s=========================="); // SharedPreferences sp1 = getSharedPreferences(AppParam.SHAREDPREFERENCESKEY, MODE_PRIVATE); // //判断是不是首次登录, // if(sp1.getBoolean("firststart", true)) { // Editor editjb = sp1.edit(); // //将登录标志位设置为false,下次登录时不在显示首次登录界面 // editjb.putBoolean("firststart", false); // editjb.commit(); // maxPos = 4; // ids = new int[4]; // ids[0] = R.drawable.yd_1; // ids[1] = R.drawable.yd_2; // ids[2] = R.drawable.yd_3; // ids[3] = R.drawable.yd_4; // init(); // go = (TextView)findViewById(R.id.go); // go.setOnClickListener(new View.OnClickListener() { // @Override // public void onClick(View v) { // Intent intent = new Intent(); // intent.setClass(AppYidaoActivity.this, LoginActivity.class); // startActivity(intent); // finish(); // } // }); // }else{ // Intent intent = new Intent(); // intent.setClass(AppYidaoActivity.this, AppStart.class); // startActivity(intent); // finish(); // } // } // // public void init(){ // pager = (ViewPager) findViewById(R.id.viewpager); // 找到ViewPager // pager.setOnPageChangeListener(pageChangeListener); // 设置页面滑动监听 // // initListViews();// // // adapter = new MyPageAdapter(listViews);// 构造adapter // pager.setAdapter(adapter);// 设置适配器 // adapter.notifyDataSetChanged();// 刷新 // } // // private void initListViews() { // if (listViews == null) // listViews = new ArrayList<View>(); // for (int i = 0; i < 4; i++) { // View view = LayoutInflater.from(getApplicationContext()).inflate(R.layout.yidao_item, null); // ImageView ig = (ImageView)view.findViewById(R.id.pic); // ig.setImageDrawable(getResources().getDrawable(ids[i])); //// view.setBackgroundDrawable(getResources().getDrawable(ids[i])); // listViews.add(view); // } // } // // /** // * 页面监听事件 // */ // private OnPageChangeListener pageChangeListener = new OnPageChangeListener() { // // @Override // public void onPageSelected(int position) { // // 切换page设置当前position值 // pos = position; // } // // @Override // public void onPageScrolled(int position, float positionOffset, // int positionOffsetPixels) { // // if (pos == 0) { // // 如果offsetPixels是0页面也被滑动了,代表在第一页还要往左划 // if (positionOffsetPixels == 0 && currentPageScrollStatus == 1) { // Log.e("e", "===============在第一页还要往左划========"); // } // } else if (pos == (maxPos - 1)) { // // 已经在最后一页还想往右划 // if (positionOffsetPixels == 0 && currentPageScrollStatus == 1) { // Log.e("e", "=================最后一页还想往右划============"); //// if(ApplicationControl.isFirstIn){ //// ApplicationControl.isFirstIn = false; //// Log.e("e", "=================最后一页还想往右划111111111111111111============"); //// Intent intent = new Intent(); //// intent.setClass(AppYidaoActivity.this, MainTabActivity.class); //// startActivity(intent); //// finish(); //// } // } // } // } // boolean hl = false; // public void onPageScrollStateChanged(int arg0) {// 滑动状态改变 // // 有三种状态(0,1,2)。arg0 // // ==1的时辰默示正在滑动,arg0==2的时辰默示滑动完毕了 // System.out.println("滑动状态改变"); // // 记录page滑动状态,如果滑动了state就是1 // currentPageScrollStatus = arg0; // // // 只有一张的时候 //// if (maxPos == 1) { //// Log.e("e", "=================只有一张============"); //// ApplicationControl.isFirstIn = false; //// Intent intent = new Intent(); //// intent.setClass(AppYidaoActivity.this, MainTabActivity.class); //// startActivity(intent); //// finish(); //// } // } // }; // // // /** // * ViewPager适配器 // * // * @author zhou // * // */ // class MyPageAdapter extends PagerAdapter { // // private ArrayList<View> listViews;// content // // private int size;// 页数 // // public MyPageAdapter(ArrayList<View> listViews) {// 构造函数 // // 初始化viewpager的时候给的一个页面 // this.listViews = listViews; // size = listViews == null ? 0 : listViews.size(); // // } // // public void setListViews(ArrayList<View> listViews) {// 自己写的一个方法用来添加数据 // this.listViews = listViews; // size = listViews == null ? 0 : listViews.size(); // } // // @Override // public int getCount() {// 返回数量 // return size; // } // // @Override // public void destroyItem(View arg0, int arg1, Object arg2) {// 销毁view对象 // ((ViewPager) arg0).removeView(listViews.get(arg1 % size)); // } // // @Override // public void finishUpdate(View arg0) { // } // // @Override // public Object instantiateItem(View arg0, int arg1) {// 返回view对象 // try { // ((ViewPager) arg0).addView(listViews.get(arg1 % size), 0); // } catch (Exception e) { // Log.e("zhou", "exception:" + e.getMessage()); // } // return listViews.get(arg1 % size); // } // // @Override // public boolean isViewFromObject(View arg0, Object arg1) { // return arg0 == arg1; // } // // @Override // public int getItemPosition(Object object) { // return POSITION_NONE; // } // } // @Override // protected void onPause() { // JPushInterface.onPause(this); // MobclickAgent.onPause(this); // // super.onPause(); // } // @Override // protected void onResume() { // super.onResume(); // JPushInterface.onResume(this); // MobclickAgent.onResume(this); // // } // } // // // // // // // // // //
[ "271381658@qq.com" ]
271381658@qq.com
3511e42cfb4199a5020757f933a385be6344f9d1
fbee4bfc3be02a91731e90945788ddeeb78f0142
/dialect/src/main/java/net/digitalid/database/dialect/expression/SQLExpression.java
308b76f97a6d88653862601234e916210d637a54
[ "Apache-2.0" ]
permissive
synacts/digitalid-database
a906262902c1e0a595dd5bbbdd1aa26bc1f57fe8
9208e4276026874e2b2f08879bb2c59d5eaa6aa1
refs/heads/development
2021-09-19T07:39:08.992544
2018-03-06T13:26:39
2018-03-06T13:42:35
113,372,630
1
3
Apache-2.0
2018-05-23T13:08:49
2017-12-06T22:12:18
Java
UTF-8
Java
false
false
3,347
java
/* * Copyright (C) 2017 Synacts GmbH, Switzerland (info@synacts.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.digitalid.database.dialect.expression; import javax.annotation.Nonnull; import net.digitalid.utility.annotations.method.Pure; import net.digitalid.utility.validation.annotations.type.Immutable; import net.digitalid.database.dialect.SQLNode; import net.digitalid.database.dialect.expression.bool.SQLBooleanExpression; import net.digitalid.database.dialect.expression.bool.SQLExpressionInSelectionBooleanExpression; import net.digitalid.database.dialect.expression.bool.SQLExpressionInSelectionBooleanExpressionBuilder; import net.digitalid.database.dialect.expression.bool.SQLExpressionIsNotNullBooleanExpression; import net.digitalid.database.dialect.expression.bool.SQLExpressionIsNotNullBooleanExpressionBuilder; import net.digitalid.database.dialect.expression.bool.SQLExpressionIsNullBooleanExpression; import net.digitalid.database.dialect.expression.bool.SQLExpressionIsNullBooleanExpressionBuilder; import net.digitalid.database.dialect.expression.number.SQLNumberExpression; import net.digitalid.database.dialect.expression.string.SQLStringExpression; import net.digitalid.database.dialect.statement.select.SQLSelectStatement; /** * All SQL expressions implement this interface. * * @see SQLBooleanExpression * @see SQLNumberExpression * @see SQLStringExpression * * @see SQLUnaryExpression * @see SQLBinaryExpression * @see SQLVariadicExpression * * @see SQLLiteral */ @Immutable public interface SQLExpression extends SQLNode { /* -------------------------------------------------- Nullability -------------------------------------------------- */ /** * Returns a boolean expression which checks that this expression is null. */ @Pure public default @Nonnull SQLExpressionIsNullBooleanExpression isNull() { return SQLExpressionIsNullBooleanExpressionBuilder.withExpression(this).build(); } /** * Returns a boolean expression which checks that this expression is not null. */ @Pure public default @Nonnull SQLExpressionIsNotNullBooleanExpression isNotNull() { return SQLExpressionIsNotNullBooleanExpressionBuilder.withExpression(this).build(); } /* -------------------------------------------------- Selection -------------------------------------------------- */ /** * Returns a boolean expression which checks that this expression is in the result set of the given select statement. */ @Pure public default @Nonnull SQLExpressionInSelectionBooleanExpression in(@Nonnull SQLSelectStatement selectStatement) { return SQLExpressionInSelectionBooleanExpressionBuilder.withExpression(this).withSelection(selectStatement).build(); } }
[ "kaspar.etter@digitalid.net" ]
kaspar.etter@digitalid.net
26e2be1b30506279b80c57562cc2cbc74f4c2b37
0a0dc7870109730066dcca787ffd8562f44186d0
/core/src/main/java/org/bitcoinj/wallet/WalletFiles.java
b69bd4b55fd7ea2b9840369c2a6c0e0fef9b5d11
[]
no_license
Xplatforms/wallet
8c937b6514bbf11ebc487ce185f8295e043e2a30
74571876e396b00f2231aff62e142e4884fd5daa
refs/heads/taler-customization
2020-03-31T09:22:52.050865
2018-10-10T15:20:39
2018-10-10T15:20:39
152,093,659
0
1
null
2018-10-10T15:20:40
2018-10-08T14:27:14
Java
UTF-8
Java
false
false
6,798
java
/* * Copyright 2013 Google Inc. * Copyright 2014 Andreas Schildbach * * 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.bitcoinj.wallet; import com.google.common.base.Stopwatch; import org.bitcoinj.core.Utils; import org.bitcoinj.utils.ContextPropagatingThreadFactory; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.File; import java.io.IOException; import java.util.Date; import java.util.concurrent.Callable; import java.util.concurrent.ScheduledThreadPoolExecutor; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicBoolean; import javax.annotation.Nonnull; import static com.google.common.base.Preconditions.checkNotNull; /** * A class that handles atomic and optionally delayed writing of the wallet file to disk. In future: backups too. * It can be useful to delay writing of a wallet file to disk on slow devices where disk and serialization overhead * can come to dominate the chain processing speed, i.e. on Android phones. By coalescing writes and doing serialization * and disk IO on a background thread performance can be improved. */ public class WalletFiles { private static final Logger log = LoggerFactory.getLogger(WalletFiles.class); private final Wallet wallet; private final ScheduledThreadPoolExecutor executor; private final File file; private final AtomicBoolean savePending; private final long delay; private final TimeUnit delayTimeUnit; private final Callable<Void> saver; private volatile Listener vListener; /** * Implementors can do pre/post treatment of the wallet file. Useful for adjusting permissions and other things. */ public interface Listener { /** * Called on the auto-save thread when a new temporary file is created but before the wallet data is saved * to it. If you want to do something here like adjust permissions, go ahead and do so. */ void onBeforeAutoSave(File tempFile); /** * Called on the auto-save thread after the newly created temporary file has been filled with data and renamed. */ void onAfterAutoSave(File newlySavedFile); } /** * Initialize atomic and optionally delayed writing of the wallet file to disk. Note the initial wallet state isn't * saved automatically. The {@link Wallet} calls {@link #saveNow()} or {@link #saveLater()} as wallet state changes, * depending on the urgency of the changes. */ public WalletFiles(final Wallet wallet, File file, long delay, TimeUnit delayTimeUnit) { // An executor that starts up threads when needed and shuts them down later. this.executor = new ScheduledThreadPoolExecutor(1, new ContextPropagatingThreadFactory("Wallet autosave thread", Thread.MIN_PRIORITY)); this.executor.setKeepAliveTime(5, TimeUnit.SECONDS); this.executor.allowCoreThreadTimeOut(true); this.executor.setExecuteExistingDelayedTasksAfterShutdownPolicy(false); this.wallet = checkNotNull(wallet); // File must only be accessed from the auto-save executor from now on, to avoid simultaneous access. this.file = checkNotNull(file); this.savePending = new AtomicBoolean(); this.delay = delay; this.delayTimeUnit = checkNotNull(delayTimeUnit); this.saver = new Callable<Void>() { @Override public Void call() throws Exception { // Runs in an auto save thread. if (!savePending.getAndSet(false)) { // Some other scheduled request already beat us to it. return null; } Date lastBlockSeenTime = wallet.getLastBlockSeenTime(); log.info("Background saving wallet; last seen block is height {}, date {}, hash {}", wallet.getLastBlockSeenHeight(), lastBlockSeenTime != null ? Utils.dateTimeFormat(lastBlockSeenTime) : "unknown", wallet.getLastBlockSeenHash()); saveNowInternal(); return null; } }; } /** * The given listener will be called on the autosave thread before and after the wallet is saved to disk. */ public void setListener(@Nonnull Listener listener) { this.vListener = checkNotNull(listener); } /** * Actually write the wallet file to disk, using an atomic rename when possible. Runs on the current thread. */ public void saveNow() throws IOException { // Can be called by any thread. However the wallet is locked whilst saving, so we can have two saves in flight // but they will serialize (using different temp files). Date lastBlockSeenTime = wallet.getLastBlockSeenTime(); log.info("Saving wallet; last seen block is height {}, date {}, hash {}", wallet.getLastBlockSeenHeight(), lastBlockSeenTime != null ? Utils.dateTimeFormat(lastBlockSeenTime) : "unknown", wallet.getLastBlockSeenHash()); saveNowInternal(); } private void saveNowInternal() throws IOException { final Stopwatch watch = Stopwatch.createStarted(); File directory = file.getAbsoluteFile().getParentFile(); File temp = File.createTempFile("wallet", null, directory); final Listener listener = vListener; if (listener != null) listener.onBeforeAutoSave(temp); wallet.saveToFile(temp, file); if (listener != null) listener.onAfterAutoSave(file); watch.stop(); log.info("Save completed in {}", watch); } /** * Queues up a save in the background. Useful for not very important wallet changes. */ public void saveLater() { if (savePending.getAndSet(true)) return; // Already pending. executor.schedule(saver, delay, delayTimeUnit); } /** * Shut down auto-saving. */ public void shutdownAndWait() { executor.shutdown(); try { executor.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS); // forever } catch (InterruptedException x) { throw new RuntimeException(x); } } }
[ "gladiator1988@gmail.com" ]
gladiator1988@gmail.com
121383a26f207726b6efa152577ffa1548202cf4
2a81eed573dc2a30473ae8b6da9539e4a2f96fd5
/MultiModuleInteraction/interface/src/main/java/com/example/aninterface/delegate/IActionDelegate.java
e3274c419d59c23662675c00653d96e085d6ffd4
[]
no_license
WDY159/MultiModuleInteraction
0de94b06d7dcef696b23e1c4ee63a81375889e47
24163a85e31d87ab11decb421ea4d6895aecaa34
refs/heads/master
2021-06-24T22:23:52.830995
2017-09-10T04:27:16
2017-09-10T04:27:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
665
java
package com.example.aninterface.delegate; import android.os.Bundle; /** * 代码块(Action)接口协议,可以触发其他Module开放的功能性接口 * * Created by wangdan on 17/1/7. */ public interface IActionDelegate { /** * * @param args * @param callback 请Module之间根据协议,回调这4个状态做相应的业务处理 */ void runAction(Bundle args, IActionCallback callback, Object... extras); interface IActionCallback { void onActionPrepare(); void onActionSuccess(Object... result); void onActionFailed(int code, String message); void onActionFinished(); } }
[ "leigao@tcl.com" ]
leigao@tcl.com
f9d89dc95ec78e31e10601400e79c1c9d934cfce
2ebbdf7a79dd7410e34e37711aba3941c1edbb35
/aBMI_29/app/src/main/java/com/example/bmi/MainActivity.java
b6605312bcb5c4b0b167b6ede7f64b443a30a47e
[]
no_license
PurinWang/Android_example
2625b71adb67d0c3b217e220ff37f66beed3e88e
cd27aa4ecaf68fae22c6ee04a461f41437c82166
refs/heads/master
2022-11-10T06:34:00.464318
2020-06-26T09:28:36
2020-06-26T09:28:36
273,688,670
0
0
null
null
null
null
UTF-8
Java
false
false
6,319
java
package com.example.bmi; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import java.text.DecimalFormat; import android.app.AlertDialog; import android.content.DialogInterface; import android.content.Intent; import android.content.SharedPreferences; import android.net.Uri; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.View.OnClickListener; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.Button; import android.widget.EditText; import android.widget.Spinner; import android.widget.TextView; import android.widget.Toast; import com.example.bmi.R; public class MainActivity extends AppCompatActivity { private Button calcbutton; private Spinner field_feet,field_inch; private EditText fieldweight; private TextView view_result; private TextView view_suggest; protected static final int MENU_ABOUT = Menu.FIRST; protected static final int MENU_QUIT = Menu.FIRST+1; private String PRFF = "BMI_PREF"; private String PREF_Height = "BMI_HEIGHT"; private String PREF_Weight = "BMI_WEIGHT"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); findViews(); setListeners(); } @Override protected void onPause() { super.onPause(); SharedPreferences settings = getSharedPreferences(PRFF,0); // settings.edit().putString(PREF_Height,fieldheight.getText().toString()).commit(); settings.edit().putString(PREF_Weight,fieldweight.getText().toString()).commit(); } private void findViews(){ calcbutton = (Button)findViewById(R.id.submit); field_feet = (Spinner)findViewById(R.id.feet); field_inch = findViewById(R.id.inch); fieldweight = (EditText)findViewById(R.id.weight); view_result = (TextView)findViewById(R.id.result); view_suggest = (TextView)findViewById(R.id.suggest); ArrayAdapter <CharSequence> adapter_ft = ArrayAdapter.createFromResource(this,R.array.feets,android.R.layout.simple_spinner_dropdown_item); field_feet.setAdapter(adapter_ft); ArrayAdapter <CharSequence> adapter_inch = ArrayAdapter.createFromResource(this,R.array.inches,android.R.layout.simple_spinner_item); field_inch.setAdapter(adapter_inch); } //Listen for button clicks private void setListeners(){ calcbutton.setOnClickListener(calcBMI); field_feet.setOnItemSelectedListener(getFeet); field_inch.setOnItemSelectedListener(getInch); } private int feet; private int inch; private Spinner.OnItemSelectedListener getFeet = new Spinner.OnItemSelectedListener() { public void onItemSelected(AdapterView parent, View v, int position, long id) { feet = parent.getSelectedItemPosition()+2; } public void onNothingSelected(AdapterView parent) { } }; private Spinner.OnItemSelectedListener getInch = new Spinner.OnItemSelectedListener() { public void onItemSelected(AdapterView parent, View v, int position, long id) { inch = parent.getSelectedItemPosition()+1; } public void onNothingSelected(AdapterView parent) { } }; private Button.OnClickListener calcBMI = new Button.OnClickListener() { public void onClick(View v) { DecimalFormat nf = new DecimalFormat("0.00"); try { double height = (feet*12+inch)*2.54/100; double weight = Double.parseDouble(fieldweight.getText().toString())*0.45359; double BMI = weight / (height * height); //Present result view_result.setText(getText(R.string.bmi_result) + nf.format(BMI)); //Give health advice if(BMI > 27) { view_suggest.setText(R.string.advice_fat); } else if(BMI > 25) { view_suggest.setText(R.string.advice_heavy); } else if(BMI < 20) { view_suggest.setText(R.string.advice_light); } else { view_suggest.setText(R.string.advice_average); } } catch(Exception obj) { Toast.makeText(MainActivity.this, getString(R.string.input_error), Toast.LENGTH_SHORT).show(); } } }; private void openOptionsDialog() { Toast.makeText(MainActivity.this, "BMI 計算器", Toast.LENGTH_SHORT).show(); new AlertDialog.Builder(MainActivity.this) .setTitle(R.string.about_title) .setMessage(R.string.about_msg) .setPositiveButton("確認", new DialogInterface.OnClickListener(){ public void onClick( DialogInterface dialoginterface, int i){ } }) .setNegativeButton(R.string.homepage_label, new DialogInterface.OnClickListener(){ public void onClick(DialogInterface dialoginterface, int i){ //Home Page Uri uri = Uri.parse("http://tw.yahoo.com/"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent); } }) .show(); } @Override public boolean onCreateOptionsMenu(Menu menu) { // TODO Auto-generated method stub menu.add(0, MENU_ABOUT, 0, "關於...").setIcon(android.R.drawable.ic_menu_help); menu.add(0, MENU_QUIT, 0, "結束").setIcon(android.R.drawable.ic_menu_close_clear_cancel); return super.onCreateOptionsMenu(menu); } @Override public boolean onOptionsItemSelected(@NonNull MenuItem item) { // TODO Auto-generated method stub switch(item.getItemId()) { case MENU_ABOUT: openOptionsDialog(); break; case MENU_QUIT: finish(); break; } return super.onOptionsItemSelected(item); } }
[ "wsm1214@gmail.com" ]
wsm1214@gmail.com
f65f978e4cbd53889173ddc110be6bc7379b0d7a
0b3d4b95de6f3ead20dbf09f3ab2b821eda0b752
/src/com/bridgelabz/fooddeliverysystem/FoodItem.java
e85da6e6de36ae279a9c8bb574c51469678c7c5e
[]
no_license
ktritesh/Food-Delivery-System
00fd2bde03b1ff558da1d4486e073dc274d4ed38
179f88c84d10a7c8ea06b5e2d7832ea8b05e5ceb
refs/heads/master
2023-06-11T09:28:06.200293
2021-07-08T14:37:41
2021-07-08T14:37:41
378,842,541
0
0
null
null
null
null
UTF-8
Java
false
false
555
java
package com.bridgelabz.fooddeliverysystem; public class FoodItem { enum Taste { SALTY, SWEET, SPICY, SOUR } enum Category { STARTER, MAIN_COURSE, DESSERT, JUICES } String foodname; int price; Taste taste; Category foodCategory; @Override public String toString() { return "FoodItem{" + "foodname='" + foodname + '\'' + ", price=" + price + ", taste=" + taste + ", foodCategory=" + foodCategory + '}'; } }
[ "ktriesh7@gmail.com" ]
ktriesh7@gmail.com
34dff28a23a2493b0700aa23922cd2ae3c755db2
0d3f69e7d2d800c1b80454e914d0610eb3421b58
/EventListeners/app/src/androidTest/java/android/comm/eventlisteners/ApplicationTest.java
e8dcc86bce9efbc8ad2da142290c866c48fc8771
[]
no_license
thevarungupta1/Android-Training-Demos
336efecee4083c0cb89c4666e373ead194c1f38b
7ebfde0f439aeaf5b403e2727b7c7d03dd6b74d3
refs/heads/master
2021-01-11T10:31:41.206188
2016-12-18T13:49:30
2016-12-18T13:49:30
76,372,911
0
0
null
null
null
null
UTF-8
Java
false
false
358
java
package android.comm.eventlisteners; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { super(Application.class); } }
[ "thevarungupta1@gmail.com" ]
thevarungupta1@gmail.com
33acac8e2879fe19beffded3ea3f833c0fbd7692
4c9db3a7217ff30648508a8768e6d4253b95e758
/chat_client/ua/gajdamaka/Telnet.java
85890af77918025e0175b1c55cb2eb1a97d134b0
[]
no_license
SkunSHD/training_vova
57f8b7bcfd0b614929d286826cdff0228ed6762d
8a76c74ae86c768bd45d368b836a16b62d9744ae
refs/heads/master
2021-01-18T17:36:06.512138
2014-04-07T18:31:22
2014-04-07T18:31:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
164
java
package ua.gajdamaka; import ua.gajdamaka.client.*; public class Telnet { public static void main(String[] args) { ClientChat client = new ClientChat(); } }
[ "gaydamaka.vov@gmail.com" ]
gaydamaka.vov@gmail.com
d47cf185dfed527310058eac574a7132531a864d
6fc0bdbb13fb3395779aa83a33716a344110ea18
/src/main/java/org/jpac/ExclusiveDisjunctiveEvent.java
66575be9fd0f7543570280e434a067176e69d1d5
[]
no_license
mskgmbh/elbfisch
26c50564aad4a7dc150ee2b173e4ba5a6a0abe91
4bc45cfb358ebfe0bde4c982246acac5b76116c2
refs/heads/EblfischV3.1
2022-10-16T03:36:30.930604
2022-02-01T08:31:59
2022-02-01T08:31:59
5,852,767
3
1
null
2022-09-15T03:36:03
2012-09-18T07:25:20
Java
UTF-8
Java
false
false
3,489
java
/** * PROJECT : Elbfisch - java process automation controller (jPac) * MODULE : ExclusiveDisjunctiveEvent.java * VERSION : - * DATE : - * PURPOSE : * AUTHOR : Bernd Schuster, MSK Gesellschaft fuer Automatisierung mbH, Schenefeld * REMARKS : - * CHANGES : CH#n <Kuerzel> <datum> <Beschreibung> * * This file is part of the jPac process automation controller. * jPac is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * jPac is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with the jPac If not, see <http://www.gnu.org/licenses/>. */ package org.jpac; import java.util.Iterator; import java.util.ArrayList; /** * used to combine a number events in a exclusive disjunctive way. It is fired, if "process event 1" XOR "process event 2" XOR .... are fired * @author berndschuster */ public class ExclusiveDisjunctiveEvent extends ProcessEvent{ private ArrayList<ProcessEvent> combinedEvents; Iterator<ProcessEvent> eventIterator; public ExclusiveDisjunctiveEvent(ProcessEvent anEvent){ combinedEvents = new ArrayList<ProcessEvent>(10); combinedEvents.add(anEvent); } @Override public ExclusiveDisjunctiveEvent xor(ProcessEvent anEvent){ combinedEvents.add(anEvent); return this; } @Override public void reset(){ //reset own context super.reset(); //reset all conjunctive events Iterator<ProcessEvent> e = combinedEvents.iterator(); while(e.hasNext()){ e.next().reset(); } } @Override public boolean fire() throws ProcessException { int fireCnt = 0; boolean IamFired = false; eventIterator = combinedEvents.iterator(); //give all events the chance to fire while(eventIterator.hasNext()){ if (eventIterator.next().evaluateFiredCondition()){ fireCnt++; } } IamFired = fireCnt == 1; if (!IamFired){ //reset all events, which are fired in this cycle, if it is not exactly one eventIterator = combinedEvents.iterator(); while(eventIterator.hasNext()){ ProcessEvent event = eventIterator.next(); if (event.isFired()){ event.reset(); } } } return IamFired; } @Override public String toString(){ String eventList = ""; String firedStr = ""; ProcessEvent e = null; eventIterator = combinedEvents.iterator(); if (eventIterator.hasNext()){ e = eventIterator.next(); firedStr = e.isFired() ? "[fired !]" : ""; eventList = e.toString() + firedStr; } while(eventIterator.hasNext()){ e = eventIterator.next(); firedStr = e.isFired() ? "[fired !]" : ""; eventList = eventList + " xor " + e.toString() + firedStr; } return eventList; } }
[ "schuster@mskgmbh.com" ]
schuster@mskgmbh.com
33fe71aea0b5a942d769b3b3eb928c588a9997a2
718d78fd6c06d96a26422a9475b96cb564d7d634
/src/basic_java/str/sort/GroupByIndexCount.java
76898f01470342623eae3d51a56386eaca043e6e
[]
no_license
wjmzmmd/cs_algo
cbb937c70fcc97fc83b974fb1eca7df3f5ecb8d1
34db817de56dcee38536882d66f93b8c7e665c79
refs/heads/master
2020-06-11T10:31:35.267892
2016-12-08T04:08:04
2016-12-08T04:08:04
75,692,566
0
0
null
null
null
null
UTF-8
Java
false
false
446
java
package basic_java.str.sort; /** * Created by qin on 16-12-2. */ public class GroupByIndexCount { Elem[] a; Elem[] aux; int[] count; int N; /** 组数在[0,R)之间 */ int R; GroupByIndexCount(Elem[] a, int R){ this.a = a; this.R = R; N = a.length; Elem[] aux = new Elem[N]; count = new int[R]; } class Elem{ int groupId; String name; } }
[ "qinxue@heika.com" ]
qinxue@heika.com
0beeb007e9213c48a449c53d939beb117c611c1a
b5994463a66b120f0cc4216969fd1bb8984d70bc
/de.jwic.core/src/de/jwic/base/Page.java
5fdcd38ab7c9377cb3a73db8ac942b441569207c
[]
no_license
ApipA/jWic
456daa18f51b8149a0d03fb73f507d53c596e450
ee4ca1437ab487781eb8ff41c69db4bc4d14edd4
refs/heads/master
2020-12-29T19:04:02.641070
2015-04-19T09:28:39
2015-04-19T09:28:39
38,554,727
0
0
null
2015-07-05T08:54:59
2015-07-05T02:56:54
Java
UTF-8
Java
false
false
5,293
java
/* * Copyright 2005 jWic group (http://www.jwic.de) * * 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. * * de.jwic.base.Page * $Id: Page.java,v 1.3 2009/08/09 19:32:49 lordsam Exp $ */ package de.jwic.base; import java.util.ArrayList; import java.util.Collections; import java.util.List; import de.jwic.events.IPageListener; import de.jwic.events.PageEvent; /** * A Page is a control container that is displayed as a root control. * @author Florian Lippisch * @version $Revision: 1.3 $ */ public class Page extends ControlContainer { private static final long serialVersionUID = 6009335074727417445L; private Dimension pageSize = new Dimension(); private int clientTop = 0; private int clientLeft = 0; private String title = null; private String forceFocusElement = ""; private boolean multipart = false; private List<IPageListener> listeners = Collections.synchronizedList(new ArrayList<IPageListener>()); protected enum EventType { PAGE_SIZE_CHANGED } /** * @param container */ public Page(IControlContainer container) { super(container); title = getControlID(); } /** * @param container * @param name */ public Page(IControlContainer container, String name) { super(container, name); title = getControlID(); } /** * Searches for the root page of the specified control by * iterating up the control hierachy until it reaches the end. * Return <code>null</code> if the root element is not a Page. * * @param control * @return */ public static Page findPage(IControl control) { IControlContainer container = control.getContainer(); Object o = control; while (container instanceof ControlContainer) { ControlContainer cc = (ControlContainer)container; container = cc.getContainer(); o = cc; } if (container instanceof SessionContext) { if (o instanceof Page) { return (Page)o; } } return null; } /** * Add a IPageListener. * @param pageListener */ public void addPageListener(IPageListener pageListener) { listeners.add(pageListener); } /** * Remove a pageListener. * @param pageListener */ public void removePageListener(IPageListener pageListener) { listeners.remove(pageListener); } /** * Fire a new page event. * @param type * @param event */ protected void fireEvent(EventType type, PageEvent event) { IPageListener[] lst = new IPageListener[listeners.size()]; lst = listeners.toArray(lst); for (IPageListener listener : lst) { switch (type) { case PAGE_SIZE_CHANGED: listener.pageSizeChanged(event); break; } } } /** * @return Returns the title. */ public String getTitle() { return title; } /** * @param title The title to set. */ public void setTitle(String title) { this.title = title; } /** * @return Returns the clientHeight. * @deprecated use getPageSize().height */ public int getClientHeight() { return pageSize.height; } /** * @return Returns the clientLeft. */ public int getClientLeft() { return clientLeft; } /** * @param clientLeft The clientLeft to set. */ public void setClientLeft(int clientLeft) { this.clientLeft = clientLeft; } /** * @return Returns the clientTop. */ public int getClientTop() { return clientTop; } /** * @param clientTop The clientTop to set. */ public void setClientTop(int clientTop) { this.clientTop = clientTop; } /** * @return Returns the clientWidth. * @deprecated Use getPageSize().width */ public int getClientWidth() { return pageSize.width; } /** * @return Returns the multipart. */ public boolean isMultipart() { return multipart; } /** * Set to true if the data on the page should be submited using multipart encoding. * This is required to handle file uploads. * @param multipart The multipart to set. */ public void setMultipart(boolean multipart) { this.multipart = multipart; requireRedraw(); } /** * @return Returns the forceFocusElement. */ public String getForceFocusElement() { return forceFocusElement; } /** * @param forceFocusElement The forceFocusElement to set. */ public void setForceFocusElement(String forceFocusElement) { this.forceFocusElement = forceFocusElement; } /** * @param page The page to get the client width and height from . */ public void setClientSettings(Page page) { // Fix for request id 1388862 setPageSize(page.getPageSize()); } /** * @return the pageSize */ public Dimension getPageSize() { return pageSize; } /** * @param pageSize the pageSize to set */ public void setPageSize(Dimension pageSize) { if (!this.pageSize.equals(pageSize)) { this.pageSize = pageSize; fireEvent(EventType.PAGE_SIZE_CHANGED, new PageEvent(this, pageSize)); } } }
[ "daniel@beamgau.com" ]
daniel@beamgau.com
5526a4ac523dd34f780dd5c8a81807a93fb0da78
3f6eb33329c47757256a549b538fb526d482f6f6
/src/main/java/com/adambates/wikisearch/search/querying/factories/IndexReaderFactory.java
86b9f823497d9bfc79d5bc6a8fe270bd5fb2c38f
[ "MIT" ]
permissive
adam-bates/wikisearch
d1b4726d4ec1b36317b70ddf0b7f9cd86df88cf4
3965f39904d2d0e101ef3eacae78b791172fc6d0
refs/heads/master
2022-09-17T20:40:24.845494
2022-09-03T14:05:17
2022-09-03T14:05:17
247,239,101
1
0
MIT
2022-09-03T14:05:18
2020-03-14T08:24:42
Java
UTF-8
Java
false
false
598
java
package com.adambates.wikisearch.search.querying.factories; import com.adambates.wikisearch.search.factories.DirectoryFactory; import lombok.AllArgsConstructor; import org.apache.lucene.index.DirectoryReader; import org.apache.lucene.index.IndexReader; import org.springframework.stereotype.Component; import java.io.IOException; @Component @AllArgsConstructor public class IndexReaderFactory { private final DirectoryFactory directoryFactory; public IndexReader createIndexReader() throws IOException { return DirectoryReader.open(directoryFactory.createDirectory()); } }
[ "adam@adambates.ca" ]
adam@adambates.ca
cda48e5e0e1876032f1db5a35e5318d3949b0ab9
1e634baf6bbe28c510378e23c5a2131455190946
/src/main/java/com/appraisers/app/assignments/utils/AssignmentUtils.java
9c1be1385d840d9384346380be3550b8e3af19ac
[]
no_license
luis08/appraisers
c719df3b117c6fa73b9bfc023ed5fbc30b779786
52ba6b012195dd5a3bcade53ffcbd2a38918c877
refs/heads/master
2023-01-20T16:21:34.758935
2020-06-25T23:09:16
2020-06-25T23:09:16
236,187,615
0
0
null
2023-01-07T14:06:48
2020-01-25T15:22:55
CSS
UTF-8
Java
false
false
7,991
java
package com.appraisers.app.assignments.utils; import com.appraisers.app.assignments.domain.AssignmentRequestBase; import com.appraisers.app.assignments.dto.AssignmentRequestDto; import com.appraisers.app.assignments.dto.utils.DtoUtils; import org.apache.logging.log4j.util.Strings; import java.text.ParseException; import java.text.SimpleDateFormat; import java.time.LocalDateTime; import java.time.ZoneId; import java.time.ZonedDateTime; import java.util.Objects; public class AssignmentUtils { public static final String US_EASTERN = "US/Eastern"; public static void populate(AssignmentRequestDto dto, AssignmentRequestBase assignmentRequestBase) throws ParseException { assignmentRequestBase.setAccountNumber(dto.getAccountNumber()); assignmentRequestBase.setAdjusterEmail(dto.getAdjusterEmail()); assignmentRequestBase.setAdjusterFirstName(dto.getAdjusterFirstName()); assignmentRequestBase.setAdjusterLastName(dto.getAdjusterLastName()); assignmentRequestBase.setAdjusterPhone(dto.getAdjusterPhone()); assignmentRequestBase.setClaimantAddress1(dto.getClaimantAddress1()); assignmentRequestBase.setClaimantAddress2(dto.getClaimantAddress2()); assignmentRequestBase.setClaimantCity(dto.getClaimantCity()); assignmentRequestBase.setClaimantEmail(dto.getClaimantEmail()); assignmentRequestBase.setClaimantFirst(dto.getClaimantFirst()); assignmentRequestBase.setClaimantLast(dto.getClaimantLast()); assignmentRequestBase.setClaimantPhone(dto.getClaimantPhone()); assignmentRequestBase.setClaimantState(dto.getClaimantState()); assignmentRequestBase.setClaimantZip(dto.getClaimantZip()); assignmentRequestBase.setClaimNumber(dto.getClaimNumber()); assignmentRequestBase.setCompanyAddress1(dto.getCompanyAddress1()); assignmentRequestBase.setCompanyAddress2(dto.getCompanyAddress2()); assignmentRequestBase.setCompanyCity(dto.getCompanyCity()); assignmentRequestBase.setCompanyName(dto.getCompanyName()); assignmentRequestBase.setCompanyState(dto.getCompanyState()); assignmentRequestBase.setCompanyZip(dto.getCompanyZip()); if (Strings.isNotEmpty(dto.getDateOfLoss())) { assignmentRequestBase.setDateOfLoss(new SimpleDateFormat("yyyy-MM-dd").parse(dto.getDateOfLoss())); } if (Strings.isNotEmpty(dto.getDeductibleAmount())) { assignmentRequestBase.setDeductibleAmount(dto.getDeductibleAmount()); } assignmentRequestBase.setInsuredClaimantSameAsOwner(DtoUtils.parseOrNull(dto.getInsuredClaimantSameAsOwner())); assignmentRequestBase.setInsuredOrClaimant(dto.getInsuredOrClaimant()); assignmentRequestBase.setIsRepairFacility(DtoUtils.parseOrNull(dto.getIsRepairFacility())); assignmentRequestBase.setLicense(dto.getLicense()); assignmentRequestBase.setLicenseState(dto.getLicenseState()); assignmentRequestBase.setLossDescription(dto.getLossDescription()); assignmentRequestBase.setMake(dto.getMake()); assignmentRequestBase.setModel(dto.getModel()); assignmentRequestBase.setPolicyNumber(dto.getPolicyNumber()); assignmentRequestBase.setProvideAcvEvaluation(DtoUtils.parseOrNull(dto.getProvideAcvEvaluation())); assignmentRequestBase.setProvidesCopyOfAppraisal(DtoUtils.parseOrNull(dto.getProvidesCopyOfAppraisal())); assignmentRequestBase.setRequestSalvageBids(DtoUtils.parseOrNull(dto.getRequestSalvageBids())); if (Objects.isNull(dto.getTypeOfLoss())) { assignmentRequestBase.setTypeOfLoss("Unknown"); } else { assignmentRequestBase.setTypeOfLoss(dto.getTypeOfLoss()); } assignmentRequestBase.setValuationMethod(dto.getValuationMethod()); assignmentRequestBase.setVehicleLocationAddress1(dto.getVehicleLocationAddress1()); assignmentRequestBase.setVehicleLocationAddress2(dto.getVehicleLocationAddress2()); assignmentRequestBase.setVehicleLocationCity(dto.getVehicleLocationCity()); assignmentRequestBase.setVehicleLocationName(dto.getVehicleLocationName()); assignmentRequestBase.setVehicleLocationPhone(dto.getVehicleLocationPhone()); assignmentRequestBase.setVehicleLocationState(dto.getVehicleLocationState()); assignmentRequestBase.setVehicleLocationZip(dto.getVehicleLocationZip()); assignmentRequestBase.setVin(dto.getVin()); assignmentRequestBase.setYear(dto.getYear()); } public static void copy(AssignmentRequestBase source, AssignmentRequestBase target) { target.setAccountNumber(source.getAccountNumber()); target.setAdjusterEmail(source.getAdjusterEmail()); target.setAdjusterFirstName(source.getAdjusterFirstName()); target.setAdjusterLastName(source.getAdjusterLastName()); target.setAdjusterPhone(source.getAdjusterPhone()); target.setClaimantAddress1(source.getClaimantAddress1()); target.setClaimantAddress2(source.getClaimantAddress2()); target.setClaimantCity(source.getClaimantCity()); target.setClaimantEmail(source.getClaimantEmail()); target.setClaimantFirst(source.getClaimantFirst()); target.setClaimantLast(source.getClaimantLast()); target.setClaimantPhone(source.getClaimantPhone()); target.setClaimantState(source.getClaimantState()); target.setClaimantZip(source.getClaimantZip()); target.setClaimNumber(source.getClaimNumber()); target.setCompanyAddress1(source.getCompanyAddress1()); target.setCompanyAddress2(source.getCompanyAddress2()); target.setCompanyCity(source.getCompanyCity()); target.setCompanyName(source.getCompanyName()); target.setCompanyState(source.getCompanyState()); target.setCompanyZip(source.getCompanyZip()); target.setDateOfLoss(source.getDateOfLoss()); if (Strings.isNotEmpty(source.getDeductibleAmount())) { target.setDeductibleAmount(source.getDeductibleAmount()); } target.setInsuredClaimantSameAsOwner(source.getInsuredClaimantSameAsOwner()); target.setInsuredOrClaimant(source.getInsuredOrClaimant()); target.setIsRepairFacility(source.getIsRepairFacility()); target.setLicense(source.getLicense()); target.setLicenseState(source.getLicenseState()); target.setLossDescription(source.getLossDescription()); target.setMake(source.getMake()); target.setModel(source.getModel()); target.setPolicyNumber(source.getPolicyNumber()); target.setProvideAcvEvaluation(source.getProvideAcvEvaluation()); target.setProvidesCopyOfAppraisal(source.getProvidesCopyOfAppraisal()); target.setRequestSalvageBids(source.getRequestSalvageBids()); if (Objects.isNull(source.getTypeOfLoss())) { target.setTypeOfLoss("Unknown"); } else { target.setTypeOfLoss(source.getTypeOfLoss()); } target.setValuationMethod(source.getValuationMethod()); target.setVehicleLocationAddress1(source.getVehicleLocationAddress1()); target.setVehicleLocationAddress2(source.getVehicleLocationAddress2()); target.setVehicleLocationCity(source.getVehicleLocationCity()); target.setVehicleLocationName(source.getVehicleLocationName()); target.setVehicleLocationPhone(source.getVehicleLocationPhone()); target.setVehicleLocationState(source.getVehicleLocationState()); target.setVehicleLocationZip(source.getVehicleLocationZip()); target.setVin(source.getVin()); target.setYear(source.getYear()); } public static ZonedDateTime getZonedDateTime() { ZoneId zoneId = ZoneId.of(US_EASTERN); LocalDateTime localDate = LocalDateTime.now(); ZonedDateTime zonedDateTime = ZonedDateTime.of(localDate, zoneId); return zonedDateTime; } }
[ "luis08@msn.com" ]
luis08@msn.com
49e116edc6f3025aab0e1808b5321e997024fbc3
f839c7e1d02df8547c2b31ca96916982c8ace799
/moveable-ui/src/com/myownb3/piranha/ui/render/impl/missile/MissileTail.java
782b5eb93d68ab860f654e9a60a0b37916a7ca0d
[]
no_license
brugalibre/MoveTest
1d4eae4d0d16e72ffb9a75514f7d8270ab1d7ce0
afb94c9bde527d2063fbb00957caaba382bd6035
refs/heads/master
2021-05-10T22:06:55.631441
2020-12-22T21:52:30
2020-12-23T08:59:56
118,244,406
0
0
null
null
null
null
UTF-8
Java
false
false
1,536
java
package com.myownb3.piranha.ui.render.impl.missile; import static com.myownb3.piranha.ui.image.constants.ImageConsts.MISSILE_IMAGE_SUFFIX; import static com.myownb3.piranha.ui.image.constants.ImageConsts.MISSILE_TAIL_FRAME_PATH; import com.myownb3.piranha.ui.render.impl.image.ImageSeries; /** * Represents the fire tail of a missile * * @author Dominic * */ public class MissileTail extends ImageSeries { private double dimensionRadius; /** * Default constructor for default explosion */ public MissileTail(double dimensionRadius, boolean resizeSmaller) { super(50l, true); this.images = loadImageSerie(dimensionRadius, resizeSmaller); this.dimensionRadius = dimensionRadius; } /** * @return <code>true</code> if there is currently an explosion or <code>false</code> if not */ public boolean isExploding() { return isPlayback(); } public static MissileTail buildDefaultExplosionWitzResizeSmaller(double dimensionRadius) { return new MissileTail(dimensionRadius, true); } public static MissileTail buildDefaultExplosion(double dimensionRadius) { return new MissileTail(dimensionRadius, false); } @Override protected String getNextImagePathName(int i) { return MISSILE_TAIL_FRAME_PATH + i + MISSILE_IMAGE_SUFFIX; } @Override protected int getImageSerieSize() { return 5; } public double getDimensionRadius() { return dimensionRadius; } }
[ "Dominic@Piranha" ]
Dominic@Piranha
1b8b9ccaf80d8c851989bae671889975099bb8ec
af73087fc0eb2877bf9608463da20b449ce71a1b
/app/src/main/java/com/example/machineshop/MainActivity.java
f96a02928ebc70db872ffefecb678600d2761505
[]
no_license
BilalMehmood26/MachineShop
5a6aa5f8efcb6869caf47b5ee4dc4d671f0f55ed
3f5fd0d388075a552a8ba0f9347669ba52027eca
refs/heads/master
2021-07-10T13:14:11.468467
2021-07-01T12:15:34
2021-07-01T12:15:34
225,708,144
0
0
null
null
null
null
UTF-8
Java
false
false
1,327
java
package com.example.machineshop; import androidx.appcompat.app.AppCompatActivity; import androidx.viewpager.widget.ViewPager; import android.os.Bundle; import android.widget.Button; import com.example.machineshop.Adapters.ViewPagerAdapter; import com.example.machineshop.Fragments.SignIn; import com.example.machineshop.Fragments.SignUp; import com.google.android.material.tabs.TabLayout; public class MainActivity extends AppCompatActivity { private TabLayout mTabLayout; private ViewPager mViewPager; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //Initialize TabLayout and ViewPager and its Resource Id mTabLayout = (TabLayout) findViewById(R.id.tab_layout); mViewPager = (ViewPager) findViewById(R.id.view_pager); setUpViewPager(mViewPager); mTabLayout.setupWithViewPager(mViewPager); } //method for View Pager private void setUpViewPager(ViewPager viewPager){ ViewPagerAdapter viewPagerAdapter = new ViewPagerAdapter(getSupportFragmentManager()); viewPagerAdapter.addFragment(new SignIn(), "SignIn"); viewPagerAdapter.addFragment(new SignUp(), "SignUp"); viewPager.setAdapter(viewPagerAdapter); } }
[ "bilalmehmood628@gmail.com" ]
bilalmehmood628@gmail.com
2b38203790c60ae6f7c1c8371dc1b1f6f7b53a97
d49380b773c771eaa67a8bd5b351439877eaf885
/src/main/java/org/patriques/output/technicalindicators/HT_PHASOR.java
a31c82f5d463011a22d19c44bf6497417e988778
[]
no_license
digital-thinking/acep
aa327b039826b2b03b5aee88468d54971e06b5d5
aa97ec9458171db5a8c971dbaf6efdd4626739b0
refs/heads/master
2023-03-30T11:24:17.747490
2021-04-02T19:46:44
2021-04-02T19:54:14
325,895,186
0
0
null
null
null
null
UTF-8
Java
false
false
2,027
java
package org.patriques.output.technicalindicators; import org.patriques.input.technicalindicators.Interval; import org.patriques.output.JsonParser; import org.patriques.output.technicalindicators.data.HT_PHASORData; import java.util.ArrayList; import java.util.List; import java.util.Map; /** * Representation of the Hilbert transform, phasor components (HT_PHASOR) response from api. * * @see TechnicalIndicatorResponse */ public class HT_PHASOR extends TechnicalIndicatorResponse<HT_PHASORData> { private HT_PHASOR(final Map<String, String> metaData, final List<HT_PHASORData> indicators) { super(metaData, indicators); } /** * Creates {@code HT_PHASOR} instance from json. * * @param interval specifies how to interpret the date key to the data json object * @param json string to parse * @return HT_PHASOR instance */ public static HT_PHASOR from(Interval interval, String json) { Parser parser = new Parser(interval); return parser.parseJson(json); } /** * Helper class for parsing json to {@code HT_PHASOR}. * * @see TechnicalIndicatorParser * @see JsonParser */ private static class Parser extends TechnicalIndicatorParser<HT_PHASOR> { public Parser(Interval interval) { super(interval); } @Override String getIndicatorKey() { return "Technical Analysis: HT_PHASOR"; } @Override HT_PHASOR resolve(Map<String, String> metaData, Map<String, Map<String, String>> indicatorData) { List<HT_PHASORData> indicators = new ArrayList<>(); indicatorData.forEach((key, values) -> indicators.add(new HT_PHASORData( resolveDate(key), Double.parseDouble(values.get("PHASE")), Double.parseDouble(values.get("QUADRATURE")) ))); return new HT_PHASOR(metaData, indicators); } } }
[ "github@digital-thinking.de" ]
github@digital-thinking.de
5b1705ebf04b975e5f097cb7aa0429cb3d1d9442
4fc962c09c40404c9fba33d3fd0fab938e2b0cd7
/sharingan-infrastructure/src/main/java/io/moyada/sharingan/infrastructure/invoke/data/ClassInvocation.java
cb29ea846b356799e5619fc800cca76964fd6fbd
[]
no_license
zgq346712481/sharingan-1
077a81ea41c1786472b56f3f1a6b86e48abb52ab
0a85d8e4138b1c2e5c8e66cd28294254e4fedca4
refs/heads/master
2021-10-22T20:32:12.574054
2019-03-12T20:15:41
2019-03-12T20:15:41
null
0
0
null
null
null
null
UTF-8
Java
false
false
974
java
package io.moyada.sharingan.infrastructure.invoke.data; import java.lang.invoke.MethodHandle; /** * @author xueyikang * @since 1.0 **/ public class ClassInvocation extends InvocationMetaDate { /** * 接口类型 */ private Class<?> classType; private Class<?>[] paramTypes; /** * 方法具柄 */ private MethodHandle methodHandle; public ClassInvocation(String applicationName, String serviceName, String methodName, Class<?> classType, Class<?>[] paramTypes, MethodHandle methodHandle) { super(applicationName, serviceName, methodName); this.classType = classType; this.paramTypes = paramTypes; this.methodHandle = methodHandle; } public Class<?> getClassType() { return classType; } public Class<?>[] getParamTypes() { return paramTypes; } public MethodHandle getMethodHandle() { return methodHandle; } }
[ "xykmoyada@gmail.com" ]
xykmoyada@gmail.com
90c13a11f14ac0497ad078b239cc5a5f66ec5cab
f57b61e089168ff926b1ff376ead1d48518cc3a0
/src/com/chessv2/Observer.java
e2fe15bdc3fc7d5417145de70e57289328d7394f
[]
no_license
josephchandlerjr/Chessv2
66f14107c212150d1cae353b6e021bda88d8c13f
05cffce647c603ff1bcf0fbaf4eb76c6270a8f16
refs/heads/master
2021-01-10T09:20:57.187252
2016-03-09T20:11:51
2016-03-09T20:11:51
53,445,471
0
0
null
null
null
null
UTF-8
Java
false
false
74
java
package com.chessv2; public interface Observer{ public void update(); }
[ "josephalanchandlerjr@gmail.com" ]
josephalanchandlerjr@gmail.com
f60e1d31420c65d99d0b4a8ec1370047dd233532
9d556971d98434f813f9cdd4afaa3b0363de4dd5
/app/src/main/java/com/pucit/hostelhubupdated/Aysnc_Tasks/delete_hostel_asynctask_hosteldetail_activity.java
3a045e2b7f8045ab1c03f5eb159463012c3f737e
[]
no_license
abdulwajid7347/MC_Final_Project
6685f173170b95ecc105b258dff2e58aaf56c9be
2eab63055b34a75a2b7ff2bc571b9b3561150136
refs/heads/master
2023-06-10T00:19:29.435448
2021-07-01T19:34:25
2021-07-01T19:34:25
381,694,136
0
0
null
null
null
null
UTF-8
Java
false
false
2,823
java
package com.pucit.hostelhubupdated.Aysnc_Tasks; import android.app.Activity; import android.app.ProgressDialog; import android.content.Context; import android.content.Intent; import android.os.AsyncTask; import android.text.style.IconMarginSpan; import android.widget.Toast; import androidx.annotation.NonNull; import com.google.firebase.database.DataSnapshot; import com.google.firebase.database.DatabaseError; import com.google.firebase.database.ValueEventListener; import com.pucit.hostelhubupdated.Database.Database; import com.pucit.hostelhubupdated.HostelManagerHome; public class delete_hostel_asynctask_hosteldetail_activity extends AsyncTask<String,Void,Void> { private Context context; private ProgressDialog progressDialog; private String key; public delete_hostel_asynctask_hosteldetail_activity(Context context) { this.context = context; } @Override protected void onPreExecute() { progressDialog = new ProgressDialog(context); progressDialog.setMessage("Deleting Hostel!"); progressDialog.show(); } @Override protected Void doInBackground(String... strings) { Database.isAlreadyAHostel(strings[0]).addListenerForSingleValueEvent(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot dataSnapshot) { int imageCount = 0; for (DataSnapshot ds: dataSnapshot.getChildren()){ key = ds.getKey(); imageCount = (int) ds.child("images").getChildrenCount(); } for (int i=0; i< imageCount;i++) Database.deleteImage(key + "__" + i); Database.getAllFeedbacks(key).addListenerForSingleValueEvent(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot dataSnapshot) { for (DataSnapshot ds: dataSnapshot.getChildren()){ Database.deleteFeedback(ds.getKey()); } Database.deleteHostel(key); progressDialog.dismiss(); Toast.makeText(context,"Hostel has been deleted successfully! However it is not removed from " + "list. One has to refresh the list to see changes.",Toast.LENGTH_SHORT).show(); ((Activity)context).finish(); } @Override public void onCancelled(@NonNull DatabaseError databaseError) { } }); } @Override public void onCancelled(@NonNull DatabaseError databaseError) { } }); return null; } }
[ "mcsf19a020@pucit.edu.pk" ]
mcsf19a020@pucit.edu.pk
8004484f2a5201964aceff9ea97295dc16af6309
9f4b3b09f8eff0929d312f1b7fe0475df5dfb7b4
/microcloud-mall-80/src/main/java/com/peony/microcloudmall/config/ConfigBean.java
de617cbc89bca652fb26a0ec13766ff582af2f0c
[]
no_license
BlackHe/microcloud
dd1fa2bea5a7770ca48ba710a7de47e7c0f89df7
1aae1dda00bb0da1e032ac99ef8898f17d8416c6
refs/heads/master
2021-06-20T23:36:54.595352
2020-12-20T10:09:44
2020-12-20T10:09:44
148,739,744
4
0
null
null
null
null
UTF-8
Java
false
false
935
java
package com.peony.microcloudmall.config; import com.netflix.loadbalancer.IRule; import com.netflix.loadbalancer.RandomRule; import com.netflix.loadbalancer.RetryRule; import com.netflix.loadbalancer.RoundRobinRule; import org.springframework.cloud.client.loadbalancer.LoadBalanced; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.client.RestTemplate; @Configuration public class ConfigBean { @LoadBalanced @Bean public RestTemplate getRestTemplate(){ return new RestTemplate(); } /*** * rebbion请求分发算法 * randomRule 随机 * retryRule 重试 * roundRandomRule 轮询 * @return */ @Bean public IRule getIRule() { return new RandomRule(); //随机 // return new RetryRule(); // return new RoundRobinRule(); //轮询 } }
[ "1124681011@qq.com" ]
1124681011@qq.com
5584e46c534d7785da2abd8ac69a7087c2813a4d
48d08d523874fac34c96c32b88ab8b394a694fce
/app/src/main/java/com/aashdit/districtautomationsystem/model/TagData.java
ab5e0ab40c5d9d0c753efa1830268570d0997820
[]
no_license
mbaashdit/DAS
79efdfed874b1fd60b74abeecef2854530caa73d
4e604bc790ceac6e6464f821b05f602f8411f0ca
refs/heads/master
2023-03-16T06:25:50.174829
2021-03-10T13:39:42
2021-03-10T13:39:42
312,236,962
0
0
null
null
null
null
UTF-8
Java
false
false
725
java
package com.aashdit.districtautomationsystem.model; import org.json.JSONObject; public class TagData { public String address; public String latitude; public String longitude; public String createdDateWithTime; public Long projectGeoTaggingId; public static TagData parseTagData(JSONObject object){ TagData tagData = new TagData(); tagData.address = object.optString("address"); tagData.latitude = object.optString("latitude"); tagData.longitude = object.optString("longitude"); tagData.createdDateWithTime = object.optString("createdDateWithTime"); tagData.projectGeoTaggingId = object.optLong("projectGeoTaggingId"); return tagData; } }
[ "manabendu.bardhan@aashdit.com" ]
manabendu.bardhan@aashdit.com
f0c8659532548d27b728f13d9445bddefaabab17
16864ec5f038c3f66d184aab2d2a8ca9eb03e86c
/POS_ICECream/src/IceCream/inventory.java
9843a774be911eead2dcac34b5f4f03028cf373a
[]
no_license
jeremyDhung/POS-IceCream
40b6b4a2894f4f0cc2f4e855b2b9f22d85870db8
5fd5bfb58e6ca116b6858f63f06a04d6561adfb9
refs/heads/master
2021-01-10T19:20:27.745307
2015-04-16T10:01:02
2015-04-16T10:01:02
34,047,146
0
0
null
null
null
null
UTF-8
Java
false
false
1,771
java
package IceCream; /* * This class is used to organize the inventory of components * including flavors and decorators */ public class inventory { private flavor []flavors; private decorator []decorators; /* * As this is not connected to database, * and there is default flavors and decorators in inventory * So, I organize the constructor like this */ public inventory(){ flavors = new flavor[2]; flavor f1 = new flavor("Chocolate",20.0); flavor f2 = new flavor("Vanilla",20.0); this.flavors[0] = f1; this.flavors[1] = f2; decorators = new decorator[2]; decorator d1 = new decorator("M&M",5.0); decorator d2 = new decorator("Strawberry",4.0); this.decorators[0] = d1; this.decorators[1] = d2; } private void setFlavors(flavor[] flavors) { this.flavors = flavors; } private void setDecorators(decorator[] decorators) { this.decorators = decorators; } public flavor[] getFlavors() { return flavors; } /* * add new flavors to inventory */ public void addFlavors(flavor flavor) { int length = this.flavors.length; flavor []temp = new flavor[length+1]; for(int i = 0; i<length;i++){ temp[i] = this.flavors[i]; } temp[length] = flavor; this.setFlavors(temp); } public decorator[] getDecorators() { return decorators; } public void addDecorators(decorator decorator) { int length = this.decorators.length; decorator []temp = new decorator[length+1]; for(int i =0;i<length;i++){ temp[i] = this.decorators[i]; } temp[length] = decorator; this.setDecorators(temp); } }
[ "471103332@qq.com" ]
471103332@qq.com
1612722d3c5b9a82f96cd464d0f7e087fe7cd0a2
fbe84fb1def9eabf55d71642a9d7289a6b38b5c3
/src/info/hegdeganesh/recursion/RecursiveQuickSort.java
599935de114ba72f0479de008146484c39f73cab
[]
no_license
hegde10122/DSA_JAVA
e866f375930e0c6a95a30ab7303dd40f60814381
f9d2a6da761e4d0d63c38945a964d2a1cc3ab1d6
refs/heads/master
2021-01-10T10:39:00.748915
2016-09-05T18:33:56
2016-09-05T18:33:56
46,706,008
0
0
null
null
null
null
UTF-8
Java
false
false
3,504
java
package info.hegdeganesh.recursion; /** * Created by Ganesh Hegde on 24-11-2015. */ public class RecursiveQuickSort { private static final int MAX_SIZE = 16; private static ArrayInsert aIns; public static void main(String[] args){ aIns = new ArrayInsert(MAX_SIZE); for(int i=0;i<MAX_SIZE;i++){ long n1 = (int)Math.round(Math.random()*100); aIns.insert(n1); } aIns.display(); aIns.quickSort(); aIns.display(); }//main ends ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// static class ArrayInsert{ private long theArray[];// array private int numElements; //number of items //-------------------------------------------------------------------------------------------- public ArrayInsert(int maximum){//constructor theArray = new long[maximum]; numElements = 0; } //-------------------------------------------------------------------------------------------- public void insert(long value){ //put elements into array theArray[numElements++] = value; //insert and then increment } //-------------------------------------------------------------------------------------------- public void display(){//display array contents System.out.print("Array = "); for(int y=0;y<numElements;y++){ System.out.print("\t"+theArray[y]); } System.out.println(); } //-------------------------------------------------------------------------------------------- public void quickSort(){ recQuickSort(0,numElements - 1); } //-------------------------------------------------------------------------------------------- private void recQuickSort(int left,int right){ if(right - left <=0) //if size is <= 1 return; else{ //size is 2 or larger long pivot = theArray[right];//rightmost item //partition range int partition = partitionIt(left,right,pivot); recQuickSort(left,partition-1);//sort left side recQuickSort(partition+1,right);//sort right side } } //-------------------------------------------------------------------------------------------- private int partitionIt(int left,int right, long pivot){ int leftPtr = left - 1; // after increment --> left int rightPtr = right; // after decrement --> right while(true){ //find bigger item while(theArray[++leftPtr] < pivot );//nop //find smaller item while(rightPtr > 0 && theArray[--rightPtr] > pivot );//nop if(leftPtr >= rightPtr)//if pointers cross break; //partition done else //not crossed,so swap(leftPtr,rightPtr); //swap elements }//end while(true) swap(leftPtr,right); //restore pivot return leftPtr; //restore pivot location } //-------------------------------------------------------------------------------------------- private void swap(int d1,int d2){//swap two elements long temp = theArray[d1]; theArray[d1] = theArray[d2]; theArray[d2] = temp; } //-------------------------------------------------------------------------------------------- }//class ends ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// }//class ends
[ "hegde10122@gmail.com" ]
hegde10122@gmail.com
82cf1f67ffe5a5a554999a76bab1a045fa0b117a
e9affefd4e89b3c7e2064fee8833d7838c0e0abc
/aws-java-sdk-ses/src/main/java/com/amazonaws/services/simpleemail/model/UpdateConfigurationSetEventDestinationRequest.java
bdcb28208cb234860a2893178a7a0406b3a29d79
[ "Apache-2.0" ]
permissive
aws/aws-sdk-java
2c6199b12b47345b5d3c50e425dabba56e279190
bab987ab604575f41a76864f755f49386e3264b4
refs/heads/master
2023-08-29T10:49:07.379135
2023-08-28T21:05:55
2023-08-28T21:05:55
574,877
3,695
3,092
Apache-2.0
2023-09-13T23:35:28
2010-03-22T23:34:58
null
UTF-8
Java
false
false
6,148
java
/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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.amazonaws.services.simpleemail.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * <p> * Represents a request to update the event destination of a configuration set. Configuration sets enable you to publish * email sending events. For information about using configuration sets, see the <a * href="https://docs.aws.amazon.com/ses/latest/dg/monitor-sending-activity.html">Amazon SES Developer Guide</a>. * </p> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/UpdateConfigurationSetEventDestination" * target="_top">AWS API Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class UpdateConfigurationSetEventDestinationRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** * <p> * The name of the configuration set that contains the event destination. * </p> */ private String configurationSetName; /** * <p> * The event destination object. * </p> */ private EventDestination eventDestination; /** * <p> * The name of the configuration set that contains the event destination. * </p> * * @param configurationSetName * The name of the configuration set that contains the event destination. */ public void setConfigurationSetName(String configurationSetName) { this.configurationSetName = configurationSetName; } /** * <p> * The name of the configuration set that contains the event destination. * </p> * * @return The name of the configuration set that contains the event destination. */ public String getConfigurationSetName() { return this.configurationSetName; } /** * <p> * The name of the configuration set that contains the event destination. * </p> * * @param configurationSetName * The name of the configuration set that contains the event destination. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateConfigurationSetEventDestinationRequest withConfigurationSetName(String configurationSetName) { setConfigurationSetName(configurationSetName); return this; } /** * <p> * The event destination object. * </p> * * @param eventDestination * The event destination object. */ public void setEventDestination(EventDestination eventDestination) { this.eventDestination = eventDestination; } /** * <p> * The event destination object. * </p> * * @return The event destination object. */ public EventDestination getEventDestination() { return this.eventDestination; } /** * <p> * The event destination object. * </p> * * @param eventDestination * The event destination object. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateConfigurationSetEventDestinationRequest withEventDestination(EventDestination eventDestination) { setEventDestination(eventDestination); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getConfigurationSetName() != null) sb.append("ConfigurationSetName: ").append(getConfigurationSetName()).append(","); if (getEventDestination() != null) sb.append("EventDestination: ").append(getEventDestination()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateConfigurationSetEventDestinationRequest == false) return false; UpdateConfigurationSetEventDestinationRequest other = (UpdateConfigurationSetEventDestinationRequest) obj; if (other.getConfigurationSetName() == null ^ this.getConfigurationSetName() == null) return false; if (other.getConfigurationSetName() != null && other.getConfigurationSetName().equals(this.getConfigurationSetName()) == false) return false; if (other.getEventDestination() == null ^ this.getEventDestination() == null) return false; if (other.getEventDestination() != null && other.getEventDestination().equals(this.getEventDestination()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getConfigurationSetName() == null) ? 0 : getConfigurationSetName().hashCode()); hashCode = prime * hashCode + ((getEventDestination() == null) ? 0 : getEventDestination().hashCode()); return hashCode; } @Override public UpdateConfigurationSetEventDestinationRequest clone() { return (UpdateConfigurationSetEventDestinationRequest) super.clone(); } }
[ "" ]
979c6ca0a0e4256890e9fd66f47c2f8ce3bda6dc
0e17d83717d36d10b0199ba663c6958dcae0c2fc
/Pitagoras/oda/pit-oda-org-arq/src/br/pitagoras/oda/orgarq/util/OrgArquivosUtil.java
88a686f86ff941d1c41008ec964458da7bd9719b
[]
no_license
waldirpires/personal-projects
90c58ba20f12af18120edf38f4bc7424d13c2e26
ce9ba2cc0beb2c930d01732867024dd38fe75be1
refs/heads/master
2022-12-14T13:34:29.647735
2020-06-19T01:54:06
2020-06-19T01:54:06
82,811,558
1
0
null
2022-12-08T03:24:37
2017-02-22T14:08:10
Python
ISO-8859-1
Java
false
false
6,196
java
package br.pitagoras.oda.orgarq.util; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.TreeMap; public class OrgArquivosUtil { public static List<String> obterRegistrosDoArquivo(String nomeArquivo) throws FileNotFoundException, IOException { BufferedReader br = new BufferedReader(new FileReader(nomeArquivo)); List<String> registros = new ArrayList<String>(); String s = br.readLine(); while (s != null) { registros.add(s); s = br.readLine(); } br.close(); return registros; } public static Map<String, String> obterRegistrosIndexadosDoArquivo(String nomeArquivo) throws FileNotFoundException, IOException { BufferedReader br = new BufferedReader(new FileReader(nomeArquivo)); Map<String, String> registros = new HashMap<String, String>(); String s = br.readLine(); String indice = null; while (s != null) { indice = s.split(";")[0]; registros.put(indice, s); s = br.readLine(); } br.close(); return registros; } /** * permite buscar um registro especifico de um arquivo de dados * @param chave a chave de busca * @param nomeArquivo o nome do arquivo * @return uma String contento os campos do registro * @throws FileNotFoundException * @throws IOException */ public static String buscarRegistroDeArquivo(String chave, String nomeArquivo) throws IOException { BufferedReader br = new BufferedReader(new FileReader(nomeArquivo)); String s = br.readLine(); while (s != null) { if (s.split(";")[0].equals(chave)){ br.close(); return s; } s = br.readLine(); } br.close(); return null; } public static List<String> pesquisarRegistrosDeArquivo(String valor, String nomeArquivo) throws IOException { List<String> registros = new ArrayList<String>(); BufferedReader br = new BufferedReader(new FileReader(nomeArquivo)); String s = br.readLine(); while (s != null) { if (s.contains(valor)){ registros.add(s); } s = br.readLine(); } br.close(); return registros; } public static void atualizarRegistroEmArquivo(String chave, String dados, String nomeArquivo) throws IOException{ String registroOriginal = buscarRegistroDeArquivo(chave, nomeArquivo); if (StringUtil.isEmpty(registroOriginal)){ System.out.println("AVISO: Registro não existe"); } else { List<String> dadosArquivo = obterRegistrosDoArquivo(nomeArquivo); int pos = dadosArquivo.indexOf(registroOriginal); dadosArquivo.set(pos, dados); escreverRegistrosEmArquivo(nomeArquivo, dadosArquivo); } } public static void atualizarRegistroEmArquivo(String chave, String indice, String dados, String nomeArquivo) throws IOException{ String registroOriginal = buscarRegistroDeArquivo(chave, nomeArquivo); if (StringUtil.isEmpty(registroOriginal)){ System.out.println("AVISO: Registro não existe"); } else { List<String> dadosArquivo = obterRegistrosDoArquivo(nomeArquivo); dadosArquivo.set(Integer.parseInt(indice), dados); escreverRegistrosEmArquivo(nomeArquivo, dadosArquivo); } } public static void escreverMapaRegistrosEmArquivo(String nomeArquivo, Map<String, String> mapaRegistros) throws IOException{ BufferedWriter bw = new BufferedWriter(new FileWriter(nomeArquivo)); String s = null; Map<String, String> mapaRegistrosOrdenado = new TreeMap<String, String>(mapaRegistros); for (String k : mapaRegistrosOrdenado.keySet()) { s = k + ";" + mapaRegistrosOrdenado.get(k); bw.write(s); bw.newLine(); } bw.close(); } public static void escreverMapaRegistrosDiretosEmArquivo(String nomeArquivo, Map<String, String> mapaRegistros) throws IOException{ BufferedWriter bw = new BufferedWriter(new FileWriter(nomeArquivo)); String s = null; Map<String, String> mapaRegistrosOrdenado = new TreeMap<String, String>(mapaRegistros); for (String k : mapaRegistrosOrdenado.keySet()) { s = mapaRegistrosOrdenado.get(k); bw.write(s); bw.newLine(); } bw.close(); } public static Map<String, String> obterMapaRegistrosDoArquivo(String nomeArquivo) throws FileNotFoundException, IOException { BufferedReader br = new BufferedReader(new FileReader(nomeArquivo)); Map<String, String> mapaIndices = new TreeMap<String, String>(); String s = br.readLine(); while (s != null) { String[] campos = s.split(";"); mapaIndices.put(campos[0], campos[1]); s = br.readLine(); } br.close(); return mapaIndices; } public static Map<String, String> obterMapaRegistrosDiretosDoArquivo(String nomeArquivo) throws FileNotFoundException, IOException { BufferedReader br = new BufferedReader(new FileReader(nomeArquivo)); Map<String, String> mapaDados = new TreeMap<String, String>(); String s = br.readLine(); while (s != null) { String[] campos = s.split(";"); mapaDados.put(campos[0], s); s = br.readLine(); } br.close(); return mapaDados; } public static void escreverRegistrosEmArquivo(String nomeArquivo, List<String> registros) throws IOException { BufferedWriter bw = new BufferedWriter(new FileWriter(nomeArquivo)); for (String v : registros) { bw.write(v); bw.newLine(); } bw.close(); System.out.println(registros.size() + " registros escritos com sucesso."); } }
[ "wrpires@fitec.org.br" ]
wrpires@fitec.org.br
1aa3feff83dc350dca37356c055e8cb295d32332
1ca013b51411438932748bf8ffd7350c44400b08
/src/ca/ualberta/ssrg/movies/es/Movie.java
78d701f665c0607dc48fdc2e5b0526a630b98ae0
[]
no_license
ParashRahman/AndroidElasticSearch
d8520a72778af7107cf061b404b6d6c1fbc71ef5
26ffedcb75e148dd65766d0ba6a62b55186835fe
refs/heads/master
2021-01-15T18:40:22.679930
2015-02-25T22:51:28
2015-02-25T22:51:28
31,335,955
1
1
null
2015-02-25T21:09:36
2015-02-25T21:09:36
null
UTF-8
Java
false
false
883
java
package ca.ualberta.ssrg.movies.es; import java.util.Collection; public class Movie { public int id; private String title; private String director; private int year; private Collection<String> genres; public Movie() {} public int getId() { return id; } public void setId(int id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDirector() { return director; } public void setDirector(String director) { this.director = director; } public int getYear() { return year; } public void setYear(int year) { this.year = year; } public Collection<String> getGenres() { return genres; } public void setGenres(Collection<String> genres) { this.genres = genres; } @Override public String toString() { return title + " (" + year + ")"; } }
[ "dfserrano@gmail.com" ]
dfserrano@gmail.com
686a31bb7168bffd115d5e27bce42a3866e44a35
12e958f094517b8dba81455ae477ca7041d2610d
/src/main/java/creator/builder/component/Tyre.java
eb260f4b7dcda5e320e3bbc3f4cec5c83ced03c8
[]
no_license
kimigayo/GOF23
31a73e962f77fc85594e34a580aa53f27701b5ae
7aa14cbcfbed20572d5f19c253552cd21896d2e7
refs/heads/master
2021-05-02T07:46:06.507540
2018-02-23T07:27:19
2018-02-23T07:27:19
120,728,349
0
0
null
null
null
null
UTF-8
Java
false
false
108
java
package creator.builder.component; /** * Created by chenbinbin on 2018/2/8. */ public interface Tyre { }
[ "1056477503@qq.com" ]
1056477503@qq.com
682b754c54d93b4aaeeaa13caa2ef60fbc7a5ccb
d03af709ee5f867a72a0a9dcb29acd784f91beba
/src/main/java/edu/project/webshop/controller/SignInController.java
b3aca5511e6c0b204c8373ec21197e7ef2f9f27d
[]
no_license
damianbregier/Engineer-Project
e94af77a1050d2fa296553f3dfab799d4ea90e08
73532f95a4767db9f5cdf9e3ce6b060e3d47e5ea
refs/heads/master
2023-05-15T06:18:21.693413
2021-06-03T11:25:15
2021-06-03T11:25:15
313,402,055
0
0
null
null
null
null
UTF-8
Java
false
false
1,128
java
package edu.project.webshop.controller; import edu.project.webshop.entity.User; import edu.project.webshop.service.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.authentication.AnonymousAuthenticationToken; import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContextHolder; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.*; import org.springframework.web.servlet.ModelAndView; import javax.validation.Valid; @Controller public class SignInController { @Autowired private UserService userService; @GetMapping("/login") public String showLoginForm(Model model) { Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); if (authentication == null || authentication instanceof AnonymousAuthenticationToken) { return "sign-in"; } return "redirect:/shop"; } }
[ "damian.bregier@gmail.com" ]
damian.bregier@gmail.com
37cd34dbf22230a67f308c0e6afb5694ac8a4ae2
2bfd6167e387ce29119a9634bb08bdf7d63b6474
/lecture2/demo/src/main/java/jp/co/aivick/demo/dao/RecipeDao.java
85f462f097ce2bebe0e604e34b2691f3bf9e6092
[]
no_license
yukis1996/Java
32db1fac3a32f383b679b3c81171afcef9cddee9
8b324531d48a525d5b81427637bf011a1dbe306e
refs/heads/master
2022-10-22T22:08:16.171476
2020-06-10T08:07:54
2020-06-10T08:07:54
262,509,738
0
0
null
null
null
null
UTF-8
Java
false
false
667
java
package jp.co.aivick.demo.dao; import java.util.List; import org.seasar.doma.Dao; import org.seasar.doma.Insert; import org.seasar.doma.Select; import org.seasar.doma.Update; import org.seasar.doma.boot.ConfigAutowireable; import jp.co.aivick.demo.entity.Recipe; @ConfigAutowireable @Dao public interface RecipeDao { @Select Recipe name(String name); @Select Recipe find(String id); @Select List<Recipe> findALl(); @Select List<Recipe> search(String search, Integer beforeCal, Integer afterCal); @Select List<Recipe> cal(Integer beforeCal, Integer afterCal); @Insert int insert(Recipe recipe); @Update int update(Recipe recipe); }
[ "58467980+yukis1996@users.noreply.github.com" ]
58467980+yukis1996@users.noreply.github.com
2b80be90ca115374505e75834f3ae22f65a94d54
d072ad8d546bb208e59f38b52dd7d844b20f1f95
/src/main/java/automobile/package-info.java
31a4ac604db0e071b45b4faab768a4cf95daf425
[]
no_license
arun18021994/pom
8512a779dd34c5f7d7cc8073518f05858c623433
fb744717c3aeeec54d87587c7f701f977ff0aad9
refs/heads/main
2023-09-02T15:53:04.679069
2021-10-28T14:05:14
2021-10-28T14:05:14
417,471,631
0
0
null
null
null
null
UTF-8
Java
false
false
67
java
/** * */ /** * @author priyadarshini * */ package automobile;
[ "arun18021994@gmail.com" ]
arun18021994@gmail.com
63f2040835e4186f85960e5d31d2d76d3c87f626
1f73d9a73f9099483f01510c6fdf0ba60c578a14
/src/com/zodiackillerciphers/ciphers/Cipher.java
92bf8e4782acb15392e8ea318a1356f773b64912
[]
no_license
DrDub/zodiac-killer-ciphers
8ae0cdf3a5768ff537f284762713c8938d5b1a8b
1ed9df175070ba0c1f6b799ba82237397a48ffc3
refs/heads/master
2020-05-17T15:39:51.513543
2012-08-18T10:12:36
2012-08-18T10:12:36
34,962,537
2
1
null
null
null
null
UTF-8
Java
false
false
611
java
package com.zodiackillerciphers.ciphers; public class Cipher { public String cipher; public String solution; public String description; public Cipher(String description, String cipher, String solution) { super(); this.cipher = cipher; this.description = description; this.solution = solution; check(); } public void check() { if (this.cipher.contains("?")) throw new RuntimeException("This cipher uses special character '?' that will break the ngram counts. " + this.toString()); } public String toString() { return "[" + description + "] [" + cipher + "] [" + solution + "]"; } }
[ "doranchak@gmail.com@e7876b6f-6a29-f459-dab6-a18593dd9fc6" ]
doranchak@gmail.com@e7876b6f-6a29-f459-dab6-a18593dd9fc6
98397daea8c7fc6e117d55f9eb38c1627e183a27
bc07d52a832bca409f03d988dacb438b92bee264
/fairy-server/src/main/java/me/zane/fairy_server/exec/LogcatExec.java
ff823215741cbb44202976954b095f23664b03c8
[ "Apache-2.0" ]
permissive
hydraxman/Fairy
961b9878b2b73e716ac4933b14af978d64ecdb06
5d2f53ea694402ba0e74cac26378129f540e272d
refs/heads/master
2022-09-05T12:07:43.217807
2017-12-30T00:55:45
2017-12-30T00:55:45
117,075,820
1
0
null
null
null
null
UTF-8
Java
false
false
6,730
java
/* * Copyright (C) 2017 Zane. * * 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 me.zane.fairy_server.exec; import com.google.gson.Gson; import java.io.IOException; import me.zane.fairy_server.ResponseFactory; import me.zane.fairy_server.ZLog; import me.zane.fairy_server.model.Response; import me.zane.fairy_server.model.Result; import okio.BufferedSource; /** * 与Shell交互,执行logcat命令,组装数据 * Created by Zane on 2017/11/5. * Email: zanebot96@gmail.com */ class LogcatExec { private static final int LINE_THRESHOLD = 100;//如果读取数量超过了阀值,准备开始结束数据的读取 private Gson gson; LogcatExec() { gson = new Gson(); } /** * the dataline with date eg.10-17 11:54:47.550 * @param source * @param format 开发者定义的format * @param grep * @return * @throws IOException */ Response execWithTime(BufferedSource source, String format, String grep) throws IOException{ int lineNum = 0; String lastTimeLine = ""; String currentTimeLine = ""; StringBuilder sb = new StringBuilder(); while (true) { lineNum++; String rawLine = source.readUtf8Line(); if (rawLine == null) { break; } ZLog.d("logcat data: " + rawLine); currentTimeLine = rawLine.substring(0, 18);//截取时间戳 //大于阀值,开始准备结束数据读取 if (lineNum > LINE_THRESHOLD) { //注意最后一行数据是 -------beginmain的情况 if (!currentTimeLine.equals(lastTimeLine) && !currentTimeLine.startsWith("-")) { break; } } sb.append(formatLine(format, grep, rawLine)); if (!currentTimeLine.startsWith("-")) { lastTimeLine = currentTimeLine; } else { currentTimeLine = lastTimeLine; } } Result result = new Result(sb.toString(), currentTimeLine); ZLog.d("exec finish"); return ResponseFactory.success(gson.toJson(result)); } /** * Fairy的服务端中,强制使用threadtime(11-05 16:25:19.551 2668 2851 D MSF.D.QLog: QLog init) * 格式来支持feed流,在客户端根据需求重新组装数据 * * brief — 显示优先级/标记以及发出消息的进程的 PID * process — 仅显示 PID。 * tag — 仅显示优先级/标记。 * raw — 显示原始日志消息,不显示其他元数据字段。 * time — 显示日期、调用时间、优先级/标记以及发出消息的进程的 PID。 * threadtime — 显示日期、调用时间、优先级、标记以及发出消息的线程的 PID 和 TID。 * long — 显示所有元数据字段,并使用空白行分隔消息。 (暂不支持) * * @param format * @param rawLine * @param grep * @return */ private String formatLine(String format, String grep, String rawLine) { //-----begin情况直接返回 if (rawLine.startsWith("--")) { return String.format("%s\n", rawLine); } //默认格式threadtime if (format.equals("")) { format = "threadtime"; } String pid; String priority; String mark; String raw; //log数据 String time; String date; String tid; //thread id raw = rawLine.substring(rawLine.indexOf(": ") + 1, rawLine.length()); date = rawLine.substring(0, 5); time = rawLine.substring(6, 18); pid = rawLine.substring(20, 24); tid = rawLine.substring(26, 30); priority = rawLine.substring(31, 32); mark = rawLine.substring(33, rawLine.indexOf(": ")); //grep颜色包装 if (!grep.equals("")) { raw = raw.replace(grep, String.format("<font color=\"#6200ea\">%s</font>", grep)); } //包装颜色 String color; switch (priority) { case "V": color = "#e0e0e0"; break; case "D": color = "#ffee58"; break; case "I": color = "#ffa726"; break; case "W": color = "#29b6f6"; break; case "E": color = "#ef5350"; break; default: color = "#4a148c"; break; } StringBuilder sb = new StringBuilder(String.format("<p><font color=\"%s\">", color)); switch (format.substring(format.lastIndexOf(" ") + 1, format.length())) { case "brief": sb.append(priority).append(" ") .append(mark).append(" ") .append(pid).append(": ") .append(raw); break; case "process": sb.append(pid).append(": ").append(raw); break; case "tag": sb.append(priority).append(" ") .append(mark).append(": ").append(raw); break; case "raw": sb.append(raw); break; case "time": sb.append(date).append(" ") .append(time).append(" ") .append(priority).append(" ") .append(mark).append(" ") .append(pid).append(": ").append(raw); break; case "threadtime": sb.append(date).append(" ") .append(time).append(" ") .append(priority).append(" ") .append(mark).append(" ") .append(pid).append(" ") .append(tid).append(": ").append(raw); break; default: sb.append(String.format("Don't support %s", format)); break; } return sb.append("</p>").toString(); } }
[ "wo1996zhi@vip.qq.com" ]
wo1996zhi@vip.qq.com
b292f5e82e5101b272bdbf13e7bdc55d2096e8b2
d949bd0f639e248c4116bfac86111bc4e45c2499
/applet-server/src/main/java/com/syt/hotel/AppletServerApplication.java
91e786e3a47ff72d9a307ce03c98fe688ed3d2b8
[]
no_license
caijinlu/applet-server
c94a3cfce465570dd9a74a6b30b30349dd506796
73451d8eb01b50d7d98d86ee7f8525b330a1910f
refs/heads/master
2023-01-13T15:24:00.946693
2020-11-25T09:58:13
2020-11-25T09:58:13
315,896,748
0
0
null
null
null
null
UTF-8
Java
false
false
3,116
java
package com.syt.hotel; import cn.binarywang.wx.miniapp.api.WxMaService; import cn.binarywang.wx.miniapp.api.WxMaUserService; import cn.binarywang.wx.miniapp.api.impl.WxMaServiceImpl; import cn.binarywang.wx.miniapp.config.WxMaConfig; import cn.binarywang.wx.miniapp.config.WxMaInMemoryConfig; import com.syt.hotel.common.StringToDateConverter; import org.mybatis.spring.annotation.MapperScan; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.web.support.SpringBootServletInitializer; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.ComponentScans; import org.springframework.context.annotation.Configuration; import org.springframework.core.convert.support.GenericConversionService; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.support.ConfigurableWebBindingInitializer; import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter; import javax.annotation.PostConstruct; import java.util.Properties; /** * 启动类 * @author 0200077 * @create 2018-10-30 10:26 **/ @Configuration @MapperScan("com.syt.hotel.dao") @SpringBootApplication public class AppletServerApplication extends SpringBootServletInitializer{ @Autowired private RequestMappingHandlerAdapter handlerAdapter; @Value("${applets.appid}") private String appId; @Value("${applets.secret}") private String secret; /* @Bean WxMaService getWxService(){ WxMaService userService = new WxMaServiceImpl(); return userService; }*/ @Bean WxMaInMemoryConfig getWxMaInMemoryCofig(){ WxMaInMemoryConfig wxMaInMemoryConfig = new WxMaInMemoryConfig(); wxMaInMemoryConfig.setAppid(appId); wxMaInMemoryConfig.setSecret(secret); return wxMaInMemoryConfig; } @Bean WxMaServiceImpl getWxMaServiceImpl(WxMaInMemoryConfig config){ WxMaServiceImpl wxMaService = new WxMaServiceImpl(); wxMaService.setWxMaConfig(config); return wxMaService; } @PostConstruct public void initEditableAvlidation() { ConfigurableWebBindingInitializer initializer = (ConfigurableWebBindingInitializer)handlerAdapter.getWebBindingInitializer(); if(initializer.getConversionService()!=null) { GenericConversionService genericConversionService = (GenericConversionService)initializer.getConversionService(); genericConversionService.addConverter(new StringToDateConverter()); } } @RequestMapping("hello") public String hello(){ return "Hello Word!"; } public static void main(String[] args) { SpringApplication.run(AppletServerApplication.class,args); } }
[ "1607911389@qq.com" ]
1607911389@qq.com
af5c9b87ac2750fea7a5a1cf49c72770702ceaa4
d8d8ee570b597fa9f3e435cbea3bdc908434d8d0
/md/xinwen/MaterialDemo/app/src/main/java/com/example/materialdesign/mvp/view/fragment/JournalismViewModel.java
8d8283248d7b18a545572744314fe600c4eddd1e
[]
no_license
adminhaoge/MDAndroidStudio
bd420c0abb36bc3d79fe649c20ce8f8f0e42b904
74a6c647a51614482ee5e8ec96057566d79b408c
refs/heads/main
2022-12-31T05:43:13.085401
2020-10-30T02:13:08
2020-10-30T02:13:08
308,485,251
0
0
null
null
null
null
UTF-8
Java
false
false
190
java
package com.example.materialdesign.mvp.view.fragment; import androidx.lifecycle.ViewModel; public class JournalismViewModel extends ViewModel { // TODO: Implement the ViewModel }
[ "2089143149@qq.com" ]
2089143149@qq.com
dd09964a3406fb1182d86e9a15c05ed907328f20
1ababa1c90041861dbcbf04c4f89d2e334a6f45f
/spring-demo-annotations/src/com/luv2code/springdemo/SportConfig.java
cdd95d452c268d301e3410ec47ea92fee415bfb8
[]
no_license
eeshitakandpal/spring-demo-annotations
70784dba20636f153aa7b98629501c520fb7734b
d8a698f335e537491ab5a575cc42effb73c58f01
refs/heads/master
2023-07-03T04:47:54.461209
2021-08-05T13:25:21
2021-08-05T13:25:21
392,659,942
0
0
null
null
null
null
UTF-8
Java
false
false
675
java
package com.luv2code.springdemo; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; @Configuration //@ComponentScan("com.luv2code.springdemo") @PropertySource("classpath:sport.properties") public class SportConfig { //define for our sad fortune service @Bean public FortuneService sadFortuneService() { return new SadFortuneService(); } //define bean for our swim coach AND inject dependency @Bean public Coach swimCoach() { return new SwimCoach(sadFortuneService()); } }
[ "eeshitakandpal@gmail.com" ]
eeshitakandpal@gmail.com
167a211de72443800d81c8f734fd1937c28befab
3aa7e43d101911836e54e89a14a973e614582391
/src/test/java/com/nambi/book/web/domain/posts/PostsRepositoryTest.java
35cfbd6317c6256362eb59131c83c1d53f1b8fd6
[]
no_license
sleepygloa/init_jpa_mustache
7c8d4371294144fd558b82e5d8ab170ec8ac2547
7c9bce4d9fece18e8ef71ff8fefc1476f6279bf8
refs/heads/master
2023-02-15T19:18:49.994820
2021-01-13T00:01:33
2021-01-13T00:01:33
323,828,735
1
0
null
null
null
null
UTF-8
Java
false
false
1,717
java
package com.nambi.book.web.domain.posts; import static org.assertj.core.api.Assertions.assertThat; //@RunWith(SpringRunner.class) //@SpringBootTest public class PostsRepositoryTest { // @Autowired // PostsRepository postsRepository; // // @After // public void cleanup(){ // postsRepository.deleteAll(); // } // // @Test // public void 게시글저장_불러오기(){ // //given // String title = "테스트 게시글"; // String content = "테스트 본문"; // // postsRepository.save(Posts.builder() // .title(title) // .content(content) // .author("sleepygloa@gmail.com") // .build()); // // //when // List<Posts> postsList = postsRepository.findAll(); // // //then // Posts posts = postsList.get(0); // assertThat(posts.getTitle()).isEqualTo(title); // assertThat(posts.getContent()).isEqualTo(content); // // // } // // @Test // public void BaseTimeEntity_등록(){ // //given // LocalDateTime now = LocalDateTime.of(2019,6,4,0,0,0); // postsRepository.save(Posts.builder() // .title("title") // .content("content") // .author("author") // .build() // ); // // //when // List<Posts> postsList = postsRepository.findAll(); // // //then // Posts posts = postsList.get(0); // // System.out.println(">>>>>>>>>>>>>> createDate="+posts.getCreatedDate()+", modifiedDate=" + posts.getModifiedDate()); // // assertThat(posts.getCreatedDate()).isAfter(now); // assertThat(posts.getModifiedDate()).isAfter(now); // } }
[ "sleepygloa@gmail.com" ]
sleepygloa@gmail.com
abb31940e0f62b5a7f8a3bb702c886d3c691116e
fd000fc5f2ae539f9fba206cee19816d3da1a87a
/src/java/iesb/poo2/mvc/ControllerServlet.java
86e833fec5fcde484e3adf32a5068b1b0ff77e69
[]
no_license
glhr-alcantara/TerminalVenda
e3fa4927219f051d834b54c06ad7e21856bf97f1
58ff55c06c2f64a1bf7b578c519aa77f6ec2dad6
refs/heads/master
2020-03-30T00:01:14.850972
2018-09-27T00:06:54
2018-09-27T00:06:54
150,501,104
0
0
null
null
null
null
UTF-8
Java
false
false
1,498
java
package iesb.poo2.mvc; import iesb.poo2.bean.LoginBean; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @WebServlet(urlPatterns = {"/ControllerServlet"}) public class ControllerServlet extends HttpServlet { protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); PrintWriter out = response.getWriter(); String name = request.getParameter("name"); String password = request.getParameter("password"); LoginBean bean = new LoginBean(); bean.setName(name); bean.setPassword(password); request.setAttribute("bean", bean); boolean status = bean.validate(); if (status) { RequestDispatcher rd = request.getRequestDispatcher("login-success.jsp"); rd.forward(request, response); } else { RequestDispatcher rd = request.getRequestDispatcher("login-error.jsp"); rd.forward(request, response); } } @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doPost(req, resp); } }
[ "douglasantana007@gmail.com" ]
douglasantana007@gmail.com
3d4edb717e5bf7d32c9d90c1daca2c8580470bba
4c8a860f2e6bf5dc1d6ad78ae00bc5e4fa98d09c
/src/main/java/com/platzi/market/persistence/entity/Cliente.java
70e09b7bd53c9b584178a768d38d8a68cb725158
[]
no_license
MayraTejada/platzimarketSpring
7492768c1f287b295d8111ba8ae8e55e2466e41c
f00194f8ba17ed134beed902a321568104c3e2bb
refs/heads/main
2023-08-18T23:41:55.664154
2021-09-22T20:50:35
2021-09-22T20:50:35
409,294,132
0
0
null
null
null
null
UTF-8
Java
false
false
1,542
java
package com.platzi.market.persistence.entity; import javax.persistence.*; import java.util.List; @Entity @Table(name="clientes") public class Cliente { @Id private String id; private String nombre; private String apellidos; private Long celular; private String direccion; @Column(name="correo_electronico") private String correoElectronico; @OneToMany(mappedBy = "cliente") private List<Compra> compras; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getNombre() { return nombre; } public void setNombre(String nombre) { this.nombre = nombre; } public String getApellidos() { return apellidos; } public void setApellidos(String apellidos) { this.apellidos = apellidos; } public Long getCelular() { return celular; } public void setCelular(Long celular) { this.celular = celular; } public String getDireccion() { return direccion; } public void setDireccion(String direccion) { this.direccion = direccion; } public String getCorreoElectronico() { return correoElectronico; } public void setCorreoElectronico(String correoElectronico) { this.correoElectronico = correoElectronico; } public List<Compra> getCompras() { return compras; } public void setCompras(List<Compra> compras) { this.compras = compras; } }
[ "mptejadao@unal.edu.co" ]
mptejadao@unal.edu.co
61299ef15de171dadba4c260b347ad5777eb1c7c
e099e5db4bf3316f27cb1040279c3b61e10328e5
/src/test/java/Test1.java
763969a91acb423b9c05a716c397329c6e916440
[]
no_license
madhan1982/RestAssuredTesting
e6f673023630d33d9a84b736a5b9c3a44844a272
b02f296a447bb1090c315014112c4d42ca81f6fd
refs/heads/master
2022-12-20T19:20:52.927303
2020-09-24T13:31:06
2020-09-24T13:31:06
298,288,110
0
0
null
null
null
null
UTF-8
Java
false
false
1,715
java
import static io.restassured.RestAssured.*; import com.sun.xml.internal.xsom.impl.scd.Iterators; import io.restassured.RestAssured; import io.restassured.response.Response; import io.restassured.response.ValidatableResponse; import netscape.javascript.JSObject; import org.json.simple.JSONObject; import org.testng.Assert; import org.testng.annotations.Test; import sun.lwawt.macosx.CSystemTray; import java.util.HashMap; import java.util.Map; import static io.restassured.matcher.RestAssuredMatchers.*; import static org.hamcrest.Matchers.*; public class Test1 { @Test public void test1(){ System.out.println("Test 1"); Response response = RestAssured.get("https://reqres.in/api/users?page=2"); System.out.println(response.statusCode()); System.out.println(response.getBody().toString()); System.out.println(response.getBody()); System.out.println(response.getContentType().toString()); System.out.println(response.xmlPath().toString()); // Assert.assertEquals(response.statusCode(), 300); } @Test public void test2(){ given().get("https://reqres.in/api/users?page=2").then().statusCode(200) .body("data.id[1]", equalTo(9)); } @Test void test3(){ given().get("https://reqres.in/api/users?page=2").then(). body("data.first_name", hasItems("Linsay")); } @Test public void test4() { Map<String,Object> map = new HashMap<String, Object>(); map.put("Name", "Madan"); map.put("Role", "Test Manager"); JSONObject request = new JSONObject(map); System.out.println(map); System.out.println(request); } }
[ "madankommera@madans-MacBook-Pro.local" ]
madankommera@madans-MacBook-Pro.local
fd681ee257ffe198e2aa2efa8b589f23c6f2dae2
91b77e10b72631275e385b816c86376a232e6c0a
/src/main/java/whz/pti/eva/pizzaService/customer/service/DeliveryAddressService.java
75635f7e8af0b7da87b739a54fc928155d3551bd
[]
no_license
aianab/PizzaService
b88bd5c00a6a1892531dd6eb415d558aac221fbe
5c3c3ee7d8aa2b4109ed17321d7129f42202763a
refs/heads/master
2023-02-14T21:58:26.369998
2020-12-06T13:18:26
2020-12-06T13:18:26
319,034,487
0
0
null
2020-12-13T15:20:10
2020-12-06T13:02:27
Java
UTF-8
Java
false
false
260
java
package whz.pti.eva.pizzaService.customer.service; import whz.pti.eva.pizzaService.customer.domain.Customer; public interface DeliveryAddressService { void addAddress(String steet, String houseNumber, String town, String postalCode, Customer customer); }
[ "aiana.baitakova.j35@fh-zwickau.de" ]
aiana.baitakova.j35@fh-zwickau.de
20c43d15c247c64e0e1fda58e285b0e0a6fdb884
ff4e388c0edb5b099d5dba9ea03fb9eec6176343
/base-mall/base-mall-common/src/main/java/com/joolun/cloud/mall/common/vo/SeckillGoods.java
122d365303f0710b8bae4eef37ed792454075b07
[]
no_license
yafeida2709/joolun
1ea03835322ebad86796aa2a3af5d2b1c02da863
bb9e91d26e82b9f38330433af0a88182e2d6daff
refs/heads/master
2022-12-23T08:29:51.501579
2020-03-25T04:41:04
2020-03-25T04:41:04
249,888,328
1
6
null
2022-12-14T20:42:07
2020-03-25T04:40:37
TSQL
UTF-8
Java
false
false
979
java
package com.joolun.cloud.mall.common.vo; import java.time.LocalDateTime; import com.baomidou.mybatisplus.annotation.TableField; import com.joolun.cloud.common.data.mybatis.typehandler.ArrayStringTypeHandler; import lombok.Data; import org.apache.ibatis.type.JdbcType; import java.io.Serializable; import java.math.BigDecimal; import java.time.LocalDateTime; @Data public class SeckillGoods implements Serializable { private String spuId; private String skuId; private String spuName; private String sellPoint; private String phoneSystem; private String lowDissipation; private String category; private String operatorName; private String packageName; private String attributionProvince; private String attributionCity; private BigDecimal seckillPrice; private LocalDateTime seckillStartTime; private LocalDateTime seckillEndTime; // @TableField(typeHandler = ArrayStringTypeHandler.class, jdbcType= JdbcType.VARCHAR) private String[] picUrls; }
[ "948445086@qq.com" ]
948445086@qq.com
6775e4521e51a8c93d572bf6790bbcf012f1b2db
38da315c5c7295ed80fa3ad8b3cabd10e2e4641e
/litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallUserCardMapper.java
e5c82c6b612c32a5ac5ecb5e96a7819fd81eacb5
[]
no_license
Moutday/litemall
fe52299409ea132bc80bc362d7697e12029d0035
26282f437cb192d4dd8d8ad736e6249ac7d1cdb3
refs/heads/master
2023-02-17T19:42:47.427191
2021-01-16T09:50:44
2021-01-16T09:50:44
327,228,608
0
0
null
null
null
null
UTF-8
Java
false
false
4,926
java
package org.linlinjava.litemall.db.dao; import java.util.List; import org.apache.ibatis.annotations.Param; import org.linlinjava.litemall.db.domain.LitemallUserCard; import org.linlinjava.litemall.db.domain.LitemallUserCardExample; public interface LitemallUserCardMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ long countByExample(LitemallUserCardExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ int deleteByExample(LitemallUserCardExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ int deleteByPrimaryKey(Integer id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ int insert(LitemallUserCard record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ int insertSelective(LitemallUserCard record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ LitemallUserCard selectOneByExample(LitemallUserCardExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ LitemallUserCard selectOneByExampleSelective(@Param("example") LitemallUserCardExample example, @Param("selective") LitemallUserCard.Column ... selective); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ List<LitemallUserCard> selectByExampleSelective(@Param("example") LitemallUserCardExample example, @Param("selective") LitemallUserCard.Column ... selective); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ List<LitemallUserCard> selectByExample(LitemallUserCardExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ LitemallUserCard selectByPrimaryKeySelective(@Param("id") Integer id, @Param("selective") LitemallUserCard.Column ... selective); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ LitemallUserCard selectByPrimaryKey(Integer id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ LitemallUserCard selectByPrimaryKeyWithLogicalDelete(@Param("id") Integer id, @Param("andLogicalDeleted") boolean andLogicalDeleted); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ int updateByExampleSelective(@Param("record") LitemallUserCard record, @Param("example") LitemallUserCardExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ int updateByExample(@Param("record") LitemallUserCard record, @Param("example") LitemallUserCardExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ int updateByPrimaryKeySelective(LitemallUserCard record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ int updateByPrimaryKey(LitemallUserCard record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ int logicalDeleteByExample(@Param("example") LitemallUserCardExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table litemall_user_card * * @mbg.generated */ int logicalDeleteByPrimaryKey(Integer id); }
[ "wumingwu@nome.com" ]
wumingwu@nome.com
25fbba14b27154e20055aded65003dd32c2d5d37
b4c835d1868bdcdfc55961c5f7b22615fe14a0d6
/SPRING-DATA/questions/src/main/java/com/codingdojo/questions/services/AnswerService.java
3807ca43487c6384b97193672687f9d9fb7ad3ef
[]
no_license
mmeekah/Java-CodingDojo
d06652097f3e6dcd6ad1be1ac2cab12db7c6b50a
79ad8a5ce869d09cf1ce86b67fba39ed38e9639d
refs/heads/master
2023-06-04T12:11:01.444547
2021-06-29T15:49:58
2021-06-29T15:49:58
381,418,825
0
0
null
null
null
null
UTF-8
Java
false
false
485
java
package com.codingdojo.questions.services; import org.springframework.stereotype.Service; import com.codingdojo.questions.models.Answer; import com.codingdojo.questions.repositories.AnswerRepository; @Service public class AnswerService { private final AnswerRepository answerRepository; public AnswerService(AnswerRepository aRepository) { this.answerRepository = aRepository; } public Answer addAnswer(Answer answer) { return this.answerRepository.save(answer); } }
[ "mereilim@Aitassovas-MacBook-Pro.local" ]
mereilim@Aitassovas-MacBook-Pro.local
304b90e2b726095bb6c096d10736dd56c067fdb1
7f662a2b1f32a49b253194167a7fc9c62d982550
/src/main/java/org/mym/ksuite/spring/support/security/principal/AccountPrincipal.java
a42169888d4ba84cc2d278aad64b9fff5252df8f
[ "Apache-2.0" ]
permissive
coxon/K-Suite
fa8b48fe7b1d08c507a7744472196d7e1516b4e3
9b578071c927ce893d08c59af3f7e6a5b840e6e6
refs/heads/master
2023-04-05T13:26:14.569549
2021-04-19T03:57:22
2021-04-19T03:57:22
272,951,701
1
0
null
2020-06-17T11:04:00
2020-06-17T11:03:59
null
UTF-8
Java
false
false
1,566
java
package org.mym.ksuite.spring.support.security.principal; import lombok.*; import lombok.experimental.FieldDefaults; import org.mym.ksuite.spring.support.security.em.AuthorityRole; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.authority.SimpleGrantedAuthority; import org.springframework.security.core.userdetails.UserDetails; import java.util.Collection; import java.util.Collections; /** * account info * * @author zhangchao */ @FieldDefaults(level = AccessLevel.PRIVATE) @Getter @Setter @Builder @AllArgsConstructor @NoArgsConstructor public class AccountPrincipal implements UserDetails { /** * account.username */ String username; /** * account.password */ String password; /** * who is an admin */ boolean admin; @Override public Collection<? extends GrantedAuthority> getAuthorities() { return Collections.singletonList(new SimpleGrantedAuthority(admin ? AuthorityRole.ROLE_ADMIN.name() : AuthorityRole.ROLE_USER.name())); } @Override public String getPassword() { return password; } @Override public String getUsername() { return username; } @Override public boolean isAccountNonExpired() { return true; } @Override public boolean isAccountNonLocked() { return true; } @Override public boolean isCredentialsNonExpired() { return true; } @Override public boolean isEnabled() { return true; } }
[ "zhangyang@asiainfo.com" ]
zhangyang@asiainfo.com
051159bbe9d33b343588f3d3cb36cfeb95755969
d6ae2cf9bdc189b9cbd662c504eea9787a7945b8
/src/com/Config.java
601e74a05a059c98d546c0de0fe76d9ed2d3465e
[]
no_license
hanjg/njuPyb
cef5dc345ce283d037fdeee4a7f407a7ee7ae65e
7588ab2b1409fba1e66d74e215dcbe17382b1ba5
refs/heads/master
2021-01-19T12:19:10.755615
2017-02-18T02:50:21
2017-02-18T02:50:21
82,304,637
0
0
null
null
null
null
UTF-8
Java
false
false
751
java
package com; public class Config { /** * 本地存储cookie路径 */ public static final String COOKIE_PATH="jwCookies"; /** * 获得验证码的地址 */ public static final String VERIFYING_CODE_PATH="http://cer.nju.edu.cn/amserver/verify/image.jsp?0.040270094125394174"; /** * 登录地址 */ public static final String LOGIN_URL="http://cer.nju.edu.cn/amserver/UI/Login"; /** * 成绩表地址 */ public static final String SCORE_URL="http://pyb.nju.edu.cn/student/queryScoreInfo.action"; /** * 下线地址 */ public static final String LOGOUT_URL="http://pyb.nju.edu.cn/logout.action"; /** * 账号 */ public static final String ACCOUNT=""; /** * 密码 */ public static final String PASSWORD=""; }
[ "409017803@qq.com" ]
409017803@qq.com
067871941b6dc6adbaaff2d4ca1b3da55ba956f6
c24fe92ed8bb018da0a7251da610da77c5e04370
/src/main/java/it/cnr/ilc/jlremap/entities/LremapConferenceYears.java
1f6ddd7fc7ad7bf90ab094a960ddc890839ae5b8
[]
no_license
riccardodg/jlremap
4b81b173e9d4e709ac7dedc5c73b771583d44418
1936572a81f6236c1e6940ed808ae37c3b3b8ad2
refs/heads/master
2022-06-23T21:16:10.149757
2019-05-31T11:42:58
2019-05-31T11:42:58
95,086,188
0
0
null
2022-06-20T23:12:29
2017-06-22T07:16:19
Java
UTF-8
Java
false
false
2,776
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 it.cnr.ilc.jlremap.entities; import java.io.Serializable; import javax.persistence.EmbeddedId; import javax.persistence.Entity; import javax.persistence.NamedQueries; import javax.persistence.NamedQuery; import javax.persistence.Table; import javax.xml.bind.annotation.XmlRootElement; /** * * @author riccardo */ @Entity @Table(name = "lremap_conference_years") @XmlRootElement @NamedQueries({ @NamedQuery(name = "LremapConferenceYears.findAll", query = "SELECT l FROM LremapConferenceYears l"), @NamedQuery(name = "LremapConferenceYears.findByConf", query = "SELECT l FROM LremapConferenceYears l WHERE l.lremapConferenceYearsPK.conf = :conf"), @NamedQuery(name = "LremapConferenceYears.findByYear", query = "SELECT l FROM LremapConferenceYears l WHERE l.lremapConferenceYearsPK.year = :year")}) public class LremapConferenceYears implements Serializable { private static final long serialVersionUID = 1L; @EmbeddedId protected LremapConferenceYearsPK lremapConferenceYearsPK; public LremapConferenceYears() { } public LremapConferenceYears(LremapConferenceYearsPK lremapConferenceYearsPK) { this.lremapConferenceYearsPK = lremapConferenceYearsPK; } public LremapConferenceYears(String conf, String year) { this.lremapConferenceYearsPK = new LremapConferenceYearsPK(conf, year); } public LremapConferenceYearsPK getLremapConferenceYearsPK() { return lremapConferenceYearsPK; } public void setLremapConferenceYearsPK(LremapConferenceYearsPK lremapConferenceYearsPK) { this.lremapConferenceYearsPK = lremapConferenceYearsPK; } @Override public int hashCode() { int hash = 0; hash += (lremapConferenceYearsPK != null ? lremapConferenceYearsPK.hashCode() : 0); return hash; } @Override public boolean equals(Object object) { // TODO: Warning - this method won't work in the case the id fields are not set if (!(object instanceof LremapConferenceYears)) { return false; } LremapConferenceYears other = (LremapConferenceYears) object; if ((this.lremapConferenceYearsPK == null && other.lremapConferenceYearsPK != null) || (this.lremapConferenceYearsPK != null && !this.lremapConferenceYearsPK.equals(other.lremapConferenceYearsPK))) { return false; } return true; } @Override public String toString() { return "it.cnr.ilc.jlremap.entities.LremapConferenceYears[ lremapConferenceYearsPK=" + lremapConferenceYearsPK + " ]"; } }
[ "riccardo.delgratta@ilc.cnr.it" ]
riccardo.delgratta@ilc.cnr.it
dae56bacbfb9ea4be2644b8d1dddc488ca2bede7
432c4a9929705b8e496ddfb1cb7993fca8f68227
/src/main/java/com/kuma/im/client/console/ConsoleCommander.java
5bc595fcc4c69e964d2feb074d8fee5ed42537cc
[]
no_license
xioshe/netty-im
8e5e1b5e86ec577928383a13b8c8ce1bb6a1a926
6e84c7f435e2594dbd0e567b37f798b080517d07
refs/heads/master
2023-03-12T19:17:54.521964
2021-02-28T09:51:55
2021-02-28T09:51:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
274
java
package com.kuma.im.client.console; import io.netty.channel.Channel; import java.util.Scanner; /** * 控制台交互接口 * 负责处理 IO 请求 * * @author kuma 2021-02-27 */ public interface ConsoleCommander { void exec(Scanner scanner, Channel channel); }
[ "lostkite@outlook.com" ]
lostkite@outlook.com
eb5ab6cdbd3b85093b1470f4a0a8bb03255ee6db
e46d9903a892319041b0f40779120e10e255d62d
/MvvmCross Application1/MvvmCross_Application1.Droid/obj/x86/Debug/android/mvvmcross_application1/mvvmcross_application1/R.java
bc18a42952a1ceb96089d98b31adaed333c3fda5
[]
no_license
IrynaMoiseeva/mvvmcross_xamarin_android
ee533f981a560bc69081e52dbcdb4c9ae5b35d06
dac76153735ddc02afe01794d50ffefa40396245
refs/heads/master
2020-03-28T18:53:05.816381
2018-09-15T17:07:41
2018-09-15T17:07:41
148,923,067
0
0
null
null
null
null
UTF-8
Java
false
false
682,720
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 mvvmcross_application1.mvvmcross_application1; 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 design_bottom_sheet_slide_in=0x7f05000a; public static final int design_bottom_sheet_slide_out=0x7f05000b; public static final int design_snackbar_in=0x7f05000c; public static final int design_snackbar_out=0x7f05000d; public static final int tooltip_enter=0x7f05000e; public static final int tooltip_exit=0x7f05000f; } public static final class animator { public static final int design_appbar_state_list_animator=0x7f060000; } public static final class array { public static final int sections=0x7f0f0000; } public static final class attr { /** <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 MvxBind=0x7f01015b; /** <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 MvxDropDownItemTemplate=0x7f01015f; /** <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 MvxGroupItemTemplate=0x7f010160; /** <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 MvxItemTemplate=0x7f01015e; /** <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 MvxLang=0x7f01015c; /** <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 MvxSource=0x7f010161; /** <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 MvxTemplate=0x7f01015d; /** <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 MvxTemplateSelector=0x7f01015a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 actionBarItemBackground=0x7f010053; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f01004c; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=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 actionBarSplitStyle=0x7f01004e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 actionBarTabBarStyle=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 actionBarTabStyle=0x7f010047; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f010049; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 actionBarWidgetTheme=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 actionButtonStyle=0x7f01006d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010069; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionLayout=0x7f0100c4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f010054; /** <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=0x7f010055; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 actionModeCloseButtonStyle=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 actionModeCloseDrawable=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 actionModeCopyDrawable=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 actionModeCutDrawable=0x7f01005b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010060; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePasteDrawable=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 actionModePopupWindowStyle=0x7f010062; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f01005e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f01005f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010059; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010056; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010061; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowButtonStyle=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 actionOverflowMenuStyle=0x7f01004b; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionProviderClass=0x7f0100c6; /** <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=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 activityChooserViewStyle=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 alertDialogButtonGroupStyle=0x7f01009a; /** <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=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 alertDialogStyle=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 alertDialogTheme=0x7f01009c; /** <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 allowStacking=0x7f0100b2; /** <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 alpha=0x7f0100b3; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> */ public static final int alphabeticModifiers=0x7f0100c1; /** <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=0x7f0100ba; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowShaftLength=0x7f0100bb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=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 autoSizeMaxTextSize=0x7f01003b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int autoSizeMinTextSize=0x7f01003a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 autoSizePresetSizes=0x7f010039; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int autoSizeStepGranularity=0x7f010038; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>uniform</code></td><td>1</td><td></td></tr> </table> */ public static final int autoSizeTextType=0x7f010037; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010015; /** <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=0x7f010017; /** <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=0x7f010016; /** <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=0x7f0100fd; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int backgroundTintMode=0x7f0100fe; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int barLength=0x7f0100bc; /** <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 behavior_autoHide=0x7f010128; /** <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 behavior_hideable=0x7f010105; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_overlapTop=0x7f010131; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> </table> */ public static final int behavior_peekHeight=0x7f010104; /** <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 behavior_skipCollapsed=0x7f010106; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int borderWidth=0x7f010126; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010072; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomSheetDialogTheme=0x7f010120; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 bottomSheetStyle=0x7f010121; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f01006f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=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 buttonBarNeutralButtonStyle=0x7f0100a0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f01009e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarStyle=0x7f01006e; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> */ public static final int buttonGravity=0x7f0100f2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 buttonStyle=0x7f0100a2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f0100a3; /** <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=0x7f0100b4; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int buttonTintMode=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 checkboxStyle=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 checkedTextViewStyle=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 closeIcon=0x7f0100d5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010027; /** <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=0x7f0100f4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f0100f3; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int collapsedTitleGravity=0x7f010113; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 collapsedTitleTextAppearance=0x7f01010d; /** <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=0x7f0100b6; /** <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=0x7f010091; /** <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 colorBackgroundFloating=0x7f010098; /** <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=0x7f010095; /** <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=0x7f010093; /** <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=0x7f010094; /** <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=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 colorError=0x7f0100b1; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimary=0x7f01008f; /** <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=0x7f010090; /** <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=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 commitIcon=0x7f0100da; /** <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 contentDescription=0x7f0100c7; /** <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=0x7f010020; /** <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 contentInsetEndWithActions=0x7f010024; /** <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=0x7f010021; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetRight=0x7f010022; /** <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=0x7f01001f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStartWithNavigation=0x7f010023; /** <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 contentScrim=0x7f01010e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010097; /** <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 counterEnabled=0x7f010147; /** <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 counterMaxLength=0x7f010148; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 counterOverflowTextAppearance=0x7f01014a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 counterTextAppearance=0x7f010149; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010018; /** <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=0x7f0100d4; /** <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=0x7f010067; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dialogTheme=0x7f010066; /** <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=0x7f01000e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int divider=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 dividerHorizontal=0x7f010074; /** <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=0x7f0100c0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerVertical=0x7f010073; /** <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=0x7f0100b8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f010009; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f010086; /** <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=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 editTextBackground=0x7f01007b; /** <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=0x7f01007a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextStyle=0x7f0100a6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int elevation=0x7f010025; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int errorEnabled=0x7f010145; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int errorTextAppearance=0x7f010146; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010029; /** <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 expanded=0x7f0100ff; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int expandedTitleGravity=0x7f010114; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMargin=0x7f010107; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginBottom=0x7f01010b; /** <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 expandedTitleMarginEnd=0x7f01010a; /** <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 expandedTitleMarginStart=0x7f010108; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginTop=0x7f010109; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandedTitleTextAppearance=0x7f01010c; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> */ public static final int fabSize=0x7f010124; /** <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 fastScrollEnabled=0x7f010004; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollHorizontalThumbDrawable=0x7f010007; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollHorizontalTrackDrawable=0x7f010008; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollVerticalThumbDrawable=0x7f010005; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollVerticalTrackDrawable=0x7f010006; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int font=0x7f010158; /** <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 fontFamily=0x7f01003c; /** <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 fontProviderAuthority=0x7f010151; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 fontProviderCerts=0x7f010154; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>blocking</code></td><td>0</td><td></td></tr> <tr><td><code>async</code></td><td>1</td><td></td></tr> </table> */ public static final int fontProviderFetchStrategy=0x7f010155; /** <p>May be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>forever</code></td><td>-1</td><td></td></tr> </table> */ public static final int fontProviderFetchTimeout=0x7f010156; /** <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 fontProviderPackage=0x7f010152; /** <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 fontProviderQuery=0x7f010153; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>italic</code></td><td>1</td><td></td></tr> </table> */ public static final int fontStyle=0x7f010157; /** <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 fontWeight=0x7f010159; /** <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 foregroundInsidePadding=0x7f010129; /** <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=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 goIcon=0x7f0100d6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 headerLayout=0x7f01012f; /** <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=0x7f01000a; /** <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=0x7f01001e; /** <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 hintAnimationEnabled=0x7f01014b; /** <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 hintEnabled=0x7f010144; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 hintTextAppearance=0x7f010143; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f01006c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeLayout=0x7f010019; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010012; /** <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 iconTint=0x7f0100c9; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int iconTintMode=0x7f0100ca; /** <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=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 imageButtonStyle=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 indeterminateProgressStyle=0x7f01001b; /** <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=0x7f010028; /** <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 insetForeground=0x7f010130; /** <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=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 itemBackground=0x7f01012d; /** <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 itemIconTint=0x7f01012b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemPadding=0x7f01001d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 itemTextAppearance=0x7f01012e; /** <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 itemTextColor=0x7f01012c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int keylines=0x7f010118; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f0100d1; /** <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=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 layout_anchor=0x7f01011b; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int layout_anchorGravity=0x7f01011d; /** <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 layout_behavior=0x7f01011a; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> */ public static final int layout_collapseMode=0x7f010116; /** <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 layout_collapseParallaxMultiplier=0x7f010117; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> */ public static final int layout_dodgeInsetEdges=0x7f01011f; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int layout_insetEdge=0x7f01011e; /** <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 layout_keyline=0x7f01011c; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> */ public static final int layout_scrollFlags=0x7f010102; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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_scrollInterpolator=0x7f010103; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 listDividerAlertDialog=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 listItemLayout=0x7f01002e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f01002b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 listMenuViewStyle=0x7f0100ae; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f010087; /** <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=0x7f010081; /** <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=0x7f010083; /** <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=0x7f010082; /** <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=0x7f010084; /** <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=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 logo=0x7f010013; /** <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=0x7f0100f7; /** <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 maxActionInlineWidth=0x7f010132; /** <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=0x7f0100f1; /** <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=0x7f0100be; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int menu=0x7f01012a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f01002c; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int navigationContentDescription=0x7f0100f6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f0100f5; /** <p>Must be one of the following constant values.</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=0x7f01000d; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> */ public static final int numericModifiers=0x7f0100c2; /** <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=0x7f0100cd; /** <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 paddingBottomNoButtons=0x7f0100cf; /** <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=0x7f0100fb; /** <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=0x7f0100fa; /** <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 paddingTopNoTitle=0x7f0100d0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelBackground=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 panelMenuListTheme=0x7f01008d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int panelMenuListWidth=0x7f01008c; /** <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 passwordToggleContentDescription=0x7f01014e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 passwordToggleDrawable=0x7f01014d; /** <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 passwordToggleEnabled=0x7f01014c; /** <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 passwordToggleTint=0x7f01014f; /** <p>Must be one of the following constant values.</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 passwordToggleTintMode=0x7f010150; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 popupTheme=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 popupWindowStyle=0x7f010079; /** <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=0x7f0100cb; /** <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 pressedTranslationZ=0x7f010125; /** <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=0x7f01001c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 queryBackground=0x7f0100dc; /** <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=0x7f0100d3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 ratingBarStyle=0x7f0100a8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 ratingBarStyleIndicator=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 ratingBarStyleSmall=0x7f0100aa; /** <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=0x7f010002; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int rippleColor=0x7f010123; /** <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 scrimAnimationDuration=0x7f010112; /** <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 scrimVisibleHeightTrigger=0x7f010111; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchHintIcon=0x7f0100d8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 searchViewStyle=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 seekBarStyle=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 selectableItemBackground=0x7f010070; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f010071; /** <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=0x7f0100c3; /** <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=0x7f0100bf; /** <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=0x7f0100e8; /** <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 showTitle=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 singleChoiceItemLayout=0x7f01002d; /** <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=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 spinBars=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 spinnerDropDownItemStyle=0x7f01006b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerStyle=0x7f0100ac; /** <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=0x7f0100e7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 srcCompat=0x7f010030; /** <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=0x7f010003; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_above_anchor=0x7f0100ce; /** <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_collapsed=0x7f010100; /** <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_collapsible=0x7f010101; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 statusBarBackground=0x7f010119; /** <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 statusBarScrim=0x7f01010f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subMenuArrow=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 submitBackground=0x7f0100dd; /** <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=0x7f01000f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f0100ea; /** <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=0x7f0100f9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 suggestionRowLayout=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 switchMinWidth=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 switchPadding=0x7f0100e6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=0x7f0100ad; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 tabBackground=0x7f010136; /** <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 tabContentStart=0x7f010135; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> */ public static final int tabGravity=0x7f010138; /** <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 tabIndicatorColor=0x7f010133; /** <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 tabIndicatorHeight=0x7f010134; /** <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 tabMaxWidth=0x7f01013a; /** <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 tabMinWidth=0x7f010139; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> */ public static final int tabMode=0x7f010137; /** <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 tabPadding=0x7f010142; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingBottom=0x7f010141; /** <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 tabPaddingEnd=0x7f010140; /** <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 tabPaddingStart=0x7f01013e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingTop=0x7f01013f; /** <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 tabSelectedTextColor=0x7f01013d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 tabTextAppearance=0x7f01013b; /** <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 tabTextColor=0x7f01013c; /** <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=0x7f010036; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=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 textAppearanceListItem=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 textAppearanceListItemSecondary=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 textAppearanceListItemSmall=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 textAppearancePopupMenuHeader=0x7f010065; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 textAppearanceSearchResultTitle=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 textAppearanceSmallPopupMenu=0x7f010064; /** <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=0x7f01009d; /** <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 textColorError=0x7f010122; /** <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=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 theme=0x7f0100fc; /** <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=0x7f0100bd; /** <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=0x7f0100e3; /** <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 thumbTint=0x7f0100de; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int thumbTintMode=0x7f0100df; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 tickMark=0x7f010033; /** <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 tickMarkTint=0x7f010034; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int tickMarkTintMode=0x7f010035; /** <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 tint=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>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int tintMode=0x7f010032; /** <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=0x7f01000c; /** <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 titleEnabled=0x7f010115; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargin=0x7f0100eb; /** <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=0x7f0100ef; /** <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=0x7f0100ed; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginStart=0x7f0100ec; /** <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=0x7f0100ee; /** <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=0x7f0100f0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextAppearance=0x7f0100e9; /** <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=0x7f0100f8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextStyle=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 toolbarId=0x7f010110; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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=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 toolbarStyle=0x7f010076; /** <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 tooltipForegroundColor=0x7f0100b0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>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 tooltipFrameBackground=0x7f0100af; /** <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 tooltipText=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 track=0x7f0100e0; /** <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 trackTint=0x7f0100e1; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int trackTintMode=0x7f0100e2; /** <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 useCompatPadding=0x7f010127; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int voiceIcon=0x7f0100d9; /** <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=0x7f01003d; /** <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=0x7f01003f; /** <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=0x7f010040; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010044; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010042; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010041; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010043; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010045; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010046; /** <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=0x7f01003e; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f0c0000; public static final int abc_allow_stacked_button_bar=0x7f0c0001; public static final int abc_config_actionMenuItemAllCaps=0x7f0c0002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f0c0003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0c0004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0d0070; public static final int abc_background_cache_hint_selector_material_light=0x7f0d0071; public static final int abc_btn_colored_borderless_text_material=0x7f0d0072; public static final int abc_btn_colored_text_material=0x7f0d0073; public static final int abc_color_highlight_material=0x7f0d0074; public static final int abc_hint_foreground_material_dark=0x7f0d0075; public static final int abc_hint_foreground_material_light=0x7f0d0076; public static final int abc_input_method_navigation_guard=0x7f0d0000; public static final int abc_primary_text_disable_only_material_dark=0x7f0d0077; public static final int abc_primary_text_disable_only_material_light=0x7f0d0078; public static final int abc_primary_text_material_dark=0x7f0d0079; public static final int abc_primary_text_material_light=0x7f0d007a; public static final int abc_search_url_text=0x7f0d007b; public static final int abc_search_url_text_normal=0x7f0d0001; public static final int abc_search_url_text_pressed=0x7f0d0002; public static final int abc_search_url_text_selected=0x7f0d0003; public static final int abc_secondary_text_material_dark=0x7f0d007c; public static final int abc_secondary_text_material_light=0x7f0d007d; public static final int abc_tint_btn_checkable=0x7f0d007e; public static final int abc_tint_default=0x7f0d007f; public static final int abc_tint_edittext=0x7f0d0080; public static final int abc_tint_seek_thumb=0x7f0d0081; public static final int abc_tint_spinner=0x7f0d0082; public static final int abc_tint_switch_track=0x7f0d0083; public static final int accent=0x7f0d005c; public static final int accent_material_dark=0x7f0d0004; public static final int accent_material_light=0x7f0d0005; public static final int background_floating_material_dark=0x7f0d0006; public static final int background_floating_material_light=0x7f0d0007; public static final int background_material_dark=0x7f0d0008; public static final int background_material_light=0x7f0d0009; public static final int black=0x7f0d004d; public static final int black10Opaque=0x7f0d004e; public static final int black20Opaque=0x7f0d004f; public static final int black30Opaque=0x7f0d0050; public static final int black80Opaque=0x7f0d0051; public static final int bright_foreground_disabled_material_dark=0x7f0d000a; public static final int bright_foreground_disabled_material_light=0x7f0d000b; public static final int bright_foreground_inverse_material_dark=0x7f0d000c; public static final int bright_foreground_inverse_material_light=0x7f0d000d; public static final int bright_foreground_material_dark=0x7f0d000e; public static final int bright_foreground_material_light=0x7f0d000f; public static final int button_material_dark=0x7f0d0010; public static final int button_material_light=0x7f0d0011; public static final int darkBlue=0x7f0d0063; public static final int darkBlue1=0x7f0d0064; public static final int darkBlue2=0x7f0d0065; public static final int darkBlue3=0x7f0d006f; public static final int darkCyan=0x7f0d006c; public static final int darkCyanLimeGreen=0x7f0d006b; public static final int darkGray1=0x7f0d0067; public static final int darkGrayishBlue=0x7f0d0052; public static final int darkGrayishBlue1=0x7f0d0053; public static final int darkLimeGreen=0x7f0d0062; public static final int darkModerateLimeGreen=0x7f0d006a; public static final int design_bottom_navigation_shadow_color=0x7f0d003c; public static final int design_error=0x7f0d0084; public static final int design_fab_shadow_end_color=0x7f0d003d; public static final int design_fab_shadow_mid_color=0x7f0d003e; public static final int design_fab_shadow_start_color=0x7f0d003f; public static final int design_fab_stroke_end_inner_color=0x7f0d0040; public static final int design_fab_stroke_end_outer_color=0x7f0d0041; public static final int design_fab_stroke_top_inner_color=0x7f0d0042; public static final int design_fab_stroke_top_outer_color=0x7f0d0043; public static final int design_snackbar_background_color=0x7f0d0044; public static final int design_tint_password_toggle=0x7f0d0085; public static final int dim_foreground_disabled_material_dark=0x7f0d0012; public static final int dim_foreground_disabled_material_light=0x7f0d0013; public static final int dim_foreground_material_dark=0x7f0d0014; public static final int dim_foreground_material_light=0x7f0d0015; public static final int error_color_material=0x7f0d0016; public static final int foreground_material_dark=0x7f0d0017; public static final int foreground_material_light=0x7f0d0018; public static final int gray=0x7f0d0054; public static final int gray1=0x7f0d0055; public static final int grayishCyan=0x7f0d0056; public static final int green=0x7f0d0066; public static final int highlighted_text_material_dark=0x7f0d0019; public static final int highlighted_text_material_light=0x7f0d001a; public static final int material_blue_grey_800=0x7f0d001b; public static final int material_blue_grey_900=0x7f0d001c; public static final int material_blue_grey_950=0x7f0d001d; public static final int material_deep_teal_200=0x7f0d001e; public static final int material_deep_teal_500=0x7f0d001f; public static final int material_grey_100=0x7f0d0020; public static final int material_grey_300=0x7f0d0021; public static final int material_grey_50=0x7f0d0022; public static final int material_grey_600=0x7f0d0023; public static final int material_grey_800=0x7f0d0024; public static final int material_grey_850=0x7f0d0025; public static final int material_grey_900=0x7f0d0026; public static final int middleGray=0x7f0d0068; public static final int notification_action_color_filter=0x7f0d0045; public static final int notification_icon_bg_color=0x7f0d0046; public static final int notification_material_background_media_default_color=0x7f0d003b; public static final int primary=0x7f0d005a; public static final int primaryDark=0x7f0d005b; public static final int primary_dark_material_dark=0x7f0d0027; public static final int primary_dark_material_light=0x7f0d0028; public static final int primary_material_dark=0x7f0d0029; public static final int primary_material_light=0x7f0d002a; public static final int primary_text_default_material_dark=0x7f0d002b; public static final int primary_text_default_material_light=0x7f0d002c; public static final int primary_text_disabled_material_dark=0x7f0d002d; public static final int primary_text_disabled_material_light=0x7f0d002e; public static final int pureOrMostlyPureBlue=0x7f0d0059; public static final int ripple_material_dark=0x7f0d002f; public static final int ripple_material_light=0x7f0d0030; public static final int secondary_text_default_material_dark=0x7f0d0031; public static final int secondary_text_default_material_light=0x7f0d0032; public static final int secondary_text_disabled_material_dark=0x7f0d0033; public static final int secondary_text_disabled_material_light=0x7f0d0034; public static final int strongGreen=0x7f0d0057; public static final int strongGreen30Opaque=0x7f0d0058; public static final int switch_thumb_disabled_material_dark=0x7f0d0035; public static final int switch_thumb_disabled_material_light=0x7f0d0036; public static final int switch_thumb_material_dark=0x7f0d0086; public static final int switch_thumb_material_light=0x7f0d0087; public static final int switch_thumb_normal_material_dark=0x7f0d0037; public static final int switch_thumb_normal_material_light=0x7f0d0038; public static final int tooltip_background_dark=0x7f0d0039; public static final int tooltip_background_light=0x7f0d003a; public static final int transparent=0x7f0d0047; public static final int veryDarkBlue=0x7f0d006d; public static final int veryDarkGray=0x7f0d0049; public static final int veryDarkGrayMostlyBlack=0x7f0d0048; public static final int veryDarkGrayishBlue=0x7f0d0061; public static final int veryDarkLimeGreen=0x7f0d006e; public static final int veryLightGray=0x7f0d0069; public static final int veryLightGray1=0x7f0d005e; public static final int veryLightGrayMostlyWhite=0x7f0d005f; public static final int vividRed=0x7f0d0060; public static final int white=0x7f0d004a; public static final int white10Opaque=0x7f0d004b; public static final int white70Opaque=0x7f0d004c; public static final int window_background=0x7f0d005d; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f080012; public static final int abc_action_bar_content_inset_with_nav=0x7f080013; public static final int abc_action_bar_default_height_material=0x7f080007; public static final int abc_action_bar_default_padding_end_material=0x7f080014; public static final int abc_action_bar_default_padding_start_material=0x7f080015; public static final int abc_action_bar_elevation_material=0x7f080017; public static final int abc_action_bar_icon_vertical_padding_material=0x7f080018; public static final int abc_action_bar_overflow_padding_end_material=0x7f080019; public static final int abc_action_bar_overflow_padding_start_material=0x7f08001a; public static final int abc_action_bar_progress_bar_size=0x7f080008; public static final int abc_action_bar_stacked_max_height=0x7f08001b; public static final int abc_action_bar_stacked_tab_max_width=0x7f08001c; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f08001d; public static final int abc_action_bar_subtitle_top_margin_material=0x7f08001e; public static final int abc_action_button_min_height_material=0x7f08001f; public static final int abc_action_button_min_width_material=0x7f080020; public static final int abc_action_button_min_width_overflow_material=0x7f080021; public static final int abc_alert_dialog_button_bar_height=0x7f080006; public static final int abc_button_inset_horizontal_material=0x7f080022; public static final int abc_button_inset_vertical_material=0x7f080023; public static final int abc_button_padding_horizontal_material=0x7f080024; public static final int abc_button_padding_vertical_material=0x7f080025; public static final int abc_cascading_menus_min_smallest_width=0x7f080026; public static final int abc_config_prefDialogWidth=0x7f08000b; public static final int abc_control_corner_material=0x7f080027; public static final int abc_control_inset_material=0x7f080028; public static final int abc_control_padding_material=0x7f080029; public static final int abc_dialog_fixed_height_major=0x7f08000c; public static final int abc_dialog_fixed_height_minor=0x7f08000d; public static final int abc_dialog_fixed_width_major=0x7f08000e; public static final int abc_dialog_fixed_width_minor=0x7f08000f; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f08002a; public static final int abc_dialog_list_padding_top_no_title=0x7f08002b; public static final int abc_dialog_min_width_major=0x7f080010; public static final int abc_dialog_min_width_minor=0x7f080011; public static final int abc_dialog_padding_material=0x7f08002c; public static final int abc_dialog_padding_top_material=0x7f08002d; public static final int abc_dialog_title_divider_material=0x7f08002e; public static final int abc_disabled_alpha_material_dark=0x7f08002f; public static final int abc_disabled_alpha_material_light=0x7f080030; public static final int abc_dropdownitem_icon_width=0x7f080031; public static final int abc_dropdownitem_text_padding_left=0x7f080032; public static final int abc_dropdownitem_text_padding_right=0x7f080033; public static final int abc_edit_text_inset_bottom_material=0x7f080034; public static final int abc_edit_text_inset_horizontal_material=0x7f080035; public static final int abc_edit_text_inset_top_material=0x7f080036; public static final int abc_floating_window_z=0x7f080037; public static final int abc_list_item_padding_horizontal_material=0x7f080038; public static final int abc_panel_menu_list_width=0x7f080039; public static final int abc_progress_bar_height_material=0x7f08003a; public static final int abc_search_view_preferred_height=0x7f08003b; public static final int abc_search_view_preferred_width=0x7f08003c; public static final int abc_seekbar_track_background_height_material=0x7f08003d; public static final int abc_seekbar_track_progress_height_material=0x7f08003e; public static final int abc_select_dialog_padding_start_material=0x7f08003f; public static final int abc_switch_padding=0x7f080016; public static final int abc_text_size_body_1_material=0x7f080040; public static final int abc_text_size_body_2_material=0x7f080041; public static final int abc_text_size_button_material=0x7f080042; public static final int abc_text_size_caption_material=0x7f080043; public static final int abc_text_size_display_1_material=0x7f080044; public static final int abc_text_size_display_2_material=0x7f080045; public static final int abc_text_size_display_3_material=0x7f080046; public static final int abc_text_size_display_4_material=0x7f080047; public static final int abc_text_size_headline_material=0x7f080048; public static final int abc_text_size_large_material=0x7f080049; public static final int abc_text_size_medium_material=0x7f08004a; public static final int abc_text_size_menu_header_material=0x7f08004b; public static final int abc_text_size_menu_material=0x7f08004c; public static final int abc_text_size_small_material=0x7f08004d; public static final int abc_text_size_subhead_material=0x7f08004e; public static final int abc_text_size_subtitle_material_toolbar=0x7f080009; public static final int abc_text_size_title_material=0x7f08004f; public static final int abc_text_size_title_material_toolbar=0x7f08000a; public static final int compat_button_inset_horizontal_material=0x7f08008b; public static final int compat_button_inset_vertical_material=0x7f08008c; public static final int compat_button_padding_horizontal_material=0x7f08008d; public static final int compat_button_padding_vertical_material=0x7f08008e; public static final int compat_control_corner_material=0x7f08008f; public static final int design_appbar_elevation=0x7f080069; public static final int design_bottom_navigation_active_item_max_width=0x7f08006a; public static final int design_bottom_navigation_active_text_size=0x7f08006b; public static final int design_bottom_navigation_elevation=0x7f08006c; public static final int design_bottom_navigation_height=0x7f08006d; public static final int design_bottom_navigation_item_max_width=0x7f08006e; public static final int design_bottom_navigation_item_min_width=0x7f08006f; public static final int design_bottom_navigation_margin=0x7f080070; public static final int design_bottom_navigation_shadow_height=0x7f080071; public static final int design_bottom_navigation_text_size=0x7f080072; public static final int design_bottom_sheet_modal_elevation=0x7f080073; public static final int design_bottom_sheet_peek_height_min=0x7f080074; public static final int design_fab_border_width=0x7f080075; public static final int design_fab_elevation=0x7f080076; public static final int design_fab_image_size=0x7f080077; public static final int design_fab_size_mini=0x7f080078; public static final int design_fab_size_normal=0x7f080079; public static final int design_fab_translation_z_pressed=0x7f08007a; public static final int design_navigation_elevation=0x7f08007b; public static final int design_navigation_icon_padding=0x7f08007c; public static final int design_navigation_icon_size=0x7f08007d; public static final int design_navigation_max_width=0x7f080061; public static final int design_navigation_padding_bottom=0x7f08007e; public static final int design_navigation_separator_vertical_padding=0x7f08007f; public static final int design_snackbar_action_inline_max_width=0x7f080062; public static final int design_snackbar_background_corner_radius=0x7f080063; public static final int design_snackbar_elevation=0x7f080080; public static final int design_snackbar_extra_spacing_horizontal=0x7f080064; public static final int design_snackbar_max_width=0x7f080065; public static final int design_snackbar_min_width=0x7f080066; public static final int design_snackbar_padding_horizontal=0x7f080081; public static final int design_snackbar_padding_vertical=0x7f080082; public static final int design_snackbar_padding_vertical_2lines=0x7f080067; public static final int design_snackbar_text_size=0x7f080083; public static final int design_tab_max_width=0x7f080084; public static final int design_tab_scrollable_min_width=0x7f080068; public static final int design_tab_text_size=0x7f080085; public static final int design_tab_text_size_2line=0x7f080086; public static final int disabled_alpha_material_dark=0x7f080050; public static final int disabled_alpha_material_light=0x7f080051; public static final int drawer_width=0x7f08009b; public static final int fastscroll_default_thickness=0x7f080000; public static final int fastscroll_margin=0x7f080001; public static final int fastscroll_minimum_range=0x7f080002; public static final int highlight_alpha_material_colored=0x7f080052; public static final int highlight_alpha_material_dark=0x7f080053; public static final int highlight_alpha_material_light=0x7f080054; public static final int hint_alpha_material_dark=0x7f080055; public static final int hint_alpha_material_light=0x7f080056; public static final int hint_pressed_alpha_material_dark=0x7f080057; public static final int hint_pressed_alpha_material_light=0x7f080058; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080003; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f080004; public static final int item_touch_helper_swipe_escape_velocity=0x7f080005; public static final int notification_action_icon_size=0x7f080090; public static final int notification_action_text_size=0x7f080091; public static final int notification_big_circle_margin=0x7f080092; public static final int notification_content_margin_start=0x7f080088; public static final int notification_large_icon_height=0x7f080093; public static final int notification_large_icon_width=0x7f080094; public static final int notification_main_column_padding_top=0x7f080089; public static final int notification_media_narrow_margin=0x7f08008a; public static final int notification_right_icon_size=0x7f080095; public static final int notification_right_side_padding_top=0x7f080087; public static final int notification_small_icon_background_padding=0x7f080096; public static final int notification_small_icon_size_as_large=0x7f080097; public static final int notification_subtext_size=0x7f080098; public static final int notification_top_pad=0x7f080099; public static final int notification_top_pad_large_text=0x7f08009a; public static final int tooltip_corner_radius=0x7f080059; public static final int tooltip_horizontal_padding=0x7f08005a; public static final int tooltip_margin=0x7f08005b; public static final int tooltip_precise_anchor_extra_offset=0x7f08005c; public static final int tooltip_precise_anchor_threshold=0x7f08005d; public static final int tooltip_vertical_padding=0x7f08005e; public static final int tooltip_y_offset_non_touch=0x7f08005f; public static final int tooltip_y_offset_touch=0x7f080060; } 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_switch_to_on_mtrl_00001=0x7f02000b; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; public static final int abc_cab_background_internal_bg=0x7f02000d; public static final int abc_cab_background_top_material=0x7f02000e; public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; public static final int abc_control_background_material=0x7f020010; public static final int abc_dialog_material_background=0x7f020011; public static final int abc_edit_text_material=0x7f020012; public static final int abc_ic_ab_back_material=0x7f020013; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; public static final int abc_ic_clear_material=0x7f020015; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; public static final int abc_ic_go_search_api_material=0x7f020017; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; public static final int abc_ic_menu_overflow_material=0x7f02001a; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; public static final int abc_ic_search_api_material=0x7f02001e; public static final int abc_ic_star_black_16dp=0x7f02001f; public static final int abc_ic_star_black_36dp=0x7f020020; public static final int abc_ic_star_black_48dp=0x7f020021; public static final int abc_ic_star_half_black_16dp=0x7f020022; public static final int abc_ic_star_half_black_36dp=0x7f020023; public static final int abc_ic_star_half_black_48dp=0x7f020024; public static final int abc_ic_voice_search_api_material=0x7f020025; public static final int abc_item_background_holo_dark=0x7f020026; public static final int abc_item_background_holo_light=0x7f020027; public static final int abc_list_divider_mtrl_alpha=0x7f020028; public static final int abc_list_focused_holo=0x7f020029; public static final int abc_list_longpressed_holo=0x7f02002a; public static final int abc_list_pressed_holo_dark=0x7f02002b; public static final int abc_list_pressed_holo_light=0x7f02002c; public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; public static final int abc_list_selector_disabled_holo_light=0x7f020030; public static final int abc_list_selector_holo_dark=0x7f020031; public static final int abc_list_selector_holo_light=0x7f020032; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; public static final int abc_popup_background_mtrl_mult=0x7f020034; public static final int abc_ratingbar_indicator_material=0x7f020035; public static final int abc_ratingbar_material=0x7f020036; public static final int abc_ratingbar_small_material=0x7f020037; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; public static final int abc_seekbar_thumb_material=0x7f02003d; public static final int abc_seekbar_tick_mark_material=0x7f02003e; public static final int abc_seekbar_track_material=0x7f02003f; public static final int abc_spinner_mtrl_am_alpha=0x7f020040; public static final int abc_spinner_textfield_background_material=0x7f020041; public static final int abc_switch_thumb_material=0x7f020042; public static final int abc_switch_track_mtrl_alpha=0x7f020043; public static final int abc_tab_indicator_material=0x7f020044; public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; public static final int abc_text_cursor_material=0x7f020046; public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; public static final int abc_textfield_search_material=0x7f020051; public static final int abc_vector_test=0x7f020052; public static final int apple=0x7f020053; public static final int avd_hide_password=0x7f020054; public static final int avd_hide_password_1=0x7f02007b; public static final int avd_hide_password_2=0x7f02007c; public static final int avd_hide_password_3=0x7f02007d; public static final int avd_show_password=0x7f020055; public static final int avd_show_password_1=0x7f02007e; public static final int avd_show_password_2=0x7f02007f; public static final int avd_show_password_3=0x7f020080; public static final int badge_item_count=0x7f020056; public static final int cart1=0x7f020057; public static final int cookies=0x7f020058; public static final int design_bottom_navigation_item_background=0x7f020059; public static final int design_fab_background=0x7f02005a; public static final int design_ic_visibility=0x7f02005b; public static final int design_ic_visibility_off=0x7f02005c; public static final int design_password_eye=0x7f02005d; public static final int design_snackbar_background=0x7f02005e; public static final int ic_basket=0x7f02005f; public static final int ic_drawer=0x7f020060; public static final int ic_menu=0x7f020061; public static final int ic_minus=0x7f020062; public static final int ic_plus=0x7f020063; public static final int ic_trash=0x7f020064; public static final int image_border=0x7f020065; public static final int milk=0x7f020066; public static final int navigation_empty_icon=0x7f020067; public static final int notification_action_background=0x7f020068; public static final int notification_bg=0x7f020069; public static final int notification_bg_low=0x7f02006a; public static final int notification_bg_low_normal=0x7f02006b; public static final int notification_bg_low_pressed=0x7f02006c; public static final int notification_bg_normal=0x7f02006d; public static final int notification_bg_normal_pressed=0x7f02006e; public static final int notification_icon_background=0x7f02006f; public static final int notification_template_icon_bg=0x7f020079; public static final int notification_template_icon_low_bg=0x7f02007a; public static final int notification_tile_bg=0x7f020070; public static final int notify_panel_notification_icon_bg=0x7f020071; public static final int pear=0x7f020072; public static final int round_button=0x7f020073; public static final int rounded_corner=0x7f020074; public static final int splash=0x7f020075; public static final int tomatoes=0x7f020076; public static final int tooltip_frame_dark=0x7f020077; public static final int tooltip_frame_light=0x7f020078; } public static final class id { public static final int ALT=0x7f090034; public static final int CTRL=0x7f090035; public static final int FUNCTION=0x7f090036; public static final int META=0x7f090037; public static final int MvvmCrossTagId=0x7f09001d; public static final int MvxBindingTagUnique=0x7f09001e; public static final int SHIFT=0x7f090038; public static final int SYM=0x7f090039; public static final int action0=0x7f0900b3; public static final int action_bar=0x7f09007e; public static final int action_bar_activity_content=0x7f090001; public static final int action_bar_container=0x7f09007d; public static final int action_bar_root=0x7f090079; public static final int action_bar_spinner=0x7f090002; public static final int action_bar_subtitle=0x7f09005d; public static final int action_bar_title=0x7f09005c; public static final int action_container=0x7f0900b0; public static final int action_context_bar=0x7f09007f; public static final int action_divider=0x7f0900b7; public static final int action_image=0x7f0900b1; public static final int action_menu_divider=0x7f090003; public static final int action_menu_presenter=0x7f090004; public static final int action_mode_bar=0x7f09007b; public static final int action_mode_bar_stub=0x7f09007a; public static final int action_mode_close_button=0x7f09005e; public static final int action_text=0x7f0900b2; public static final int actions=0x7f0900c0; public static final int activity_chooser_view_content=0x7f09005f; public static final int add=0x7f090029; public static final int alertTitle=0x7f090072; public static final int all=0x7f090054; public static final int always=0x7f09003a; public static final int async=0x7f090058; public static final int auto=0x7f090046; public static final int badge_layout1=0x7f090090; public static final int badge_notification_1=0x7f090093; public static final int beginning=0x7f090031; public static final int blocking=0x7f090059; public static final int bottom=0x7f09003f; public static final int buttonPanel=0x7f090065; public static final int cancel_action=0x7f0900b4; public static final int cart_item=0x7f0900c7; public static final int cart_plus_minus_layout=0x7f0900a8; public static final int cart_product_quantity=0x7f0900ac; public static final int center=0x7f090047; public static final int center_horizontal=0x7f090048; public static final int center_vertical=0x7f090049; public static final int checkbox=0x7f090075; public static final int chronometer=0x7f0900bc; public static final int clip_horizontal=0x7f090050; public static final int clip_vertical=0x7f090051; public static final int collapseActionView=0x7f09003b; public static final int container=0x7f090097; public static final int contentPanel=0x7f090068; public static final int content_frame=0x7f090094; public static final int coordinator=0x7f090098; public static final int custom=0x7f09006f; public static final int customPanel=0x7f09006e; public static final int decor_content_parent=0x7f09007c; public static final int default_activity_button=0x7f090062; public static final int design_bottom_sheet=0x7f09009a; public static final int design_menu_item_action_area=0x7f0900a1; public static final int design_menu_item_action_area_stub=0x7f0900a0; public static final int design_menu_item_text=0x7f09009f; public static final int design_navigation_view=0x7f09009e; public static final int disableHome=0x7f090022; public static final int drawer_layout=0x7f0900ae; public static final int edit_query=0x7f090080; public static final int end=0x7f090032; public static final int end_padder=0x7f0900c2; public static final int enterAlways=0x7f090041; public static final int enterAlwaysCollapsed=0x7f090042; public static final int exitUntilCollapsed=0x7f090043; public static final int expand_activities_button=0x7f090060; public static final int expanded_menu=0x7f090074; public static final int fill=0x7f090052; public static final int fill_horizontal=0x7f090053; public static final int fill_vertical=0x7f09004a; public static final int fixed=0x7f090056; public static final int forever=0x7f09005a; public static final int ghost_view=0x7f09000a; public static final int home=0x7f090005; public static final int homeAsUp=0x7f090023; public static final int icon=0x7f090064; public static final int icon_badge=0x7f090092; public static final int icon_group=0x7f0900c1; public static final int ifRoom=0x7f09003c; public static final int image=0x7f090061; public static final int info=0x7f0900bd; public static final int italic=0x7f09005b; public static final int item_touch_helper_previous_elevation=0x7f090000; public static final int largeLabel=0x7f090096; public static final int left=0x7f09004b; public static final int line1=0x7f090017; public static final int line3=0x7f090018; public static final int listMode=0x7f09001f; public static final int list_item=0x7f090063; public static final int masked=0x7f0900c5; public static final int media_actions=0x7f0900b6; public static final int message=0x7f0900c3; public static final int middle=0x7f090033; public static final int mini=0x7f090055; public static final int minus_button=0x7f0900ab; public static final int multiply=0x7f09002a; public static final int name1=0x7f0900a3; public static final int name3=0x7f0900a4; public static final int name31=0x7f0900a5; public static final int nav_camera=0x7f0900c6; public static final int nav_view=0x7f0900af; public static final int navigation_header_container=0x7f09009d; public static final int never=0x7f09003d; public static final int none=0x7f090024; public static final int normal=0x7f090020; public static final int notification_background=0x7f0900bf; public static final int notification_main_column=0x7f0900b9; public static final int notification_main_column_container=0x7f0900b8; public static final int parallax=0x7f09004e; public static final int parentPanel=0x7f090067; public static final int parent_matrix=0x7f09000b; public static final int pin=0x7f09004f; public static final int plist_weight_text=0x7f0900aa; public static final int plus_button=0x7f0900ad; public static final int price=0x7f0900a9; public static final int progress_circular=0x7f090006; public static final int progress_horizontal=0x7f090007; public static final int radio=0x7f090077; public static final int relative_layout=0x7f090091; public static final int right=0x7f09004c; public static final int right_icon=0x7f0900be; public static final int right_side=0x7f0900ba; public static final int rvItems=0x7f0900a6; public static final int save_image_matrix=0x7f09000c; public static final int save_non_transition_alpha=0x7f09000d; public static final int save_scale_type=0x7f09000e; public static final int screen=0x7f09002b; public static final int scroll=0x7f090044; public static final int scrollIndicatorDown=0x7f09006d; public static final int scrollIndicatorUp=0x7f090069; public static final int scrollView=0x7f09006a; public static final int scrollable=0x7f090057; public static final int search_badge=0x7f090082; public static final int search_bar=0x7f090081; public static final int search_button=0x7f090083; public static final int search_close_btn=0x7f090088; public static final int search_edit_frame=0x7f090084; public static final int search_go_btn=0x7f09008a; public static final int search_mag_icon=0x7f090085; public static final int search_plate=0x7f090086; public static final int search_src_text=0x7f090087; public static final int search_voice_btn=0x7f09008b; public static final int select_dialog_listview=0x7f09008c; public static final int shortcut=0x7f090076; public static final int showCustom=0x7f090025; public static final int showHome=0x7f090026; public static final int showTitle=0x7f090027; public static final int smallLabel=0x7f090095; public static final int snackbar_action=0x7f09009c; public static final int snackbar_text=0x7f09009b; public static final int snap=0x7f090045; public static final int spacer=0x7f090066; public static final int split_action_bar=0x7f090008; public static final int src_atop=0x7f09002c; public static final int src_in=0x7f09002d; public static final int src_over=0x7f09002e; public static final int start=0x7f09004d; public static final int status_bar_latest_event_content=0x7f0900b5; public static final int submenuarrow=0x7f090078; public static final int submit_area=0x7f090089; public static final int tabLayout=0x7f09008e; public static final int tabMode=0x7f090021; public static final int tag_transition_group=0x7f090019; public static final int text=0x7f09001a; public static final int text2=0x7f09001b; public static final int textSpacerNoButtons=0x7f09006c; public static final int textSpacerNoTitle=0x7f09006b; public static final int text_input_password_toggle=0x7f0900a2; public static final int textinput_counter=0x7f090014; public static final int textinput_error=0x7f090015; public static final int thumbnail=0x7f0900a7; public static final int time=0x7f0900bb; public static final int title=0x7f09001c; public static final int titleDividerNoCustom=0x7f090073; public static final int title_template=0x7f090071; public static final int toolbar=0x7f09008d; public static final int top=0x7f090040; public static final int topPanel=0x7f090070; public static final int touch_outside=0x7f090099; public static final int transition_current_scene=0x7f09000f; public static final int transition_layout_save=0x7f090010; public static final int transition_position=0x7f090011; public static final int transition_scene_layoutid_cache=0x7f090012; public static final int transition_transform=0x7f090013; public static final int uniform=0x7f09002f; public static final int up=0x7f090009; public static final int useLogo=0x7f090028; public static final int view_offset_helper=0x7f090016; public static final int viewpager=0x7f09008f; public static final int visible=0x7f0900c4; public static final int withText=0x7f09003e; public static final int wrap_content=0x7f090030; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0e0000; public static final int abc_config_activityShortDur=0x7f0e0001; public static final int app_bar_elevation_anim_duration=0x7f0e0005; public static final int bottom_sheet_slide_duration=0x7f0e0006; public static final int cancel_button_image_alpha=0x7f0e0002; public static final int config_tooltipAnimTime=0x7f0e0003; public static final int design_snackbar_text_max_lines=0x7f0e0004; public static final int hide_password_duration=0x7f0e0007; public static final int item_columns=0x7f0e000a; public static final int show_password_duration=0x7f0e0008; public static final int status_bar_notification_info_maxnum=0x7f0e0009; } 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_menu_item_layout=0x7f040002; public static final int abc_action_menu_layout=0x7f040003; public static final int abc_action_mode_bar=0x7f040004; public static final int abc_action_mode_close_item_material=0x7f040005; public static final int abc_activity_chooser_view=0x7f040006; public static final int abc_activity_chooser_view_list_item=0x7f040007; public static final int abc_alert_dialog_button_bar_material=0x7f040008; public static final int abc_alert_dialog_material=0x7f040009; public static final int abc_alert_dialog_title_material=0x7f04000a; public static final int abc_dialog_title_material=0x7f04000b; public static final int abc_expanded_menu_layout=0x7f04000c; public static final int abc_list_menu_item_checkbox=0x7f04000d; public static final int abc_list_menu_item_icon=0x7f04000e; public static final int abc_list_menu_item_layout=0x7f04000f; public static final int abc_list_menu_item_radio=0x7f040010; public static final int abc_popup_menu_header_item_layout=0x7f040011; public static final int abc_popup_menu_item_layout=0x7f040012; public static final int abc_screen_content_include=0x7f040013; public static final int abc_screen_simple=0x7f040014; public static final int abc_screen_simple_overlay_action_mode=0x7f040015; public static final int abc_screen_toolbar=0x7f040016; public static final int abc_search_dropdown_item_icons_2line=0x7f040017; public static final int abc_search_view=0x7f040018; public static final int abc_select_dialog_material=0x7f040019; public static final int app_bar_main=0x7f04001a; public static final int cart=0x7f04001b; public static final int content_main=0x7f04001c; public static final int custom_tab=0x7f04001d; public static final int design_bottom_navigation_item=0x7f04001e; public static final int design_bottom_sheet_dialog=0x7f04001f; public static final int design_layout_snackbar=0x7f040020; public static final int design_layout_snackbar_include=0x7f040021; public static final int design_layout_tab_icon=0x7f040022; public static final int design_layout_tab_text=0x7f040023; public static final int design_menu_item_action_area=0x7f040024; public static final int design_navigation_item=0x7f040025; public static final int design_navigation_item_header=0x7f040026; public static final int design_navigation_item_separator=0x7f040027; public static final int design_navigation_item_subheader=0x7f040028; public static final int design_navigation_menu=0x7f040029; public static final int design_navigation_menu_item=0x7f04002a; public static final int design_text_input_password_icon=0x7f04002b; public static final int details=0x7f04002c; public static final int foodcart=0x7f04002d; public static final int foodrecyclerview=0x7f04002e; public static final int itemview=0x7f04002f; public static final int list_row2=0x7f040030; public static final int mainview=0x7f040031; public static final int nav_header_main=0x7f040032; public static final int notification_action=0x7f040033; public static final int notification_action_tombstone=0x7f040034; public static final int notification_media_action=0x7f040035; public static final int notification_media_cancel_action=0x7f040036; public static final int notification_template_big_media=0x7f040037; public static final int notification_template_big_media_custom=0x7f040038; public static final int notification_template_big_media_narrow=0x7f040039; public static final int notification_template_big_media_narrow_custom=0x7f04003a; public static final int notification_template_custom_big=0x7f04003b; public static final int notification_template_icon_group=0x7f04003c; public static final int notification_template_lines_media=0x7f04003d; public static final int notification_template_media=0x7f04003e; public static final int notification_template_media_custom=0x7f04003f; public static final int notification_template_part_chronometer=0x7f040040; public static final int notification_template_part_time=0x7f040041; public static final int select_dialog_item_material=0x7f040042; public static final int select_dialog_multichoice_material=0x7f040043; public static final int select_dialog_singlechoice_material=0x7f040044; public static final int support_simple_spinner_dropdown_item=0x7f040045; public static final int toolbar=0x7f040046; public static final int tooltip=0x7f040047; } public static final class menu { public static final int activity_main_drawer=0x7f100000; public static final int options_menu=0x7f100001; } 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=0x7f0a0000; public static final int abc_action_bar_up_description=0x7f0a0001; public static final int abc_action_menu_overflow_description=0x7f0a0002; public static final int abc_action_mode_done=0x7f0a0003; public static final int abc_activity_chooser_view_see_all=0x7f0a0004; public static final int abc_activitychooserview_choose_application=0x7f0a0005; public static final int abc_capital_off=0x7f0a0006; public static final int abc_capital_on=0x7f0a0007; public static final int abc_font_family_body_1_material=0x7f0a0012; public static final int abc_font_family_body_2_material=0x7f0a0013; public static final int abc_font_family_button_material=0x7f0a0014; public static final int abc_font_family_caption_material=0x7f0a0015; public static final int abc_font_family_display_1_material=0x7f0a0016; public static final int abc_font_family_display_2_material=0x7f0a0017; public static final int abc_font_family_display_3_material=0x7f0a0018; public static final int abc_font_family_display_4_material=0x7f0a0019; public static final int abc_font_family_headline_material=0x7f0a001a; public static final int abc_font_family_menu_material=0x7f0a001b; public static final int abc_font_family_subhead_material=0x7f0a001c; public static final int abc_font_family_title_material=0x7f0a001d; public static final int abc_search_hint=0x7f0a0008; public static final int abc_searchview_description_clear=0x7f0a0009; public static final int abc_searchview_description_query=0x7f0a000a; public static final int abc_searchview_description_search=0x7f0a000b; public static final int abc_searchview_description_submit=0x7f0a000c; public static final int abc_searchview_description_voice=0x7f0a000d; public static final int abc_shareactionprovider_share_with=0x7f0a000e; public static final int abc_shareactionprovider_share_with_application=0x7f0a000f; public static final int abc_toolbar_collapse_description=0x7f0a0010; public static final int app_name=0x7f0a0029; public static final int appbar_scrolling_view_behavior=0x7f0a001e; public static final int bottom_sheet_behavior=0x7f0a001f; public static final int character_counter_pattern=0x7f0a0020; public static final int close=0x7f0a002b; public static final int fab_scroll_shrink_grow_autohide_behavior=0x7f0a0027; public static final int open=0x7f0a002a; public static final int password_toggle_content_description=0x7f0a0021; public static final int path_password_eye=0x7f0a0022; public static final int path_password_eye_mask_strike_through=0x7f0a0023; public static final int path_password_eye_mask_visible=0x7f0a0024; public static final int path_password_strike_through=0x7f0a0025; public static final int search_menu_title=0x7f0a0011; public static final int status_bar_notification_info_overflow=0x7f0a0026; public static final int view_scroll_translation_autohide_behavior=0x7f0a0028; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0b0095; public static final int AlertDialog_AppCompat_Light=0x7f0b0096; public static final int Animation_AppCompat_Dialog=0x7f0b0097; public static final int Animation_AppCompat_DropDownUp=0x7f0b0098; public static final int Animation_AppCompat_Tooltip=0x7f0b0099; public static final int Animation_Design_BottomSheetDialog=0x7f0b015f; public static final int AppTheme_AppBarOverlay=0x7f0b0184; public static final int AppTheme_PopupOverlay=0x7f0b0185; public static final int Base_AlertDialog_AppCompat=0x7f0b009a; public static final int Base_AlertDialog_AppCompat_Light=0x7f0b009b; public static final int Base_Animation_AppCompat_Dialog=0x7f0b009c; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0b009d; public static final int Base_Animation_AppCompat_Tooltip=0x7f0b009e; public static final int Base_DialogWindowTitle_AppCompat=0x7f0b009f; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0b00a0; public static final int Base_TextAppearance_AppCompat=0x7f0b0039; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0b003a; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0b003b; public static final int Base_TextAppearance_AppCompat_Button=0x7f0b0027; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0b003c; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0b003d; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0b003e; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0b003f; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0b0040; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0b0041; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0b000b; public static final int Base_TextAppearance_AppCompat_Large=0x7f0b0042; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0b000c; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0043; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0044; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0b0045; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0b000d; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0b0046; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0b00a1; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b0047; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0b0048; public static final int Base_TextAppearance_AppCompat_Small=0x7f0b0049; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0b000e; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0b004a; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0b000f; public static final int Base_TextAppearance_AppCompat_Title=0x7f0b004b; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0b0010; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0b00a2; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0086; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b004c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b004d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b004e; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b004f; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0050; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b0051; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0b0052; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b008d; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b008e; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b0087; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00a3; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b0053; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0054; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0055; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0b0056; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b0057; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b00a4; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b0058; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b0059; public static final int Base_Theme_AppCompat=0x7f0b005a; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0b00a5; public static final int Base_Theme_AppCompat_Dialog=0x7f0b0011; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0b0012; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0b00a6; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0b0013; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0b0001; public static final int Base_Theme_AppCompat_Light=0x7f0b005b; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0b00a7; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0b0014; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0b0015; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0b00a8; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0016; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0002; public static final int Base_ThemeOverlay_AppCompat=0x7f0b00a9; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0b00aa; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0b00ab; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b00ac; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0b0017; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b0018; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0b00ad; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0b0019; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0b001a; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0b001b; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0b0023; public static final int Base_V12_Widget_AppCompat_EditText=0x7f0b0024; public static final int Base_V14_Widget_Design_AppBarLayout=0x7f0b0160; public static final int Base_V21_Theme_AppCompat=0x7f0b005c; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0b005d; public static final int Base_V21_Theme_AppCompat_Light=0x7f0b005e; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0b005f; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0b0060; public static final int Base_V21_Widget_Design_AppBarLayout=0x7f0b015c; public static final int Base_V22_Theme_AppCompat=0x7f0b0084; public static final int Base_V22_Theme_AppCompat_Light=0x7f0b0085; public static final int Base_V23_Theme_AppCompat=0x7f0b0088; public static final int Base_V23_Theme_AppCompat_Light=0x7f0b0089; public static final int Base_V26_Theme_AppCompat=0x7f0b0091; public static final int Base_V26_Theme_AppCompat_Light=0x7f0b0092; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0b0093; public static final int Base_V26_Widget_Design_AppBarLayout=0x7f0b015e; public static final int Base_V7_Theme_AppCompat=0x7f0b00ae; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0b00af; public static final int Base_V7_Theme_AppCompat_Light=0x7f0b00b0; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0b00b1; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0b00b2; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0b00b3; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0b00b4; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0b00b5; public static final int Base_Widget_AppCompat_ActionBar=0x7f0b00b6; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0b00b7; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0b00b8; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0b0061; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0b0062; public static final int Base_Widget_AppCompat_ActionButton=0x7f0b0063; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0b0064; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0b0065; public static final int Base_Widget_AppCompat_ActionMode=0x7f0b00b9; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0b00ba; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0b0025; public static final int Base_Widget_AppCompat_Button=0x7f0b0066; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0b0067; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0b0068; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b00bb; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0b008a; public static final int Base_Widget_AppCompat_Button_Small=0x7f0b0069; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0b006a; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b00bc; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0b006b; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0b006c; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0b00bd; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0b0000; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0b00be; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0b006d; public static final int Base_Widget_AppCompat_EditText=0x7f0b0026; public static final int Base_Widget_AppCompat_ImageButton=0x7f0b006e; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0b00bf; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0b00c0; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b00c1; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0b006f; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0070; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0071; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0b0072; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b0073; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0b00c2; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0b0074; public static final int Base_Widget_AppCompat_ListView=0x7f0b0075; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0b0076; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0b0077; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0b0078; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0b0079; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0b00c3; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0b001c; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0b001d; public static final int Base_Widget_AppCompat_RatingBar=0x7f0b007a; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0b008b; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0b008c; public static final int Base_Widget_AppCompat_SearchView=0x7f0b00c4; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0b00c5; public static final int Base_Widget_AppCompat_SeekBar=0x7f0b007b; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0b00c6; public static final int Base_Widget_AppCompat_Spinner=0x7f0b007c; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0b0003; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0b007d; public static final int Base_Widget_AppCompat_Toolbar=0x7f0b0094; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b007e; public static final int Base_Widget_Design_AppBarLayout=0x7f0b015d; public static final int Base_Widget_Design_TabLayout=0x7f0b0161; /** Base application theme for API 21+. This theme completely replaces MyTheme from BOTH res/values/styles.xml on API 21+ devices. */ public static final int MyTheme=0x7f0b0182; public static final int MyTheme_Base=0x7f0b0183; public static final int Platform_AppCompat=0x7f0b001e; public static final int Platform_AppCompat_Light=0x7f0b001f; public static final int Platform_ThemeOverlay_AppCompat=0x7f0b007f; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0b0080; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0b0081; public static final int Platform_V11_AppCompat=0x7f0b0020; public static final int Platform_V11_AppCompat_Light=0x7f0b0021; public static final int Platform_V14_AppCompat=0x7f0b0028; public static final int Platform_V14_AppCompat_Light=0x7f0b0029; public static final int Platform_V21_AppCompat=0x7f0b0082; public static final int Platform_V21_AppCompat_Light=0x7f0b0083; public static final int Platform_V25_AppCompat=0x7f0b008f; public static final int Platform_V25_AppCompat_Light=0x7f0b0090; public static final int Platform_Widget_AppCompat_Spinner=0x7f0b0022; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0b002b; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0b002c; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0b002d; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0b002e; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0b002f; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0b0030; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0b0031; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0b0032; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0b0033; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0b0034; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0b0035; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0b0036; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0b0037; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0b0038; public static final int TextAppearance_AppCompat=0x7f0b00c7; public static final int TextAppearance_AppCompat_Body1=0x7f0b00c8; public static final int TextAppearance_AppCompat_Body2=0x7f0b00c9; public static final int TextAppearance_AppCompat_Button=0x7f0b00ca; public static final int TextAppearance_AppCompat_Caption=0x7f0b00cb; public static final int TextAppearance_AppCompat_Display1=0x7f0b00cc; public static final int TextAppearance_AppCompat_Display2=0x7f0b00cd; public static final int TextAppearance_AppCompat_Display3=0x7f0b00ce; public static final int TextAppearance_AppCompat_Display4=0x7f0b00cf; public static final int TextAppearance_AppCompat_Headline=0x7f0b00d0; public static final int TextAppearance_AppCompat_Inverse=0x7f0b00d1; public static final int TextAppearance_AppCompat_Large=0x7f0b00d2; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0b00d3; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b00d4; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b00d5; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b00d6; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b00d7; public static final int TextAppearance_AppCompat_Medium=0x7f0b00d8; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0b00d9; public static final int TextAppearance_AppCompat_Menu=0x7f0b00da; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b00db; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b00dc; public static final int TextAppearance_AppCompat_Small=0x7f0b00dd; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0b00de; public static final int TextAppearance_AppCompat_Subhead=0x7f0b00df; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0b00e0; public static final int TextAppearance_AppCompat_Title=0x7f0b00e1; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0b00e2; public static final int TextAppearance_AppCompat_Tooltip=0x7f0b002a; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b00e3; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b00e4; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b00e5; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b00e6; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b00e7; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b00e8; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b00e9; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b00ea; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b00eb; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0b00ec; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0b00ed; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0b00ee; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0b00ef; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b00f0; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0b00f1; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b00f2; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b00f3; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0b00f4; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0b00f5; public static final int TextAppearance_Compat_Notification=0x7f0b0179; public static final int TextAppearance_Compat_Notification_Info=0x7f0b017a; public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0b0156; public static final int TextAppearance_Compat_Notification_Line2=0x7f0b017f; public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0b015a; public static final int TextAppearance_Compat_Notification_Media=0x7f0b0157; public static final int TextAppearance_Compat_Notification_Time=0x7f0b017b; public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0b0158; public static final int TextAppearance_Compat_Notification_Title=0x7f0b017c; public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0b0159; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0b0162; public static final int TextAppearance_Design_Counter=0x7f0b0163; public static final int TextAppearance_Design_Counter_Overflow=0x7f0b0164; public static final int TextAppearance_Design_Error=0x7f0b0165; public static final int TextAppearance_Design_Hint=0x7f0b0166; public static final int TextAppearance_Design_Snackbar_Message=0x7f0b0167; public static final int TextAppearance_Design_Tab=0x7f0b0168; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b00f6; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0b00f7; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0b00f8; public static final int Theme_AppCompat=0x7f0b00f9; public static final int Theme_AppCompat_CompactMenu=0x7f0b00fa; public static final int Theme_AppCompat_DayNight=0x7f0b0004; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0b0005; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0b0006; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0b0007; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0b0008; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0b0009; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0b000a; public static final int Theme_AppCompat_Dialog=0x7f0b00fb; public static final int Theme_AppCompat_Dialog_Alert=0x7f0b00fc; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0b00fd; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b00fe; public static final int Theme_AppCompat_Light=0x7f0b00ff; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0100; public static final int Theme_AppCompat_Light_Dialog=0x7f0b0101; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0b0102; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0b0103; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0104; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0b0105; public static final int Theme_AppCompat_NoActionBar=0x7f0b0106; public static final int Theme_Design=0x7f0b0169; public static final int Theme_Design_BottomSheetDialog=0x7f0b016a; public static final int Theme_Design_Light=0x7f0b016b; public static final int Theme_Design_Light_BottomSheetDialog=0x7f0b016c; public static final int Theme_Design_Light_NoActionBar=0x7f0b016d; public static final int Theme_Design_NoActionBar=0x7f0b016e; public static final int Theme_Splash=0x7f0b0180; public static final int ThemeOverlay_AppCompat=0x7f0b0107; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0b0108; public static final int ThemeOverlay_AppCompat_Dark=0x7f0b0109; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0b010a; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0b010b; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0b010c; public static final int ThemeOverlay_AppCompat_Light=0x7f0b010d; public static final int Widget_AppCompat_ActionBar=0x7f0b010e; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b010f; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0110; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0111; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b0112; public static final int Widget_AppCompat_ActionButton=0x7f0b0113; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b0114; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b0115; public static final int Widget_AppCompat_ActionMode=0x7f0b0116; public static final int Widget_AppCompat_ActivityChooserView=0x7f0b0117; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0118; public static final int Widget_AppCompat_Button=0x7f0b0119; public static final int Widget_AppCompat_Button_Borderless=0x7f0b011a; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0b011b; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0b011c; public static final int Widget_AppCompat_Button_Colored=0x7f0b011d; public static final int Widget_AppCompat_Button_Small=0x7f0b011e; public static final int Widget_AppCompat_ButtonBar=0x7f0b011f; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0b0120; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0b0121; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0b0122; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0b0123; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0b0124; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b0125; public static final int Widget_AppCompat_EditText=0x7f0b0126; public static final int Widget_AppCompat_ImageButton=0x7f0b0127; public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0128; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0129; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b012a; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b012b; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b012c; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b012d; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b012e; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b012f; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0130; public static final int Widget_AppCompat_Light_ActionButton=0x7f0b0131; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b0132; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0133; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b0134; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0135; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b0136; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b0137; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b0138; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0139; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b013a; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0b013b; public static final int Widget_AppCompat_Light_SearchView=0x7f0b013c; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b013d; public static final int Widget_AppCompat_ListMenuView=0x7f0b013e; public static final int Widget_AppCompat_ListPopupWindow=0x7f0b013f; public static final int Widget_AppCompat_ListView=0x7f0b0140; public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0141; public static final int Widget_AppCompat_ListView_Menu=0x7f0b0142; public static final int Widget_AppCompat_PopupMenu=0x7f0b0143; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0b0144; public static final int Widget_AppCompat_PopupWindow=0x7f0b0145; public static final int Widget_AppCompat_ProgressBar=0x7f0b0146; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0147; public static final int Widget_AppCompat_RatingBar=0x7f0b0148; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0b0149; public static final int Widget_AppCompat_RatingBar_Small=0x7f0b014a; public static final int Widget_AppCompat_SearchView=0x7f0b014b; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0b014c; public static final int Widget_AppCompat_SeekBar=0x7f0b014d; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0b014e; public static final int Widget_AppCompat_Spinner=0x7f0b014f; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0b0150; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0151; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0b0152; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0b0153; public static final int Widget_AppCompat_Toolbar=0x7f0b0154; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0b0155; public static final int Widget_Compat_NotificationActionContainer=0x7f0b017d; public static final int Widget_Compat_NotificationActionText=0x7f0b017e; public static final int Widget_Design_AppBarLayout=0x7f0b016f; public static final int Widget_Design_BottomNavigationView=0x7f0b0170; public static final int Widget_Design_BottomSheet_Modal=0x7f0b0171; public static final int Widget_Design_CollapsingToolbar=0x7f0b0172; public static final int Widget_Design_CoordinatorLayout=0x7f0b0173; public static final int Widget_Design_FloatingActionButton=0x7f0b0174; public static final int Widget_Design_NavigationView=0x7f0b0175; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0b0176; public static final int Widget_Design_Snackbar=0x7f0b0177; public static final int Widget_Design_TabLayout=0x7f0b015b; public static final int Widget_Design_TextInputLayout=0x7f0b0178; public static final int button=0x7f0b0181; public static final int myToolbarNavigationButtonStyle=0x7f0b0186; public static final int myToolbarStyle=0x7f0b0187; } public static final class xml { public static final int empty=0x7f070000; } 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 MvvmCross_Application1.MvvmCross_Application1:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit MvvmCross_Application1.MvvmCross_Application1:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked MvvmCross_Application1.MvvmCross_Application1:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd MvvmCross_Application1.MvvmCross_Application1:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions MvvmCross_Application1.MvvmCross_Application1:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft MvvmCross_Application1.MvvmCross_Application1:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight MvvmCross_Application1.MvvmCross_Application1:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart MvvmCross_Application1.MvvmCross_Application1:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation MvvmCross_Application1.MvvmCross_Application1:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout MvvmCross_Application1.MvvmCross_Application1:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions MvvmCross_Application1.MvvmCross_Application1:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider MvvmCross_Application1.MvvmCross_Application1:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation MvvmCross_Application1.MvvmCross_Application1:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height MvvmCross_Application1.MvvmCross_Application1:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll MvvmCross_Application1.MvvmCross_Application1:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator MvvmCross_Application1.MvvmCross_Application1:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout MvvmCross_Application1.MvvmCross_Application1:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon MvvmCross_Application1.MvvmCross_Application1:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle MvvmCross_Application1.MvvmCross_Application1:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding MvvmCross_Application1.MvvmCross_Application1:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo MvvmCross_Application1.MvvmCross_Application1:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode MvvmCross_Application1.MvvmCross_Application1:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme MvvmCross_Application1.MvvmCross_Application1:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding MvvmCross_Application1.MvvmCross_Application1:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle MvvmCross_Application1.MvvmCross_Application1:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle MvvmCross_Application1.MvvmCross_Application1:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle MvvmCross_Application1.MvvmCross_Application1:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title MvvmCross_Application1.MvvmCross_Application1:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle MvvmCross_Application1.MvvmCross_Application1:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionBar_background @see #ActionBar_backgroundSplit @see #ActionBar_backgroundStacked @see #ActionBar_contentInsetEnd @see #ActionBar_contentInsetEndWithActions @see #ActionBar_contentInsetLeft @see #ActionBar_contentInsetRight @see #ActionBar_contentInsetStart @see #ActionBar_contentInsetStartWithNavigation @see #ActionBar_customNavigationLayout @see #ActionBar_displayOptions @see #ActionBar_divider @see #ActionBar_elevation @see #ActionBar_height @see #ActionBar_hideOnContentScroll @see #ActionBar_homeAsUpIndicator @see #ActionBar_homeLayout @see #ActionBar_icon @see #ActionBar_indeterminateProgressStyle @see #ActionBar_itemPadding @see #ActionBar_logo @see #ActionBar_navigationMode @see #ActionBar_popupTheme @see #ActionBar_progressBarPadding @see #ActionBar_progressBarStyle @see #ActionBar_subtitle @see #ActionBar_subtitleTextStyle @see #ActionBar_title @see #ActionBar_titleTextStyle */ public static final int[] ActionBar = { 0x7f01000a, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f01006c }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions = 25; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation = 24; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:elevation */ public static final int ActionBar_elevation = 26; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 28; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:popupTheme */ public static final int ActionBar_popupTheme = 27; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1: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 MvvmCross_Application1.MvvmCross_Application1:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit MvvmCross_Application1.MvvmCross_Application1:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout MvvmCross_Application1.MvvmCross_Application1:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height MvvmCross_Application1.MvvmCross_Application1:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle MvvmCross_Application1.MvvmCross_Application1:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle MvvmCross_Application1.MvvmCross_Application1: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 = { 0x7f01000a, 0x7f010010, 0x7f010011, 0x7f010015, 0x7f010017, 0x7f010027 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1: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 MvvmCross_Application1.MvvmCross_Application1:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount MvvmCross_Application1.MvvmCross_Application1:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f010028, 0x7f010029 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1: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 MvvmCross_Application1.MvvmCross_Application1:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout MvvmCross_Application1.MvvmCross_Application1:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout MvvmCross_Application1.MvvmCross_Application1:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout MvvmCross_Application1.MvvmCross_Application1:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_showTitle MvvmCross_Application1.MvvmCross_Application1:showTitle}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout MvvmCross_Application1.MvvmCross_Application1:singleChoiceItemLayout}</code></td><td></td></tr> </table> @see #AlertDialog_android_layout @see #AlertDialog_buttonPanelSideLayout @see #AlertDialog_listItemLayout @see #AlertDialog_listLayout @see #AlertDialog_multiChoiceItemLayout @see #AlertDialog_showTitle @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f }; /** <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 MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#showTitle} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:showTitle */ public static final int AlertDialog_showTitle = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** Attributes that can be used with a AppBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_elevation MvvmCross_Application1.MvvmCross_Application1:elevation}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_expanded MvvmCross_Application1.MvvmCross_Application1:expanded}</code></td><td></td></tr> </table> @see #AppBarLayout_android_background @see #AppBarLayout_android_keyboardNavigationCluster @see #AppBarLayout_android_touchscreenBlocksFocus @see #AppBarLayout_elevation @see #AppBarLayout_expanded */ public static final int[] AppBarLayout = { 0x010100d4, 0x0101048f, 0x01010540, 0x7f010025, 0x7f0100ff }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:background */ public static final int AppBarLayout_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:keyboardNavigationCluster */ public static final int AppBarLayout_android_keyboardNavigationCluster = 2; /** <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:touchscreenBlocksFocus */ public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#elevation} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:elevation */ public static final int AppBarLayout_elevation = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#expanded} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:expanded */ public static final int AppBarLayout_expanded = 4; /** Attributes that can be used with a AppBarLayoutStates. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsed MvvmCross_Application1.MvvmCross_Application1:state_collapsed}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsible MvvmCross_Application1.MvvmCross_Application1:state_collapsible}</code></td><td></td></tr> </table> @see #AppBarLayoutStates_state_collapsed @see #AppBarLayoutStates_state_collapsible */ public static final int[] AppBarLayoutStates = { 0x7f010100, 0x7f010101 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#state_collapsed} attribute's value can be found in the {@link #AppBarLayoutStates} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#state_collapsible} attribute's value can be found in the {@link #AppBarLayoutStates} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:state_collapsible */ public static final int AppBarLayoutStates_state_collapsible = 1; /** Attributes that can be used with a AppBarLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags MvvmCross_Application1.MvvmCross_Application1:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator MvvmCross_Application1.MvvmCross_Application1:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_Layout_layout_scrollFlags @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout = { 0x7f010102, 0x7f010103 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#layout_scrollFlags} attribute's value can be found in the {@link #AppBarLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#layout_scrollInterpolator} attribute's value can be found in the {@link #AppBarLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:layout_scrollInterpolator */ public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; /** Attributes that can be used with a AppCompatImageView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_srcCompat MvvmCross_Application1.MvvmCross_Application1:srcCompat}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tint MvvmCross_Application1.MvvmCross_Application1:tint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tintMode MvvmCross_Application1.MvvmCross_Application1:tintMode}</code></td><td></td></tr> </table> @see #AppCompatImageView_android_src @see #AppCompatImageView_srcCompat @see #AppCompatImageView_tint @see #AppCompatImageView_tintMode */ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010030, 0x7f010031, 0x7f010032 }; /** <p>This symbol is the offset where the {@link android.R.attr#src} attribute's value can be found in the {@link #AppCompatImageView} array. @attr name android:src */ public static final int AppCompatImageView_android_src = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#srcCompat} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:srcCompat */ public static final int AppCompatImageView_srcCompat = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tint} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tint */ public static final int AppCompatImageView_tint = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tintMode} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:tintMode */ public static final int AppCompatImageView_tintMode = 3; /** Attributes that can be used with a AppCompatSeekBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMark MvvmCross_Application1.MvvmCross_Application1:tickMark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint MvvmCross_Application1.MvvmCross_Application1:tickMarkTint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode MvvmCross_Application1.MvvmCross_Application1:tickMarkTintMode}</code></td><td></td></tr> </table> @see #AppCompatSeekBar_android_thumb @see #AppCompatSeekBar_tickMark @see #AppCompatSeekBar_tickMarkTint @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar = { 0x01010142, 0x7f010033, 0x7f010034, 0x7f010035 }; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #AppCompatSeekBar} array. @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tickMark} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:tickMark */ public static final int AppCompatSeekBar_tickMark = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tickMarkTint} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tickMarkTintMode} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode = 3; /** Attributes that can be used with a AppCompatTextHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> </table> @see #AppCompatTextHelper_android_drawableBottom @see #AppCompatTextHelper_android_drawableEnd @see #AppCompatTextHelper_android_drawableLeft @see #AppCompatTextHelper_android_drawableRight @see #AppCompatTextHelper_android_drawableStart @see #AppCompatTextHelper_android_drawableTop @see #AppCompatTextHelper_android_textAppearance */ public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom = 2; /** <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd = 6; /** <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft = 3; /** <p>This symbol is the offset where the {@link android.R.attr#drawableRight} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight = 4; /** <p>This symbol is the offset where the {@link android.R.attr#drawableStart} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart = 5; /** <p>This symbol is the offset where the {@link android.R.attr#drawableTop} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance = 0; /** Attributes that can be used with a AppCompatTextView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize MvvmCross_Application1.MvvmCross_Application1:autoSizeMaxTextSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize MvvmCross_Application1.MvvmCross_Application1:autoSizeMinTextSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes MvvmCross_Application1.MvvmCross_Application1:autoSizePresetSizes}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity MvvmCross_Application1.MvvmCross_Application1:autoSizeStepGranularity}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeTextType MvvmCross_Application1.MvvmCross_Application1:autoSizeTextType}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_fontFamily MvvmCross_Application1.MvvmCross_Application1:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps MvvmCross_Application1.MvvmCross_Application1:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_autoSizeMaxTextSize @see #AppCompatTextView_autoSizeMinTextSize @see #AppCompatTextView_autoSizePresetSizes @see #AppCompatTextView_autoSizeStepGranularity @see #AppCompatTextView_autoSizeTextType @see #AppCompatTextView_fontFamily @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c }; /** <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 MvvmCross_Application1.MvvmCross_Application1.R.attr#autoSizeMaxTextSize} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#autoSizeMinTextSize} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#autoSizePresetSizes} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#autoSizeStepGranularity} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#autoSizeTextType} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>uniform</code></td><td>1</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fontFamily} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:fontFamily */ public static final int AppCompatTextView_fontFamily = 7; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** Attributes that can be used with a AppCompatTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTheme_actionBarDivider MvvmCross_Application1.MvvmCross_Application1:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground MvvmCross_Application1.MvvmCross_Application1:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme MvvmCross_Application1.MvvmCross_Application1:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize MvvmCross_Application1.MvvmCross_Application1:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle MvvmCross_Application1.MvvmCross_Application1:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle MvvmCross_Application1.MvvmCross_Application1:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle MvvmCross_Application1.MvvmCross_Application1:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle MvvmCross_Application1.MvvmCross_Application1:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle MvvmCross_Application1.MvvmCross_Application1:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme MvvmCross_Application1.MvvmCross_Application1:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme MvvmCross_Application1.MvvmCross_Application1:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle MvvmCross_Application1.MvvmCross_Application1:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle MvvmCross_Application1.MvvmCross_Application1:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance MvvmCross_Application1.MvvmCross_Application1:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor MvvmCross_Application1.MvvmCross_Application1:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground MvvmCross_Application1.MvvmCross_Application1:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle MvvmCross_Application1.MvvmCross_Application1:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable MvvmCross_Application1.MvvmCross_Application1:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable MvvmCross_Application1.MvvmCross_Application1:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable MvvmCross_Application1.MvvmCross_Application1:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable MvvmCross_Application1.MvvmCross_Application1:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable MvvmCross_Application1.MvvmCross_Application1:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle MvvmCross_Application1.MvvmCross_Application1:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable MvvmCross_Application1.MvvmCross_Application1:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable MvvmCross_Application1.MvvmCross_Application1:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground MvvmCross_Application1.MvvmCross_Application1:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle MvvmCross_Application1.MvvmCross_Application1:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable MvvmCross_Application1.MvvmCross_Application1:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle MvvmCross_Application1.MvvmCross_Application1:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle MvvmCross_Application1.MvvmCross_Application1:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle MvvmCross_Application1.MvvmCross_Application1:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle MvvmCross_Application1.MvvmCross_Application1:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons MvvmCross_Application1.MvvmCross_Application1:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle MvvmCross_Application1.MvvmCross_Application1:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme MvvmCross_Application1.MvvmCross_Application1:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle MvvmCross_Application1.MvvmCross_Application1:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle MvvmCross_Application1.MvvmCross_Application1:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle MvvmCross_Application1.MvvmCross_Application1:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle MvvmCross_Application1.MvvmCross_Application1:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle MvvmCross_Application1.MvvmCross_Application1:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle MvvmCross_Application1.MvvmCross_Application1:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle MvvmCross_Application1.MvvmCross_Application1:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle MvvmCross_Application1.MvvmCross_Application1:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall MvvmCross_Application1.MvvmCross_Application1:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle MvvmCross_Application1.MvvmCross_Application1:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle MvvmCross_Application1.MvvmCross_Application1:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent MvvmCross_Application1.MvvmCross_Application1:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating MvvmCross_Application1.MvvmCross_Application1:colorBackgroundFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal MvvmCross_Application1.MvvmCross_Application1:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated MvvmCross_Application1.MvvmCross_Application1:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight MvvmCross_Application1.MvvmCross_Application1:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal MvvmCross_Application1.MvvmCross_Application1:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorError MvvmCross_Application1.MvvmCross_Application1:colorError}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary MvvmCross_Application1.MvvmCross_Application1:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark MvvmCross_Application1.MvvmCross_Application1:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal MvvmCross_Application1.MvvmCross_Application1:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground MvvmCross_Application1.MvvmCross_Application1:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding MvvmCross_Application1.MvvmCross_Application1:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme MvvmCross_Application1.MvvmCross_Application1:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal MvvmCross_Application1.MvvmCross_Application1:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical MvvmCross_Application1.MvvmCross_Application1:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle MvvmCross_Application1.MvvmCross_Application1:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight MvvmCross_Application1.MvvmCross_Application1:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground MvvmCross_Application1.MvvmCross_Application1:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor MvvmCross_Application1.MvvmCross_Application1:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle MvvmCross_Application1.MvvmCross_Application1:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator MvvmCross_Application1.MvvmCross_Application1:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle MvvmCross_Application1.MvvmCross_Application1:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator MvvmCross_Application1.MvvmCross_Application1:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog MvvmCross_Application1.MvvmCross_Application1:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle MvvmCross_Application1.MvvmCross_Application1:listMenuViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle MvvmCross_Application1.MvvmCross_Application1:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight MvvmCross_Application1.MvvmCross_Application1:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge MvvmCross_Application1.MvvmCross_Application1:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall MvvmCross_Application1.MvvmCross_Application1:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft MvvmCross_Application1.MvvmCross_Application1:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight MvvmCross_Application1.MvvmCross_Application1:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground MvvmCross_Application1.MvvmCross_Application1:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme MvvmCross_Application1.MvvmCross_Application1:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth MvvmCross_Application1.MvvmCross_Application1:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle MvvmCross_Application1.MvvmCross_Application1:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle MvvmCross_Application1.MvvmCross_Application1:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle MvvmCross_Application1.MvvmCross_Application1:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle MvvmCross_Application1.MvvmCross_Application1:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator MvvmCross_Application1.MvvmCross_Application1:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall MvvmCross_Application1.MvvmCross_Application1:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle MvvmCross_Application1.MvvmCross_Application1:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle MvvmCross_Application1.MvvmCross_Application1:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground MvvmCross_Application1.MvvmCross_Application1:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless MvvmCross_Application1.MvvmCross_Application1:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle MvvmCross_Application1.MvvmCross_Application1:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle MvvmCross_Application1.MvvmCross_Application1:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle MvvmCross_Application1.MvvmCross_Application1:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu MvvmCross_Application1.MvvmCross_Application1:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem MvvmCross_Application1.MvvmCross_Application1:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary MvvmCross_Application1.MvvmCross_Application1:textAppearanceListItemSecondary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall MvvmCross_Application1.MvvmCross_Application1:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader MvvmCross_Application1.MvvmCross_Application1:textAppearancePopupMenuHeader}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle MvvmCross_Application1.MvvmCross_Application1:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle MvvmCross_Application1.MvvmCross_Application1:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu MvvmCross_Application1.MvvmCross_Application1:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem MvvmCross_Application1.MvvmCross_Application1:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl MvvmCross_Application1.MvvmCross_Application1:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle MvvmCross_Application1.MvvmCross_Application1:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle MvvmCross_Application1.MvvmCross_Application1:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor MvvmCross_Application1.MvvmCross_Application1:tooltipForegroundColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground MvvmCross_Application1.MvvmCross_Application1:tooltipFrameBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar MvvmCross_Application1.MvvmCross_Application1:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay MvvmCross_Application1.MvvmCross_Application1:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay MvvmCross_Application1.MvvmCross_Application1:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor MvvmCross_Application1.MvvmCross_Application1:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor MvvmCross_Application1.MvvmCross_Application1:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor MvvmCross_Application1.MvvmCross_Application1:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor MvvmCross_Application1.MvvmCross_Application1:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor MvvmCross_Application1.MvvmCross_Application1:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor MvvmCross_Application1.MvvmCross_Application1:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle MvvmCross_Application1.MvvmCross_Application1:windowNoTitle}</code></td><td></td></tr> </table> @see #AppCompatTheme_actionBarDivider @see #AppCompatTheme_actionBarItemBackground @see #AppCompatTheme_actionBarPopupTheme @see #AppCompatTheme_actionBarSize @see #AppCompatTheme_actionBarSplitStyle @see #AppCompatTheme_actionBarStyle @see #AppCompatTheme_actionBarTabBarStyle @see #AppCompatTheme_actionBarTabStyle @see #AppCompatTheme_actionBarTabTextStyle @see #AppCompatTheme_actionBarTheme @see #AppCompatTheme_actionBarWidgetTheme @see #AppCompatTheme_actionButtonStyle @see #AppCompatTheme_actionDropDownStyle @see #AppCompatTheme_actionMenuTextAppearance @see #AppCompatTheme_actionMenuTextColor @see #AppCompatTheme_actionModeBackground @see #AppCompatTheme_actionModeCloseButtonStyle @see #AppCompatTheme_actionModeCloseDrawable @see #AppCompatTheme_actionModeCopyDrawable @see #AppCompatTheme_actionModeCutDrawable @see #AppCompatTheme_actionModeFindDrawable @see #AppCompatTheme_actionModePasteDrawable @see #AppCompatTheme_actionModePopupWindowStyle @see #AppCompatTheme_actionModeSelectAllDrawable @see #AppCompatTheme_actionModeShareDrawable @see #AppCompatTheme_actionModeSplitBackground @see #AppCompatTheme_actionModeStyle @see #AppCompatTheme_actionModeWebSearchDrawable @see #AppCompatTheme_actionOverflowButtonStyle @see #AppCompatTheme_actionOverflowMenuStyle @see #AppCompatTheme_activityChooserViewStyle @see #AppCompatTheme_alertDialogButtonGroupStyle @see #AppCompatTheme_alertDialogCenterButtons @see #AppCompatTheme_alertDialogStyle @see #AppCompatTheme_alertDialogTheme @see #AppCompatTheme_android_windowAnimationStyle @see #AppCompatTheme_android_windowIsFloating @see #AppCompatTheme_autoCompleteTextViewStyle @see #AppCompatTheme_borderlessButtonStyle @see #AppCompatTheme_buttonBarButtonStyle @see #AppCompatTheme_buttonBarNegativeButtonStyle @see #AppCompatTheme_buttonBarNeutralButtonStyle @see #AppCompatTheme_buttonBarPositiveButtonStyle @see #AppCompatTheme_buttonBarStyle @see #AppCompatTheme_buttonStyle @see #AppCompatTheme_buttonStyleSmall @see #AppCompatTheme_checkboxStyle @see #AppCompatTheme_checkedTextViewStyle @see #AppCompatTheme_colorAccent @see #AppCompatTheme_colorBackgroundFloating @see #AppCompatTheme_colorButtonNormal @see #AppCompatTheme_colorControlActivated @see #AppCompatTheme_colorControlHighlight @see #AppCompatTheme_colorControlNormal @see #AppCompatTheme_colorError @see #AppCompatTheme_colorPrimary @see #AppCompatTheme_colorPrimaryDark @see #AppCompatTheme_colorSwitchThumbNormal @see #AppCompatTheme_controlBackground @see #AppCompatTheme_dialogPreferredPadding @see #AppCompatTheme_dialogTheme @see #AppCompatTheme_dividerHorizontal @see #AppCompatTheme_dividerVertical @see #AppCompatTheme_dropDownListViewStyle @see #AppCompatTheme_dropdownListPreferredItemHeight @see #AppCompatTheme_editTextBackground @see #AppCompatTheme_editTextColor @see #AppCompatTheme_editTextStyle @see #AppCompatTheme_homeAsUpIndicator @see #AppCompatTheme_imageButtonStyle @see #AppCompatTheme_listChoiceBackgroundIndicator @see #AppCompatTheme_listDividerAlertDialog @see #AppCompatTheme_listMenuViewStyle @see #AppCompatTheme_listPopupWindowStyle @see #AppCompatTheme_listPreferredItemHeight @see #AppCompatTheme_listPreferredItemHeightLarge @see #AppCompatTheme_listPreferredItemHeightSmall @see #AppCompatTheme_listPreferredItemPaddingLeft @see #AppCompatTheme_listPreferredItemPaddingRight @see #AppCompatTheme_panelBackground @see #AppCompatTheme_panelMenuListTheme @see #AppCompatTheme_panelMenuListWidth @see #AppCompatTheme_popupMenuStyle @see #AppCompatTheme_popupWindowStyle @see #AppCompatTheme_radioButtonStyle @see #AppCompatTheme_ratingBarStyle @see #AppCompatTheme_ratingBarStyleIndicator @see #AppCompatTheme_ratingBarStyleSmall @see #AppCompatTheme_searchViewStyle @see #AppCompatTheme_seekBarStyle @see #AppCompatTheme_selectableItemBackground @see #AppCompatTheme_selectableItemBackgroundBorderless @see #AppCompatTheme_spinnerDropDownItemStyle @see #AppCompatTheme_spinnerStyle @see #AppCompatTheme_switchStyle @see #AppCompatTheme_textAppearanceLargePopupMenu @see #AppCompatTheme_textAppearanceListItem @see #AppCompatTheme_textAppearanceListItemSecondary @see #AppCompatTheme_textAppearanceListItemSmall @see #AppCompatTheme_textAppearancePopupMenuHeader @see #AppCompatTheme_textAppearanceSearchResultSubtitle @see #AppCompatTheme_textAppearanceSearchResultTitle @see #AppCompatTheme_textAppearanceSmallPopupMenu @see #AppCompatTheme_textColorAlertDialogListItem @see #AppCompatTheme_textColorSearchUrl @see #AppCompatTheme_toolbarNavigationButtonStyle @see #AppCompatTheme_toolbarStyle @see #AppCompatTheme_tooltipForegroundColor @see #AppCompatTheme_tooltipFrameBackground @see #AppCompatTheme_windowActionBar @see #AppCompatTheme_windowActionBarOverlay @see #AppCompatTheme_windowActionModeOverlay @see #AppCompatTheme_windowFixedHeightMajor @see #AppCompatTheme_windowFixedHeightMinor @see #AppCompatTheme_windowFixedWidthMajor @see #AppCompatTheme_windowFixedWidthMinor @see #AppCompatTheme_windowMinWidthMajor @see #AppCompatTheme_windowMinWidthMinor @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionBarDivider} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionBarSize} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:actionBarSize */ public static final int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionBarTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle = 50; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle = 46; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModeBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModeStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle = 58; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons = 96; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#alertDialogStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle = 94; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#alertDialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme = 97; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle = 55; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle = 52; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#buttonBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle = 51; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#buttonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:buttonStyle */ public static final int AppCompatTheme_buttonStyle = 103; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall = 104; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#checkboxStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle = 105; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle = 106; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#colorAccent} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:colorAccent */ public static final int AppCompatTheme_colorAccent = 86; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#colorBackgroundFloating} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating = 93; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#colorButtonNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal = 90; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#colorControlActivated} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated = 88; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#colorControlHighlight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight = 89; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#colorControlNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal = 87; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#colorError} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:colorError */ public static final int AppCompatTheme_colorError = 118; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#colorPrimary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:colorPrimary */ public static final int AppCompatTheme_colorPrimary = 84; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark = 85; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal = 91; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#controlBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:controlBackground */ public static final int AppCompatTheme_controlBackground = 92; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding = 44; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#dialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:dialogTheme */ public static final int AppCompatTheme_dialogTheme = 43; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#dividerHorizontal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal = 57; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#dividerVertical} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:dividerVertical */ public static final int AppCompatTheme_dividerVertical = 56; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle = 75; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#editTextBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:editTextBackground */ public static final int AppCompatTheme_editTextBackground = 64; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#editTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:editTextColor */ public static final int AppCompatTheme_editTextColor = 63; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#editTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:editTextStyle */ public static final int AppCompatTheme_editTextStyle = 107; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator = 49; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#imageButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle = 65; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog = 45; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#listMenuViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle = 115; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle = 76; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight = 70; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#panelBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:panelBackground */ public static final int AppCompatTheme_panelBackground = 80; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme = 82; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth = 81; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#popupMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle = 61; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#popupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle = 62; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#radioButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle = 108; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#ratingBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle = 109; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#ratingBarStyleIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator = 110; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#ratingBarStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall = 111; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#searchViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle = 69; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#seekBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle = 112; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#selectableItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground = 53; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#spinnerStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle = 113; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#switchStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:switchStyle */ public static final int AppCompatTheme_switchStyle = 114; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem = 77; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#textAppearanceListItemSecondary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall = 79; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#textAppearancePopupMenuHeader} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem = 98; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl = 68; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#toolbarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle = 59; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tooltipForegroundColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor = 117; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tooltipFrameBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground = 116; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#windowActionBar} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:windowActionBar */ public static final int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#windowNoTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle = 3; /** Attributes that can be used with a BottomNavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomNavigationView_elevation MvvmCross_Application1.MvvmCross_Application1:elevation}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemBackground MvvmCross_Application1.MvvmCross_Application1:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemIconTint MvvmCross_Application1.MvvmCross_Application1:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextColor MvvmCross_Application1.MvvmCross_Application1:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_menu MvvmCross_Application1.MvvmCross_Application1:menu}</code></td><td></td></tr> </table> @see #BottomNavigationView_elevation @see #BottomNavigationView_itemBackground @see #BottomNavigationView_itemIconTint @see #BottomNavigationView_itemTextColor @see #BottomNavigationView_menu */ public static final int[] BottomNavigationView = { 0x7f010025, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#elevation} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:elevation */ public static final int BottomNavigationView_elevation = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#itemBackground} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:itemBackground */ public static final int BottomNavigationView_itemBackground = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#itemIconTint} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:itemIconTint */ public static final int BottomNavigationView_itemIconTint = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#itemTextColor} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:itemTextColor */ public static final int BottomNavigationView_itemTextColor = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#menu} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:menu */ public static final int BottomNavigationView_menu = 1; /** Attributes that can be used with a BottomSheetBehavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable MvvmCross_Application1.MvvmCross_Application1:behavior_hideable}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight MvvmCross_Application1.MvvmCross_Application1:behavior_peekHeight}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed MvvmCross_Application1.MvvmCross_Application1:behavior_skipCollapsed}</code></td><td></td></tr> </table> @see #BottomSheetBehavior_Layout_behavior_hideable @see #BottomSheetBehavior_Layout_behavior_peekHeight @see #BottomSheetBehavior_Layout_behavior_skipCollapsed */ public static final int[] BottomSheetBehavior_Layout = { 0x7f010104, 0x7f010105, 0x7f010106 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#behavior_hideable} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#behavior_peekHeight} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#behavior_skipCollapsed} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:behavior_skipCollapsed */ public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; /** Attributes that can be used with a ButtonBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ButtonBarLayout_allowStacking MvvmCross_Application1.MvvmCross_Application1:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f0100b2 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#allowStacking} attribute's value can be found in the {@link #ButtonBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:allowStacking */ public static final int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a CollapsingToolbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity MvvmCross_Application1.MvvmCross_Application1:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance MvvmCross_Application1.MvvmCross_Application1:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim MvvmCross_Application1.MvvmCross_Application1:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity MvvmCross_Application1.MvvmCross_Application1:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin MvvmCross_Application1.MvvmCross_Application1:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom MvvmCross_Application1.MvvmCross_Application1:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd MvvmCross_Application1.MvvmCross_Application1:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart MvvmCross_Application1.MvvmCross_Application1:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop MvvmCross_Application1.MvvmCross_Application1:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance MvvmCross_Application1.MvvmCross_Application1:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration MvvmCross_Application1.MvvmCross_Application1:scrimAnimationDuration}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger MvvmCross_Application1.MvvmCross_Application1:scrimVisibleHeightTrigger}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim MvvmCross_Application1.MvvmCross_Application1:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title MvvmCross_Application1.MvvmCross_Application1:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled MvvmCross_Application1.MvvmCross_Application1:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId MvvmCross_Application1.MvvmCross_Application1:toolbarId}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_collapsedTitleGravity @see #CollapsingToolbarLayout_collapsedTitleTextAppearance @see #CollapsingToolbarLayout_contentScrim @see #CollapsingToolbarLayout_expandedTitleGravity @see #CollapsingToolbarLayout_expandedTitleMargin @see #CollapsingToolbarLayout_expandedTitleMarginBottom @see #CollapsingToolbarLayout_expandedTitleMarginEnd @see #CollapsingToolbarLayout_expandedTitleMarginStart @see #CollapsingToolbarLayout_expandedTitleMarginTop @see #CollapsingToolbarLayout_expandedTitleTextAppearance @see #CollapsingToolbarLayout_scrimAnimationDuration @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger @see #CollapsingToolbarLayout_statusBarScrim @see #CollapsingToolbarLayout_title @see #CollapsingToolbarLayout_titleEnabled @see #CollapsingToolbarLayout_toolbarId */ public static final int[] CollapsingToolbarLayout = { 0x7f01000c, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#collapsedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#collapsedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#contentScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#expandedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity = 14; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#expandedTitleMargin} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#expandedTitleMarginBottom} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#expandedTitleMarginEnd} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#expandedTitleMarginStart} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#expandedTitleMarginTop} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#expandedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#scrimAnimationDuration} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#scrimVisibleHeightTrigger} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#statusBarScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#title} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:title */ public static final int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#titleEnabled} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled = 15; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#toolbarId} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:toolbarId */ public static final int CollapsingToolbarLayout_toolbarId = 10; /** Attributes that can be used with a CollapsingToolbarLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode MvvmCross_Application1.MvvmCross_Application1:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier MvvmCross_Application1.MvvmCross_Application1:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_Layout_layout_collapseMode @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout = { 0x7f010116, 0x7f010117 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#layout_collapseMode} attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#layout_collapseParallaxMultiplier} attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:layout_collapseParallaxMultiplier */ public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; /** Attributes that can be used with a ColorStateListItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ColorStateListItem_alpha MvvmCross_Application1.MvvmCross_Application1:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr> </table> @see #ColorStateListItem_alpha @see #ColorStateListItem_android_alpha @see #ColorStateListItem_android_color */ public static final int[] ColorStateListItem = { 0x010101a5, 0x0101031f, 0x7f0100b3 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:alpha */ public static final int ColorStateListItem_alpha = 2; /** <p>This symbol is the offset where the {@link android.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:alpha */ public static final int ColorStateListItem_android_alpha = 1; /** <p>This symbol is the offset where the {@link android.R.attr#color} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:color */ public static final int ColorStateListItem_android_color = 0; /** Attributes that can be used with a CompoundButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTint MvvmCross_Application1.MvvmCross_Application1:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode MvvmCross_Application1.MvvmCross_Application1:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f0100b4, 0x7f0100b5 }; /** <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 MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#buttonTintMode} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a CoordinatorLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_keylines MvvmCross_Application1.MvvmCross_Application1:keylines}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground MvvmCross_Application1.MvvmCross_Application1:statusBarBackground}</code></td><td></td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f010118, 0x7f010119 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#keylines} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:keylines */ public static final int CoordinatorLayout_keylines = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#statusBarBackground} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:statusBarBackground */ public static final int CoordinatorLayout_statusBarBackground = 1; /** Attributes that can be used with a CoordinatorLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor MvvmCross_Application1.MvvmCross_Application1:layout_anchor}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity MvvmCross_Application1.MvvmCross_Application1:layout_anchorGravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior MvvmCross_Application1.MvvmCross_Application1:layout_behavior}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges MvvmCross_Application1.MvvmCross_Application1:layout_dodgeInsetEdges}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge MvvmCross_Application1.MvvmCross_Application1:layout_insetEdge}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline MvvmCross_Application1.MvvmCross_Application1:layout_keyline}</code></td><td></td></tr> </table> @see #CoordinatorLayout_Layout_android_layout_gravity @see #CoordinatorLayout_Layout_layout_anchor @see #CoordinatorLayout_Layout_layout_anchorGravity @see #CoordinatorLayout_Layout_layout_behavior @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges @see #CoordinatorLayout_Layout_layout_insetEdge @see #CoordinatorLayout_Layout_layout_keyline */ public static final int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. @attr name android:layout_gravity */ public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#layout_anchor} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#layout_anchorGravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#layout_behavior} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#layout_dodgeInsetEdges} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#layout_insetEdge} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#layout_keyline} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:layout_keyline */ public static final int CoordinatorLayout_Layout_layout_keyline = 3; /** Attributes that can be used with a DesignTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme MvvmCross_Application1.MvvmCross_Application1:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_bottomSheetStyle MvvmCross_Application1.MvvmCross_Application1:bottomSheetStyle}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_textColorError MvvmCross_Application1.MvvmCross_Application1:textColorError}</code></td><td></td></tr> </table> @see #DesignTheme_bottomSheetDialogTheme @see #DesignTheme_bottomSheetStyle @see #DesignTheme_textColorError */ public static final int[] DesignTheme = { 0x7f010120, 0x7f010121, 0x7f010122 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#bottomSheetDialogTheme} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#bottomSheetStyle} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#textColorError} attribute's value can be found in the {@link #DesignTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:textColorError */ public static final int DesignTheme_textColorError = 2; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength MvvmCross_Application1.MvvmCross_Application1:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength MvvmCross_Application1.MvvmCross_Application1:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength MvvmCross_Application1.MvvmCross_Application1:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color MvvmCross_Application1.MvvmCross_Application1:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize MvvmCross_Application1.MvvmCross_Application1:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars MvvmCross_Application1.MvvmCross_Application1:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars MvvmCross_Application1.MvvmCross_Application1:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness MvvmCross_Application1.MvvmCross_Application1: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 = { 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a FloatingActionButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTint MvvmCross_Application1.MvvmCross_Application1:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode MvvmCross_Application1.MvvmCross_Application1:backgroundTintMode}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth MvvmCross_Application1.MvvmCross_Application1:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation MvvmCross_Application1.MvvmCross_Application1:elevation}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize MvvmCross_Application1.MvvmCross_Application1:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ MvvmCross_Application1.MvvmCross_Application1:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor MvvmCross_Application1.MvvmCross_Application1:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_useCompatPadding MvvmCross_Application1.MvvmCross_Application1:useCompatPadding}</code></td><td></td></tr> </table> @see #FloatingActionButton_backgroundTint @see #FloatingActionButton_backgroundTintMode @see #FloatingActionButton_borderWidth @see #FloatingActionButton_elevation @see #FloatingActionButton_fabSize @see #FloatingActionButton_pressedTranslationZ @see #FloatingActionButton_rippleColor @see #FloatingActionButton_useCompatPadding */ public static final int[] FloatingActionButton = { 0x7f010025, 0x7f0100fd, 0x7f0100fe, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#backgroundTint} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:backgroundTint */ public static final int FloatingActionButton_backgroundTint = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#backgroundTintMode} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#borderWidth} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:borderWidth */ public static final int FloatingActionButton_borderWidth = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#elevation} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:elevation */ public static final int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fabSize} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:fabSize */ public static final int FloatingActionButton_fabSize = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#pressedTranslationZ} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#rippleColor} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:rippleColor */ public static final int FloatingActionButton_rippleColor = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#useCompatPadding} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding = 7; /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide MvvmCross_Application1.MvvmCross_Application1:behavior_autoHide}</code></td><td></td></tr> </table> @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f010128 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#behavior_autoHide} attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:behavior_autoHide */ public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; /** Attributes that can be used with a FontFamily. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FontFamily_fontProviderAuthority MvvmCross_Application1.MvvmCross_Application1:fontProviderAuthority}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderCerts MvvmCross_Application1.MvvmCross_Application1:fontProviderCerts}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy MvvmCross_Application1.MvvmCross_Application1:fontProviderFetchStrategy}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout MvvmCross_Application1.MvvmCross_Application1:fontProviderFetchTimeout}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderPackage MvvmCross_Application1.MvvmCross_Application1:fontProviderPackage}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderQuery MvvmCross_Application1.MvvmCross_Application1:fontProviderQuery}</code></td><td></td></tr> </table> @see #FontFamily_fontProviderAuthority @see #FontFamily_fontProviderCerts @see #FontFamily_fontProviderFetchStrategy @see #FontFamily_fontProviderFetchTimeout @see #FontFamily_fontProviderPackage @see #FontFamily_fontProviderQuery */ public static final int[] FontFamily = { 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, 0x7f010155, 0x7f010156 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fontProviderAuthority} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fontProviderCerts} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:fontProviderCerts */ public static final int FontFamily_fontProviderCerts = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fontProviderFetchStrategy} attribute's value can be found in the {@link #FontFamily} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>blocking</code></td><td>0</td><td></td></tr> <tr><td><code>async</code></td><td>1</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fontProviderFetchTimeout} attribute's value can be found in the {@link #FontFamily} array. <p>May be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>forever</code></td><td>-1</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fontProviderPackage} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:fontProviderPackage */ public static final int FontFamily_fontProviderPackage = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fontProviderQuery} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:fontProviderQuery */ public static final int FontFamily_fontProviderQuery = 2; /** Attributes that can be used with a FontFamilyFont. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_font MvvmCross_Application1.MvvmCross_Application1:font}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_fontStyle MvvmCross_Application1.MvvmCross_Application1:fontStyle}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_fontWeight MvvmCross_Application1.MvvmCross_Application1:fontWeight}</code></td><td></td></tr> </table> @see #FontFamilyFont_android_font @see #FontFamilyFont_android_fontStyle @see #FontFamilyFont_android_fontWeight @see #FontFamilyFont_font @see #FontFamilyFont_fontStyle @see #FontFamilyFont_fontWeight */ public static final int[] FontFamilyFont = { 0x01010532, 0x01010533, 0x0101053f, 0x7f010157, 0x7f010158, 0x7f010159 }; /** <p>This symbol is the offset where the {@link android.R.attr#font} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:font */ public static final int FontFamilyFont_android_font = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fontStyle} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontStyle */ public static final int FontFamilyFont_android_fontStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#fontWeight} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontWeight */ public static final int FontFamilyFont_android_fontWeight = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#font} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:font */ public static final int FontFamilyFont_font = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fontStyle} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>italic</code></td><td>1</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:fontStyle */ public static final int FontFamilyFont_fontStyle = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fontWeight} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:fontWeight */ public static final int FontFamilyFont_fontWeight = 5; /** Attributes that can be used with a ForegroundLinearLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding MvvmCross_Application1.MvvmCross_Application1:foregroundInsidePadding}</code></td><td></td></tr> </table> @see #ForegroundLinearLayout_android_foreground @see #ForegroundLinearLayout_android_foregroundGravity @see #ForegroundLinearLayout_foregroundInsidePadding */ public static final int[] ForegroundLinearLayout = { 0x01010109, 0x01010200, 0x7f010129 }; /** <p>This symbol is the offset where the {@link android.R.attr#foreground} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foreground */ public static final int ForegroundLinearLayout_android_foreground = 0; /** <p>This symbol is the offset where the {@link android.R.attr#foregroundGravity} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foregroundGravity */ public static final int ForegroundLinearLayout_android_foregroundGravity = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#foregroundInsidePadding} attribute's value can be found in the {@link #ForegroundLinearLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; /** Attributes that can be used with a LinearLayoutCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_divider MvvmCross_Application1.MvvmCross_Application1:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding MvvmCross_Application1.MvvmCross_Application1:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild MvvmCross_Application1.MvvmCross_Application1:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers MvvmCross_Application1.MvvmCross_Application1: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, 0x7f010014, 0x7f0100be, 0x7f0100bf, 0x7f0100c0 }; /** <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 MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1: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 MvvmCross_Application1.MvvmCross_Application1:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass MvvmCross_Application1.MvvmCross_Application1:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass MvvmCross_Application1.MvvmCross_Application1:actionViewClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_alphabeticModifiers MvvmCross_Application1.MvvmCross_Application1:alphabeticModifiers}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_contentDescription MvvmCross_Application1.MvvmCross_Application1:contentDescription}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_iconTint MvvmCross_Application1.MvvmCross_Application1:iconTint}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_iconTintMode MvvmCross_Application1.MvvmCross_Application1:iconTintMode}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_numericModifiers MvvmCross_Application1.MvvmCross_Application1:numericModifiers}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_showAsAction MvvmCross_Application1.MvvmCross_Application1:showAsAction}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_tooltipText MvvmCross_Application1.MvvmCross_Application1:tooltipText}</code></td><td></td></tr> </table> @see #MenuItem_actionLayout @see #MenuItem_actionProviderClass @see #MenuItem_actionViewClass @see #MenuItem_alphabeticModifiers @see #MenuItem_android_alphabeticShortcut @see #MenuItem_android_checkable @see #MenuItem_android_checked @see #MenuItem_android_enabled @see #MenuItem_android_icon @see #MenuItem_android_id @see #MenuItem_android_menuCategory @see #MenuItem_android_numericShortcut @see #MenuItem_android_onClick @see #MenuItem_android_orderInCategory @see #MenuItem_android_title @see #MenuItem_android_titleCondensed @see #MenuItem_android_visible @see #MenuItem_contentDescription @see #MenuItem_iconTint @see #MenuItem_iconTintMode @see #MenuItem_numericModifiers @see #MenuItem_showAsAction @see #MenuItem_tooltipText */ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:actionLayout */ public static final int MenuItem_actionLayout = 16; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:actionProviderClass */ public static final int MenuItem_actionProviderClass = 18; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:actionViewClass */ public static final int MenuItem_actionViewClass = 17; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#alphabeticModifiers} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:alphabeticModifiers */ public static final int MenuItem_alphabeticModifiers = 13; /** <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:alphabeticShortcut */ public static 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 MvvmCross_Application1.MvvmCross_Application1.R.attr#contentDescription} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:contentDescription */ public static final int MenuItem_contentDescription = 19; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#iconTint} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:iconTint */ public static final int MenuItem_iconTint = 21; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#iconTintMode} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:iconTintMode */ public static final int MenuItem_iconTintMode = 22; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#numericModifiers} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:numericModifiers */ public static final int MenuItem_numericModifiers = 14; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:showAsAction */ public static final int MenuItem_showAsAction = 15; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tooltipText} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tooltipText */ public static final int MenuItem_tooltipText = 20; /** Attributes that can be used with a MenuView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_preserveIconSpacing MvvmCross_Application1.MvvmCross_Application1:preserveIconSpacing}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_subMenuArrow MvvmCross_Application1.MvvmCross_Application1:subMenuArrow}</code></td><td></td></tr> </table> @see #MenuView_android_headerBackground @see #MenuView_android_horizontalDivider @see #MenuView_android_itemBackground @see #MenuView_android_itemIconDisabledAlpha @see #MenuView_android_itemTextAppearance @see #MenuView_android_verticalDivider @see #MenuView_android_windowAnimationStyle @see #MenuView_preserveIconSpacing @see #MenuView_subMenuArrow */ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100cb, 0x7f0100cc }; /** <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 MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#subMenuArrow} attribute's value can be found in the {@link #MenuView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:subMenuArrow */ public static final int MenuView_subMenuArrow = 8; /** Attributes that can be used with a MvxBinding. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MvxBinding_MvxBind MvvmCross_Application1.MvvmCross_Application1:MvxBind}</code></td><td></td></tr> <tr><td><code>{@link #MvxBinding_MvxLang MvvmCross_Application1.MvvmCross_Application1:MvxLang}</code></td><td></td></tr> </table> @see #MvxBinding_MvxBind @see #MvxBinding_MvxLang */ public static final int[] MvxBinding = { 0x7f01015b, 0x7f01015c }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#MvxBind} attribute's value can be found in the {@link #MvxBinding} 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 MvvmCross_Application1.MvvmCross_Application1:MvxBind */ public static final int MvxBinding_MvxBind = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#MvxLang} attribute's value can be found in the {@link #MvxBinding} 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 MvvmCross_Application1.MvvmCross_Application1:MvxLang */ public static final int MvxBinding_MvxLang = 1; /** Attributes that can be used with a MvxControl. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MvxControl_MvxTemplate MvvmCross_Application1.MvvmCross_Application1:MvxTemplate}</code></td><td></td></tr> </table> @see #MvxControl_MvxTemplate */ public static final int[] MvxControl = { 0x7f01015d }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#MvxTemplate} attribute's value can be found in the {@link #MvxControl} 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 MvvmCross_Application1.MvvmCross_Application1:MvxTemplate */ public static final int MvxControl_MvxTemplate = 0; /** Attributes that can be used with a MvxExpandableListView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MvxExpandableListView_MvxGroupItemTemplate MvvmCross_Application1.MvvmCross_Application1:MvxGroupItemTemplate}</code></td><td></td></tr> </table> @see #MvxExpandableListView_MvxGroupItemTemplate */ public static final int[] MvxExpandableListView = { 0x7f010160 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#MvxGroupItemTemplate} attribute's value can be found in the {@link #MvxExpandableListView} 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 MvvmCross_Application1.MvvmCross_Application1:MvxGroupItemTemplate */ public static final int MvxExpandableListView_MvxGroupItemTemplate = 0; /** Attributes that can be used with a MvxImageView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MvxImageView_MvxSource MvvmCross_Application1.MvvmCross_Application1:MvxSource}</code></td><td></td></tr> </table> @see #MvxImageView_MvxSource */ public static final int[] MvxImageView = { 0x7f010161 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#MvxSource} attribute's value can be found in the {@link #MvxImageView} 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 MvvmCross_Application1.MvvmCross_Application1:MvxSource */ public static final int MvxImageView_MvxSource = 0; /** Attributes that can be used with a MvxListView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MvxListView_MvxDropDownItemTemplate MvvmCross_Application1.MvvmCross_Application1:MvxDropDownItemTemplate}</code></td><td></td></tr> <tr><td><code>{@link #MvxListView_MvxItemTemplate MvvmCross_Application1.MvvmCross_Application1:MvxItemTemplate}</code></td><td></td></tr> </table> @see #MvxListView_MvxDropDownItemTemplate @see #MvxListView_MvxItemTemplate */ public static final int[] MvxListView = { 0x7f01015e, 0x7f01015f }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#MvxDropDownItemTemplate} attribute's value can be found in the {@link #MvxListView} 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 MvvmCross_Application1.MvvmCross_Application1:MvxDropDownItemTemplate */ public static final int MvxListView_MvxDropDownItemTemplate = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#MvxItemTemplate} attribute's value can be found in the {@link #MvxListView} 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 MvvmCross_Application1.MvvmCross_Application1:MvxItemTemplate */ public static final int MvxListView_MvxItemTemplate = 0; /** Attributes that can be used with a MvxRecyclerView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MvxRecyclerView_MvxTemplateSelector MvvmCross_Application1.MvvmCross_Application1:MvxTemplateSelector}</code></td><td></td></tr> </table> @see #MvxRecyclerView_MvxTemplateSelector */ public static final int[] MvxRecyclerView = { 0x7f01015a }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#MvxTemplateSelector} attribute's value can be found in the {@link #MvxRecyclerView} 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 MvvmCross_Application1.MvvmCross_Application1:MvxTemplateSelector */ public static final int MvxRecyclerView_MvxTemplateSelector = 0; /** Attributes that can be used with a NavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_elevation MvvmCross_Application1.MvvmCross_Application1:elevation}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_headerLayout MvvmCross_Application1.MvvmCross_Application1:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground MvvmCross_Application1.MvvmCross_Application1:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint MvvmCross_Application1.MvvmCross_Application1:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance MvvmCross_Application1.MvvmCross_Application1:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor MvvmCross_Application1.MvvmCross_Application1:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu MvvmCross_Application1.MvvmCross_Application1:menu}</code></td><td></td></tr> </table> @see #NavigationView_android_background @see #NavigationView_android_fitsSystemWindows @see #NavigationView_android_maxWidth @see #NavigationView_elevation @see #NavigationView_headerLayout @see #NavigationView_itemBackground @see #NavigationView_itemIconTint @see #NavigationView_itemTextAppearance @see #NavigationView_itemTextColor @see #NavigationView_menu */ public static final int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010025, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #NavigationView} array. @attr name android:background */ public static final int NavigationView_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} attribute's value can be found in the {@link #NavigationView} array. @attr name android:fitsSystemWindows */ public static final int NavigationView_android_fitsSystemWindows = 1; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #NavigationView} array. @attr name android:maxWidth */ public static final int NavigationView_android_maxWidth = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#elevation} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:elevation */ public static final int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#headerLayout} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:headerLayout */ public static final int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#itemBackground} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:itemBackground */ public static final int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#itemIconTint} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:itemIconTint */ public static final int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#itemTextAppearance} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:itemTextAppearance */ public static final int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#itemTextColor} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:itemTextColor */ public static final int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#menu} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:menu */ public static final int NavigationView_menu = 4; /** Attributes that can be used with a PopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_overlapAnchor MvvmCross_Application1.MvvmCross_Application1:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupAnimationStyle @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x010102c9, 0x7f0100cd }; /** <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:overlapAnchor */ public static final int PopupWindow_overlapAnchor = 2; /** Attributes that can be used with a PopupWindowBackgroundState. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor MvvmCross_Application1.MvvmCross_Application1:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f0100ce }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:state_above_anchor */ public static final int PopupWindowBackgroundState_state_above_anchor = 0; /** Attributes that can be used with a RecycleListView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons MvvmCross_Application1.MvvmCross_Application1:paddingBottomNoButtons}</code></td><td></td></tr> <tr><td><code>{@link #RecycleListView_paddingTopNoTitle MvvmCross_Application1.MvvmCross_Application1:paddingTopNoTitle}</code></td><td></td></tr> </table> @see #RecycleListView_paddingBottomNoButtons @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView = { 0x7f0100cf, 0x7f0100d0 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#paddingBottomNoButtons} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#paddingTopNoTitle} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:paddingTopNoTitle */ public static final int RecycleListView_paddingTopNoTitle = 1; /** Attributes that can be used with a RecyclerView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollEnabled MvvmCross_Application1.MvvmCross_Application1:fastScrollEnabled}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable MvvmCross_Application1.MvvmCross_Application1:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable MvvmCross_Application1.MvvmCross_Application1:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable MvvmCross_Application1.MvvmCross_Application1:fastScrollVerticalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable MvvmCross_Application1.MvvmCross_Application1:fastScrollVerticalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager MvvmCross_Application1.MvvmCross_Application1:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout MvvmCross_Application1.MvvmCross_Application1:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount MvvmCross_Application1.MvvmCross_Application1:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd MvvmCross_Application1.MvvmCross_Application1:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_descendantFocusability @see #RecyclerView_android_orientation @see #RecyclerView_fastScrollEnabled @see #RecyclerView_fastScrollHorizontalThumbDrawable @see #RecyclerView_fastScrollHorizontalTrackDrawable @see #RecyclerView_fastScrollVerticalThumbDrawable @see #RecyclerView_fastScrollVerticalTrackDrawable @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008 }; /** <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:descendantFocusability */ public static final int RecyclerView_android_descendantFocusability = 1; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:orientation */ public static final int RecyclerView_android_orientation = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fastScrollEnabled} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:fastScrollEnabled */ public static final int RecyclerView_fastScrollEnabled = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fastScrollHorizontalThumbDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:fastScrollHorizontalThumbDrawable */ public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fastScrollHorizontalTrackDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:fastScrollHorizontalTrackDrawable */ public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fastScrollVerticalThumbDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:fastScrollVerticalThumbDrawable */ public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#fastScrollVerticalTrackDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:fastScrollVerticalTrackDrawable */ public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:layoutManager */ public static final int RecyclerView_layoutManager = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:reverseLayout */ public static final int RecyclerView_reverseLayout = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:spanCount */ public static final int RecyclerView_spanCount = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:stackFromEnd */ public static final int RecyclerView_stackFromEnd = 5; /** Attributes that can be used with a ScrimInsetsFrameLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground MvvmCross_Application1.MvvmCross_Application1:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f010130 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#insetForeground} attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:insetForeground */ public static final int ScrimInsetsFrameLayout_insetForeground = 0; /** Attributes that can be used with a ScrollingViewBehavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop MvvmCross_Application1.MvvmCross_Application1:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout = { 0x7f010131 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#behavior_overlapTop} attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:behavior_overlapTop */ public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_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 MvvmCross_Application1.MvvmCross_Application1:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon MvvmCross_Application1.MvvmCross_Application1:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint MvvmCross_Application1.MvvmCross_Application1:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon MvvmCross_Application1.MvvmCross_Application1:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault MvvmCross_Application1.MvvmCross_Application1:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout MvvmCross_Application1.MvvmCross_Application1:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground MvvmCross_Application1.MvvmCross_Application1:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint MvvmCross_Application1.MvvmCross_Application1:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon MvvmCross_Application1.MvvmCross_Application1:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon MvvmCross_Application1.MvvmCross_Application1:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground MvvmCross_Application1.MvvmCross_Application1:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout MvvmCross_Application1.MvvmCross_Application1:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon MvvmCross_Application1.MvvmCross_Application1: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, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd }; /** <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 MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a SnackbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_elevation MvvmCross_Application1.MvvmCross_Application1:elevation}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth MvvmCross_Application1.MvvmCross_Application1:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f010025, 0x7f010132 }; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SnackbarLayout} array. @attr name android:maxWidth */ public static final int SnackbarLayout_android_maxWidth = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#elevation} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:elevation */ public static final int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#maxActionInlineWidth} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:maxActionInlineWidth */ public static final int SnackbarLayout_maxActionInlineWidth = 2; /** Attributes that can be used with a Spinner. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme MvvmCross_Application1.MvvmCross_Application1:popupTheme}</code></td><td></td></tr> </table> @see #Spinner_android_dropDownWidth @see #Spinner_android_entries @see #Spinner_android_popupBackground @see #Spinner_android_prompt @see #Spinner_popupTheme */ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f010026 }; /** <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 = 3; /** <p>This symbol is the offset where the {@link android.R.attr#entries} attribute's value can be found in the {@link #Spinner} array. @attr name android:entries */ public static final int Spinner_android_entries = 0; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 1; /** <p>This symbol is the offset where the {@link android.R.attr#prompt} attribute's value can be found in the {@link #Spinner} array. @attr name android:prompt */ public static final int Spinner_android_prompt = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:popupTheme */ public static final int Spinner_popupTheme = 4; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_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 MvvmCross_Application1.MvvmCross_Application1:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack MvvmCross_Application1.MvvmCross_Application1:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth MvvmCross_Application1.MvvmCross_Application1:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding MvvmCross_Application1.MvvmCross_Application1:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance MvvmCross_Application1.MvvmCross_Application1:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding MvvmCross_Application1.MvvmCross_Application1:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint MvvmCross_Application1.MvvmCross_Application1:thumbTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode MvvmCross_Application1.MvvmCross_Application1:thumbTintMode}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track MvvmCross_Application1.MvvmCross_Application1:track}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTint MvvmCross_Application1.MvvmCross_Application1:trackTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode MvvmCross_Application1.MvvmCross_Application1:trackTintMode}</code></td><td></td></tr> </table> @see #SwitchCompat_android_textOff @see #SwitchCompat_android_textOn @see #SwitchCompat_android_thumb @see #SwitchCompat_showText @see #SwitchCompat_splitTrack @see #SwitchCompat_switchMinWidth @see #SwitchCompat_switchPadding @see #SwitchCompat_switchTextAppearance @see #SwitchCompat_thumbTextPadding @see #SwitchCompat_thumbTint @see #SwitchCompat_thumbTintMode @see #SwitchCompat_track @see #SwitchCompat_trackTint @see #SwitchCompat_trackTintMode */ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8 }; /** <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 MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:showText */ public static final int SwitchCompat_showText = 13; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:splitTrack */ public static final int SwitchCompat_splitTrack = 12; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 10; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:switchPadding */ public static final int SwitchCompat_switchPadding = 11; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 9; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 8; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#thumbTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:thumbTint */ public static final int SwitchCompat_thumbTint = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#thumbTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:thumbTintMode */ public static final int SwitchCompat_thumbTintMode = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:track */ public static final int SwitchCompat_track = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#trackTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:trackTint */ public static final int SwitchCompat_trackTint = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#trackTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:trackTintMode */ public static final int SwitchCompat_trackTintMode = 7; /** Attributes that can be used with a TabItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr> </table> @see #TabItem_android_icon @see #TabItem_android_layout @see #TabItem_android_text */ public static final int[] TabItem = { 0x01010002, 0x010100f2, 0x0101014f }; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #TabItem} array. @attr name android:icon */ public static final int TabItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #TabItem} array. @attr name android:layout */ public static final int TabItem_android_layout = 1; /** <p>This symbol is the offset where the {@link android.R.attr#text} attribute's value can be found in the {@link #TabItem} array. @attr name android:text */ public static final int TabItem_android_text = 2; /** Attributes that can be used with a TabLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabLayout_tabBackground MvvmCross_Application1.MvvmCross_Application1:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart MvvmCross_Application1.MvvmCross_Application1:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity MvvmCross_Application1.MvvmCross_Application1:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor MvvmCross_Application1.MvvmCross_Application1:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight MvvmCross_Application1.MvvmCross_Application1:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth MvvmCross_Application1.MvvmCross_Application1:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth MvvmCross_Application1.MvvmCross_Application1:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode MvvmCross_Application1.MvvmCross_Application1:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding MvvmCross_Application1.MvvmCross_Application1:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom MvvmCross_Application1.MvvmCross_Application1:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd MvvmCross_Application1.MvvmCross_Application1:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart MvvmCross_Application1.MvvmCross_Application1:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop MvvmCross_Application1.MvvmCross_Application1:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor MvvmCross_Application1.MvvmCross_Application1:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance MvvmCross_Application1.MvvmCross_Application1:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor MvvmCross_Application1.MvvmCross_Application1:tabTextColor}</code></td><td></td></tr> </table> @see #TabLayout_tabBackground @see #TabLayout_tabContentStart @see #TabLayout_tabGravity @see #TabLayout_tabIndicatorColor @see #TabLayout_tabIndicatorHeight @see #TabLayout_tabMaxWidth @see #TabLayout_tabMinWidth @see #TabLayout_tabMode @see #TabLayout_tabPadding @see #TabLayout_tabPaddingBottom @see #TabLayout_tabPaddingEnd @see #TabLayout_tabPaddingStart @see #TabLayout_tabPaddingTop @see #TabLayout_tabSelectedTextColor @see #TabLayout_tabTextAppearance @see #TabLayout_tabTextColor */ public static final int[] TabLayout = { 0x7f010133, 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142 }; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabBackground} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:tabBackground */ public static final int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabContentStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabContentStart */ public static final int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabGravity} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:tabGravity */ public static final int TabLayout_tabGravity = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabIndicatorColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabIndicatorHeight} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabMaxWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabMaxWidth */ public static final int TabLayout_tabMaxWidth = 7; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabMinWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabMinWidth */ public static final int TabLayout_tabMinWidth = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabMode} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:tabMode */ public static final int TabLayout_tabMode = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabPadding} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabPadding */ public static final int TabLayout_tabPadding = 15; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabPaddingBottom} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom = 14; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabPaddingEnd} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd = 13; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabPaddingStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabPaddingStart */ public static final int TabLayout_tabPaddingStart = 11; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabPaddingTop} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabPaddingTop */ public static final int TabLayout_tabPaddingTop = 12; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabSelectedTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor = 10; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabTextAppearance} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:tabTextAppearance */ public static final int TabLayout_tabTextAppearance = 8; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#tabTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:tabTextColor */ public static final int TabLayout_tabTextColor = 9; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_fontFamily MvvmCross_Application1.MvvmCross_Application1:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps MvvmCross_Application1.MvvmCross_Application1:textAllCaps}</code></td><td></td></tr> </table> @see #TextAppearance_android_fontFamily @see #TextAppearance_android_shadowColor @see #TextAppearance_android_shadowDx @see #TextAppearance_android_shadowDy @see #TextAppearance_android_shadowRadius @see #TextAppearance_android_textColor @see #TextAppearance_android_textColorHint @see #TextAppearance_android_textColorLink @see #TextAppearance_android_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_fontFamily @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f010036, 0x7f01003c }; /** <p>This symbol is the offset where the {@link android.R.attr#fontFamily} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:fontFamily */ public static final int TextAppearance_android_fontFamily = 10; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor = 6; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx = 7; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy = 8; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius = 9; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static final int TextAppearance_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorHint */ public static final int TextAppearance_android_textColorHint = 4; /** <p>This symbol is the offset where the {@link android.R.attr#textColorLink} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorLink */ public static final int TextAppearance_android_textColorLink = 5; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @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 MvvmCross_Application1.MvvmCross_Application1.R.attr#fontFamily} attribute's value can be found in the {@link #TextAppearance} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:fontFamily */ public static final int TextAppearance_fontFamily = 12; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:textAllCaps */ public static final int TextAppearance_textAllCaps = 11; /** Attributes that can be used with a TextInputLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterEnabled MvvmCross_Application1.MvvmCross_Application1:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength MvvmCross_Application1.MvvmCross_Application1:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance MvvmCross_Application1.MvvmCross_Application1:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance MvvmCross_Application1.MvvmCross_Application1:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled MvvmCross_Application1.MvvmCross_Application1:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance MvvmCross_Application1.MvvmCross_Application1:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled MvvmCross_Application1.MvvmCross_Application1:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintEnabled MvvmCross_Application1.MvvmCross_Application1:hintEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance MvvmCross_Application1.MvvmCross_Application1:hintTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription MvvmCross_Application1.MvvmCross_Application1:passwordToggleContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable MvvmCross_Application1.MvvmCross_Application1:passwordToggleDrawable}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled MvvmCross_Application1.MvvmCross_Application1:passwordToggleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTint MvvmCross_Application1.MvvmCross_Application1:passwordToggleTint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode MvvmCross_Application1.MvvmCross_Application1:passwordToggleTintMode}</code></td><td></td></tr> </table> @see #TextInputLayout_android_hint @see #TextInputLayout_android_textColorHint @see #TextInputLayout_counterEnabled @see #TextInputLayout_counterMaxLength @see #TextInputLayout_counterOverflowTextAppearance @see #TextInputLayout_counterTextAppearance @see #TextInputLayout_errorEnabled @see #TextInputLayout_errorTextAppearance @see #TextInputLayout_hintAnimationEnabled @see #TextInputLayout_hintEnabled @see #TextInputLayout_hintTextAppearance @see #TextInputLayout_passwordToggleContentDescription @see #TextInputLayout_passwordToggleDrawable @see #TextInputLayout_passwordToggleEnabled @see #TextInputLayout_passwordToggleTint @see #TextInputLayout_passwordToggleTintMode */ public static final int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, 0x7f01014b, 0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150 }; /** <p>This symbol is the offset where the {@link android.R.attr#hint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:hint */ public static final int TextInputLayout_android_hint = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:textColorHint */ public static final int TextInputLayout_android_textColorHint = 0; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#counterEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:counterEnabled */ public static final int TextInputLayout_counterEnabled = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#counterMaxLength} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:counterMaxLength */ public static final int TextInputLayout_counterMaxLength = 7; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#counterOverflowTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance = 9; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#counterTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance = 8; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#errorEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:errorEnabled */ public static final int TextInputLayout_errorEnabled = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#errorTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#hintAnimationEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled = 10; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#hintEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:hintEnabled */ public static final int TextInputLayout_hintEnabled = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#hintTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#passwordToggleContentDescription} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription = 13; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#passwordToggleDrawable} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name MvvmCross_Application1.MvvmCross_Application1:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable = 12; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#passwordToggleEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled = 11; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#passwordToggleTint} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint = 14; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#passwordToggleTintMode} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:passwordToggleTintMode */ public static final int TextInputLayout_passwordToggleTintMode = 15; /** Attributes that can be used with a Toolbar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_buttonGravity MvvmCross_Application1.MvvmCross_Application1:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription MvvmCross_Application1.MvvmCross_Application1:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon MvvmCross_Application1.MvvmCross_Application1:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd MvvmCross_Application1.MvvmCross_Application1:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions MvvmCross_Application1.MvvmCross_Application1:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft MvvmCross_Application1.MvvmCross_Application1:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight MvvmCross_Application1.MvvmCross_Application1:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart MvvmCross_Application1.MvvmCross_Application1:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation MvvmCross_Application1.MvvmCross_Application1:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo MvvmCross_Application1.MvvmCross_Application1:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription MvvmCross_Application1.MvvmCross_Application1:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight MvvmCross_Application1.MvvmCross_Application1:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription MvvmCross_Application1.MvvmCross_Application1:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon MvvmCross_Application1.MvvmCross_Application1:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme MvvmCross_Application1.MvvmCross_Application1:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle MvvmCross_Application1.MvvmCross_Application1:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance MvvmCross_Application1.MvvmCross_Application1:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor MvvmCross_Application1.MvvmCross_Application1:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title MvvmCross_Application1.MvvmCross_Application1:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin MvvmCross_Application1.MvvmCross_Application1:titleMargin}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom MvvmCross_Application1.MvvmCross_Application1:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd MvvmCross_Application1.MvvmCross_Application1:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart MvvmCross_Application1.MvvmCross_Application1:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop MvvmCross_Application1.MvvmCross_Application1:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins MvvmCross_Application1.MvvmCross_Application1:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance MvvmCross_Application1.MvvmCross_Application1:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor MvvmCross_Application1.MvvmCross_Application1:titleTextColor}</code></td><td></td></tr> </table> @see #Toolbar_android_gravity @see #Toolbar_android_minHeight @see #Toolbar_buttonGravity @see #Toolbar_collapseContentDescription @see #Toolbar_collapseIcon @see #Toolbar_contentInsetEnd @see #Toolbar_contentInsetEndWithActions @see #Toolbar_contentInsetLeft @see #Toolbar_contentInsetRight @see #Toolbar_contentInsetStart @see #Toolbar_contentInsetStartWithNavigation @see #Toolbar_logo @see #Toolbar_logoDescription @see #Toolbar_maxButtonHeight @see #Toolbar_navigationContentDescription @see #Toolbar_navigationIcon @see #Toolbar_popupTheme @see #Toolbar_subtitle @see #Toolbar_subtitleTextAppearance @see #Toolbar_subtitleTextColor @see #Toolbar_title @see #Toolbar_titleMargin @see #Toolbar_titleMarginBottom @see #Toolbar_titleMarginEnd @see #Toolbar_titleMarginStart @see #Toolbar_titleMarginTop @see #Toolbar_titleMargins @see #Toolbar_titleTextAppearance @see #Toolbar_titleTextColor */ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f01000c, 0x7f01000f, 0x7f010013, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010026, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9 }; /** <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 MvvmCross_Application1.MvvmCross_Application1.R.attr#buttonGravity} attribute's value can be found in the {@link #Toolbar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1:buttonGravity */ public static final int Toolbar_buttonGravity = 21; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 23; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:collapseIcon */ public static final int Toolbar_collapseIcon = 22; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions = 10; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation = 9; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:logoDescription */ public static final int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 20; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 25; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:navigationIcon */ public static final int Toolbar_navigationIcon = 24; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:popupTheme */ public static final int Toolbar_popupTheme = 11; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 13; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#titleMargin} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name MvvmCross_Application1.MvvmCross_Application1:titleMargin */ public static final int Toolbar_titleMargin = 14; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 18; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 16; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:titleMarginStart */ public static final int Toolbar_titleMarginStart = 15; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:titleMarginTop */ public static final int Toolbar_titleMarginTop = 17; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:titleMargins */ public static final int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 12; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:titleTextColor */ public static final int Toolbar_titleTextColor = 27; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd MvvmCross_Application1.MvvmCross_Application1:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart MvvmCross_Application1.MvvmCross_Application1:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme MvvmCross_Application1.MvvmCross_Application1: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, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc }; /** <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 MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1: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 MvvmCross_Application1.MvvmCross_Application1:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode MvvmCross_Application1.MvvmCross_Application1:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f0100fd, 0x7f0100fe }; /** <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 MvvmCross_Application1.MvvmCross_Application1.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 MvvmCross_Application1.MvvmCross_Application1:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link MvvmCross_Application1.MvvmCross_Application1.R.attr#backgroundTintMode} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name MvvmCross_Application1.MvvmCross_Application1: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; }; }
[ "irynamoiseeva@gmail.com" ]
irynamoiseeva@gmail.com
a292523ab4f57f34bddd81755a03740544830c5c
d619cbb3325b448931274acb200269fdf212aed0
/HackerRank/src/ReverseStringArray.java
1c95c6327e8278f0228905fcade0560c319d3a4d
[]
no_license
BhagwatLuv445/MAssignments
e2c8f2bb28e3a0b5fef5cbe7c7b5746362e23c3f
8ecb2df549642f16bb70f1585ae38ce8e1ab9937
refs/heads/master
2021-05-03T06:50:10.468261
2018-02-07T19:29:52
2018-02-07T19:29:52
120,600,814
1
0
null
null
null
null
UTF-8
Java
false
false
542
java
import java.util.Arrays; public class ReverseStringArray { public static void main(String[] args) { // TODO Auto-generated method stub String[] nameArray={"Bhagwat Prajapati","Smruti Ranjan"}; String[] t=new String[nameArray.length]; for (int i = 0; i < nameArray.length; i++) { t[i] = ""; for (int j = nameArray[i].length() - 1; j >= 0; j--) t[i] += nameArray[i].charAt(j); } System.out.println((Arrays.toString(t))+" "+Arrays.toString(nameArray)); } }
[ "M1043004@mindtree.com" ]
M1043004@mindtree.com
ceaaeb1e97d28cd50df40e8bb9a370b139762f51
2ecb2c2efd3442e83ab17b5593a2771f123323cc
/RecyclerViewApp/app/src/androidTest/java/com/example/saifil/recyclerviewapp/ExampleInstrumentedTest.java
0ba7b9c5b11439ea49e19312b1749f6f944103cd
[]
no_license
Saifil/AndroidStudioProjects
f72d505a19179a3faff5e6b6e9b5912253a551a9
1c261d4774f2268ac0f9fc7c2b8a4fa0ffb1744a
refs/heads/master
2020-03-22T04:59:11.419904
2018-07-03T07:45:11
2018-07-03T07:45:11
139,534,185
1
0
null
null
null
null
UTF-8
Java
false
false
769
java
package com.example.saifil.recyclerviewapp; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() throws Exception { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("com.example.saifil.recyclerviewapp", appContext.getPackageName()); } }
[ "saifilmomin9@gmail.com" ]
saifilmomin9@gmail.com
99d9acf4fbeca12a1bf9186bb611dcd4ae311234
f2bbd26d8b5daaae861cb9062517d873b8f5c9a1
/src/main/java/com/example/demo/Training1Application.java
bf2035a022845af6f7d317eb937a12631646e1fa
[]
no_license
Plusz7/trainingSpringDocker
25b48ce9cdbfe0c2035a263fc05f5a25a8eda68a
546f8dab385cfeedae40a618993155a271906f65
refs/heads/master
2022-12-10T01:29:25.929252
2020-09-04T17:49:21
2020-09-04T17:49:21
292,902,771
0
0
null
null
null
null
UTF-8
Java
false
false
628
java
package com.example.demo; import com.example.demo.data.entity.Customers; import com.example.demo.data.repository.CustomersRepo; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import java.util.List; @SpringBootApplication public class Training1Application { public static void main(String[] args) { SpringApplication.run(Training1Application.class, args); } }
[ "darek.pluszczynski@gmail.com" ]
darek.pluszczynski@gmail.com
8da740bfdd90c596d32943751278182589a1b858
4c481e5c3184f3def0195931aa7794c16a61d9fd
/AppJsf/src/main/java/br/cella/usuario/controller/UsuarioController.java
1b0bce9fe53c86e66e694ae0bf7a02188348785a
[]
no_license
WillianCella/trab4bim148352
666d1d19f1283b40ae7667ed205206af78f70872
fd2ce97c37a062afc1c3796892c84b5c71c52da4
refs/heads/master
2021-01-11T10:11:25.239455
2016-11-22T22:43:28
2016-11-22T22:43:28
72,581,823
0
0
null
null
null
null
UTF-8
Java
false
false
3,920
java
//Classe UsuarioController com as instancias das classes UsuarioModel, UsuarioRepository, UsuarioEntity //Possui os métodos para EfetuarLogin e fazer Logout package br.cella.usuario.controller; import java.io.Serializable; import javax.enterprise.context.SessionScoped; import javax.faces.context.FacesContext; import javax.inject.Inject; import javax.inject.Named; import org.apache.commons.lang3.StringUtils; import br.cella.model.UsuarioModel; import br.cella.repository.UsuarioRepository; import br.cella.repository.entity.UsuarioEntity; import br.cella.uteis.Uteis; /** * Essa classe é um Bean gerenciado pelo CDI com escopo SessionScoped, as * instancias das classes UsuarioModel, UsuarioRepository e UsuarioEntity * possuem anotação @Inject onde são injetadas dependências nas Classes. Possue * também, os métodos get e set do UsuarioModel e também o método get do * UsuarioSession. * * Possui todo o controle da realização do Login e também um método para fazer o * Logout da aplicação * * @author Willian Cella - 14 de nov de 2016 - 18:34:12 */ @Named(value = "usuarioController") @SessionScoped public class UsuarioController implements Serializable { private static final long serialVersionUID = 1L; // Injeção de dependência na classe UsuarioModel @Inject private UsuarioModel usuarioModel; // Injeção de dependência na classe UsuarioRepository @Inject private UsuarioRepository usuarioRepository; // Injeção de dependência na classe UsuarioEntity @Inject private UsuarioEntity usuarioEntity; // Busca o usuário autenticado atual public UsuarioModel getUsuarioModel() { return usuarioModel; } // retorna o usuário autenticado atual public void setUsuarioModel(UsuarioModel usuarioModel) { this.usuarioModel = usuarioModel; } // Retorna o usuário logado no sistema public UsuarioModel GetUsuarioSession() { FacesContext facesContext = FacesContext.getCurrentInstance(); return (UsuarioModel) facesContext.getExternalContext().getSessionMap().get("usuarioAutenticado"); } // Realiza o Logout da aplicação e redireciona para a página index.xhtml, // que é a página de login public String Logout() { FacesContext.getCurrentInstance().getExternalContext().invalidateSession(); return "/index.xhtml?faces-redirect=true"; } // Controle para a realização do Login public String EfetuarLogin() { // Se o campo de login for vazio, retorna uma mensagem para informar o // login e retorna null if (StringUtils.isEmpty(usuarioModel.getUsuario()) || StringUtils.isBlank(usuarioModel.getUsuario())) { Uteis.Mensagem("Favor informar o login!"); return null; // Se o campo senha for vazio, retorna uma mensagem para informar a // senha e retorna null } else if (StringUtils.isEmpty(usuarioModel.getSenha()) || StringUtils.isBlank(usuarioModel.getSenha())) { Uteis.Mensagem("Favor informara senha!"); return null; } else { // usuarioEntity recebe o usuário autenticado usuarioEntity = usuarioRepository.ValidaUsuario(usuarioModel); // Se o usuarioEntity for nulo, seta a senha como nula e o código // como código da entidade if (usuarioEntity != null) { usuarioModel.setSenha(null); usuarioModel.setCodigo(usuarioEntity.getCodigo()); FacesContext facesContext = FacesContext.getCurrentInstance(); facesContext.getExternalContext().getSessionMap().put("usuarioAutenticado", usuarioModel); // Se passas por todos os testes, o usuário vai ser // redirecionado para a página home return "sistema/home?faces-redirect=true"; // Caso os dados informados forem errados ou inexistentes, // retorna uma mensagem } else { Uteis.Mensagem("Não foi possível efetuar o login com esse usuário e senha!"); return null; } } } }
[ "Willian@Willian-PC" ]
Willian@Willian-PC
d78371e89273111a0786f0f542776a75179daa58
6b0bab16c037f4a7616fa13f1f189f78d2cdd2ae
/src/main/java/com/example/carlisting/CloudinaryConfig.java
ec7c13241b76ece761b8e7e933efcff2c9a472c5
[]
no_license
crsmejia93/CarListing
ebfc5d9c3f906b855605ff1b6ad1e432e5405120
79a0648065a135bc2ba280c01a371f419011f654
refs/heads/master
2020-05-27T03:40:59.773383
2020-02-21T13:42:55
2020-02-21T13:42:55
188,468,573
1
1
null
null
null
null
UTF-8
Java
false
false
1,322
java
package com.example.carlisting; import com.cloudinary.Cloudinary; import com.cloudinary.Singleton; import com.cloudinary.Transformation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; import java.io.IOException; import java.util.Map; @Component public class CloudinaryConfig { private Cloudinary cloudinary; @Autowired public CloudinaryConfig(@Value("${cloud.key}") String key, @Value("${cloud.secret}") String secret, @Value("${cloud.name}") String cloud){ cloudinary = Singleton.getCloudinary(); cloudinary.config.cloudName=cloud; cloudinary.config.apiSecret=secret; cloudinary.config.apiKey=key; } public Map upload(Object file, Map options){ try{ return cloudinary.uploader().upload(file, options); }catch (IOException e){ e.printStackTrace(); return null; } } public String createUrl(String name, int width, int height, String action){ return cloudinary.url().transformation(new Transformation().width(width).height(height) .border("2px_solid_black").crop(action)).imageTag(name); } }
[ "crsmejia93@gmail.com" ]
crsmejia93@gmail.com
74187ac09e4a3148abe55be5efb5acc8ca5c5795
993592f426a5257437cb7adacc71332be211ac13
/Java/Spring/kyh-spring-basic/spring-core-kyw/core/src/test/java/hello/core/singleton/StatefulServiceTest.java
7a1d703869487f3a86556b894faa83be3e654f55
[]
no_license
Robi02/HomeStudy
c88c6b4a94e8a9d9d2c34651539e3a12b4c6e89c
ac23d8d55731d8ded12c4af727e01d4570657d90
refs/heads/master
2023-07-21T01:08:44.414637
2022-05-12T09:54:09
2022-05-12T09:54:09
160,051,975
0
0
null
2023-07-07T21:51:08
2018-12-02T13:47:38
Java
UTF-8
Java
false
false
1,107
java
package hello.core.singleton; import org.assertj.core.api.Assertions; import org.junit.jupiter.api.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Bean; public class StatefulServiceTest { @Test void statefulServiceSingleton() { ApplicationContext ac = new AnnotationConfigApplicationContext(TestConfig.class); StatefulService s1 = ac.getBean(StatefulService.class); StatefulService s2 = ac.getBean(StatefulService.class); // A사용자 10000원 주문 s1.order("userA", 10000); // B사용자 20000원 주문 s2.order("userB", 20000); // A사용자 주문 금액 조회 int price = s1.getPrice(); System.out.println("userA price = " + price); Assertions.assertThat(price).isEqualTo(20000); } static class TestConfig { @Bean public StatefulService statefulService() { return new StatefulService(); } } }
[ "robi02@naver.com" ]
robi02@naver.com
bf87728493a43971ddb226d27d7954e205461220
c7056225412c59be64d57225717e2ba8a462a4f0
/Tutorial6/src/SolverBasicTest.java
ee2c5affb5f68c2daf04cd764b3b05779c2dfbdf
[]
no_license
austin-pan/OOP-Tutorials
f20b5e347b2a24cef9cce9740c2aea883bb2cd05
33c8af9a88671ab6d81a17e6a480889a1d80076c
refs/heads/master
2020-04-26T04:48:26.493404
2019-03-15T03:09:32
2019-03-15T03:09:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
781
java
import org.junit.Test; import org.junit.Before; import java.util.ArrayList; public class SolverBasicTest { private GameGrid game; @Before public void setUp() { int[][] grid = new int[][]{ {9,4,0,1,0,2,0,5,8}, {6,0,0,0,5,0,0,0,4}, {0,0,2,4,0,3,1,0,0}, {0,2,0,0,0,0,0,6,0}, {5,0,8,0,2,0,4,0,1}, {0,6,0,0,0,0,0,8,0}, {0,0,1,6,0,8,7,0,0}, {7,0,0,0,4,0,0,0,3}, {4,3,0,5,0,9,0,1,2} }; game = new GameGrid(grid); } @Test public void solveTest() { boolean result = Solver.solve(game); } @Test public void findAllSolutionsTest() { ArrayList<GameGrid> result = Solver.findAllSolutions(game); } }
[ "austinp@Austins-MacBook-Pro-2.local" ]
austinp@Austins-MacBook-Pro-2.local
2c685fa274ea89378b50e4f01a77dc051542f51d
61540f40e41d24c9089f7ed17bd73cea974063f7
/src/com/gx/soft/common/util/DateFormatUtil.java
90511392fa4b750c199de5b75196adf4ba751a94
[]
no_license
xiaozengwei/weeklyWork
a09d25719aea93f364d9803b4839c2540041a114
a36fd659831403bde832f805727f52814a4a6c57
refs/heads/master
2022-04-14T09:30:45.651093
2020-04-15T02:14:05
2020-04-15T02:14:05
234,865,769
0
0
null
null
null
null
UTF-8
Java
false
false
3,071
java
package com.gx.soft.common.util; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class DateFormatUtil { public static final String DATASIMPLEFOMAT="yyyy-MM-dd"; public static final String DATAFOMAT="yyyy-MM-dd HH:mm:ss"; public static final String DATAHHMMFOMAT="yyyy-MM-dd hh:mm"; public static final String DATA24H="yyyy-MM-dd hh:mm:ss"; public static Date convertDate(String adateStrteStr,String format){ Date date = null; try { SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format); date = (Date)simpleDateFormat.parse(adateStrteStr); } catch (ParseException e) { } return date; } public static Date convertDate1(String adateStrteStr,String format) throws ParseException { SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format); Date date = (Date)simpleDateFormat.parseObject(adateStrteStr); return date; } public static String convertUtilDateToString(Date date,String format) { if(date!=null){ SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format); return simpleDateFormat.format(date); }else { return ""; } } public static Date convertDate(String adateStrteStr) { String format="yyyy-MM-dd HH:mm:ss"; Date date = null; try { SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format); date = simpleDateFormat.parse(adateStrteStr); } catch (Exception ex) { } return date; } public static Date convertDateFormat(String adateStrteStr,String format) { Date date = null; try { SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format); date = simpleDateFormat.parse(adateStrteStr); } catch (Exception ex) { } return date; } public static String convertUtilDateToString(Date date) { String format="yyyy-MM-dd HH:mm:ss"; if(date!=null){ SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format); return simpleDateFormat.format(date); }else { return ""; } } public static String convertUtilDateToStringShow(Date date) { String format="yyyy-MM-dd "; if(date!=null){ SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format); return simpleDateFormat.format(date); }else { return ""; } } public static String covertSqlDateToString(java.sql.Date date) { if(date!=null){ String format="yyyy-MM-dd HH:mm:ss"; SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format); return simpleDateFormat.format(date); }else { return ""; } } public static Date convertSqlToUtil(java.sql.Date date) { if(date==null) { return null; } return new Date(date.getTime()); } public static java.sql.Date convertUtilToSql(Date date) { return new java.sql.Date(date.getTime()); } //����ʱ���1�� public static Date DayAddOne(Date date) { Date newDate2 = new Date(date.getTime() + 1000 * 60 * 60 * 24); System.out.println(newDate2); return null; } }
[ "1316901704@qq.com" ]
1316901704@qq.com
6b80d6090f2cbb400b5e53d0cd9be83c96151cb1
91a6b096439979acb5c08266f9309d615125e9ef
/src/main/java/com/raoulvdberge/refinedstorage/tile/grid/WirelessFluidGrid.java
209fb7742b79dd691d1f1e800f96e4d6c0420c84
[ "MIT" ]
permissive
jazzpi/refinedstorage
c0cfbbcda8015e8924da1e87ea8cf4bbcd6ca91b
d341b7244a3998117142803297c7e7d33c7f5143
refs/heads/mc1.11
2021-01-13T12:51:01.868364
2017-01-09T17:36:28
2017-01-09T17:36:28
78,469,374
0
0
null
2017-01-09T21:11:12
2017-01-09T21:11:12
null
UTF-8
Java
false
false
5,796
java
package com.raoulvdberge.refinedstorage.tile.grid; import com.raoulvdberge.refinedstorage.RS; import com.raoulvdberge.refinedstorage.api.network.INetworkMaster; import com.raoulvdberge.refinedstorage.block.EnumGridType; import com.raoulvdberge.refinedstorage.gui.grid.GridFilter; import com.raoulvdberge.refinedstorage.gui.grid.GridTab; import com.raoulvdberge.refinedstorage.gui.grid.GuiGrid; import com.raoulvdberge.refinedstorage.inventory.ItemHandlerBasic; import com.raoulvdberge.refinedstorage.item.ItemWirelessFluidGrid; import com.raoulvdberge.refinedstorage.network.MessageWirelessFluidGridSettingsUpdate; import com.raoulvdberge.refinedstorage.tile.data.TileDataParameter; import net.minecraft.client.Minecraft; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.inventory.InventoryCraftResult; import net.minecraft.inventory.InventoryCrafting; import net.minecraft.item.ItemStack; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; import net.minecraftforge.common.DimensionManager; import javax.annotation.Nullable; import java.util.Collections; import java.util.List; public class WirelessFluidGrid implements IGrid { private ItemStack stack; private int controllerDimension; private BlockPos controller; private int sortingType; private int sortingDirection; private int searchBoxMode; private int size; public WirelessFluidGrid(int controllerDimension, ItemStack stack) { this.controllerDimension = controllerDimension; this.controller = new BlockPos(ItemWirelessFluidGrid.getX(stack), ItemWirelessFluidGrid.getY(stack), ItemWirelessFluidGrid.getZ(stack)); this.stack = stack; this.sortingType = ItemWirelessFluidGrid.getSortingType(stack); this.sortingDirection = ItemWirelessFluidGrid.getSortingDirection(stack); this.searchBoxMode = ItemWirelessFluidGrid.getSearchBoxMode(stack); this.size = ItemWirelessFluidGrid.getSize(stack); } public ItemStack getStack() { return stack; } @Override public EnumGridType getType() { return EnumGridType.FLUID; } @Override @Nullable public INetworkMaster getNetwork() { World world = DimensionManager.getWorld(controllerDimension); if (world != null) { TileEntity tile = world.getTileEntity(controller); return tile instanceof INetworkMaster ? (INetworkMaster) tile : null; } return null; } @Override public String getGuiTitle() { return "gui.refinedstorage:fluid_grid"; } @Override public int getViewType() { return 0; } @Override public int getSortingType() { return sortingType; } @Override public int getSortingDirection() { return sortingDirection; } @Override public int getSearchBoxMode() { return searchBoxMode; } @Override public int getTabSelected() { return 0; } @Override public int getSize() { return size; } @Override public void onViewTypeChanged(int type) { // NO OP } @Override public void onSortingTypeChanged(int type) { RS.INSTANCE.network.sendToServer(new MessageWirelessFluidGridSettingsUpdate(getSortingDirection(), type, getSearchBoxMode(), getSize())); this.sortingType = type; GuiGrid.markForSorting(); } @Override public void onSortingDirectionChanged(int direction) { RS.INSTANCE.network.sendToServer(new MessageWirelessFluidGridSettingsUpdate(direction, getSortingType(), getSearchBoxMode(), getSize())); this.sortingDirection = direction; GuiGrid.markForSorting(); } @Override public void onSearchBoxModeChanged(int searchBoxMode) { RS.INSTANCE.network.sendToServer(new MessageWirelessFluidGridSettingsUpdate(getSortingDirection(), getSortingType(), searchBoxMode, getSize())); this.searchBoxMode = searchBoxMode; } @Override public void onSizeChanged(int size) { RS.INSTANCE.network.sendToServer(new MessageWirelessFluidGridSettingsUpdate(getSortingDirection(), getSortingType(), getSearchBoxMode(), size)); this.size = size; if (Minecraft.getMinecraft().currentScreen != null) { Minecraft.getMinecraft().currentScreen.initGui(); } } @Override public void onTabSelectionChanged(int tab) { // NO OP } @Override public List<GridFilter> getFilters() { return Collections.emptyList(); } @Override public List<GridTab> getTabs() { return Collections.emptyList(); } @Override public ItemHandlerBasic getFilter() { return null; } @Override public TileDataParameter<Integer> getRedstoneModeConfig() { return null; } @Override public InventoryCrafting getCraftingMatrix() { return null; } @Override public InventoryCraftResult getCraftingResult() { return null; } @Override public void onCraftingMatrixChanged() { // NO OP } @Override public void onCrafted(EntityPlayer player) { // NO OP } @Override public void onCraftedShift(EntityPlayer player) { // NO OP } @Override public void onRecipeTransfer(EntityPlayer player, ItemStack[][] recipe) { // NO OP } @Override public boolean isActive() { return true; } @Override public void onClosed(EntityPlayer player) { INetworkMaster network = getNetwork(); if (network != null) { network.getNetworkItemHandler().onClose(player); } } }
[ "raoulvdberge@gmail.com" ]
raoulvdberge@gmail.com
eb139792cdae384b18eb0b3efa52870960d32b9f
fe83a546146f65f5d29087af825946c1baaae7af
/Server/src/main/java/org/xdi/oxauth/model/error/ErrorResponse.java
55f593e1af59f0adb88c2a82f88a075225426772
[ "MIT" ]
permissive
nixu-corp/oxAuth
af04c334a9cc450e0be524cee3d814785de394c7
d4d347c182f962fb11e5f1a6cd09a5464154cd53
refs/heads/master
2020-12-30T21:44:56.173736
2015-11-09T08:31:52
2015-11-09T08:31:52
38,368,200
1
1
null
2015-07-01T11:45:12
2015-07-01T11:45:11
null
UTF-8
Java
false
false
3,899
java
/* * oxAuth is available under the MIT License (2008). See http://opensource.org/licenses/MIT for full text. * * Copyright (c) 2014, Gluu */ package org.xdi.oxauth.model.error; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import org.codehaus.jettison.json.JSONException; import org.codehaus.jettison.json.JSONObject; import org.jboss.seam.log.Log; import org.jboss.seam.log.Logging; /** * Base class for error responses. * * @author Javier Rojas Date: 09.22.2011 * */ public abstract class ErrorResponse { private final static Log LOG = Logging.getLog(ErrorResponse.class); private String errorDescription; private String errorUri; /** * Returns the error code of the response. * * @return The error code. */ public abstract String getErrorCode(); /** * If a valid state parameter was present in the request, it returns the * exact value received from the client. * * @return The state value of the request. */ public abstract String getState(); /** * Returns a human-readable UTF-8 encoded text providing additional * information, used to assist the client developer in understanding the * error that occurred. * * @return Description about the error. */ public String getErrorDescription() { return errorDescription; } /** * Sets a human-readable UTF-8 encoded text providing additional * information, used to assist the client developer in understanding the * error that occurred. * * @param errorDescription * Description about the error. */ public void setErrorDescription(String errorDescription) { this.errorDescription = errorDescription; } /** * Return an URI identifying a human-readable web page with information * about the error, used to provide the client developer with additional * information about the error. * * @return URI with more information about the error. */ public String getErrorUri() { return errorUri; } /** * Sets an URI identifying a human-readable web page with information about * the error, used to provide the client developer with additional * information about the error. * * @param errorUri * URI with more information about the error. */ public void setErrorUri(String errorUri) { this.errorUri = errorUri; } /** * Returns a query string representation of the object. * * @return The object represented in a query string. */ public String toQueryString() { StringBuilder queryStringBuilder = new StringBuilder(); try { queryStringBuilder.append("error=").append(getErrorCode()); if (errorDescription != null && !errorDescription.isEmpty()) { queryStringBuilder.append("&error_description=").append( URLEncoder.encode(errorDescription, "UTF-8")); } if (errorUri != null && !errorUri.isEmpty()) { queryStringBuilder.append("&error_uri=").append( URLEncoder.encode(errorUri, "UTF-8")); } if (getState() != null && !getState().isEmpty()) { queryStringBuilder.append("&state=").append(getState()); } } catch (UnsupportedEncodingException e) { LOG.error(e.getMessage(), e); return null; } return queryStringBuilder.toString(); } /** * Return a JSon string representation of the object. * * @return The object represented in a JSon string. */ public String toJSonString() { JSONObject jsonObj = new JSONObject(); try { jsonObj.put("error", getErrorCode()); if (errorDescription != null && !errorDescription.isEmpty()) { jsonObj.put("error_description", errorDescription); } if (errorUri != null && !errorUri.isEmpty()) { jsonObj.put("error_uri", errorUri); } if (getState() != null && !getState().isEmpty()) { jsonObj.put("state", getState()); } } catch (JSONException e) { LOG.error(e.getMessage(), e); return null; } return jsonObj.toString(); } }
[ "Yuriy.Movchan@gmail.com" ]
Yuriy.Movchan@gmail.com
da69153d834e0c8d4f391dde3265dc78f25c9e75
a48dc4bb9fa24ee58cae895cc5eb67cf5c16818b
/BoardVer2_2/src/main/java/com/jimin/board2_2/BoardDetailServlet.java
c41425f2c0a57aadf4add895de9710264054f3c3
[]
no_license
jennienterry/Practice
3f4ed06399e11aa566cbefa32a62692410517321
3b9035917cef220056b7a772622c1e88c1263274
refs/heads/main
2023-04-17T10:24:45.318999
2021-05-10T07:53:19
2021-05-10T07:53:19
364,179,842
0
0
null
null
null
null
UTF-8
Java
false
false
899
java
package com.jimin.board2_2; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @WebServlet("/detail") public class BoardDetailServlet extends HttpServlet { private static final long serialVersionUID = 1L; protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String no = request.getParameter("no"); int intNo = Integer.parseInt(no); request.setAttribute("vo",Database.db.get(intNo)); String jsp = "WEB-INF/jsp/detail.jsp"; request.getRequestDispatcher(jsp).forward(request, response); } protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { } }
[ "hello1913@naver.com" ]
hello1913@naver.com
acb9d0d1e60b7e7fcb312935ff7c7329720ced23
92f2e89a33675381f92312e8490b7605f1d7fd25
/WoAiBianMaWeb/src/main/java/com/zbf/zhongjian/test2/WebSocketConfig.java
cf606b08441ac85c4efcd0bada26f10fdf1089b0
[]
no_license
tangpohu/web-2019-02
ce0a75cb50ec10f4b0b7a503238cca122f92d6ad
deb03057a9685c84259048c1a0d616a2a9b30865
refs/heads/master
2020-04-25T15:25:04.448371
2019-02-27T09:01:57
2019-02-27T09:01:57
null
0
0
null
null
null
null
UTF-8
Java
false
false
261
java
package com.zbf.zhongjian.test2; import org.springframework.web.socket.server.standard.ServerEndpointExporter; public class WebSocketConfig { public ServerEndpointExporter getServerEndpointExporter(){ return new ServerEndpointExporter(); } }
[ "2275262060@qq.com" ]
2275262060@qq.com
d659ba27c4b8c3a61bc3dc941df9f39da24e5547
92a19b38a72de3d5fef3808a65b9efe3c728670e
/src/server/model/players/skills/Herblore.java
28323b52d36ff6e2f9b1717700c4e7ceda6bcf23
[]
no_license
Sharpies/Insanity
f68de7468f8613bb1597e70d1e1721e394fbde0c
cb511885e6399069dc2d124a9e26036fe7a5c047
refs/heads/master
2021-01-20T13:48:06.580785
2013-08-31T03:01:18
2013-08-31T03:01:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,365
java
package server.model.players.skills; import com.lucas.rs2.Config; import server.model.players.Client; /** * Herblore.java *@author Sanity **/ public class Herblore { private Client c; private int[][] information = {{199,249,1,3},{201,251,5,4},{203,253,11,5},{205,255,20,6},{207,257,25,8}, {3049,2998,30,8},{209,259,40,9},{211,261,48,10},{213,263,54,11},{3051,3000,59,12}, {215,265,65,13},{2485,2481,67,13},{217,267,70,14},{219,269,75,15}}; private int[][] information2 = {{249,121,2428,1,25},{251,175,2446,5,38},{253,115,113,12,50},{255,127,2430,22,63}, {257,139,2434,38,88},{261,2448,2448,40,100},{259,145,2436,45,100},{263,157,2440,55,125},{3000,3026,3024,63,143}, {265,163,2442,66,155},{2481,2454,2452,69,158},{267,169,2444,72,163},{269,189,2450,78,175}, {2998,6687,6685,81,180}}; //{identifiedHerbId,3dosepot,4dosepot,levelreq,exp} public Herblore(Client c) { this.c = c; } public void handleHerbClick(int herbId) { for (int j = 0; j < information.length; j++){ if (information[j][0] == herbId) idHerb(j); } } public void handlePotMaking(int item1, int item2) { if (item1 == 227 && isIdedHerb(item2)) makePot(item2); else if (item2 == 227 && isIdedHerb(item1)) makePot(item1); } public boolean isUnidHerb(int clickId) { for (int j = 0; j < information.length; j++) if (information[j][0] == clickId) return true; return false; } public boolean isIdedHerb(int item) { for (int j = 0; j < information2.length; j++) if (information2[j][0] == item) return true; return false; } private void idHerb(int slot) { if (c.getItems().playerHasItem(information[slot][0])) { if (c.playerLevel[c.playerHerblore] >= information[slot][2]) { c.getItems().deleteItem(information[slot][0],c.getItems().getItemSlot(information[slot][0]),1); c.getItems().addItem(information[slot][1],1); c.getPA().addSkillXP(information[slot][3] * Config.HERBLORE_EXPERIENCE,c.playerHerblore); c.sendMessage("You identify the herb as a " + c.getItems().getItemName(information[slot][1]) + "."); } else { c.sendMessage("You need a herblore level of " + information[slot][2] + " to identify this herb."); } } } private void makePot(int herbId) { if (c.getItems().playerHasItem(227) && c.getItems().playerHasItem(herbId)) { int slot = getSlot(herbId); if (c.playerLevel[c.playerHerblore] >= information2[slot][3]) { c.getItems().deleteItem(herbId,c.getItems().getItemSlot(herbId),1); c.getItems().deleteItem(227,c.getItems().getItemSlot(227),1); /*if (c.playerLevel[c.playerHerblore] < information2[slot][3] + 15) { c.getItems().addItem(information2[slot][1],1); c.sendMessage("You make a " + c.getItems().getItemName(information2[slot][1]) + "."); } else {*/ c.getItems().addItem(information2[slot][2],1); c.sendMessage("You make a " + c.getItems().getItemName(information2[slot][2]) + "."); //} c.getPA().addSkillXP(information2[slot][4] * Config.HERBLORE_EXPERIENCE,c.playerHerblore); } else { c.sendMessage("You need a herblore level of " + information2[slot][3] + " to make this pot."); } } } private int getSlot(int herb) { for (int j = 0; j < information2.length; j++) if (information2[j][0] == herb) return j; return -1; } }
[ "smokin2005@gmail.com" ]
smokin2005@gmail.com
eca75aec38f9f01351f3d8cfdd0bc96e7db41d60
2cfc1fe5282c25d03e9958580214db561d09f5a9
/WEBB_UNAE_APP/src/java/ec/edu/espoch/unae/entidad/ClaseMateriaParalelo.java
56744ae5fcc5227687db34a9debe93255e6904d4
[]
no_license
PROYECTO-INTEGRADOR-4/GRUPO7-PI
54da2681022d8a81fda88ac2ec9d14ebd3c05c11
8d1a0456cfbdeb9230de6044e9821d5714bc6cd4
refs/heads/master
2021-01-10T16:03:20.031868
2016-02-15T18:26:52
2016-02-15T18:26:52
50,662,201
0
2
null
null
null
null
UTF-8
Java
false
false
1,219
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 ec.edu.espoch.unae.entidad; /** * * @author PC */ public class ClaseMateriaParalelo { private int idmateriaparalelo; private int idmateria; private int idparalelo; public ClaseMateriaParalelo() { } public ClaseMateriaParalelo(int idmateriaparalelo, int idmateria, int idparalelo) { this.idmateriaparalelo = idmateriaparalelo; this.idmateria = idmateria; this.idparalelo = idparalelo; } public int getIdmateriaparalelo() { return idmateriaparalelo; } public void setIdmateriaparalelo(int idmateriaparalelo) { this.idmateriaparalelo = idmateriaparalelo; } public int getIdmateria() { return idmateria; } public void setIdmateria(int idmateria) { this.idmateria = idmateria; } public int getIdparalelo() { return idparalelo; } public void setIdparalelo(int idparalelo) { this.idparalelo = idparalelo; } }
[ "PC@User" ]
PC@User
0e8b74b2d1d348390ed51007027c950fc64ed3d9
bbab888c89e0d02f48941cc5729537840f8d15d7
/Graphs Java/src/DepthFirstSearch/LongestPathSequence.java
b1757789d5ccfa2420df05ac03e0faa860458b11
[]
no_license
abhianand987/graph-algorithms-for-competitive-coding
4692f9f4b4c1c8e2d9842585c16b810e23f502c9
b790df992692006ffa83f967138626214de91e7b
refs/heads/master
2023-06-14T03:30:03.631851
2021-07-16T16:01:18
2021-07-16T16:01:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,388
java
package DepthFirstSearch; public class LongestPathSequence { static void dfs(int[][] matrix,boolean[][] visited, int[][] cache, int i,int j,int m,int n){ visited[i][j] = true; int dx[] = {-1,1,0,0}; int dy[] = {0,0,1,-1}; int cnt = 0; for(int k=0;k<4;k++){ int nx = i + dx[k]; int ny = j + dy[k]; if(nx>=0 && ny>=0 && nx<m && ny<n && matrix[nx][ny]>matrix[i][j]){ if(visited[nx][ny]){ cnt = Math.max(cnt,1+cache[nx][ny]); } else{ dfs(matrix,visited,cache,nx,ny,m,n); cnt = Math.max(cnt,1+cache[nx][ny]); } } } cache[i][j] = cnt; return; } static int longestPathSequence(int[][] matrix) { // Write your code here. int m = matrix.length; int n = matrix[0].length; boolean[][] visited = new boolean[m+1][n+1]; int[][] cache = new int[m+1][n+1]; //do a dfs from every cell //and store the length of of maximum len seq starting from that cell int ans = 0; for(int i=0;i<m;i++){ for(int j=0;j<n;j++){ dfs(matrix,visited,cache,i,j,m,n); ans = Math.max(ans,cache[i][j]); } } return ans+1; }; }
[ "prateeknarang@192.168.1.7" ]
prateeknarang@192.168.1.7
b3462b79f094ac752b3418503b03f4e572606990
d28bef698c0e44586d6b37960a7a6160943f061e
/F03a/src/waitnotifymelding/Melding.java
616d6e0bdb36480f42b69eec2df6320386c679dd
[]
no_license
SiljaTorki/DAT108
f4779d23ffcc4d23c666513aeabfeb8731d5cbd0
da31b1996c248af64030111852b310bdc61550ec
refs/heads/master
2022-12-18T10:36:44.355077
2020-09-21T22:33:32
2020-09-21T22:33:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
496
java
package waitnotifymelding; public class Melding { private String innhold; public synchronized String getInnhold() { while(!harInnhold()) { try { wait(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } return innhold; } public synchronized void setInnhold(String innhold) { this.innhold = innhold; notifyAll(); } public synchronized boolean harInnhold() { return innhold != null; } }
[ "578046@stud.hvl.no" ]
578046@stud.hvl.no
b935779e5d519389682acb92fd3163e24a6901b2
5b803331f061f7b26637ed922cf5f85fb6a8b991
/trainingmavenproject/src/main/java/com/mphasis/training/daos/PlayerdaoImpl.java
4ca5be65077c423b38d277b358f3c8a263378946
[]
no_license
ShwethaAnil/Projects
76143c8eca1ae8f4b628a502257aaf0890db81f9
acbca5b8f6c5330e9175e4309abc1793a62e3b6b
refs/heads/master
2020-03-08T20:15:08.824158
2019-04-26T11:49:27
2019-04-26T11:49:27
128,377,476
0
0
null
null
null
null
UTF-8
Java
false
false
2,243
java
package com.mphasis.training.daos; import java.util.ArrayList; import java.util.List; import org.hibernate.Session; import org.hibernate.Transaction; import com.mphasis.training.entities.Player; import com.mphasis.training.util.HibernateUtil; public class PlayerdaoImpl { public void insertPlayer(Player player) { Transaction tr=null; Session session=null; try{ session=HibernateUtil.getSessionFactory().openSession(); tr=session.beginTransaction(); session.save(player); tr.commit(); }catch(Exception e) { if(tr!=null) tr.rollback(); }finally { session.close(); } } public void updatePlayer(Player player) { Transaction tr=null; Session session=null; try{ session=HibernateUtil.getSessionFactory().openSession(); tr=session.beginTransaction(); session.update(player); tr.commit(); }catch(Exception e) { if(tr!=null) tr.rollback(); }finally { session.close(); } } public void deletePlayer(int pid) { Transaction tr=null; Session session=null; try{ session=HibernateUtil.getSessionFactory().openSession(); tr=session.beginTransaction(); Player player=(Player)session.get(Player.class, pid); session.delete(player); tr.commit(); }catch(Exception e) { if(tr!=null) tr.rollback(); }finally { session.close(); } } public Player getPlayerById(int pid) { Transaction tr=null; Session session=null; Player player=new Player(); try{ session=HibernateUtil.getSessionFactory().openSession(); tr=session.beginTransaction(); player=(Player)session.get(Player.class, pid); tr.commit(); }catch(Exception e) { if(tr!=null) tr.rollback(); }finally { session.close(); } return player; } public List<Player> getAll(){ List<Player> players=new ArrayList<>(); Transaction tr=null; Session session=null; try { session=HibernateUtil.getSessionFactory().openSession(); tr=session.beginTransaction(); players=session.createCriteria(Player.class).list(); tr.commit(); }catch(Exception e) { if(tr!=null)tr.rollback(); }finally { session.close(); } return players; } }
[ "shwetha31ramesh@gmail.com" ]
shwetha31ramesh@gmail.com
9c002692b560986727406436497ce75a9c4c0a61
9ff4a3163a67be525f77bbe36294fb67267ca904
/joosbox-compiler/src/test/resources/custom-tests/compiler_compare_literals.java
52bfb988f0486276af23d819af5fa0c96a741a12
[]
no_license
wlue/joosbox
3cf867b0762916fdfb41ae49a995b1f9ccd8ced3
5b697f218539cede9fdb1474e847db743b5ef5e1
refs/heads/master
2021-01-21T23:33:41.041361
2014-04-05T03:59:43
2014-04-05T03:59:43
15,706,435
2
1
null
null
null
null
UTF-8
Java
false
false
212
java
public class compiler_compare_literals { public compiler_compare_literals() {} public static int test() { if ("abc" == "abc") { return 123; } else { return 14; } } }
[ "psobot@gmail.com" ]
psobot@gmail.com
185c3274213afd4db3958e0e8dd47df5c264ca86
541509cbfec8b6314667a1dea6d5d303cfd2e056
/SSM_test/src/main/java/com/lhf/controller/user/UsersNavController.java
9c1133d67e23e7e0f4ae2493e4fde49872b3c333
[]
no_license
noihgohohhjhj/ssm_test_hospital
244ffe4b7a1cd3c138e26efc27cf60102959d48d
32194991cb5537515cf1afc19594c362491e7edb
refs/heads/master
2023-03-20T02:52:24.117255
2018-07-18T05:08:51
2018-07-18T05:08:51
null
0
0
null
null
null
null
UTF-8
Java
false
false
9,994
java
package com.lhf.controller.user; import com.lhf.entity.*; import com.lhf.service.UsersService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; import javax.servlet.http.HttpSession; import java.text.SimpleDateFormat; import java.util.List; @Controller public class UsersNavController { @Autowired private UsersService usersService; @GetMapping("/UserFrontPage") String usersFrontPage(HttpSession httpSession){ if(httpSession.getAttribute("user")!=null){ return "user/UserFrontPage"; }else{ return "redirect:/alllogin"; } } @GetMapping("/HelpPage") String helpPage(HttpSession httpSession){ if(httpSession.getAttribute("user")!=null){ return "user/HelpPage"; }else{ return "redirect:/alllogin"; } } @GetMapping("/PasswordChange") String passwordChange(HttpSession httpSession){ if(httpSession.getAttribute("user")!=null){ Users users=(Users)httpSession.getAttribute("user"); httpSession.setAttribute("old_pwd",users.getPassword()); return "user/PasswordChange"; }else{ return "redirect:/alllogin"; } } @GetMapping("/PatientInfo") String getPatientInfo(HttpSession httpSession, Model model){ if(httpSession.getAttribute("user")!=null){ Users users=(Users)httpSession.getAttribute("user"); Patient patient=usersService.getPatient(users.getUsername()); model.addAttribute("patient_name",patient.getPatient_name()); model.addAttribute("resident_id",patient.getResident_id()); model.addAttribute("patient_sex",patient.getPatient_sex()); model.addAttribute("patient_age",patient.getPatient_age()); model.addAttribute("patient_ph",patient.getPatient_ph()); SimpleDateFormat df=new SimpleDateFormat("yyyy-MM-dd"); String in_time=df.format(patient.getIn_time()); model.addAttribute("in_time",in_time); String out_time=df.format(patient.getOut_time()); model.addAttribute("out_time",out_time); model.addAttribute("doctor_name",patient.getDoctor().getDoctor_name()); model.addAttribute("ward_id",patient.getBed().getWard_id()); model.addAttribute("bed_id",patient.getBed().getBed_id()); model.addAttribute("address",patient.getAddress()); return "user/PatientInfo"; }else{ return "redirect:/alllogin"; } } @GetMapping("/PrescribeInfo") String getPrescribeInfo(HttpSession httpSession,Model model){ if(httpSession.getAttribute("user")!=null){ Users users=(Users)httpSession.getAttribute("user"); Prescribe prescribe=usersService.getPrescribe(users.getUsername()); model.addAttribute("prescribe_id",prescribe.getPrescribe_id()); model.addAttribute("patient_name",prescribe.getPatient().getPatient_name()); SimpleDateFormat df=new SimpleDateFormat("yyyy-MM-dd"); String create_time=df.format(prescribe.getCreate_time()); model.addAttribute("create_time",create_time); model.addAttribute("doctor_name",prescribe.getDoctor().getDoctor_name()); model.addAttribute("prescribe_detail",prescribe.getPrescribe_detail()); return "user/PrescribeInfo"; }else{ return "redirect:/alllogin"; } } @GetMapping("/ReportInfo") String getReportInfo(HttpSession httpSession,Model model){ if(httpSession.getAttribute("user")!=null){ Users users=(Users)httpSession.getAttribute("user"); Report report=usersService.getReport(users.getUsername()); model.addAttribute("report_id",report.getReport_id()); model.addAttribute("patient_name",report.getPatient().getPatient_name()); SimpleDateFormat df=new SimpleDateFormat("yyyy-MM-dd"); String create_time=df.format(report.getCreate_time()); model.addAttribute("create_time",create_time); model.addAttribute("department_name",report.getDepartment().getDepartment_name()); model.addAttribute("report_detail",report.getReport_detail()); return "user/ReportInfo"; }else{ return "redirect:/alllogin"; } } @GetMapping("/DoctorInfo") String getDoctorInfo(HttpSession httpSession,Model model){ if(httpSession.getAttribute("user")!=null){ Users users=(Users)httpSession.getAttribute("user"); Doctor doctor=usersService.getPatient(users.getUsername()).getDoctor(); model.addAttribute("doctor_id",doctor.getDoctor_id()); model.addAttribute("doctor_name",doctor.getDoctor_name()); model.addAttribute("doctor_sex",doctor.getDoctor_sex()); model.addAttribute("doctor_age",doctor.getDoctor_age()); model.addAttribute("doctor_ph",doctor.getDoctor_ph()); model.addAttribute("department_name",doctor.getDepartment().getDepartment_name()); model.addAttribute("introduction",doctor.getIntroduction()); return "user/DoctorInfo"; }else{ return "redirect:/alllogin"; } } @GetMapping("/WardInfo") String getWardInfo(HttpSession httpSession,Model model){ if(httpSession.getAttribute("user")!=null){ Users users=(Users)httpSession.getAttribute("user"); String ward_id=usersService.getPatient(users.getUsername()).getBed().getWard_id(); model.addAttribute("ward_id",ward_id); model.addAttribute("bed_id",usersService.getPatient(users.getUsername()).getBed().getBed_id()); model.addAttribute("bed_num",usersService.getWard(ward_id).getBed_num()); model.addAttribute("patients",usersService.getPatientsByWardId(ward_id)); return "user/WardInfo"; }else{ return "redirect:/alllogin"; } } @GetMapping("/WardChange") String getWardChange(HttpSession httpSession,Model model){ if(httpSession.getAttribute("user")!=null){ Users users=(Users)httpSession.getAttribute("user"); Bed bed=usersService.getPatient(users.getUsername()).getBed(); model.addAttribute("ward_id",bed.getWard_id()); model.addAttribute("bed_id",bed.getBed_id()); model.addAttribute("free_bed",usersService.getAllFreeBed()); List<WardEx> wardEx=usersService.getWardEx(users.getUsername()); model.addAttribute("ward_ex",wardEx); return "user/WardChange"; }else{ return "redirect:/alllogin"; } } @GetMapping("/RegisterDoc") String getRegisterDoc(HttpSession httpSession,Model model){ if(httpSession.getAttribute("user")!=null){ Users users=(Users)httpSession.getAttribute("user"); List<Doctor> all_doc=usersService.getAllDoctor(); model.addAttribute("all_doc",all_doc); List<RegisterDoc> registerDocs=usersService.getRegisterDoc(users.getUsername()); model.addAttribute("reg_doc",registerDocs); return "user/RegisterDoc"; }else{ return "redirect:/alllogin"; } } @GetMapping("/OutHospital") String getOutHospital(HttpSession httpSession,Model model){ if(httpSession.getAttribute("user")!=null){ Users users=(Users)httpSession.getAttribute("user"); Patient patient=usersService.getPatient(users.getUsername()); SimpleDateFormat df=new SimpleDateFormat("yyyy-MM-dd"); String in_time=df.format(patient.getIn_time()); model.addAttribute("in_time",in_time); String out_time=df.format(patient.getOut_time()); model.addAttribute("out_time",out_time); return "user/OutHospital"; }else{ return "redirect:/alllogin"; } } @GetMapping("/PayPrice") String getPayPrice(HttpSession httpSession,Model model){ if(httpSession.getAttribute("user")!=null){ Users users=(Users)httpSession.getAttribute("user"); Patient patient=usersService.getPatient(users.getUsername()); double register_price=patient.getRegister_price(); model.addAttribute("register_price",register_price); double host_ex=patient.getHost_ex(); model.addAttribute("host_ex",host_ex); double treat_ex=usersService.getPrescribe(users.getUsername()).getTreat_ex(); model.addAttribute("treat_ex",treat_ex); double report_ex=usersService.getReport(users.getUsername()).getReport_ex(); model.addAttribute("report_ex",report_ex); model.addAttribute("sum_ex",register_price+host_ex+treat_ex+report_ex); return "user/PayPrice"; }else{ return "redirect:/alllogin"; } } @GetMapping("/History") String getHistory(HttpSession httpSession,Model model){ if(httpSession.getAttribute("user")!=null){ Users users=(Users)httpSession.getAttribute("user"); Patient patient=usersService.getPatient(users.getUsername()); model.addAttribute("patient_name",patient.getPatient_name()); model.addAttribute("resident_id",patient.getResident_id()); model.addAttribute("patient_sex",patient.getPatient_sex()); model.addAttribute("patient_age",patient.getPatient_age()); model.addAttribute("history",usersService.getHistory(patient.getResident_id())); return "user/History"; }else{ return "redirect:/alllogin"; } } }
[ "1036243255@qq.com" ]
1036243255@qq.com
8386e3361caec38949e64328853421cf5eb5862f
acdbf4f8e08a023458bf9aa7836f14a795fbc67b
/compute/src/test/java/org/jclouds/compute/domain/internal/TemplateBuilderImplTest.java
c979c78489e5734dc0081952eb79020162c73062
[ "Apache-2.0" ]
permissive
iszegedi/jclouds
7f26ba327c8a7590be903ad023fede1afe1fe88f
481421569c300a7b17889e2d923a8f82b5e6183e
refs/heads/master
2021-01-15T22:20:00.091135
2012-02-14T01:00:57
2012-02-14T01:02:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
34,848
java
/** * Licensed to jclouds, Inc. (jclouds) under one or more * contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. jclouds licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.jclouds.compute.domain.internal; import static org.easymock.EasyMock.createMock; import static org.easymock.EasyMock.expect; import static org.easymock.EasyMock.replay; import static org.easymock.EasyMock.verify; import static org.testng.Assert.assertEquals; import java.util.NoSuchElementException; import java.util.Set; import javax.inject.Provider; import org.jclouds.compute.domain.Hardware; import org.jclouds.compute.domain.HardwareBuilder; import org.jclouds.compute.domain.Image; import org.jclouds.compute.domain.OperatingSystem; import org.jclouds.compute.domain.OsFamily; import org.jclouds.compute.domain.TemplateBuilder; import org.jclouds.compute.options.TemplateOptions; import org.jclouds.compute.predicates.ImagePredicates; import org.jclouds.domain.Location; import org.jclouds.domain.LocationScope; import org.testng.annotations.Test; import com.google.common.base.Supplier; import com.google.common.base.Suppliers; import com.google.common.collect.ImmutableSet; /** * * @author Adrian Cole */ @Test(groups = "unit", singleThreaded = true) public class TemplateBuilderImplTest { @SuppressWarnings("unchecked") public void testLocationPredicateWhenComputeMetadataIsNotLocationBound() { Location defaultLocation = createMock(Location.class); Image image = createMock(Image.class); OperatingSystem os = createMock(OperatingSystem.class); Hardware hardware = new HardwareBuilder().id("hardwareId").build(); Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of(defaultLocation)); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet.<Image> of( image)); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of(hardware)); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateBuilder defaultTemplate = createMock(TemplateBuilder.class); expect(image.getLocation()).andReturn(defaultLocation).anyTimes(); expect(image.getProviderId()).andReturn("imageId").anyTimes(); expect(defaultLocation.getId()).andReturn("location").anyTimes(); replay(image); replay(os); replay(defaultTemplate); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); assert template.locationPredicate.apply(hardware); verify(image); verify(os); verify(defaultTemplate); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } @SuppressWarnings("unchecked") @Test public void testResolveImages() { Location defaultLocation = createMock(Location.class); Image image = createMock(Image.class); OperatingSystem os = createMock(OperatingSystem.class); Image image2 = createMock(Image.class); OperatingSystem os2 = createMock(OperatingSystem.class); Hardware hardware = new HardwareBuilder().id("hardwareId").build(); Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of(defaultLocation)); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet.<Image> of( image, image2)); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of(hardware)); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateBuilder defaultTemplate = createMock(TemplateBuilder.class); expect(image.getName()).andReturn("imageName"); expect(image2.getName()).andReturn("imageName"); expect(image.getDescription()).andReturn("imageDescription"); expect(image2.getDescription()).andReturn("imageDescription"); expect(image.getVersion()).andReturn("imageVersion"); expect(image2.getVersion()).andReturn("imageVersion"); expect(image.getOperatingSystem()).andReturn(os).atLeastOnce(); expect(image2.getOperatingSystem()).andReturn(os2).atLeastOnce(); expect(image.getLocation()).andReturn(defaultLocation).anyTimes(); expect(image2.getLocation()).andReturn(defaultLocation).anyTimes(); expect(image.getProviderId()).andReturn("imageId").anyTimes(); expect(image2.getProviderId()).andReturn("imageId2").anyTimes(); expect(os.getName()).andReturn("osName"); expect(os2.getName()).andReturn("osName"); expect(os.getVersion()).andReturn("osVersion"); expect(os2.getVersion()).andReturn("osVersion"); expect(os.getDescription()).andReturn("osDescription"); expect(os2.getDescription()).andReturn("osDescription"); expect(os.getArch()).andReturn("X86_64").atLeastOnce(); expect(os2.getArch()).andReturn("X86_64").atLeastOnce(); expect(defaultLocation.getId()).andReturn("location").anyTimes(); replay(image); replay(image2); replay(os); replay(os2); replay(defaultTemplate); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); assertEquals(template.resolveImage(hardware, images.get()), image2); verify(image); verify(image2); verify(os); verify(os2); verify(defaultTemplate); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } @SuppressWarnings("unchecked") @Test public void testArchWins() { Location defaultLocation = createMock(Location.class); Image image = createMock(Image.class); Image image2 = createMock(Image.class); OperatingSystem os = createMock(OperatingSystem.class); OperatingSystem os2 = createMock(OperatingSystem.class); Hardware hardware = new HardwareBuilder().id("hardwareId").build(); Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of(defaultLocation)); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet.<Image> of( image, image2)); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of(hardware)); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateBuilder defaultTemplate = createMock(TemplateBuilder.class); expect(optionsProvider.get()).andReturn(new TemplateOptions()); expect(defaultLocation.getId()).andReturn("myregion").anyTimes(); expect(image.getLocation()).andReturn(defaultLocation).atLeastOnce(); expect(image2.getLocation()).andReturn(defaultLocation).atLeastOnce(); expect(image.getOperatingSystem()).andReturn(os).atLeastOnce(); expect(image2.getOperatingSystem()).andReturn(os2).atLeastOnce(); expect(image.getId()).andReturn("myregion/1").atLeastOnce(); expect(image.getProviderId()).andReturn("1").anyTimes(); expect(image2.getProviderId()).andReturn("2").anyTimes(); expect(os.getArch()).andReturn("X86_32").atLeastOnce(); expect(os2.getArch()).andReturn("X86_64").atLeastOnce(); replay(image); replay(image2); replay(os); replay(os2); replay(defaultTemplate); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); assertEquals(template.smallest().osArchMatches("X86_32").build().getImage(), image); verify(image); verify(image2); verify(os); verify(os2); verify(defaultTemplate); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } @SuppressWarnings("unchecked") @Test public void testHardwareWithImageIdPredicateOnlyAcceptsImage() { Location defaultLocation = createMock(Location.class); Image image = createMock(Image.class); OperatingSystem os = createMock(OperatingSystem.class); Hardware hardware = new HardwareBuilder().id("hardwareId").supportsImage(ImagePredicates.idEquals("myregion/imageId")) .build(); Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of(defaultLocation)); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet .<Image> of(image)); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of(hardware)); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateBuilder defaultTemplate = createMock(TemplateBuilder.class); expect(optionsProvider.get()).andReturn(new TemplateOptions()); expect(image.getId()).andReturn("myregion/imageId").atLeastOnce(); expect(image.getLocation()).andReturn(defaultLocation).atLeastOnce(); expect(image.getName()).andReturn(null).atLeastOnce(); expect(image.getDescription()).andReturn(null).atLeastOnce(); expect(image.getVersion()).andReturn(null).atLeastOnce(); expect(image.getOperatingSystem()).andReturn(os).atLeastOnce(); expect(image.getProviderId()).andReturn("imageId").anyTimes(); expect(defaultLocation.getId()).andReturn("myregion").anyTimes(); expect(os.getName()).andReturn(null).atLeastOnce(); expect(os.getVersion()).andReturn(null).atLeastOnce(); expect(os.getFamily()).andReturn(null).atLeastOnce(); expect(os.getDescription()).andReturn(null).atLeastOnce(); expect(os.getArch()).andReturn(null).atLeastOnce(); expect(os.is64Bit()).andReturn(false).atLeastOnce(); expect(defaultLocation.getScope()).andReturn(LocationScope.PROVIDER).atLeastOnce(); replay(image); replay(os); replay(defaultTemplate); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); template.imageId("myregion/imageId").build(); verify(image); verify(os); verify(defaultTemplate); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } @SuppressWarnings("unchecked") @Test public void testHardwareWithImageIdPredicateOnlyAcceptsImageWhenLocationNull() { Location defaultLocation = createMock(Location.class); Image image = createMock(Image.class); OperatingSystem os = createMock(OperatingSystem.class); Hardware hardware = new HardwareBuilder().id("hardwareId").supportsImage(ImagePredicates.idEquals("myregion/imageId")) .build(); Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of(defaultLocation)); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet .<Image> of(image)); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of(hardware)); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateBuilder defaultTemplate = createMock(TemplateBuilder.class); expect(optionsProvider.get()).andReturn(new TemplateOptions()); expect(image.getId()).andReturn("myregion/imageId").atLeastOnce(); expect(image.getLocation()).andReturn(null).atLeastOnce(); expect(image.getName()).andReturn(null).atLeastOnce(); expect(image.getDescription()).andReturn(null).atLeastOnce(); expect(image.getVersion()).andReturn(null).atLeastOnce(); expect(image.getOperatingSystem()).andReturn(os).atLeastOnce(); expect(image.getProviderId()).andReturn("imageId").anyTimes(); expect(defaultLocation.getId()).andReturn("myregion").anyTimes(); expect(os.getName()).andReturn(null).atLeastOnce(); expect(os.getVersion()).andReturn(null).atLeastOnce(); expect(os.getFamily()).andReturn(null).atLeastOnce(); expect(os.getDescription()).andReturn(null).atLeastOnce(); expect(os.getArch()).andReturn(null).atLeastOnce(); expect(os.is64Bit()).andReturn(false).atLeastOnce(); replay(image, os, defaultTemplate, defaultLocation, optionsProvider, templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); template.imageId("myregion/imageId").build(); verify(image, os, defaultTemplate, defaultLocation, optionsProvider, templateBuilderProvider); } @SuppressWarnings("unchecked") @Test public void testHardwareWithImageIdPredicateOnlyDoesntImage() { Location defaultLocation = createMock(Location.class); Image image = createMock(Image.class); OperatingSystem os = createMock(OperatingSystem.class); Hardware hardware = new HardwareBuilder().id("hardwareId").supportsImage(ImagePredicates.idEquals("differentImageId")) .build(); Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of(defaultLocation)); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet .<Image> of(image)); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of(hardware)); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateBuilder defaultTemplate = createMock(TemplateBuilder.class); expect(optionsProvider.get()).andReturn(new TemplateOptions()); expect(image.getId()).andReturn("myregion/imageId").atLeastOnce(); expect(image.getLocation()).andReturn(defaultLocation).atLeastOnce(); expect(image.getOperatingSystem()).andReturn(os).atLeastOnce(); expect(image.getName()).andReturn(null).atLeastOnce(); expect(image.getDescription()).andReturn(null).atLeastOnce(); expect(image.getVersion()).andReturn(null).atLeastOnce(); expect(image.getProviderId()).andReturn("imageId").anyTimes(); expect(defaultLocation.getId()).andReturn("myregion").anyTimes(); expect(os.getName()).andReturn(null).atLeastOnce(); expect(os.getVersion()).andReturn(null).atLeastOnce(); expect(os.getFamily()).andReturn(null).atLeastOnce(); expect(os.getDescription()).andReturn(null).atLeastOnce(); expect(os.getArch()).andReturn(null).atLeastOnce(); expect(os.is64Bit()).andReturn(false).atLeastOnce(); expect(defaultLocation.getScope()).andReturn(LocationScope.PROVIDER).atLeastOnce(); replay(image); replay(os); replay(defaultTemplate); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(image, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); try { template.imageId("myregion/imageId").build(); assert false; } catch (NoSuchElementException e) { // make sure big data is not in the exception message assertEquals( e.getMessage(), "no hardware profiles support images matching params: [biggest=false, fastest=false, imageName=null, imageDescription=null, imageId=myregion/imageId, imagePredicate=null, imageVersion=null, location=EasyMock for interface org.jclouds.domain.Location, minCores=0.0, minRam=0, osFamily=null, osName=null, osDescription=null, osVersion=null, osArch=null, os64Bit=false, hardwareId=null]"); verify(image); verify(os); verify(defaultTemplate); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } } @SuppressWarnings("unchecked") @Test public void testOptionsUsesDefaultTemplateBuilder() { TemplateOptions options = provideTemplateOptions(); TemplateOptions from = provideTemplateOptions(); Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of()); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet.<Image> of()); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of()); Location defaultLocation = createMock(Location.class); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateBuilder defaultTemplate = createMock(TemplateBuilder.class); expect(templateBuilderProvider.get()).andReturn(defaultTemplate); expect(defaultTemplate.options(from)).andReturn(defaultTemplate); expect(defaultTemplate.build()).andReturn(null); expect(optionsProvider.get()).andReturn(from).atLeastOnce(); replay(defaultTemplate); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); template.options(options).build(); verify(defaultTemplate); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } @SuppressWarnings("unchecked") @Test public void testNothingUsesDefaultTemplateBuilder() { Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of()); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet.<Image> of()); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of()); Location defaultLocation = createMock(Location.class); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateBuilder defaultTemplate = createMock(TemplateBuilder.class); expect(templateBuilderProvider.get()).andReturn(defaultTemplate); expect(defaultTemplate.build()).andReturn(null); replay(defaultTemplate); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); template.build(); verify(defaultTemplate); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } protected TemplateBuilderImpl createTemplateBuilder(Image knownImage, Supplier<Set<? extends Location>> locations, Supplier<Set<? extends Image>> images, Supplier<Set<? extends Hardware>> hardwares, Location defaultLocation, Provider<TemplateOptions> optionsProvider, Provider<TemplateBuilder> templateBuilderProvider) { TemplateBuilderImpl template = new TemplateBuilderImpl(locations, images, hardwares, Suppliers .ofInstance(defaultLocation), optionsProvider, templateBuilderProvider); return template; } @SuppressWarnings("unchecked") @Test public void testSuppliedImageLocationWiderThanDefault() { TemplateOptions from = provideTemplateOptions(); Location defaultLocation = createMock(Location.class); Image image = createMock(Image.class); Hardware hardware = new HardwareBuilder().id("hardwareId").supportsImage(ImagePredicates.idEquals("myregion/foo")).build(); Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of(defaultLocation)); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet .<Image> of(image)); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of(hardware)); Location imageLocation = createMock(Location.class); OperatingSystem os = createMock(OperatingSystem.class); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateOptions defaultOptions = createMock(TemplateOptions.class); expect(optionsProvider.get()).andReturn(from).atLeastOnce(); expect(defaultLocation.getId()).andReturn("myregion").atLeastOnce(); expect(image.getId()).andReturn("myregion/foo").atLeastOnce(); expect(image.getLocation()).andReturn(defaultLocation).atLeastOnce(); expect(image.getOperatingSystem()).andReturn(os).atLeastOnce(); expect(image.getName()).andReturn(null).atLeastOnce(); expect(image.getDescription()).andReturn(null).atLeastOnce(); expect(image.getVersion()).andReturn(null).atLeastOnce(); expect(image.getProviderId()).andReturn("foo").anyTimes(); expect(os.getName()).andReturn(null).atLeastOnce(); expect(os.getVersion()).andReturn(null).atLeastOnce(); expect(os.getFamily()).andReturn(null).atLeastOnce(); expect(os.getDescription()).andReturn(null).atLeastOnce(); expect(os.getArch()).andReturn(null).atLeastOnce(); expect(os.is64Bit()).andReturn(false).atLeastOnce(); expect(defaultLocation.getScope()).andReturn(LocationScope.HOST).atLeastOnce(); replay(defaultOptions); replay(imageLocation); replay(image); replay(os); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); assertEquals(template.imageId("myregion/foo").locationId("myregion").build().getLocation(), defaultLocation); verify(defaultOptions); verify(imageLocation); verify(image); verify(os); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } @SuppressWarnings("unchecked") @Test public void testSuppliedLocationWithNoOptions() { Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of()); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet.<Image> of()); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of()); Location defaultLocation = createMock(Location.class); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateOptions defaultOptions = createMock(TemplateOptions.class); replay(defaultOptions); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); try { template.imageId("foo").locationId("location").build(); assert false; } catch (NoSuchElementException e) { } verify(defaultOptions); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } @SuppressWarnings("unchecked") @Test public void testSuppliedLocationAndOptions() { TemplateOptions from = provideTemplateOptions(); Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of()); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet.<Image> of()); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of()); Location defaultLocation = createMock(Location.class); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); expect(optionsProvider.get()).andReturn(from).atLeastOnce(); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); try { template.imageId("foo").options(provideTemplateOptions()).locationId("location").build(); assert false; } catch (NoSuchElementException e) { } verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } @SuppressWarnings("unchecked") @Test public void testDefaultLocationWithNoOptionsNoSuchElement() { Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of()); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet.<Image> of()); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of()); Location defaultLocation = createMock(Location.class); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateOptions defaultOptions = createMock(TemplateOptions.class); expect(optionsProvider.get()).andReturn(defaultOptions); replay(defaultOptions); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); try { template.imageId("region/imageId").build(); assert false; } catch (NoSuchElementException e) { // make sure big data is not in the exception message assertEquals(e.getMessage(), "imageId(region/imageId) not found"); } verify(defaultOptions); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } @SuppressWarnings("unchecked") @Test public void testDefaultLocationWithUnmatchedPredicateExceptionMessage() { Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of()); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet.<Image> of()); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of()); Location defaultLocation = createMock(Location.class); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); TemplateOptions defaultOptions = createMock(TemplateOptions.class); expect(optionsProvider.get()).andReturn(defaultOptions); expect(defaultLocation.getId()).andReturn("us-east-1"); replay(defaultOptions); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); try { template.imageDescriptionMatches("description").build(); assert false; } catch (NoSuchElementException e) { // make sure big data is not in the exception message assertEquals(e.getMessage(), "no image matched predicate: And(locationEqualsOrChildOf(us-east-1),imageDescription(description))"); } verify(defaultOptions); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } protected TemplateOptions provideTemplateOptions() { return new TemplateOptions(); } @SuppressWarnings("unchecked") @Test public void testDefaultLocationWithOptions() { Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of()); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet.<Image> of()); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of()); Location defaultLocation = createMock(Location.class); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); TemplateOptions from = provideTemplateOptions(); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); expect(optionsProvider.get()).andReturn(from); expect(from.getInboundPorts()).andReturn(new int[] { 22 }); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); try { template.imageId("region/ami").options(provideTemplateOptions()).build(); assert false; } catch (NoSuchElementException e) { } verify(defaultLocation); // verify(optionsProvider); verify(templateBuilderProvider); } @SuppressWarnings("unchecked") @Test public void testImageIdNullsEverythingElse() { Supplier<Set<? extends Location>> locations = Suppliers.<Set<? extends Location>> ofInstance(ImmutableSet .<Location> of()); Supplier<Set<? extends Image>> images = Suppliers.<Set<? extends Image>> ofInstance(ImmutableSet.<Image> of()); Supplier<Set<? extends Hardware>> hardwares = Suppliers.<Set<? extends Hardware>> ofInstance(ImmutableSet .<Hardware> of()); Location defaultLocation = createMock(Location.class); Provider<TemplateOptions> optionsProvider = createMock(Provider.class); Provider<TemplateBuilder> templateBuilderProvider = createMock(Provider.class); replay(defaultLocation); replay(optionsProvider); replay(templateBuilderProvider); TemplateBuilderImpl template = createTemplateBuilder(null, locations, images, hardwares, defaultLocation, optionsProvider, templateBuilderProvider); template.imageDescriptionMatches("imageDescriptionMatches"); template.imageNameMatches("imageNameMatches"); template.imageVersionMatches("imageVersionMatches"); template.osDescriptionMatches("osDescriptionMatches"); template.osFamily(OsFamily.CENTOS); template.osArchMatches("osArchMatches"); assertEquals(template.osArch, "osArchMatches"); assertEquals(template.imageDescription, "imageDescriptionMatches"); assertEquals(template.imageName, "imageNameMatches"); assertEquals(template.imageVersion, "imageVersionMatches"); assertEquals(template.osDescription, "osDescriptionMatches"); assertEquals(template.osFamily, OsFamily.CENTOS); assertEquals(template.imageId, null); template.imageId("myid"); assertEquals(template.osArch, null); assertEquals(template.imageDescription, null); assertEquals(template.imageName, null); assertEquals(template.imageVersion, null); assertEquals(template.osDescription, null); assertEquals(template.osFamily, null); assertEquals(template.imageId, "myid"); verify(defaultLocation); verify(optionsProvider); verify(templateBuilderProvider); } }
[ "adrian@jclouds.org" ]
adrian@jclouds.org
e9682e0a2a2b3f58b7d0b786742388a7bd19fdc8
6a14cc6ffacbe4459b19f882b33d307ab08e8783
/aliyun-java-sdk-cms/src/main/java/com/aliyuncs/cms/transform/v20150801/GetMetricStreamStatusResponseUnmarshaller.java
880e062fbeecb07fd816ed0a470153b62c117614
[ "Apache-2.0" ]
permissive
425296516/aliyun-openapi-java-sdk
ea547c7dc8f05d1741848e1db65df91b19a390da
0ed6542ff71e907bab3cf21311db3bfbca6ca84c
refs/heads/master
2023-09-04T18:27:36.624698
2015-11-10T07:52:55
2015-11-10T07:52:55
46,623,385
1
2
null
2016-12-07T18:36:30
2015-11-21T16:28:33
Java
UTF-8
Java
false
false
1,656
java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package com.aliyuncs.cms.transform.v20150801; import com.aliyuncs.cms.model.v20150801.GetMetricStreamStatusResponse; import com.aliyuncs.transform.UnmarshallerContext; public class GetMetricStreamStatusResponseUnmarshaller { public static GetMetricStreamStatusResponse unmarshall(GetMetricStreamStatusResponse getMetricStreamStatusResponse, UnmarshallerContext context) { getMetricStreamStatusResponse.setCode(context.stringValue("GetMetricStreamStatusResponse.Code")); getMetricStreamStatusResponse.setMessage(context.stringValue("GetMetricStreamStatusResponse.Message")); getMetricStreamStatusResponse.setSuccess(context.stringValue("GetMetricStreamStatusResponse.Success")); getMetricStreamStatusResponse.setTraceId(context.stringValue("GetMetricStreamStatusResponse.TraceId")); return getMetricStreamStatusResponse; } }
[ "malijie@foxmail.com" ]
malijie@foxmail.com
3cf633098fe93caada6277d6eb13d20420481fe4
c885ef92397be9d54b87741f01557f61d3f794f3
/tests-without-trycatch/JxPath-15/org.apache.commons.jxpath.ri.axes.UnionContext/BBC-F0-opt-80/2/org/apache/commons/jxpath/ri/axes/UnionContext_ESTest.java
5bdc88254e7ac070058c5fa690b4f444163ee3a3
[ "CC-BY-4.0", "MIT" ]
permissive
pderakhshanfar/EMSE-BBC-experiment
f60ac5f7664dd9a85f755a00a57ec12c7551e8c6
fea1a92c2e7ba7080b8529e2052259c9b697bbda
refs/heads/main
2022-11-25T00:39:58.983828
2022-04-12T16:04:26
2022-04-12T16:04:26
309,335,889
0
1
null
2021-11-05T11:18:43
2020-11-02T10:30:38
null
UTF-8
Java
false
false
14,480
java
/* * This file was automatically generated by EvoSuite * Thu Oct 14 05:15:28 GMT 2021 */ package org.apache.commons.jxpath.ri.axes; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import java.util.Locale; import org.apache.commons.jxpath.BasicNodeSet; import org.apache.commons.jxpath.BasicVariables; import org.apache.commons.jxpath.JXPathContext; import org.apache.commons.jxpath.Pointer; import org.apache.commons.jxpath.ri.EvalContext; import org.apache.commons.jxpath.ri.JXPathContextReferenceImpl; import org.apache.commons.jxpath.ri.QName; import org.apache.commons.jxpath.ri.axes.ChildContext; import org.apache.commons.jxpath.ri.axes.DescendantContext; import org.apache.commons.jxpath.ri.axes.InitialContext; import org.apache.commons.jxpath.ri.axes.NodeSetContext; import org.apache.commons.jxpath.ri.axes.PredicateContext; import org.apache.commons.jxpath.ri.axes.RootContext; import org.apache.commons.jxpath.ri.axes.SelfContext; import org.apache.commons.jxpath.ri.axes.UnionContext; import org.apache.commons.jxpath.ri.compiler.CoreOperationOr; import org.apache.commons.jxpath.ri.compiler.CoreOperationSubtract; import org.apache.commons.jxpath.ri.compiler.CoreOperationUnion; import org.apache.commons.jxpath.ri.compiler.Expression; import org.apache.commons.jxpath.ri.compiler.ExtensionFunction; import org.apache.commons.jxpath.ri.compiler.NodeNameTest; import org.apache.commons.jxpath.ri.compiler.NodeTypeTest; import org.apache.commons.jxpath.ri.compiler.ProcessingInstructionTest; import org.apache.commons.jxpath.ri.model.NodePointer; import org.apache.commons.jxpath.ri.model.VariablePointer; import org.evosuite.runtime.EvoRunner; import org.evosuite.runtime.EvoRunnerParameters; import org.junit.runner.RunWith; @RunWith(EvoRunner.class) @EvoRunnerParameters(mockJVMNonDeterminism = true, useVFS = true, useVNET = true, resetStaticState = true, separateClassLoader = true) public class UnionContext_ESTest extends UnionContext_ESTest_scaffolding { @Test(timeout = 4000) public void test00() throws Throwable { Integer integer0 = new Integer(23); JXPathContextReferenceImpl jXPathContextReferenceImpl0 = new JXPathContextReferenceImpl((JXPathContext) null, integer0, (Pointer) null); BasicVariables basicVariables0 = new BasicVariables(); QName qName0 = new QName("xq<K;N`Mu ", ""); VariablePointer variablePointer0 = new VariablePointer(basicVariables0, qName0); RootContext rootContext0 = new RootContext(jXPathContextReferenceImpl0, variablePointer0); EvalContext evalContext0 = rootContext0.getVariableContext(qName0); NodeNameTest nodeNameTest0 = new NodeNameTest(qName0, "xq<K;N`Mu "); DescendantContext descendantContext0 = new DescendantContext(evalContext0, true, nodeNameTest0); EvalContext[] evalContextArray0 = new EvalContext[6]; evalContextArray0[0] = evalContext0; evalContextArray0[1] = evalContext0; SelfContext selfContext0 = new SelfContext(descendantContext0, nodeNameTest0); evalContextArray0[2] = (EvalContext) selfContext0; selfContext0.getValue(); UnionContext unionContext0 = new UnionContext(descendantContext0, evalContextArray0); // Undeclared exception! // try { unionContext0.setPosition(1580); // fail("Expecting exception: RuntimeException"); // } catch(RuntimeException e) { // // // // Undefined variable: xq<K;N`Mu : // // // verifyException("org.apache.commons.jxpath.ri.model.VariablePointer$1", e); // } } @Test(timeout = 4000) public void test01() throws Throwable { BasicNodeSet basicNodeSet0 = new BasicNodeSet(); JXPathContextReferenceImpl jXPathContextReferenceImpl0 = new JXPathContextReferenceImpl((JXPathContext) null, basicNodeSet0, (Pointer) null); EvalContext evalContext0 = jXPathContextReferenceImpl0.getAbsoluteRootContext(); EvalContext[] evalContextArray0 = new EvalContext[4]; evalContextArray0[0] = evalContext0; evalContextArray0[1] = evalContext0; evalContextArray0[2] = evalContext0; QName qName0 = new QName("$P", "$P"); Locale locale0 = Locale.KOREA; NodePointer nodePointer0 = NodePointer.newNodePointer(qName0, evalContextArray0[2], locale0); RootContext rootContext0 = new RootContext(jXPathContextReferenceImpl0, nodePointer0); EvalContext evalContext1 = rootContext0.getConstantContext(jXPathContextReferenceImpl0); NodeTypeTest nodeTypeTest0 = new NodeTypeTest((-2077)); DescendantContext descendantContext0 = new DescendantContext(evalContext1, true, nodeTypeTest0); evalContextArray0[3] = (EvalContext) descendantContext0; UnionContext unionContext0 = new UnionContext(evalContext0, evalContextArray0); // Undeclared exception! unionContext0.setPosition((-2077)); } @Test(timeout = 4000) public void test02() throws Throwable { Object object0 = new Object(); JXPathContextReferenceImpl jXPathContextReferenceImpl0 = (JXPathContextReferenceImpl)JXPathContext.newContext(object0); InitialContext initialContext0 = (InitialContext)jXPathContextReferenceImpl0.getAbsoluteRootContext(); EvalContext[] evalContextArray0 = new EvalContext[2]; Expression[] expressionArray0 = new Expression[8]; Expression[] expressionArray1 = new Expression[0]; CoreOperationUnion coreOperationUnion0 = new CoreOperationUnion(expressionArray1); expressionArray0[0] = (Expression) coreOperationUnion0; CoreOperationSubtract coreOperationSubtract0 = new CoreOperationSubtract(expressionArray0[0], coreOperationUnion0); expressionArray0[1] = (Expression) coreOperationSubtract0; QName qName0 = new QName("U1{g#ex ':"); ExtensionFunction extensionFunction0 = new ExtensionFunction(qName0, expressionArray1); expressionArray0[2] = (Expression) extensionFunction0; CoreOperationOr coreOperationOr0 = new CoreOperationOr(expressionArray0); PredicateContext predicateContext0 = new PredicateContext(initialContext0, coreOperationOr0); evalContextArray0[0] = (EvalContext) predicateContext0; UnionContext unionContext0 = new UnionContext(initialContext0, evalContextArray0); // Undeclared exception! // try { unionContext0.setPosition(7); // fail("Expecting exception: RuntimeException"); // } catch(RuntimeException e) { // // // // Undefined function: U1{g#ex ': // // // verifyException("org.apache.commons.jxpath.ri.JXPathContextReferenceImpl", e); // } } @Test(timeout = 4000) public void test03() throws Throwable { Object object0 = new Object(); JXPathContextReferenceImpl jXPathContextReferenceImpl0 = (JXPathContextReferenceImpl)JXPathContext.newContext(object0); RootContext rootContext0 = new RootContext(jXPathContextReferenceImpl0, (NodePointer) null); EvalContext[] evalContextArray0 = new EvalContext[8]; evalContextArray0[0] = (EvalContext) rootContext0; UnionContext unionContext0 = new UnionContext(rootContext0, evalContextArray0); // Undeclared exception! // try { unionContext0.setPosition(28); // fail("Expecting exception: UnsupportedOperationException"); // } catch(UnsupportedOperationException e) { // // // // no message in exception (getMessage() returned null) // // // verifyException("org.apache.commons.jxpath.ri.axes.RootContext", e); // } } @Test(timeout = 4000) public void test04() throws Throwable { BasicNodeSet basicNodeSet0 = new BasicNodeSet(); NodeSetContext nodeSetContext0 = new NodeSetContext((EvalContext) null, basicNodeSet0); ProcessingInstructionTest processingInstructionTest0 = new ProcessingInstructionTest(""); SelfContext selfContext0 = new SelfContext(nodeSetContext0, processingInstructionTest0); ChildContext childContext0 = new ChildContext(selfContext0, processingInstructionTest0, true, true); EvalContext[] evalContextArray0 = new EvalContext[1]; evalContextArray0[0] = (EvalContext) childContext0; UnionContext unionContext0 = new UnionContext(childContext0, evalContextArray0); childContext0.hasNext(); // Undeclared exception! // try { unionContext0.setPosition(1); // fail("Expecting exception: IndexOutOfBoundsException"); // } catch(IndexOutOfBoundsException e) { // // // // Index: 0, Size: 0 // // // verifyException("java.util.ArrayList", e); // } } @Test(timeout = 4000) public void test05() throws Throwable { JXPathContextReferenceImpl jXPathContextReferenceImpl0 = (JXPathContextReferenceImpl)JXPathContext.newContext((JXPathContext) null, (Object) null); BasicVariables basicVariables0 = new BasicVariables(); QName qName0 = new QName("g${\"n?K\"Al"); VariablePointer variablePointer0 = new VariablePointer(basicVariables0, qName0); RootContext rootContext0 = new RootContext(jXPathContextReferenceImpl0, variablePointer0); InitialContext initialContext0 = (InitialContext)rootContext0.getConstantContext(variablePointer0); EvalContext[] evalContextArray0 = new EvalContext[4]; evalContextArray0[0] = (EvalContext) initialContext0; UnionContext unionContext0 = new UnionContext(initialContext0, evalContextArray0); // Undeclared exception! // try { unionContext0.setPosition(Integer.MIN_VALUE); // fail("Expecting exception: IllegalArgumentException"); // } catch(IllegalArgumentException e) { // // // // No such variable: 'g${\"n?K\"Al' // // // verifyException("org.apache.commons.jxpath.BasicVariables", e); // } } @Test(timeout = 4000) public void test06() throws Throwable { Object object0 = new Object(); JXPathContextReferenceImpl jXPathContextReferenceImpl0 = (JXPathContextReferenceImpl)JXPathContext.newContext(object0); InitialContext initialContext0 = (InitialContext)jXPathContextReferenceImpl0.getAbsoluteRootContext(); UnionContext unionContext0 = new UnionContext(initialContext0, (EvalContext[]) null); // Undeclared exception! // try { unionContext0.getDocumentOrder(); // fail("Expecting exception: NullPointerException"); // } catch(NullPointerException e) { // // // // no message in exception (getMessage() returned null) // // // verifyException("org.apache.commons.jxpath.ri.axes.UnionContext", e); // } } @Test(timeout = 4000) public void test07() throws Throwable { Object object0 = new Object(); JXPathContextReferenceImpl jXPathContextReferenceImpl0 = (JXPathContextReferenceImpl)JXPathContext.newContext(object0); InitialContext initialContext0 = (InitialContext)jXPathContextReferenceImpl0.getAbsoluteRootContext(); EvalContext[] evalContextArray0 = new EvalContext[2]; evalContextArray0[0] = (EvalContext) initialContext0; evalContextArray0[1] = (EvalContext) initialContext0; UnionContext unionContext0 = new UnionContext(initialContext0, evalContextArray0); unionContext0.toString(); unionContext0.setPosition(9); assertEquals(2, initialContext0.getPosition()); assertEquals(9, unionContext0.getPosition()); } @Test(timeout = 4000) public void test08() throws Throwable { Object object0 = new Object(); JXPathContextReferenceImpl jXPathContextReferenceImpl0 = (JXPathContextReferenceImpl)JXPathContext.newContext(object0); InitialContext initialContext0 = (InitialContext)jXPathContextReferenceImpl0.getAbsoluteRootContext(); EvalContext[] evalContextArray0 = new EvalContext[6]; evalContextArray0[0] = (EvalContext) initialContext0; evalContextArray0[1] = (EvalContext) initialContext0; evalContextArray0[2] = (EvalContext) initialContext0; evalContextArray0[3] = (EvalContext) initialContext0; UnionContext unionContext0 = new UnionContext(initialContext0, evalContextArray0); evalContextArray0[4] = (EvalContext) unionContext0; evalContextArray0[5] = (EvalContext) initialContext0; boolean boolean0 = unionContext0.setPosition(1); assertEquals(2, initialContext0.getPosition()); assertTrue(boolean0); } @Test(timeout = 4000) public void test09() throws Throwable { Object object0 = new Object(); JXPathContextReferenceImpl jXPathContextReferenceImpl0 = (JXPathContextReferenceImpl)JXPathContext.newContext(object0); InitialContext initialContext0 = (InitialContext)jXPathContextReferenceImpl0.getAbsoluteRootContext(); EvalContext[] evalContextArray0 = new EvalContext[6]; evalContextArray0[0] = (EvalContext) initialContext0; evalContextArray0[1] = (EvalContext) initialContext0; evalContextArray0[2] = (EvalContext) initialContext0; evalContextArray0[3] = (EvalContext) initialContext0; UnionContext unionContext0 = new UnionContext(initialContext0, evalContextArray0); evalContextArray0[4] = (EvalContext) unionContext0; // Undeclared exception! // try { unionContext0.setPosition(1); // fail("Expecting exception: NullPointerException"); // } catch(NullPointerException e) { // // // // no message in exception (getMessage() returned null) // // // } } @Test(timeout = 4000) public void test10() throws Throwable { Object object0 = new Object(); JXPathContextReferenceImpl jXPathContextReferenceImpl0 = (JXPathContextReferenceImpl)JXPathContext.newContext(object0); InitialContext initialContext0 = (InitialContext)jXPathContextReferenceImpl0.getAbsoluteRootContext(); EvalContext[] evalContextArray0 = new EvalContext[6]; UnionContext unionContext0 = new UnionContext(initialContext0, evalContextArray0); int int0 = unionContext0.getDocumentOrder(); assertEquals(1, int0); } @Test(timeout = 4000) public void test11() throws Throwable { EvalContext[] evalContextArray0 = new EvalContext[0]; UnionContext unionContext0 = new UnionContext((EvalContext) null, evalContextArray0); int int0 = unionContext0.getDocumentOrder(); assertEquals(0, int0); } }
[ "pouria.derakhshanfar@gmail.com" ]
pouria.derakhshanfar@gmail.com
73bf85c15a8ae1bdadb5864c6d8ba1645cbf54e2
f051ee9d89950383a842a6e2094083f6b4b8b316
/Lecture/Java/Work/javaApplication/src/main/java/java13/st4emp/EmployeeTest.java
dba66063d318052b6b668fd3aef7b301465ae6b3
[]
no_license
BBongR/workspace
6d3b5c5a05bee75c031a80b971c859b6749e541e
2f020cd7809e28a2cae0199cac59375d407f58cf
refs/heads/master
2021-09-13T14:49:51.825677
2018-02-07T09:18:40
2018-02-07T09:18:40
106,399,804
0
0
null
null
null
null
UTF-8
Java
false
false
1,511
java
package java13.st4emp; import java.util.Scanner; public class EmployeeTest { public static void main(String[] args) { Scanner keyboard = new Scanner(System.in); // setter 이용 /* Employee employeessetter = new Employee(); for (int i = 0; i < 3; i = i + 1) { System.out.print("이름: "); String name = keyboard.next(); System.out.print("주소: "); String address = keyboard.next(); System.out.print("월급: "); int salary = keyboard.nextInt(); System.out.print("주민: "); String rrm = keyboard.next(); employeessetter.setName(name); employeessetter.setAddress(address); employeessetter.setSalary(salary); employeessetter.setRrm(rrm); System.out.println(employeessetter.toString()); }*/ // 배열 생성자 이용 Employee[] employees = new Employee[3]; for (int i = 0; i < employees.length; i = i + 1) { System.out.print("이름: "); String name = keyboard.next(); System.out.print("주소: "); String address = keyboard.next(); System.out.print("월급: "); int salary = keyboard.nextInt(); System.out.print("주민: "); String rrm = keyboard.next(); Employee emp1 = new Employee(name, address, salary, rrm); employees[i] = emp1; // employees[i] = new Employee(name, address, salary, rrm); // System.out.println(employees[i].toString()); } // for-each문으로 출력 for (Employee j : employees) System.out.println(j); keyboard.close(); } }
[ "suv1214@naver.com" ]
suv1214@naver.com
755073ea814e383e32b388e58cfe388ee0621f54
fd3e4cc20a58c2a46892b3a38b96d5e2303266d8
/src/main/java/com/autonavi/amap/mapcore2d/IPoint.java
f32823a99a238e4f68a8f989214d16065e893acf
[]
no_license
makewheels/AnalyzeBusDex
42ef50f575779b66bd659c096c57f94dca809050
3cb818d981c7bc32c3cbd8c046aa78cd38b20e8a
refs/heads/master
2021-10-22T07:16:40.087139
2019-03-09T03:11:05
2019-03-09T03:11:05
173,123,231
0
0
null
null
null
null
UTF-8
Java
false
false
266
java
package com.autonavi.amap.mapcore2d; public class IPoint { /* renamed from: x */ public int f3652x; /* renamed from: y */ public int f3653y; public IPoint(int i, int i2) { this.f3652x = i; this.f3653y = i2; } }
[ "spring@qbserver.cn" ]
spring@qbserver.cn
f721afe8f59cb985d63e4e76237218f4bb4f0d83
5e5170e4e19e6a50bea122b3c79497dd152229ca
/java_courses2/src/al223jw_assign2/Exersise4/QueueTest.java
6c81c654abf2a60878afb411450c2ed009a5fe65
[]
no_license
al223jw/2dv600
0d11b5fe3ec2ae206f4e60a0ef99c0c2a2d19a43
b89b32771c8364880f15d96b1bc99841768cda57
refs/heads/master
2021-01-12T12:21:07.760347
2016-10-31T15:53:06
2016-10-31T15:53:06
72,451,738
0
0
null
null
null
null
UTF-8
Java
false
false
2,930
java
package al223jw_assign2.Exersise4; import junit.framework.TestCase; public class QueueTest extends TestCase { public void testEnqueue(){ Queue<Integer> bigQueue = build(1000000); assertEquals(1000000, bigQueue.size()); bigQueue.enqueue(1000000); assertEquals(1000001,bigQueue.size()); } public void testDequeue(){ Queue<Integer> bigQueue = build(1000000); assertEquals(1000000, bigQueue.size()); assertTrue(bigQueue.dequeue() == 0); for(Object val : bigQueue){ assertNotSame (0, val); } for(int i = 1; i < 1000000; i++){ assertTrue(i == bigQueue.dequeue()); } assertTrue(bigQueue.isEmpty()); //Should throw IndexOutOfBoundsException. try{ bigQueue.dequeue(); fail("Should throw IndexOutOfBoundsException!"); }catch (IndexOutOfBoundsException e) { assertTrue(true); } } public void testSize(){ Queue<Integer> q1 = build(0); Queue<Integer> q2 = build(100000); Queue<String> q3 = new Queue<>(); assertEquals(0, q1.size()); assertEquals(100000, q2.size()); q3.enqueue("1"); q3.enqueue("5"); assertEquals(2, q3.size()); } public void testIsEmpty(){ Queue<Integer> q1 = build(0); Queue<Integer> q2 = build(100); assertTrue(q1.isEmpty()); assertTrue(!q2.isEmpty()); } public void testFirst(){ Queue<String> q1 = new Queue<>(); Queue<String> q2 = new Queue<>(); //Add four elements to queue 1. q1.enqueue("1st Element in"); q1.enqueue("2nd Element in"); q1.enqueue("3rd Element in"); q1.enqueue("4th Element in"); assertEquals("1st Element in", q1.first()); //The head should be the first element sent in. try { q2.first(); fail("Should throw IndexOutOfBoundsException!"); } catch (IndexOutOfBoundsException e) { assertTrue(true); } } public void testLast(){ Queue<String> q1 = new Queue<>(); Queue<String> q2 = new Queue<>(); //Add four elements to queue 1. q1.enqueue("1st Element in"); q1.enqueue("2nd Element in"); q1.enqueue("3rd Element in"); q1.enqueue("4th Element in"); assertEquals("4th Element in", q1.last()); //The tail should be the last element sent in. try { q2.last(); fail("Should throw IndexOutOfBoundsException!"); } catch (IndexOutOfBoundsException e) { assertTrue(true); } } // To easily make big Ques. private Queue<Integer> build(int size) { Queue<Integer> queue = new Queue<>(); for (int i = 0; i < size; i++) { queue.enqueue(i); } return queue; } }
[ "a223jw@student.lnu.se" ]
a223jw@student.lnu.se
bf0f5da570d47046e173c51a673673b333792979
5c0932475eac84b9ada6cfcd79a0b5e197d0bc6c
/app/src/main/java/com/ttdevs/demo/MainActivity.java
2c779d3aed26d3e6cf72648862a41425dde01aba
[ "MIT" ]
permissive
stevezhouht/FloatLog
c49674b16d4d2f1fd685aa5afce31632d5cd9153
0c48f5addfb53660cbfa61c4fd81f68968be25ce
refs/heads/master
2020-03-27T12:54:08.331832
2018-08-29T08:35:41
2018-08-29T08:35:41
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,436
java
package com.ttdevs.demo; import android.content.Intent; import android.os.Handler; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.CompoundButton; import android.widget.ToggleButton; import com.ttdevs.floatlog.FloatLog; /** * @author ttdevs */ public class MainActivity extends AppCompatActivity implements View.OnClickListener, CompoundButton.OnCheckedChangeListener, Runnable { public static final int REPEAT_INTERVAL = 2000; private ToggleButton tbOperate; private Handler mHandler = new Handler(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); tbOperate = findViewById(R.id.tb_operate); tbOperate.setOnCheckedChangeListener(this); mHandler.postDelayed(this, REPEAT_INTERVAL); } @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { if (isChecked) { FloatLog.showWindow(); } else { FloatLog.dismissWindow(); } } @Override public void run() { System.out.println(">>>>>" + System.currentTimeMillis()); mHandler.postDelayed(this, REPEAT_INTERVAL); } @Override public void onClick(View v) { startActivity(new Intent(this, SecondActivity.class)); } }
[ "ttdevs@gmail.com" ]
ttdevs@gmail.com
93cbdfa31714a736328a7a36c393a1d937fb1443
e0197fdadad5205f402151a5dabb070d053e60a5
/public-service/upload-nettyTask/src/main/java/io/hc/service/nettyTask/entity/TaskStatusInfoResult.java
371c6dfe10cb7effa079e0b4a1d3bf0af325fc62
[]
no_license
hejunling/netty
e9f1f44fc4fb37c13c7d00b9aed155ce5716d95c
9b84ce1bc5487db10db0da3227058512b6227826
refs/heads/master
2020-12-30T14:33:39.996042
2017-05-15T09:51:04
2017-05-15T09:51:04
91,321,076
1
0
null
null
null
null
UTF-8
Java
false
false
618
java
package io.hc.service.nettyTask.entity; import org.springframework.jdbc.core.RowMapper; import java.sql.ResultSet; import java.sql.SQLException; /** * 任务状态信息数据映射 * * @author hechuan * * @created 2017年4月12日 * * @since UPLOAD-3.0.0 */ public class TaskStatusInfoResult implements RowMapper<TaskStatusInfo> { @Override public TaskStatusInfo mapRow(ResultSet rs, int rowNum) throws SQLException { TaskStatusInfo statusInfo = new TaskStatusInfo(); statusInfo.setComputeNum(rs.getInt("compute_num")); statusInfo.setTaskNum(rs.getLong("task_num")); return statusInfo; } }
[ "hechuan@51tuodao.com" ]
hechuan@51tuodao.com
c385cd377034c24d904fff8ce1ef4e88cef25aa1
8ac37716960bb48ff9b1bcd32e715f9b10e9bdd2
/Bohnanza/src/client/AccountSettingsController.java
d9fb30b5a2eef132cfde5dd9ad5844c2c1fa7875
[]
no_license
Dania94/Bohnanza_Game
ab07026ecd1ff0d6f4d50ebb5a2848bfe70259b7
d713c1f30cde71c870a41be4a921fa153de33afb
refs/heads/master
2020-06-22T18:25:12.998100
2019-07-19T12:47:39
2019-07-19T12:47:39
197,770,604
0
1
null
null
null
null
UTF-8
Java
false
false
1,425
java
package client; import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.scene.control.Button; /** * * * Diese Klasse ist die Controller-Klasse des Fensters "Account Settings". * * */ public class AccountSettingsController implements SetterInterface { @FXML private Button changePasswordButton; @FXML private Button deleteButton; @FXML private Button accountCancelButton; private Updater updater; /** * Diese Methode wird aufgerufen, wenn der Button "Passwort aendern" geklickt * wurde. Der Dialog "Passwort aendern" wird angezeigt. * * @param event * */ @FXML void changePasswordButtonClicked(ActionEvent event) { updater.guiChange(changePasswordButton, Updater.CHANGE_PASSWORD); } /** * Diese Methode wird aufgerufen, wenn der Button "Account loeschen" geklickt * wurde. Der Dialog "Account loeschen" wird angezeigt. * * @param event * */ @FXML void deleteButtonClicked(ActionEvent event) { updater.guiChange(deleteButton, Updater.DELETE_ACCOUNT); } /** * Diese Methode wird aufgerufen, wenn der Button "Abbrechen" geklickt wurde. * Der Vorgang wird abgebrochen und der Nutzer zurueck in die Lobby bewegt. * * @param event * */ @FXML void cancelButtonClicked(ActionEvent event) { updater.guiChange(accountCancelButton, Updater.LOBBY); } @Override public void setClient(Client client) { this.updater = client.getUpdater(); } }
[ "dania.madani94@gmail.com" ]
dania.madani94@gmail.com
7dbd773c73ae6d666d2142f7a129ac776bcbcf21
87b132cd03ad939fac9b29f4c0ee8c71ec4e5eca
/src/models/CategoriaProdutoModel.java
ebaaaa98e08ed45d2c2cbf87844a2e79dc3e988d
[]
no_license
thiersfb/curso-java-web
1ce708eef35469d8549469d6f38f2e91796828c6
430f3b2382855a903fb862da1bac81ce801a79b3
refs/heads/master
2023-03-01T01:05:44.528483
2021-02-04T00:15:47
2021-02-04T00:15:47
335,790,482
0
0
null
null
null
null
UTF-8
Java
false
false
331
java
package models; public class CategoriaProdutoModel { private Long id; private String descricao; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getDescricao() { return descricao; } public void setDescricao(String descricao) { this.descricao = descricao; } }
[ "thiers.fb@gmail.com" ]
thiers.fb@gmail.com
28d52a312a442fa89ff25513a8d4fccce26e5170
1ad3619138ad786bc966f623de04e640d6fda5f8
/bos-parent/bos-web/src/main/java/cn/itcast/bos/web/action/auth/FunctionAction.java
a658c507d051bfc74bdd97225b95ff04c477c6c6
[]
no_license
bobwang1941/bos
643c75441892de98b8c8d20879475261bbd58476
891ca62562bf8cb2f52f911ca10c9525273e48d9
refs/heads/master
2021-01-20T06:17:39.255110
2017-04-30T15:58:40
2017-04-30T15:58:40
89,860,779
0
0
null
null
null
null
UTF-8
Java
false
false
3,193
java
package cn.itcast.bos.web.action.auth; import java.util.List; import java.util.Set; import org.apache.shiro.SecurityUtils; import org.apache.shiro.subject.Subject; import org.apache.struts2.convention.annotation.Action; import org.apache.struts2.convention.annotation.Namespace; import org.apache.struts2.convention.annotation.ParentPackage; import org.apache.struts2.convention.annotation.Result; import org.springframework.context.annotation.Scope; import org.springframework.data.domain.Page; import org.springframework.stereotype.Controller; import cn.itcast.bos.domain.auth.Function; import cn.itcast.bos.domain.auth.Role; import cn.itcast.bos.domain.user.User; import cn.itcast.bos.web.action.base.BaseAction; @SuppressWarnings("all") @Controller("functionAction") @Scope("prototype") @Namespace("/auth") @ParentPackage("bos") public class FunctionAction extends BaseAction<Function> { //权限管理,通过查询用户本省角色来动态显示,用户所拥有的权限 @Action(value = "functionAction_findFunctionById", results = { @Result(name = "findFunctionById", type = "json") }) public String findFunctionById() { try { Subject sub = SecurityUtils.getSubject(); User user = (User) sub.getPrincipal(); //通过用户找到角色 List<Function> list = serviceFacade.getFunctionService().findFunctionById(user); push(list); } catch (Exception e) { } return "findFunctionById"; } @Action(value = "functionAction_add", results = { @Result(name = "add" ,location="/WEB-INF/pages/admin/function.jsp") }) public String add() { //由于ognl表达式需要从传回的数据中拿到id但是对象中存在连个function //为了去别父类function采用 try { Function function = new Function(); String id = getParameter("parentId"); function.setId(id); model.setFunction(function); serviceFacade.getFunctionService().add(model); } catch (Exception e) { e.printStackTrace(); } return "add"; } //父节点查询 @Action(value = "functionAction_ajaxList", results = { @Result(name = "ajaxList", type = "json") }) public String ajaxList() { try { List<Function> functions = serviceFacade.getFunctionService().ajaxList(); push(functions); } catch (Exception e) { } return "ajaxList"; } // 定区关联取派员 显示所有取派员信息 @Action(value = "functionAction_pageQuery") public String pageQuery() { //function中已经含有了page元素,页面分页page传不过来 //手动拿到参数 int pageNum = Integer.parseInt(getParameter("page")); setPage(pageNum); Page<Function> pageData = serviceFacade.getFunctionService().pageQuery(getPageRequest()); setPageData(pageData); return "pageQuery"; } // 取派员添加 // @Action(value = "staffAction_save", results = { @Result(name = "save", location = "/WEB-INF/pages/base/staff.jsp") }) // public String save() { // try { // serviceFacade.getStaffService().save(model); // } catch (Exception e) { // e.printStackTrace(); // } // return "save"; // } // }
[ "1753335364@qq.com" ]
1753335364@qq.com
3ed9065b6375af66b0934eafaef2ed912cdfb166
8e239e9de0e4f9b881291524275b8e09e286b676
/app/src/test/java/com/mogli/coronavirustracker/ExampleUnitTest.java
7f4680be1cab5db1037698800cc84d377bdabd40
[]
no_license
mogli5/CoronaVirusTracker
3573b245459403dc2ad45a077577dfe90c43d23e
730e461e84b5f906aaa03a657552bf3096af5235
refs/heads/master
2021-04-16T08:21:35.167616
2020-05-01T15:36:57
2020-05-01T15:36:57
249,337,339
0
0
null
null
null
null
UTF-8
Java
false
false
389
java
package com.mogli.coronavirustracker; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition_isCorrect() { assertEquals(4, 2 + 2); } }
[ "sbhavnish@gmail.com" ]
sbhavnish@gmail.com
30e1e3a98f63bce45e5b4ebfd942754363010bea
b7d900ab037014eb65f638793c40b62778be7ef9
/src/com/class17/StringBuilderVSString.java
e0719a37b192c1a487c31426a61c7c882c5e61d7
[]
no_license
Hussein1364/JavaClass
84f3750d974401425018e62bd4690e2d3c61f8c4
0475f62d11b4d7e7ae22a4027c97693f9b8fc33e
refs/heads/main
2023-03-22T22:19:15.954075
2021-03-21T17:41:37
2021-03-21T17:41:37
346,564,785
0
0
null
null
null
null
UTF-8
Java
false
false
1,116
java
package com.class17; public class StringBuilderVSString { public static void main(String[] args) { // TODO Auto-generated method stub String var1="Ali"; String var2="Hassan"; String var3="Hussein"; String var4="Reza"; //String Builder class is faster and wont scan whole memory when wants to create new object. // If we already know that lost of our variable contain same value and memory utilization(consumption) os important then we //should use String class .. it will save a lot of memory but can be slow bcz every time we create a //variable all of the existing string object will be scanned \ //If speed is important and memory is not and String objects contain different values StringBuilder sb1=new StringBuilder("Ali"); StringBuilder sb2=new StringBuilder("Hassan"); StringBuilder sb3=new StringBuilder("Hussein"); StringBuilder sb4=new StringBuilder("Reza"); System.out.println(sb1.reverse()); // this method will convert String to StringBilder data type((data casting)) sb2.reverse(); var2=sb2.toString(); System.out.println(var2); } }
[ "mihome630@gmail.com" ]
mihome630@gmail.com
b1fb27bb726be7855356385150a01e76cf003441
0da18889e0ff8c6dd87baf1d684acf22b1067986
/src/main/java/decorator/new2/crypto/CryptoStream.java
1e2a9a6f1d473fa33d8c2b40e797304750fd8565
[]
no_license
YueJZJM/DesignPattern
d2d5da737b213d0db6b22f7f5f96444c77ef5d61
bc30d391af33272c89495b154f504217948a951a
refs/heads/master
2022-11-13T15:58:55.964266
2020-06-27T14:29:14
2020-06-27T14:29:14
271,571,406
0
0
null
null
null
null
UTF-8
Java
false
false
515
java
package decorator.new2.crypto; import decorator.new2.IStream; public class CryptoStream extends DecoratorStream { public CryptoStream(IStream stream) { super(stream); } @Override public void write(char data) { // 加密操作 super.write(data); } @Override public void read(int number) { //加密操作 super.read(number); } @Override public void seek(int position) { //加密操作 super.seek(position); } }
[ "yuejzhfut@163.com" ]
yuejzhfut@163.com
bff48ec4eb3cfeb162994497c3c3d2de37e6aaf1
d245254a501847e2189e2aa52559aba512a02ea5
/app/src/main/java/com/example/demo/UpdateProductDetails.java
b5949da50c47862313c70104ea4054b8fa2f6949
[]
no_license
magegs/My-MiniProject
365d04ea6d1e84e95ad3f17863e9b683676dd786
49c94e4fcf5204eb7fb690b326dcf16afc4c6caa
refs/heads/master
2023-01-24T14:02:08.556553
2020-11-29T20:17:18
2020-11-29T20:17:18
310,593,409
0
0
null
null
null
null
UTF-8
Java
false
false
8,911
java
package com.example.demo; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.text.TextUtils; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import com.google.android.gms.tasks.OnCompleteListener; import com.google.android.gms.tasks.Task; import com.google.firebase.database.DataSnapshot; import com.google.firebase.database.DatabaseError; import com.google.firebase.database.DatabaseReference; import com.google.firebase.database.FirebaseDatabase; import com.google.firebase.database.ValueEventListener; import com.squareup.picasso.Picasso; import Model.Products; public class UpdateProductDetails extends AppCompatActivity { private TextView proname,proprice,prostock; private EditText stock,price; private ImageView proimage; private String proid=""; private Button block,delete,stock_btn,price_btn; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_update_product_details); proid=getIntent().getStringExtra("pro_id"); stock=(EditText)findViewById(R.id.edit_stock); price=(EditText)findViewById(R.id.edit_price); proname=(TextView)findViewById(R.id.update_proname); proprice=(TextView)findViewById(R.id.update_price); prostock=(TextView)findViewById(R.id.update_stock); proimage=(ImageView)findViewById(R.id.update_productimage); block=(Button)findViewById(R.id.pro_block); delete=(Button)findViewById(R.id.pro_delete); stock_btn=(Button)findViewById(R.id.updatestock_btn); price_btn=(Button)findViewById(R.id.updateprice_btn); delete.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { DatabaseReference proref = FirebaseDatabase.getInstance().getReference().child("Products").child(proid); proref.removeValue().addOnCompleteListener(new OnCompleteListener<Void>() { @Override public void onComplete(@NonNull Task<Void> task) { Toast.makeText(getApplicationContext(), "Product has been Deleted...", Toast.LENGTH_SHORT).show(); } }); } }); block.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { final DatabaseReference proref= FirebaseDatabase.getInstance().getReference().child("Products").child(proid); proref.addListenerForSingleValueEvent(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot dataSnapshot) { if(dataSnapshot.exists()) { Products products=dataSnapshot.getValue(Products.class); if(products.getStatus().equals("ACTIVE")) { proref.child("status").setValue("BLOCK").addOnCompleteListener(new OnCompleteListener<Void>() { @Override public void onComplete(@NonNull Task<Void> task) { Toast.makeText(getApplicationContext(), "Product has been Blocked...", Toast.LENGTH_SHORT).show(); } }); } if(products.getStatus().equals("BLOCK")) { proref.child("status").setValue("ACTIVE").addOnCompleteListener(new OnCompleteListener<Void>() { @Override public void onComplete(@NonNull Task<Void> task) { Toast.makeText(getApplicationContext(), "Product has been UNBlocked...", Toast.LENGTH_SHORT).show(); } }); } } } @Override public void onCancelled(@NonNull DatabaseError databaseError) { } }); } }); price_btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { String updateprice = price.getText().toString(); if (TextUtils.isEmpty(updateprice)) { Toast.makeText(getApplicationContext(), "Enter the Values...", Toast.LENGTH_SHORT).show(); } else{ DatabaseReference proref = FirebaseDatabase.getInstance().getReference().child("Products").child(proid); proref.child("Product_price").setValue(updateprice).addOnCompleteListener(new OnCompleteListener<Void>() { @Override public void onComplete(@NonNull Task<Void> task) { Toast.makeText(getApplicationContext(), "Updated Successfully", Toast.LENGTH_LONG).show(); } }); } } }); stock_btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { String updatestock = stock.getText().toString(); if (TextUtils.isEmpty(updatestock)) { Toast.makeText(getApplicationContext(), "Enter the Values...", Toast.LENGTH_SHORT).show(); } else{ DatabaseReference proref = FirebaseDatabase.getInstance().getReference().child("Products").child(proid); proref.addListenerForSingleValueEvent(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot dataSnapshot) { if (dataSnapshot.exists()) { final String currentstock = dataSnapshot.child("Stock").getValue().toString(); int a = Integer.parseInt(currentstock); String addstock = stock.getText().toString(); int b = Integer.parseInt(addstock); final int c = a + b; String updatestock = String.valueOf(c); DatabaseReference proref = FirebaseDatabase.getInstance().getReference().child("Products").child(proid); proref.child("Stock").setValue(updatestock).addOnCompleteListener(new OnCompleteListener<Void>() { @Override public void onComplete(@NonNull Task<Void> task) { Toast.makeText(getApplicationContext(), "Updated Successfully", Toast.LENGTH_LONG).show(); } }); } } @Override public void onCancelled(@NonNull DatabaseError databaseError) { } }); } } }); getProductDetails(proid); } private void getProductDetails(String proid) { DatabaseReference proref= FirebaseDatabase.getInstance().getReference().child("Products"); proref.child(proid).addValueEventListener(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot dataSnapshot) { if(dataSnapshot.exists()) { Products products=dataSnapshot.getValue(Products.class); proname.setText(products.getProduct_Name()); proprice.setText(products.getProduct_price()); prostock.setText(products.getStock()); Picasso.get().load(products.getProduct_Image()).into(proimage); if(products.getStatus().equals("ACTIVE")) { block.setText("BLOCK"); } if(products.getStatus().equals("BLOCK")) { block.setText("UNBLOCK"); } } } @Override public void onCancelled(@NonNull DatabaseError databaseError) { } }); } }
[ "gsmagendran405@gmail.com" ]
gsmagendran405@gmail.com