blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
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
689M
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
131 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
32 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
313
3ceb828f64d463233cb07508b8a36fa86d3a021a
ef1473b03744a3c3eee56187b4e9ecb49aeddc11
/tp1basics/src/test/java/com/formation/customer/service/CalculatorMockTest.java
acf0e3fed289cc0467183f44ceeb9d031d2ff9ee
[]
no_license
sanogotech/tpformationjunit
8ba2f25323043a649335c6274a4d1f8ca6f25881
da8012f966368432f3a33e6c610c8da42ecaf10c
refs/heads/master
2022-10-28T21:38:45.829123
2020-06-12T14:42:15
2020-06-12T14:42:15
271,246,083
0
0
null
null
null
null
UTF-8
Java
false
false
1,453
java
package com.formation.customer.service; import static org.mockito.ArgumentMatchers.any; //BDD import static org.mockito.BDDMockito.*; //Mockito import static org.mockito.Mockito.when; import java.util.Optional; import static org.mockito.Mockito.atLeast; import static org.mockito.Mockito.doReturn; import static org.mockito.Mockito.verify; import org.mockito.Mock; import org.mockito.InjectMocks; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.junit.jupiter.MockitoExtension; import com.formation.customer.repository.ApiCalculatorRepository; @ExtendWith(MockitoExtension.class) public class CalculatorMockTest { @Mock ApiCalculatorRepository apiCalculatorRepository; @InjectMocks Calculator calculator; @Test public void testAddDBData() { //Given //Init Data //BDD //given(apiCalculatorRepository.getX()).willReturn(18); //given(apiCalculatorRepository.getY()).willReturn(27); //When Call Mock when(apiCalculatorRepository.getX()).thenReturn(18); when(apiCalculatorRepository.getY()).thenReturn(27); //doReturn(27).when(apiCalculatorRepository).getY(); //When call service int resultActual = calculator.addDBdata(); //Then Verify verify(apiCalculatorRepository, atLeast(1)).getX(); //Then Assertions Assertions.assertEquals(45,resultActual , "18 + 27 should equal 45"); } }
[ "sanogotech@yahoo.fr" ]
sanogotech@yahoo.fr
6a59185b7c895f77ca80657045cb4c753f796948
afdee4355a5a884ca5c50f0ccc9fdeee25832c49
/src/org/omg/DynamicAny/DynValueCommonOperations.java
eef87ecb4c784c471f53c6723adc6b690c931f1e
[]
no_license
TheCodeYinChao/java-jdk
546b7afaec1f1761a1b4b3cf445493fe99d100d9
8908fd004c9273bd0293b7932b3a091e9a8e8fda
refs/heads/master
2021-07-23T15:34:56.731756
2021-03-31T11:43:37
2021-03-31T11:43:37
246,348,514
0
0
null
null
null
null
UTF-8
Java
false
false
1,099
java
package org.omg.DynamicAny; /** * org/omg/DynamicAny/DynValueCommonOperations.java . * Generated by the IDL-to-Java compiler (portable), version "3.2" * from c:/re/workspace/8-2-build-windows-amd64-cygwin/jdk8u144/9417/corba/src/share/classes/org/omg/DynamicAny/DynamicAny.idl * Friday, July 21, 2017 9:58:51 PM PDT */ /** * DynValueCommon provides operations supported by both the DynValue and DynValueBox interfaces. */ public interface DynValueCommonOperations extends DynAnyOperations { /** * Returns true if the DynValueCommon represents a null value type. */ boolean is_null(); /** * Changes the representation of a DynValueCommon to a null value type. */ void set_to_null(); /** * Replaces a null value type with a newly constructed value. Its components are initialized * to default values as in DynAnyFactory.create_dyn_any_from_type_code. * If the DynValueCommon represents a non-null value type, then this operation has no effect. */ void set_to_value(); } // interface DynValueCommonOperations
[ "292306404@qq.com" ]
292306404@qq.com
552aad7347ab18c034aea10456338a732ea7f0fd
7260adb2b3ca95713fb9c6f5ccc0d8db438c0ae1
/backend/src/main/java/com/auth0/flickr2/web/rest/errors/ErrorConstants.java
db83fe5d8a4128a2edcbbe28f2dbf71ff866810e
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
riyaz-programmer/mobile-jhipster
7550292f1411923ae00e738551a014ff8f06b3c4
005838f7f82a0dd5059e811d38f08fc7bfba70d3
refs/heads/main
2023-08-25T19:49:46.601726
2021-11-10T18:16:34
2021-11-10T18:16:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
589
java
package com.auth0.flickr2.web.rest.errors; import java.net.URI; public final class ErrorConstants { public static final String ERR_CONCURRENCY_FAILURE = "error.concurrencyFailure"; public static final String ERR_VALIDATION = "error.validation"; public static final String PROBLEM_BASE_URL = "https://www.jhipster.tech/problem"; public static final URI DEFAULT_TYPE = URI.create(PROBLEM_BASE_URL + "/problem-with-message"); public static final URI CONSTRAINT_VIOLATION_TYPE = URI.create(PROBLEM_BASE_URL + "/constraint-violation"); private ErrorConstants() {} }
[ "matt.raible@okta.com" ]
matt.raible@okta.com
75ca918d9857bc72152714e06b47d17459e3a895
1a02e137efa43bc4940026faf3aa85fcbdcd4f8c
/Spring Security/demo-security/src/main/java/nguyenduonghuy/demosecurity/service/UserService.java
927c924b5fa5a14bab611fb730e128899e0ed5b4
[]
no_license
duonghuy112/SpringBoots-Hibernate
c59e5689a1af7327aabd93546cd0fc611f1daf66
6819ca7cc9172456f3e91f13bfbef7f101602a29
refs/heads/main
2023-08-25T19:30:14.751118
2021-10-27T07:05:12
2021-10-27T07:05:12
368,442,596
0
0
null
null
null
null
UTF-8
Java
false
false
461
java
package nguyenduonghuy.demosecurity.service; import java.util.List; import nguyenduonghuy.demosecurity.dto.RoleDto; import nguyenduonghuy.demosecurity.dto.UserDto; import nguyenduonghuy.demosecurity.entities.Role; import nguyenduonghuy.demosecurity.entities.User; public interface UserService { UserDto save(User user); RoleDto save(Role role); void addRoleToUser(String username, String roleName); UserDto get(String username); List<UserDto> get(); }
[ "duoonghuy1123@gmail.com" ]
duoonghuy1123@gmail.com
37f470941b6937ace7e078d4ffd48c8371cdd91d
a0bfbedac2c7b9bfd40d152eeeedb6b9fac9233c
/fate/src/main/java/org/apache/accumulo/fate/zookeeper/ZooCache.java
32a60436f4bec22e5c0944fa8caac00d1ab9c217
[]
no_license
psiserver/accumulo-1.6.2
3535899c1afeb19f01bba4e1b095db6c5482de8f
93be98ceabdb5c5ee7b04c6391e68d0361168b59
refs/heads/master
2021-01-10T04:45:34.715954
2015-05-21T13:15:51
2015-05-21T13:15:51
36,014,863
0
0
null
null
null
null
UTF-8
Java
false
false
11,872
java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.accumulo.fate.zookeeper; import static com.google.common.base.Charsets.UTF_8; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.util.Collections; import java.util.ConcurrentModificationException; import java.util.HashMap; import java.util.Iterator; import java.util.List; import org.apache.log4j.Logger; import org.apache.zookeeper.KeeperException; import org.apache.zookeeper.KeeperException.Code; import org.apache.zookeeper.WatchedEvent; import org.apache.zookeeper.Watcher; import org.apache.zookeeper.ZooKeeper; import org.apache.zookeeper.data.Stat; import com.google.common.annotations.VisibleForTesting; /** * A cache for values stored in ZooKeeper. Values are kept up to date as they change. */ public class ZooCache { private static final Logger log = Logger.getLogger(ZooCache.class); private ZCacheWatcher watcher = new ZCacheWatcher(); private Watcher externalWatcher = null; private HashMap<String,byte[]> cache; private HashMap<String,Stat> statCache; private HashMap<String,List<String>> childrenCache; private ZooReader zReader; private ZooKeeper getZooKeeper() { return zReader.getZooKeeper(); } private class ZCacheWatcher implements Watcher { @Override public void process(WatchedEvent event) { if (log.isTraceEnabled()) log.trace(event); switch (event.getType()) { case NodeDataChanged: case NodeChildrenChanged: case NodeCreated: case NodeDeleted: remove(event.getPath()); break; case None: switch (event.getState()) { case Disconnected: if (log.isTraceEnabled()) log.trace("Zoo keeper connection disconnected, clearing cache"); clear(); break; case SyncConnected: break; case Expired: if (log.isTraceEnabled()) log.trace("Zoo keeper connection expired, clearing cache"); clear(); break; default: log.warn("Unhandled: " + event); } break; default: log.warn("Unhandled: " + event); } if (externalWatcher != null) { externalWatcher.process(event); } } } /** * Creates a new cache. * * @param zooKeepers * comma-separated list of ZooKeeper host[:port]s * @param sessionTimeout * ZooKeeper session timeout */ public ZooCache(String zooKeepers, int sessionTimeout) { this(zooKeepers, sessionTimeout, null); } /** * Creates a new cache. The given watcher is called whenever a watched node changes. * * @param zooKeepers * comma-separated list of ZooKeeper host[:port]s * @param sessionTimeout * ZooKeeper session timeout * @param watcher * watcher object */ public ZooCache(String zooKeepers, int sessionTimeout, Watcher watcher) { this(new ZooReader(zooKeepers, sessionTimeout), watcher); } /** * Creates a new cache. The given watcher is called whenever a watched node changes. * * @param reader * ZooKeeper reader * @param watcher * watcher object */ public ZooCache(ZooReader reader, Watcher watcher) { this.zReader = reader; this.cache = new HashMap<String,byte[]>(); this.statCache = new HashMap<String,Stat>(); this.childrenCache = new HashMap<String,List<String>>(); this.externalWatcher = watcher; } private interface ZooRunnable { /** * Runs an operation against ZooKeeper, automatically retrying in the face of KeeperExceptions */ void run(ZooKeeper zooKeeper) throws KeeperException, InterruptedException; } private synchronized void retry(ZooRunnable op) { int sleepTime = 100; while (true) { ZooKeeper zooKeeper = getZooKeeper(); try { op.run(zooKeeper); return; } catch (KeeperException e) { final Code code = e.code(); if (code == Code.NONODE) { log.error("Looked up non-existent node in cache " + e.getPath(), e); } else if (code == Code.CONNECTIONLOSS || code == Code.OPERATIONTIMEOUT || code == Code.SESSIONEXPIRED) { log.warn("Saw (possibly) transient exception communicating with ZooKeeper, will retry", e); } else { log.warn("Zookeeper error, will retry", e); } } catch (InterruptedException e) { log.info("Zookeeper error, will retry", e); } catch (ConcurrentModificationException e) { log.debug("Zookeeper was modified, will retry"); } try { // do not hold lock while sleeping wait(sleepTime); } catch (InterruptedException e) { log.info("Interrupted waiting before retrying ZooKeeper operation", e); } if (sleepTime < 10000) sleepTime = (int) (sleepTime + sleepTime * Math.random()); } } /** * Gets the children of the given node. A watch is established by this call. * * @param zPath * path of node * @return children list, or null if node has no children or does not exist */ public synchronized List<String> getChildren(final String zPath) { ZooRunnable zr = new ZooRunnable() { @Override public void run(ZooKeeper zooKeeper) throws KeeperException, InterruptedException { if (childrenCache.containsKey(zPath)) return; try { List<String> children = zooKeeper.getChildren(zPath, watcher); childrenCache.put(zPath, children); } catch (KeeperException ke) { if (ke.code() != Code.NONODE) { throw ke; } } } }; retry(zr); List<String> children = childrenCache.get(zPath); if (children == null) { return null; } return Collections.unmodifiableList(children); } /** * Gets data at the given path. Status information is not returned. A watch is established by this call. * * @param zPath * path to get * @return path data, or null if non-existent */ public synchronized byte[] get(final String zPath) { return get(zPath, null); } /** * Gets data at the given path, filling status information into the given <code>Stat</code> object. A watch is established by this call. * * @param zPath * path to get * @param stat * status object to populate * @return path data, or null if non-existent */ public synchronized byte[] get(final String zPath, Stat stat) { ZooRunnable zr = new ZooRunnable() { @Override public void run(ZooKeeper zooKeeper) throws KeeperException, InterruptedException { if (cache.containsKey(zPath)) return; /* * The following call to exists() is important, since we are caching that a node does not exist. Once the node comes into existence, it will be added to * the cache. But this notification of a node coming into existence will only be given if exists() was previously called. * * If the call to exists() is bypassed and only getData() is called with a special case that looks for Code.NONODE in the KeeperException, then * non-existence can not be cached. */ Stat stat = zooKeeper.exists(zPath, watcher); byte[] data = null; if (stat == null) { if (log.isTraceEnabled()) log.trace("zookeeper did not contain " + zPath); } else { try { data = zooKeeper.getData(zPath, watcher, stat); } catch (KeeperException.BadVersionException e1) { throw new ConcurrentModificationException(); } catch (KeeperException.NoNodeException e2) { throw new ConcurrentModificationException(); } if (log.isTraceEnabled()) log.trace("zookeeper contained " + zPath + " " + (data == null ? null : new String(data, UTF_8))); } if (log.isTraceEnabled()) log.trace("putting " + zPath + " " + (data == null ? null : new String(data, UTF_8)) + " in cache"); put(zPath, data, stat); } }; retry(zr); if (stat != null) { Stat cstat = statCache.get(zPath); if (cstat != null) { try { ByteArrayOutputStream baos = new ByteArrayOutputStream(); DataOutputStream dos = new DataOutputStream(baos); cstat.write(dos); dos.close(); ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray()); DataInputStream dis = new DataInputStream(bais); stat.readFields(dis); dis.close(); } catch (IOException e) { throw new RuntimeException(e); } } } return cache.get(zPath); } private synchronized void put(String zPath, byte[] data, Stat stat) { cache.put(zPath, data); statCache.put(zPath, stat); } private synchronized void remove(String zPath) { if (log.isTraceEnabled()) log.trace("removing " + zPath + " from cache"); cache.remove(zPath); childrenCache.remove(zPath); statCache.remove(zPath); } /** * Clears this cache. */ public synchronized void clear() { cache.clear(); childrenCache.clear(); statCache.clear(); } /** * Checks if a data value (or lack of one) is cached. * * @param zPath * path of node * @return true if data value is cached */ @VisibleForTesting synchronized boolean dataCached(String zPath) { return cache.containsKey(zPath); } /** * Checks if children of a node (or lack of them) are cached. * * @param zPath * path of node * @return true if children are cached */ @VisibleForTesting synchronized boolean childrenCached(String zPath) { return childrenCache.containsKey(zPath); } /** * Clears this cache of all information about nodes rooted at the given path. * * @param zPath * path of top node */ public synchronized void clear(String zPath) { for (Iterator<String> i = cache.keySet().iterator(); i.hasNext();) { String path = i.next(); if (path.startsWith(zPath)) i.remove(); } for (Iterator<String> i = childrenCache.keySet().iterator(); i.hasNext();) { String path = i.next(); if (path.startsWith(zPath)) i.remove(); } for (Iterator<String> i = statCache.keySet().iterator(); i.hasNext();) { String path = i.next(); if (path.startsWith(zPath)) i.remove(); } } private static ZooCacheFactory zcf = new ZooCacheFactory(); /** * @deprecated Use {@link ZooCacheFactory} instead. */ @Deprecated public static synchronized ZooCache getInstance(String zooKeepers, int sessionTimeout) { return zcf.getZooCache(zooKeepers, sessionTimeout); } }
[ "sbennur@parasoft.com" ]
sbennur@parasoft.com
da49256212c8f384d6cde1aef310b79741eaa550
11273a97be23a939edb0ab0dfa72a188b066d38f
/plugin/sar.drone/src-gen/sar/drone/drn/DepYZ_IMPL.java
1282b11e5f8985da8ab3ecaf7b9c3d2460d9b7de
[]
no_license
Ppanganiban/idmDrone
d8ba29dfafa27a380c09f1c9536a9d85ab89e073
5a6f229da02bafbda8459f9ef653e0db3f018eea
refs/heads/master
2021-05-01T06:41:55.705453
2017-01-18T16:54:34
2017-01-18T16:54:34
74,028,860
0
0
null
null
null
null
UTF-8
Java
false
false
2,117
java
/** * generated by Xtext 2.10.0 */ package sar.drone.drn; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Dep YZ IMPL</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link sar.drone.drn.DepYZ_IMPL#getName <em>Name</em>}</li> * <li>{@link sar.drone.drn.DepYZ_IMPL#getTempsCST <em>Temps CST</em>}</li> * </ul> * * @see sar.drone.drn.DrnPackage#getDepYZ_IMPL() * @model * @generated */ public interface DepYZ_IMPL extends Movement { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see sar.drone.drn.DrnPackage#getDepYZ_IMPL_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link sar.drone.drn.DepYZ_IMPL#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Temps CST</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Temps CST</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Temps CST</em>' attribute. * @see #setTempsCST(int) * @see sar.drone.drn.DrnPackage#getDepYZ_IMPL_TempsCST() * @model * @generated */ int getTempsCST(); /** * Sets the value of the '{@link sar.drone.drn.DepYZ_IMPL#getTempsCST <em>Temps CST</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Temps CST</em>' attribute. * @see #getTempsCST() * @generated */ void setTempsCST(int value); } // DepYZ_IMPL
[ "ps.panganiban@gmail.com" ]
ps.panganiban@gmail.com
5829585c479cd5c908324aefa5676db26475ee88
c701b7176d307dd4d376c4db9f17b35dbbbb5815
/app/src/main/java/com/resultier/crux/adapter/QuestionAdapter.java
b29f24ad19abc990f2908c07b8d2b39925c2e331
[]
no_license
kammy92/MicroSurvey
6aa140e72267dada9014d7235aa826e484c72f18
ded211dce18bc789aeaf6e8334cb95ef9840179a
refs/heads/master
2020-04-23T21:31:44.490221
2019-06-13T12:52:03
2019-06-13T12:52:03
171,473,022
0
0
null
null
null
null
UTF-8
Java
false
false
20,506
java
package com.resultier.crux.adapter; import android.app.Activity; import android.app.ProgressDialog; import android.support.v7.widget.RecyclerView; import android.text.Editable; import android.text.InputType; import android.text.TextWatcher; import android.util.TypedValue; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.CheckBox; import android.widget.CompoundButton; import android.widget.EditText; import android.widget.LinearLayout; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.RatingBar; import android.widget.TextView; import com.resultier.crux.R; import com.resultier.crux.activity.SurveyActivity; import com.resultier.crux.helper.DatabaseHandler; import com.resultier.crux.listeners.OnItemClickListener; import com.resultier.crux.models.Option; import com.resultier.crux.models.Question; import com.resultier.crux.utils.AppConfigTags; import com.resultier.crux.utils.SetTypeFace; import com.resultier.crux.utils.Utils; import com.warkiz.widget.IndicatorSeekBar; import com.warkiz.widget.OnSeekChangeListener; import com.warkiz.widget.SeekParams; import java.util.ArrayList; public class QuestionAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> { OnItemClickListener mItemClickListener; SurveyActivity surveyActivity; ProgressDialog progressDialog; DatabaseHandler db; int survey_id = 0; int group_id = 0; int assignment_id = 0; private Activity activity; private ArrayList<Question> questionList = new ArrayList<> (); public QuestionAdapter (Activity activity, ArrayList<Question> questionList, int survey_id, int group_id, int assignment_id) { this.activity = activity; this.questionList = questionList; this.survey_id = survey_id; this.group_id = group_id; this.assignment_id = assignment_id; surveyActivity = (SurveyActivity) activity; db = new DatabaseHandler (activity); } @Override public int getItemViewType (int position) { Question question = questionList.get (position); switch (question.getType ()) { case AppConfigTags.TYPE_INPUT: return 1; case AppConfigTags.TYPE_RADIO: return 2; case AppConfigTags.TYPE_CHECKBOX: return 3; case AppConfigTags.TYPE_RATING: return 4; case AppConfigTags.TYPE_SLIDER: return 5; default: return 0; } } @Override public RecyclerView.ViewHolder onCreateViewHolder (ViewGroup parent, int viewType) { final LayoutInflater mInflater = LayoutInflater.from (parent.getContext ()); final View sView; switch (viewType) { case 1: sView = mInflater.inflate (R.layout.question_type_input, parent, false); return new ViewHolder1 (sView); case 2: sView = mInflater.inflate (R.layout.question_type_radio, parent, false); return new ViewHolder2 (sView); case 3: sView = mInflater.inflate (R.layout.question_type_checkbox, parent, false); return new ViewHolder3 (sView); case 4: sView = mInflater.inflate (R.layout.question_type_rating, parent, false); return new ViewHolder4 (sView); case 5: sView = mInflater.inflate (R.layout.question_type_slider, parent, false); return new ViewHolder5 (sView); default: sView = mInflater.inflate (R.layout.question_type_plain_text, parent, false); return new com.resultier.crux.adapter.QuestionAdapter.ViewHolder3 (sView); } } @Override public void onBindViewHolder (final RecyclerView.ViewHolder holder, int position) { final Question question = questionList.get (position); holder.setIsRecyclable (false); switch (holder.getItemViewType ()) { case 1: final ViewHolder1 holder1 = (ViewHolder1) holder; holder1.setIsRecyclable (false); Utils.setTypefaceToAllViews (activity, holder1.tvQuestion); holder1.tvQuestion.setText (question.getText ()); if (db.isResponseExist (survey_id, group_id, assignment_id, question.getId ())) { holder1.etInput.setText (db.getResponseValue (survey_id, group_id, assignment_id, question.getId ())); } holder1.etInput.setInputType (InputType.TYPE_CLASS_TEXT); holder1.etInput.addTextChangedListener (new TextWatcher () { @Override public void onTextChanged (CharSequence s, int start, int before, int count) { if (db.isResponseExist (survey_id, group_id, assignment_id, question.getId ())) { db.updateResponse (survey_id, group_id, assignment_id, question.getId (), question.getType (), "", s.toString ()); } else { db.insertResponse (survey_id, group_id, assignment_id, question.getId (), question.getType (), "", s.toString ()); } } @Override public void beforeTextChanged (CharSequence s, int start, int count, int after) { } @Override public void afterTextChanged (Editable s) { } }); break; case 2: ViewHolder2 holder2 = (ViewHolder2) holder; holder2.setIsRecyclable (false); Utils.setTypefaceToAllViews (activity, holder2.tvQuestion); holder2.tvQuestion.setText (question.getText ()); holder2.rgOptions.removeAllViews (); int option_id2 = 0; if (db.isResponseExist (survey_id, group_id, assignment_id, question.getId ())) { option_id2 = Integer.parseInt (db.getResponseID (survey_id, group_id, assignment_id, question.getId ())); } String selected_option = ""; holder2.radioButtons = new RadioButton[question.getOptions ().size ()]; for (int i = 0; i < question.getOptions ().size (); i++) { Option option = question.getOptions ().get (i); holder2.radioButtons[i] = new RadioButton (activity); holder2.radioButtons[i].setId (option.getId ()); holder2.radioButtons[i].setText (option.getValue ()); holder2.radioButtons[i].setTag (i); holder2.radioButtons[i].setTextSize (TypedValue.COMPLEX_UNIT_SP, 14); holder2.radioButtons[i].setTypeface (SetTypeFace.getTypeface (activity)); if (option.getId () == option_id2) { holder2.radioButtons[i].setChecked (true); selected_option = option.getValue (); } holder2.rgOptions.addView (holder2.radioButtons[i]); } holder2.rgOptions.setOnCheckedChangeListener (new RadioGroup.OnCheckedChangeListener () { @Override public void onCheckedChanged (RadioGroup group, int checkedId) { RadioButton radioButton = (RadioButton) group.findViewById (checkedId); String selected_option = radioButton.getText ().toString (); if (db.isResponseExist (survey_id, group_id, assignment_id, question.getId ())) { db.updateResponse (survey_id, group_id, assignment_id, question.getId (), question.getType (), String.valueOf (checkedId), selected_option); } else { db.insertResponse (survey_id, group_id, assignment_id, question.getId (), question.getType (), String.valueOf (checkedId), selected_option); } } }); break; case 3: ViewHolder3 holder3 = (ViewHolder3) holder; holder3.setIsRecyclable (false); Utils.setTypefaceToAllViews (activity, holder3.tvQuestion); holder3.tvQuestion.setText (question.getText ()); String option_id3 = ""; String option_value3 = ""; if (db.isResponseExist (survey_id, group_id, assignment_id, question.getId ())) { option_id3 = db.getResponseID (survey_id, group_id, assignment_id, question.getId ()); option_value3 = db.getResponseValue (survey_id, group_id, assignment_id, question.getId ()); } String[] ops = option_id3.split (";;"); String[] ops2 = option_value3.split (";;"); final ArrayList<String> optionList = new ArrayList<> (); final ArrayList<String> valueList = new ArrayList<> (); try { for (int i = 0; i < ops.length; i++) { if (ops[i].length () > 0) { optionList.add (ops[i]); } } for (int j = 0; j < ops2.length; j++) { if (ops2[j].length () > 0) { valueList.add (ops2[j]); } } } catch (Exception e) { e.printStackTrace (); } holder3.llOptions.removeAllViews (); for (int i = 0; i < question.getOptions ().size (); i++) { final Option option = question.getOptions ().get (i); final CheckBox cbOption = new CheckBox (activity); cbOption.setId (option.getId ()); cbOption.setText (option.getValue ()); cbOption.setTypeface (SetTypeFace.getTypeface (activity)); cbOption.setTextSize (TypedValue.COMPLEX_UNIT_SP, 14); if (optionList.contains (String.valueOf (option.getId ()))) { cbOption.setChecked (true); } else { cbOption.setChecked (false); } cbOption.setOnCheckedChangeListener (new CompoundButton.OnCheckedChangeListener () { @Override public void onCheckedChanged (CompoundButton buttonView, boolean isChecked) { if (isChecked) { if (! optionList.contains (String.valueOf (buttonView.getId ()))) { optionList.add (String.valueOf (buttonView.getId ())); } if (! valueList.contains (buttonView.getText ().toString ())) { valueList.add (buttonView.getText ().toString ()); } } else { if (optionList.contains (String.valueOf (buttonView.getId ()))) { optionList.remove (String.valueOf (buttonView.getId ())); } if (valueList.contains (buttonView.getText ().toString ())) { valueList.remove (buttonView.getText ().toString ()); } } StringBuilder str = new StringBuilder (); for (int i = 0; i < optionList.size (); i++) { if (optionList.get (i).length () > 0) { str.append (optionList.get (i)); if (i != optionList.size () - 1) { str.append (";;"); } } } StringBuilder str2 = new StringBuilder (); for (int i = 0; i < valueList.size (); i++) { if (valueList.get (i).length () > 0) { str2.append (valueList.get (i)); if (i != valueList.size () - 1) { str2.append (";;"); } } } if (db.isResponseExist (survey_id, group_id, assignment_id, question.getId ())) { db.updateResponse (survey_id, group_id, assignment_id, question.getId (), question.getType (), str.toString (), str2.toString ()); } else { db.insertResponse (survey_id, group_id, assignment_id, question.getId (), question.getType (), str.toString (), str2.toString ()); } } }); holder3.llOptions.addView (cbOption); } break; case 4: ViewHolder4 holder4 = (ViewHolder4) holder; Utils.setTypefaceToAllViews (activity, holder4.tvQuestion); holder4.tvQuestion.setText (question.getText ()); if (db.isResponseExist (survey_id, group_id, assignment_id, question.getId ())) { holder4.rbRating.setRating (Float.parseFloat (db.getResponseValue (survey_id, group_id, assignment_id, question.getId ()))); } holder4.rbRating.setOnRatingBarChangeListener (new RatingBar.OnRatingBarChangeListener () { @Override public void onRatingChanged (RatingBar ratingBar, float rating, boolean fromUser) { if (db.isResponseExist (survey_id, group_id, assignment_id, question.getId ())) { db.updateResponse (survey_id, group_id, assignment_id, question.getId (), question.getType (), "", String.valueOf (rating)); } else { db.insertResponse (survey_id, group_id, assignment_id, question.getId (), question.getType (), "", String.valueOf (rating)); } } }); break; case 5: ViewHolder5 holder5 = (ViewHolder5) holder; Utils.setTypefaceToAllViews (activity, holder5.tvQuestion); holder5.tvQuestion.setText (question.getText ()); if (db.isResponseExist (survey_id, group_id, assignment_id, question.getId ())) { holder5.seekBar.setProgress (Float.parseFloat (db.getResponseValue (survey_id, group_id, assignment_id, question.getId ()))); } holder5.seekBar.setOnSeekChangeListener (new OnSeekChangeListener () { @Override public void onSeeking (SeekParams seekParams) { } @Override public void onStartTrackingTouch (IndicatorSeekBar seekBar) { } @Override public void onStopTrackingTouch (IndicatorSeekBar seekBar) { if (db.isResponseExist (survey_id, group_id, assignment_id, question.getId ())) { db.updateResponse (survey_id, group_id, assignment_id, question.getId (), question.getType (), "", String.valueOf (seekBar.getProgress ())); } else { db.insertResponse (survey_id, group_id, assignment_id, question.getId (), question.getType (), "", String.valueOf (seekBar.getProgress ())); } } }); break; default: ViewHolder0 holder0 = (ViewHolder0) holder; Utils.setTypefaceToAllViews (activity, holder0.tvQuestion); holder0.tvQuestion.setText (question.getText ()); break; } } @Override public int getItemCount () { return questionList.size (); } public void SetOnItemClickListener (final OnItemClickListener mItemClickListener) { this.mItemClickListener = mItemClickListener; } public class ViewHolder0 extends RecyclerView.ViewHolder implements View.OnClickListener { TextView tvQuestion; public ViewHolder0 (View view) { super (view); tvQuestion = (TextView) view.findViewById (R.id.tvQuestion); view.setOnClickListener (this); } @Override public void onClick (View v) { mItemClickListener.onItemClick (v, getLayoutPosition ()); } } public class ViewHolder1 extends RecyclerView.ViewHolder implements View.OnClickListener { TextView tvQuestion; EditText etInput; public ViewHolder1 (View view) { super (view); tvQuestion = (TextView) view.findViewById (R.id.tvQuestion); etInput = (EditText) view.findViewById (R.id.etInput); view.setOnClickListener (this); } @Override public void onClick (View v) { mItemClickListener.onItemClick (v, getLayoutPosition ()); } } public class ViewHolder2 extends RecyclerView.ViewHolder implements View.OnClickListener { TextView tvQuestion; RadioGroup rgOptions; RadioButton[] radioButtons; public ViewHolder2 (View view) { super (view); tvQuestion = (TextView) view.findViewById (R.id.tvQuestion); rgOptions = (RadioGroup) view.findViewById (R.id.rgOptions); radioButtons = new RadioButton[100]; view.setOnClickListener (this); } @Override public void onClick (View v) { mItemClickListener.onItemClick (v, getLayoutPosition ()); } } public class ViewHolder3 extends RecyclerView.ViewHolder implements View.OnClickListener { TextView tvQuestion; LinearLayout llOptions; public ViewHolder3 (View view) { super (view); tvQuestion = (TextView) view.findViewById (R.id.tvQuestion); llOptions = (LinearLayout) view.findViewById (R.id.llOptions); view.setOnClickListener (this); } @Override public void onClick (View v) { mItemClickListener.onItemClick (v, getLayoutPosition ()); } } public class ViewHolder4 extends RecyclerView.ViewHolder implements View.OnClickListener { TextView tvQuestion; RatingBar rbRating; public ViewHolder4 (View view) { super (view); tvQuestion = (TextView) view.findViewById (R.id.tvQuestion); rbRating = (RatingBar) view.findViewById (R.id.rbRating); view.setOnClickListener (this); } @Override public void onClick (View v) { mItemClickListener.onItemClick (v, getLayoutPosition ()); } } public class ViewHolder5 extends RecyclerView.ViewHolder implements View.OnClickListener { TextView tvQuestion; IndicatorSeekBar seekBar; public ViewHolder5 (View view) { super (view); tvQuestion = (TextView) view.findViewById (R.id.tvQuestion); seekBar = (IndicatorSeekBar) view.findViewById (R.id.seekBar); view.setOnClickListener (this); } @Override public void onClick (View v) { mItemClickListener.onItemClick (v, getLayoutPosition ()); } } }
[ "karman.singhh@gmail.com" ]
karman.singhh@gmail.com
4926ec9d2c49f9eaeca75bdf5c319202ada22c25
3e220f73439c3254debcd2b39158248dbda81cd2
/Pokemon.java
e4708c16e977d2c007e1fc2632e9e7fc7d52e35e
[]
no_license
Sulldefire/Pokedex-Code
7bbf6b947a8bc19a7adb80ed10d484fd74b85696
8266a067396a7c0df2fab16ac2499447ca74ca4d
refs/heads/master
2021-01-12T11:56:57.573419
2015-01-12T18:42:41
2015-01-12T18:42:41
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,594
java
/** * Represents a Pokemon object. Each has a number, a name, and two elemental * types, chosen from the PokemonType enumeration. * * @author Raksha Muthukumar * @version 1.1 */ public class Pokemon implements Comparable<Pokemon> { private int num; private String name; private PokemonType p; private PokemonType s; /** * Constructs a Pokemon object * * @param num this Pokemon's unique number * @param name this Pokemon's name * @param p this Pokemon's primary type * @param s this Pokemon's secondary type */ public Pokemon(int num, String name, PokemonType p, PokemonType s) { this.num = num; this.name = name; this.p = p; this.s = s; } /** * compared the objects * * @return the int based on greater/less/equal to object */ @Override public int compareTo(Pokemon o) { return this.num - o.num; } /** * mchecks if the objects are the same (by parts) * * @return whether the objects are equal */ @Override public boolean equals(Object o) { if (o == null) { return false; } else if (o instanceof Pokemon) { Pokemon po = (Pokemon) o; if (this.num == po.num) { if (this.name.equals(po.name)) { if (this.p == po.p) { if (this.s == po.s) { return true; } } } } } return false; } /** * makes a unique number for each object * * @return the int of that object */ @Override public int hashCode() { return num; } /** * makes the collection into an string version based on assignment * * @return the string of objects */ @Override public String toString() { return String.format("#%5s: %-12s Primary Type: %-10s Secondary Type:" + " %-10s", num, name, p, s); } /** * @return the name of this Pokemon */ public String getName() { return name; } /** * @return the unique number of this Pokemon */ public int getNumber() { return num; } /** * @return the primary type of this Pokemon */ public PokemonType getPrimaryType() { return p; } /** * @return the secondary type of this Pokemon */ public PokemonType getSecondaryType() { return s; } }
[ "raksha.muth@gmail.com" ]
raksha.muth@gmail.com
d3edea1bc5f3dc21dcb8b7f960ad526bba3e32a8
d76599bcaf5a87a41b22f93175501d9012c54b97
/src/junk/Particle.java
5afc20516f2d7e8d92461f5aa2bd60a7adc15f5d
[]
no_license
daaronin/JunkRunner
f180dad7fedf96c68fe94b95ceb11323a33a194b
3dfaa7da72ddb92f5f1af9f954876a1a8091490c
refs/heads/master
2021-01-25T12:02:35.911783
2015-01-24T00:45:07
2015-01-24T00:45:07
29,760,290
0
0
null
null
null
null
UTF-8
Java
false
false
2,224
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 junk; /** * * @author Dan */ public class Particle extends MovingCharacter{ private int counter; private int counter_max; private String TYPE; private int SIZE; private int SPEED; public Particle(int x, int y, int width, int height, int health, int temperature, String tex, boolean edit, boolean leveleditor) { super(x, y, width, height, health, temperature, tex, edit, leveleditor); counter_max = 50; counter = 0; } public Particle(int x, int y, String type, int size, int speed, String tex, boolean edit, boolean leveleditor) { super(x, y, size, size, 10, 100, tex, edit, leveleditor); counter_max = speed; counter = 0; TYPE = type; SIZE = size; SPEED = speed; } @Override public void update(int delta, String collisionDirection){ position.updateQuad(position.getX(),position.getY(),position.getWidth(),position.getHeight()); if (TYPE == "boom"){ flicker(SPEED); } else { } } @Override public void update(int delta, String collisionDirection, char Direction){ position.updateQuad(position.getX(),position.getY(),position.getWidth(),position.getHeight()); if (TYPE == "boom"){ flicker(SPEED); } else { } } public void flicker(int speed){ if (counter < speed){ if (counter < speed/2){ setRelativeX(getRelativeX()-2); setRelativeY(getRelativeY()-2); position.setWidth(position.getWidth()+4); position.setHeight(position.getHeight()+4); } else { setRelativeX(getRelativeX()+2); setRelativeY(getRelativeY()+2); position.setWidth(position.getWidth()-4); position.setHeight(position.getHeight()-4); } } else { ALIVE = false; } counter++; } }
[ "daaronin@yahoo.com" ]
daaronin@yahoo.com
c04ef813031cee36ab80d77fca86302db2e27cf5
6296acd5f8a72da260c5dcf9a7f5d05efa9b8298
/java/com/szgentech/metro/base/utils/HttpClientUtil.java
afb88749116185991607c21186ecec28eeb3fe04
[]
no_license
luogengbo/learngit
cf01fe5d45fe6463dbe15ad3e1297d850f273804
e18a70d079aa6fb734befa5f1ac0020e387ab87a
refs/heads/master
2021-03-13T01:27:14.936605
2018-07-10T16:10:09
2018-07-10T16:10:09
91,473,400
0
0
null
null
null
null
UTF-8
Java
false
false
15,348
java
package com.szgentech.metro.base.utils; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.nio.charset.Charset; import java.security.KeyStore; import java.security.cert.CertificateException; import java.util.List; import java.util.Map; import javax.net.ssl.SSLContext; import javax.net.ssl.SSLHandshakeException; import javax.net.ssl.TrustManager; import javax.net.ssl.X509TrustManager; import org.apache.http.HttpEntity; import org.apache.http.HttpEntityEnclosingRequest; import org.apache.http.HttpHost; import org.apache.http.HttpRequest; import org.apache.http.HttpResponse; import org.apache.http.NameValuePair; import org.apache.http.NoHttpResponseException; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.HttpRequestRetryHandler; import org.apache.http.client.ResponseHandler; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.client.params.ClientPNames; import org.apache.http.client.params.CookiePolicy; import org.apache.http.client.utils.URLEncodedUtils; import org.apache.http.conn.params.ConnRoutePNames; import org.apache.http.conn.scheme.Scheme; import org.apache.http.conn.ssl.SSLConnectionSocketFactory; import org.apache.http.conn.ssl.SSLContexts; import org.apache.http.conn.ssl.SSLSocketFactory; import org.apache.http.entity.StringEntity; import org.apache.http.entity.mime.MultipartEntity; import org.apache.http.entity.mime.content.ByteArrayBody; import org.apache.http.entity.mime.content.FileBody; import org.apache.http.entity.mime.content.StringBody; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.params.CoreProtocolPNames; import org.apache.http.protocol.ExecutionContext; import org.apache.http.protocol.HttpContext; import org.apache.http.util.EntityUtils; import org.apache.log4j.Logger; /** * @className:HttpClientUtil.java * @classDescription:HttpClient工具类//待完善模拟登录,cookie,证书登录 * @author:xiayingjie * @createTime:2011-8-31 */ public class HttpClientUtil { private static Logger logger = Logger.getLogger(HttpClientUtil.class); public static String CHARSET_ENCODING = "UTF-8"; // private static String USER_AGENT="Mozilla/4.0 (compatible; MSIE 6.0; // Win32)";//ie6 public static String USER_AGENT = "Mozilla/4.0 (compatible; MSIE 7.0; Win32)";// ie7 // private static String USER_AGENT="Mozilla/4.0 (compatible; MSIE 8.0; // Win32)";//ie8 /** * 获取DefaultHttpClient对象 * * @param charset * 字符编码 * @return DefaultHttpClient对象 */ private static DefaultHttpClient getDefaultHttpClient(final String charset) { DefaultHttpClient httpclient = new DefaultHttpClient(); // 模拟浏览器,解决一些服务器程序只允许浏览器访问的问题 httpclient.getParams().setParameter(CoreProtocolPNames.USER_AGENT, USER_AGENT); httpclient.getParams().setParameter(CoreProtocolPNames.USE_EXPECT_CONTINUE, Boolean.FALSE); httpclient.getParams().setParameter(CoreProtocolPNames.HTTP_CONTENT_CHARSET, charset == null ? CHARSET_ENCODING : charset); // 浏览器兼容性 httpclient.getParams().setParameter(ClientPNames.COOKIE_POLICY, CookiePolicy.BROWSER_COMPATIBILITY); // 定义重试策略 httpclient.setHttpRequestRetryHandler(requestRetryHandler); return httpclient; } /** * 访问https的网站 * * @param httpclient */ private static void enableSSL(DefaultHttpClient httpclient) { // 调用ssl try { SSLContext sslcontext = SSLContext.getInstance("TLS"); sslcontext.init(null, new TrustManager[] { truseAllManager }, null); SSLSocketFactory sf = new SSLSocketFactory(sslcontext); sf.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER); Scheme https = new Scheme("https", sf, 443); httpclient.getConnectionManager().getSchemeRegistry().register(https); } catch (Exception e) { e.printStackTrace(); logger.error("访问https的网站:"+e.getMessage()); } } /** * 重写验证方法,取消检测ssl */ private static TrustManager truseAllManager = new X509TrustManager() { public void checkClientTrusted(java.security.cert.X509Certificate[] arg0, String arg1) throws CertificateException { } public void checkServerTrusted(java.security.cert.X509Certificate[] arg0, String arg1) throws CertificateException { } public java.security.cert.X509Certificate[] getAcceptedIssuers() { return null; } }; /** * 异常自动恢复处理, 使用HttpRequestRetryHandler接口实现请求的异常恢复 */ private static HttpRequestRetryHandler requestRetryHandler = new HttpRequestRetryHandler() { // 自定义的恢复策略 public boolean retryRequest(IOException exception, int executionCount, HttpContext context) { // 设置恢复策略,在发生异常时候将自动重试3次 if (executionCount >= 3) { // 如果连接次数超过了最大值则停止重试 return false; } if (exception instanceof NoHttpResponseException) { // 如果服务器连接失败重试 return true; } if (exception instanceof SSLHandshakeException) { // 不要重试ssl连接异常 return false; } HttpRequest request = (HttpRequest) context.getAttribute(ExecutionContext.HTTP_REQUEST); boolean idempotent = (request instanceof HttpEntityEnclosingRequest); if (!idempotent) { // 重试,如果请求是考虑幂等 return true; } return false; } }; /** * 使用ResponseHandler接口处理响应,HttpClient使用ResponseHandler会自动管理连接的释放,解决了对连接的释放管理 */ private static ResponseHandler<String> responseHandler = new ResponseHandler<String>() { // 自定义响应处理 public String handleResponse(HttpResponse response) throws ClientProtocolException, IOException { HttpEntity entity = response.getEntity(); if (entity != null) { String charset = EntityUtils.getContentCharSet(entity) == null ? CHARSET_ENCODING : EntityUtils.getContentCharSet(entity); return new String(EntityUtils.toByteArray(entity), charset); } else { return null; } } }; public static String postJson(String url, String json) { String responseStr = null; DefaultHttpClient httpclient = getDefaultHttpClient(CHARSET_ENCODING); HttpPost hp = new HttpPost(url); hp.addHeader("Content-type", "application/json; charset=utf-8"); hp.setHeader("Accept", "application/json"); hp.setEntity(new StringEntity(json, Charset.forName("UTF-8"))); try { responseStr = httpclient.execute(hp, responseHandler); } catch (Exception e) { e.printStackTrace(); logger.error("postJson:"+e.getMessage()); } return responseStr; } public static String postXml(String url, String xml) { String responseStr = null; DefaultHttpClient httpclient = getDefaultHttpClient(CHARSET_ENCODING); HttpPost hp = new HttpPost(url); hp.addHeader("Content-type", "application/xml; charset=utf-8"); hp.setHeader("Accept", "application/xml"); hp.setEntity(new StringEntity(xml, Charset.forName("UTF-8"))); try { responseStr = httpclient.execute(hp, responseHandler); } catch (Exception e) { e.printStackTrace(); logger.error("postXml:"+e.getMessage()); } return responseStr; } /** * 使用SSL方式发送post请求,目前主要针对微信支付需要证书的情况 * * @param url * post地址 * @param xml * 发送xml信息 * @param certPath * 证书路径 * @param secret * 证书密码,证书密码默认为您的商户ID * @return */ public static String postXmlBySSL(String url, String xml, String certPath, String certSecret) { String responseStr = null; KeyStore keyStore = null; FileInputStream instream = null; try { keyStore = KeyStore.getInstance("PKCS12"); instream = new FileInputStream(new File(certPath)); keyStore.load(instream, certSecret.toCharArray()); SSLContext sslContext = SSLContexts.custom().loadKeyMaterial(keyStore, certSecret.toCharArray()).build(); SSLConnectionSocketFactory sslfs = new SSLConnectionSocketFactory(sslContext, new String[] { "TLSv1" }, null, SSLConnectionSocketFactory.BROWSER_COMPATIBLE_HOSTNAME_VERIFIER); CloseableHttpClient httpclient = HttpClients.custom().setSSLSocketFactory(sslfs).build(); HttpPost hp = new HttpPost(url); hp.addHeader("Content-type", "application/xml; charset=utf-8"); hp.setHeader("Accept", "application/xml"); hp.setEntity(new StringEntity(xml, Charset.forName("UTF-8"))); responseStr = httpclient.execute(hp, responseHandler); logger.info("responseStr:" + responseStr); } catch (Exception e) { logger.error("post报错" + certSecret, e); e.printStackTrace(); } finally { if (instream != null) { try { instream.close(); } catch (IOException e) { e.printStackTrace(); logger.error("post请求:"+e.getMessage()); } } } return responseStr; } /** * 使用post方法获取相关的数据 * * @param url * @param paramsList * @return */ public static String post(String url, List<NameValuePair> paramsList) { return httpRequest(url, paramsList, "POST", null); } /** * 使用post方法并且通过代理获取相关的数据 * * @param url * @param paramsList * @param proxy * @return */ public static String post(String url, List<NameValuePair> paramsList, HttpHost proxy) { return httpRequest(url, paramsList, "POST", proxy); } /** * 使用get方法获取相关的数据 * * @param url * @param paramsList * @return */ public static String get(String url, List<NameValuePair> paramsList) { return httpRequest(url, paramsList, "GET", null); } /** * 使用get方法并且通过代理获取相关的数据 * * @param url * @param paramsList * @param proxy * @return */ public static String get(String url, List<NameValuePair> paramsList, HttpHost proxy) { return httpRequest(url, paramsList, "GET", proxy); } /** * 提交数据到服务器 * * @param url * @param paramsList * @param method * @param proxy * @return */ public static String httpRequest(String url, List<NameValuePair> paramsList, String method, HttpHost proxy) { String responseStr = ""; // 判断输入的值是是否为空 if (null == url || "".equals(url)) { return null; } // 创建HttpClient实例 DefaultHttpClient httpclient = getDefaultHttpClient(CHARSET_ENCODING); // 判断是否是https请求 if (url.startsWith("https")) { enableSSL(httpclient); } String formatParams = null; // 将参数进行utf-8编码 if (null != paramsList && paramsList.size() > 0) { formatParams = URLEncodedUtils.format(paramsList, CHARSET_ENCODING); } // 如果代理对象不为空则设置代理 if (null != proxy) { httpclient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy); } try { // 如果方法为Get if ("GET".equalsIgnoreCase(method)) { if (formatParams != null) { url = (url.indexOf("?")) < 0 ? (url + "?" + formatParams) : (url.substring(0, url.indexOf("?") + 1) + formatParams); } HttpGet hg = new HttpGet(url); responseStr = httpclient.execute(hg, responseHandler); // 如果方法为Post } else if ("POST".equalsIgnoreCase(method)) { HttpPost hp = new HttpPost(url); if (formatParams != null) { StringEntity entity = new StringEntity(formatParams); entity.setContentType("application/x-www-form-urlencoded"); hp.setEntity(entity); } responseStr = httpclient.execute(hp, responseHandler); } } catch (Exception e) { e.printStackTrace(); logger.error("提交数据到服务器:"+e.getMessage()); } return responseStr; } /** * 提交数据到服务器 * * @param url * @param fileMap * @param stringMap * @param type * @param proxy * @return */ public static String httpFileRequest(String url, Map<String, String> fileMap, Map<String, String> stringMap, int type, HttpHost proxy) { String responseStr = null; // 判断输入的值是是否为空 if (null == url || "".equals(url)) { return null; } // 创建HttpClient实例 DefaultHttpClient httpclient = getDefaultHttpClient(CHARSET_ENCODING); // 判断是否是https请求 if (url.startsWith("https")) { enableSSL(httpclient); } // 如果代理对象不为空则设置代理 if (null != proxy) { httpclient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy); } // 发送文件 HttpPost hp = new HttpPost(url); MultipartEntity multiEntity = new MultipartEntity(); try { // type=0是本地路径,否则是网络路径 if (type == 0) { for (String key : fileMap.keySet()) { multiEntity.addPart(key, new FileBody(new File(fileMap.get(key)))); } } else { for (String key : fileMap.keySet()) { multiEntity.addPart(key, new ByteArrayBody(getUrlFileBytes(fileMap.get(key)), key)); } } // 加入相关参数 默认编码为utf-8 for (String key : stringMap.keySet()) { multiEntity.addPart(key, new StringBody(stringMap.get(key), Charset.forName(CHARSET_ENCODING))); } hp.setEntity(multiEntity); responseStr = httpclient.execute(hp, responseHandler); } catch (Exception e) { e.printStackTrace(); logger.error("httpFileRequest:"+e.getMessage()); } return responseStr; } /** * 将相关文件和参数提交到相关服务器 * * @param url * @param fileMap * @param StringMap * @return */ public static String postFile(String url, Map<String, String> fileMap, Map<String, String> stringMap) { return httpFileRequest(url, fileMap, stringMap, 0, null); } /** * 将相关文件和参数提交到相关服务器 * * @param url * @param fileMap * @param StringMap * @return */ public static String postUrlFile(String url, Map<String, String> urlMap, Map<String, String> stringMap) { return httpFileRequest(url, urlMap, stringMap, 1, null); } /** * 获取网络文件的字节数组 * * @param url * @return * @throws ClientProtocolException * @throws IOException */ public static byte[] getUrlFileBytes(String url) throws ClientProtocolException, IOException { byte[] bytes = null; // 创建HttpClient实例 DefaultHttpClient httpclient = getDefaultHttpClient(CHARSET_ENCODING); // 获取url里面的信息 HttpGet hg = new HttpGet(url); HttpResponse hr = httpclient.execute(hg); bytes = EntityUtils.toByteArray(hr.getEntity()); // 转换内容为字节 return bytes; } /** * 获取图片的字节数组 * * @createTime 2011-11-24 * @param url * @return * @throws ClientProtocolException * @throws IOException */ public static byte[] getImg(String url) throws ClientProtocolException, IOException { byte[] bytes = null; // 创建HttpClient实例 DefaultHttpClient httpclient = getDefaultHttpClient(CHARSET_ENCODING); // 获取url里面的信息 HttpGet hg = new HttpGet(url); HttpResponse hr = httpclient.execute(hg); bytes = EntityUtils.toByteArray(hr.getEntity()); // 转换内容为字节 return bytes; } }
[ "470655071@qq.com" ]
470655071@qq.com
42fc5e81907698d263a1adb5b4d3ab55608a75df
07c99848bb0a1df4a5934b99cdfed830aa71470f
/src/com/gokigendori/leetcode/medium/AddTwoNumbers.java
4940fa9875d1030163740807f2c2c61cda250ce4
[]
no_license
gokigendori/leetcode
f5b8d5f8d10c2a3b71616d2e1ffb32be27a14c1a
75f4e8fa1f00474c7979f605fe3819ef755c5191
refs/heads/master
2023-04-15T15:22:23.221694
2021-05-02T05:57:20
2021-05-02T05:57:20
336,682,477
1
0
null
null
null
null
UTF-8
Java
false
false
1,621
java
package com.gokigendori.leetcode.medium; import java.util.ArrayList; import java.util.List; public class AddTwoNumbers { public ListNode addTwoNumbers(ListNode l1, ListNode l2) { List<Integer> li1 = new ArrayList<>(); List<Integer> li2 = new ArrayList<>(); ListNode ll = l1; while (ll != null) { li1.add(ll.val); ll = ll.next; } ll = l2; while (ll != null) { li2.add(ll.val); ll = ll.next; } int limit = Math.max(li1.size(), li2.size()); List<Integer> ret = new ArrayList<>(); int countUp = 0; for (int i = 0; i < limit; i++) { int sum = countUp; if (i < li1.size()) { sum += li1.get(i); } if (i < li2.size()) { sum += li2.get(i); } ret.add(sum % 10); countUp = sum / 10; } if (0 < countUp) { ret.add(countUp); } ListNode out = new ListNode(); ListNode tmp = out; for (int i = 0; i < ret.size(); i++) { tmp.val = ret.get(i); if (i != ret.size() - 1) { tmp.next = new ListNode(); tmp = tmp.next; } } return out; } public class ListNode { int val; ListNode next; ListNode() { } ListNode(int val) { this.val = val; } ListNode(int val, ListNode next) { this.val = val; this.next = next; } } }
[ "155139+gokigendori@users.noreply.github.com" ]
155139+gokigendori@users.noreply.github.com
85ffb74c9ce8aa6fb32b3f110a601f6e60e6ac3b
27935ad97af9ab88d565736836a15a2ec6c4feb7
/src/main/java/com/coursejava/demo/entities/pk/OrderItemPK.java
fe90d238fbb6e9e170b4e685af35737ece15f94f
[]
no_license
Rafael20948/ProjectSpringBootJava11
5f8832c2f31607b4ca50b769a2d13053648ffb85
505b42933f5a246f770932253bc0510b04abb0a1
refs/heads/master
2022-11-06T19:47:37.221938
2020-06-29T14:26:16
2020-06-29T14:26:16
275,169,131
0
0
null
null
null
null
UTF-8
Java
false
false
1,502
java
package com.coursejava.demo.entities.pk; import java.io.Serializable; import javax.persistence.Embeddable; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import com.coursejava.demo.entities.Order; import com.coursejava.demo.entities.Product; @Embeddable public class OrderItemPK implements Serializable{ private static final long serialVersionUID = 1L; @ManyToOne @JoinColumn(name = "order_id") private Order order; @ManyToOne @JoinColumn(name = "product_id") private Product product; public Order getOrder() { return order; } public void setOrder(Order order) { this.order = order; } public Product getProduct() { return product; } public void setProduct(Product product) { this.product = product; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((order == null) ? 0 : order.hashCode()); result = prime * result + ((product == null) ? 0 : product.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; OrderItemPK other = (OrderItemPK) obj; if (order == null) { if (other.order != null) return false; } else if (!order.equals(other.order)) return false; if (product == null) { if (other.product != null) return false; } else if (!product.equals(other.product)) return false; return true; } }
[ "rafael.silva@leega.com.br" ]
rafael.silva@leega.com.br
31f0727bc6d1b81cdf4929983fb1163e73247163
200ae5647ac85836d9deb1afbd306b7ff09c2207
/src/com/james/bootstrap/service/MenuService.java
2b3094e48d3765cb71e103df50548da1ce38d46e
[]
no_license
jamesou9307/Bootstrap_Demo
a59ed989517bf9a6504e289776342db80aa2c35e
882539d69aebe353811f3c29000b549168204769
refs/heads/master
2021-05-14T06:09:39.894634
2018-06-19T12:25:07
2018-06-19T12:25:07
116,235,751
0
0
null
null
null
null
UTF-8
Java
false
false
214
java
package com.james.bootstrap.service; import com.james.bootstrap.entity.MenuSet; import java.util.List; public interface MenuService { List<MenuSet> getMenuSets(); MenuSet getMenuSet(String menuName); }
[ "291387044@qq.com" ]
291387044@qq.com
e5b9dcfe6795ba2241147a738233767eb27162f4
87a1fb052a2364d6b412abcb8347979ef4ca09e1
/app/src/main/java/se/is/agriculturalequipment/BuyEstimated.java
fb0552f3d5a70632cd042ed3bca7f8ca1d38e6c3
[]
no_license
firstnoname/AgricuturalEquipment-Old
d358c24a2c6f761b6ef8b37d7b3eeea561b29563
6fcb5bac25f1d7d3d389682d64c917c29fe0cb2e
refs/heads/master
2021-09-16T08:58:12.476165
2018-06-18T16:29:26
2018-06-18T16:29:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,833
java
package se.is.agriculturalequipment; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.net.Uri; import android.os.Build; import android.os.Environment; import android.provider.MediaStore; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Base64; import android.util.Log; import android.view.View; import android.widget.EditText; import android.widget.ImageView; import android.widget.Toast; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.IOException; import java.util.Arrays; public class BuyEstimated extends AppCompatActivity { //Instant for use camera. private static final int ACTION_TAKE_PHOTO_B = 1; private static final String JPEG_FILE_PREFIX = "IMG_"; private static final String JPEG_FILE_SUFFIX = ".jpg"; String idxEngine; String dealingStatus = ""; private String mCurrentPhotoPath; private AlbumStorageDirFactory mAlbumStorageDirFactory = null; private ImageView mImageView; //Image upload. private String idNo, name, amount, imageName, encodeImage; private String getAmount; private String[] strName; private String partName; //Instance for bind widget. private EditText edtAmount, edtName, edtIdentificationNo; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_buy_estimated); bindWidget(); getValueFromSubmitEstimateG200(); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.FROYO) { mAlbumStorageDirFactory = new FroyoAlbumDirFactory(); } else { mAlbumStorageDirFactory = new BaseAlbumDirFactory(); } } private void getValueFromSubmitEstimateG200() { Intent intent = getIntent(); idxEngine = intent.getStringExtra("idxEngine"); getAmount = intent.getStringExtra("amount"); edtAmount.setText(getAmount); strName = intent.getStringArrayExtra("partName"); partName = Arrays.toString(strName); /*Toast.makeText(this, "strName : " + strName.toString(), Toast.LENGTH_SHORT).show(); Toast.makeText(this, "partName : " + partName, Toast.LENGTH_SHORT).show();*/ dealingStatus = intent.getStringExtra("dealStatus"); } private void bindWidget() { mImageView = (ImageView) findViewById(R.id.imgIdentificationNo); edtIdentificationNo = (EditText) findViewById(R.id.edtIdentificationNo); edtName = (EditText) findViewById(R.id.edtName); edtAmount = (EditText) findViewById(R.id.edtAmount); } public void takePhoto(View view) { dispatchTakePictureIntent(ACTION_TAKE_PHOTO_B); } private void dispatchTakePictureIntent(int actionCode) { Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); switch (actionCode) { case ACTION_TAKE_PHOTO_B: File f = null; try { f = setUpPhotoFile(); mCurrentPhotoPath = f.getAbsolutePath(); takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(f)); } catch (IOException e) { e.printStackTrace(); f = null; mCurrentPhotoPath = null; } } startActivityForResult(takePictureIntent, actionCode); } private File setUpPhotoFile() throws IOException { File f = createImageFile(); mCurrentPhotoPath = f.getAbsolutePath(); return f; } private File createImageFile() throws IOException { File albumF = getAlbumDir(); File imageF = File.createTempFile(JPEG_FILE_PREFIX, JPEG_FILE_SUFFIX, albumF); return imageF; } private File getAlbumDir() { File storageDir = null; if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) { storageDir = mAlbumStorageDirFactory.getAlbumStorageDir(getAlbumName()); if (storageDir != null) { if (!storageDir.mkdirs()) { if (!storageDir.exists()) { Log.d("CameraSample", "failed to create directory"); return null; } } } } else { Log.v("PhotoByIntent", "External storage is not mounted READ/WRITE."); } return storageDir; } private String getAlbumName() { return getString(R.string.album_name); } protected void onActivityResult(int requestCode, int resultCode, Intent data) { switch (requestCode) { case ACTION_TAKE_PHOTO_B: { if (resultCode == RESULT_OK) { handleBigCameraPhoto(); } break; } } } private void handleBigCameraPhoto() { if (mCurrentPhotoPath != null) { setPic(); galleryAddPic(); } } private void galleryAddPic() { Intent mediaScanIntent = new Intent("android.intent.action.MEDIA_SCANNER_SCAN_FILE"); File f = new File(mCurrentPhotoPath); Uri contentUri = Uri.fromFile(f); mediaScanIntent.setData(contentUri); this.sendBroadcast(mediaScanIntent); } private void setPic() { //Get size of ImageView. int targetW = mImageView.getWidth(); int targetH = mImageView.getHeight(); //Get the size of the image. BitmapFactory.Options bmOptions = new BitmapFactory.Options(); bmOptions.inJustDecodeBounds = true; BitmapFactory.decodeFile(mCurrentPhotoPath, bmOptions); int photoW = bmOptions.outWidth; int photoH = bmOptions.outHeight; //Figure out which way needs to be reduced less. int scaleFactor = 1; if ((targetW > 0) || (targetH > 0)) { scaleFactor = Math.min(photoW / targetW, photoH / targetH); } //Set bitmap options to scale the image decode target. bmOptions.inJustDecodeBounds = false; bmOptions.inSampleSize = scaleFactor; bmOptions.inPurgeable = true; //Decode the JPEG file into a Bitmap. Bitmap bitmap = BitmapFactory.decodeFile(mCurrentPhotoPath, bmOptions); //Associate the Bitmap to the ImageView. mImageView.setImageBitmap(bitmap); mImageView.setVisibility(View.VISIBLE); } public void prepareUpload(View view) { uploadValue(); } private void uploadValue() { //Get values from EditText. idNo = edtIdentificationNo.getText().toString(); name = edtName.getText().toString(); amount = getAmount.toString(); //Get image name from image path. File file = new File(mCurrentPhotoPath); imageName = file.getName(); //Encode image to base64. imageEncodeToBase64(); String method = "insert_profile"; BackgroundTask backgroundTask = new BackgroundTask(this); backgroundTask.execute(method, idNo, name, amount, imageName, encodeImage, partName, idxEngine, dealingStatus); finish(); } private void imageEncodeToBase64() { //Convert image into byte array. Bitmap bm = BitmapFactory.decodeFile(mCurrentPhotoPath); ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); bm.compress(Bitmap.CompressFormat.JPEG, 50, byteArrayOutputStream);//bm is the bitmap object. byte[] b = byteArrayOutputStream.toByteArray(); //Encode image as byte array into base64. encodeImage = Base64.encodeToString(b, Base64.DEFAULT); } }
[ "first.cmu.se@gmail.com" ]
first.cmu.se@gmail.com
f5b0b4fa63faa91233a0716995e29ce1b65512d9
6c1ad9c41352fd237967a1776b1b28b07dd432f5
/src/main/java/com/datastax/tutorial/NpanxxDatasetLoader.java
51bd7228cf4b65506dbd6f7321ca0ed3c6fc51ae
[]
no_license
amorton/cassandra-tutorial
8d6e40f192b65c5b66e3d48cae4ced4cecd727cf
8e509bb16660593e5a1070693873fadd28b3f7e5
refs/heads/master
2020-12-30T18:57:07.508456
2011-07-12T21:46:45
2011-07-12T21:46:45
2,253,675
0
1
null
null
null
null
UTF-8
Java
false
false
4,880
java
package com.datastax.tutorial; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.List; import java.util.concurrent.Callable; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.Future; import me.prettyprint.cassandra.serializers.StringSerializer; import me.prettyprint.hector.api.factory.HFactory; import me.prettyprint.hector.api.mutation.Mutator; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Load the npanxx data from a file. An example of a multi-threaded file loader * using batch_mutate via Hector's Mutator * * @author zznate */ public class NpanxxDatasetLoader extends TutorialBase { private static Logger log = LoggerFactory.getLogger(NpanxxDatasetLoader.class); private static ExecutorService exec; public static void main(String[] args) { long startTime = System.currentTimeMillis(); init(); String fileLocation = properties.getProperty("npanxx.file.location"); BufferedReader reader; exec = Executors.newFixedThreadPool(10); try { reader = new BufferedReader(new InputStreamReader(new FileInputStream(fileLocation))); // read 1000 and hand off to worker List<String> lines = new ArrayList<String>(1000); String line = reader.readLine(); List<Future<Integer>> sums = new ArrayList<Future<Integer>>(); while(line != null) { lines.add(line); if ( lines.size() % 1000 == 0 ) { doParse(lines, sums); } line = reader.readLine(); } doParse(lines, sums); int total = 0; for (Future<Integer> future : sums) { total = total + future.get().intValue(); } log.info("Found total: {}", total); log.info("duration in ms: {}",System.currentTimeMillis() - startTime); } catch (Exception e) { log.error("Could not locate file",e); } finally { exec.shutdown(); } tutorialCluster.getConnectionManager().shutdown(); } private static void doParse(List<String> lines, List<Future<Integer>> sums) { Future<Integer> f = exec.submit(new NpanxxDatasetLoader().new LineParser(new ArrayList(lines))); sums.add(f); lines.clear(); } class LineParser implements Callable<Integer> { List<String> lines; LineParser(List<String> lines) { this.lines = lines; } public Integer call() throws Exception { int count = 0; NpanxxLine npanxxLine; Mutator<String> mutator = HFactory.createMutator(tutorialKeyspace, StringSerializer.get()); for (String row : lines) { // parse npanxxLine = new NpanxxLine(row); // String key = npanxxLine.getNpa()+npanxxLine.getNxx(); mutator.addInsertion(key, "Npanxx", HFactory.createStringColumn("city", npanxxLine.getCity())); mutator.addInsertion(key, "Npanxx", HFactory.createStringColumn("lat", Double.toString(npanxxLine.getLat()))); mutator.addInsertion(key, "Npanxx", HFactory.createStringColumn("lng", Double.toString(npanxxLine.getLng()))); mutator.addInsertion(key, "Npanxx", HFactory.createStringColumn("state", npanxxLine.getState())); if ( count % 250 == 0 ) { mutator.execute(); mutator.discardPendingMutations(); } count++; } mutator.execute(); log.info("found count {}", count); return Integer.valueOf(count); } } static class NpanxxLine { private String[] vals = new String[10]; NpanxxLine(String line) { vals = line.split("\\s"); } String getNpa() { return vals[0]; } String getNxx() { return vals[1]; } double getLat() { return Double.parseDouble(vals[2]); } double getLng() { return Double.parseDouble(vals[3]); } String getState() { return vals[5]; } String getCity() { StringBuilder cityName = new StringBuilder(56); for (int i = 6; i < vals.length; i++) { cityName.append(vals[i]).append(" "); } return cityName.toString(); } } }
[ "nate@vervewireless.com" ]
nate@vervewireless.com
ac850cdec7ffc04ee632ddcc5ecbab9d8f79f405
8f0b4ac9c521589dcbb83aa4c037e0092ae23a25
/db.java
9ae78b22e8d6dc84d456e8bcbd1ce14b583f5464
[]
no_license
maxandersen/quarkus-insights-effective-persistence
5e448c9c5344f9f3aa7d6fe95500a00c3b7e8145
bdab2f4bd744df36b4f83d7b90afe3129a78370d
refs/heads/master
2023-06-06T05:26:04.070488
2021-06-29T09:01:42
2021-06-29T09:01:42
340,781,915
0
0
null
null
null
null
UTF-8
Java
false
false
9,117
java
///usr/bin/env jbang "$0" "$@" ; exit $? //JAVA 16 //SOURCES **/*.java // SOURCES sakila/**/*.java //DEPS io.quarkus:quarkus-bom:${quarkus.version:2.0.0.Final}@pom //DEPS io.quarkus:quarkus-hibernate-orm-panache //DEPS io.quarkus:quarkus-jdbc-postgresql //DEPS org.postgresql:postgresql:42.2.14 //DEPS org.testcontainers:postgresql:1.15.2 //DEPS io.quarkus:quarkus-hibernate-orm //jbang bug requires me to have them here //DEPS org.jooq:jooq:3.14.7 //DEPS org.jooq:jooq-meta:3.14.7 //DEPS org.jooq:jooq-codegen:3.14.7 //Q:CONFIG quarkus.banner.enabled=false //Q:CONFIG quarkus.log.level=WARN //Q:CONFIG quarkus.log.category."org.hibernate.stat".level=DEBUG //Q:CONFIG quarkus.hibernate-orm.log.sql=falses //Q:CONFIG quarkus.hibernate-orm.log.format-sql=true //Q:CONFIG quarkus.hibernate-orm.jdbc.statement-batch-size=20 //Q:CONFIG quarkus.datasource.db-kind=postgresql //Q:CONFIG quarkus.datasource.username=postgres //Q:CONFIG quarkus.datasource.password=sakila //Q:CONFIG quarkus.hibernate-orm.statistics=true //Q:CONFIG quarkus.datasource.jdbc.url=jdbc:postgresql://localhost:5432/sakila import static util.Printer.print; import static util.Printer.stats; import java.math.BigDecimal; import java.sql.Date; import java.util.List; import java.util.Map; import javax.enterprise.context.Dependent; import javax.enterprise.context.control.ActivateRequestContext; import javax.inject.Inject; import javax.persistence.Entity; import javax.persistence.EntityManager; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; import javax.transaction.Transactional; import javax.transaction.Transactional.TxType; import javax.transaction.UserTransaction; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.StatelessSession; import org.hibernate.stat.Statistics; import org.hibernate.transform.Transformers; import org.hibernate.type.LongType; import org.hibernate.type.StringType; import io.quarkus.hibernate.orm.panache.PanacheEntityBase; import io.quarkus.narayana.jta.runtime.TransactionConfiguration; import io.quarkus.runtime.QuarkusApplication; import io.quarkus.runtime.annotations.QuarkusMain; @QuarkusMain public class db implements QuarkusApplication { private final DbService dbService; public db(DbService dbService) { this.dbService = dbService; } @Override @ActivateRequestContext @Transactional public int run(String... args) throws Exception { dbService.doData("Quarkus Insights"); return 0; } @Entity @Table(name = "actor") static public class Actor extends PanacheEntityBase { @Id public long actor_id; public String first_name; public String last_name; public Date last_update; @Override public String toString() { return actor_id + ": " + first_name + " " + last_name; } } @Entity @Table(name = "language") static public class Language extends PanacheEntityBase { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) public long language_id; public String name; } } @Dependent class DbService { @Inject EntityManager em; @Transactional(TxType.REQUIRES_NEW) void updateViaEntity() { List<db.Actor> actors = db.Actor.listAll(); System.out.println("Updating " + actors.size() + " actors"); for (db.Actor actor : actors) { if (Character.isUpperCase(actor.first_name.charAt(0))) { actor.first_name = actor.first_name.toLowerCase(); } else { actor.first_name = actor.first_name.toUpperCase(); } } }; void doData(String name) throws Exception { System.out.println("Hello " + name + "!"); //managedUpdate(); //bulkProcessing(true); //bulkStatelessProcessing(); //nativeQueries(); resultTransformers(); } @TransactionConfiguration(timeout = 50000) private void bulkProcessing(boolean manual) { System.out.println("Insert lots of rows"); for (int i = 0; i < 100000; i++) { db.Language lang = new db.Language(); lang.name = "A-" + i; System.out.println(lang.name); em.persist(lang); if(manual) { if ( i % 100 == 0 ) { //commit and begin to do it manually in batches. System.out.println("Manual flush!"); em.flush(); em.clear(); } } } } private void bulkStatelessProcessing() throws Exception { StatelessSession ss = getStatelessSession(); System.out.println("Insert lots of rows with stateless session"); for ( int i=0; i<100000; i++ ) { db.Language lang = new db.Language(); lang.name = "A-" + i; System.out.println(lang.name); ss.insert(lang); } } private void managedUpdate() { Statistics statistics = em.getEntityManagerFactory().unwrap(SessionFactory.class).getStatistics(); stats(statistics); updateViaEntity(); stats(statistics); } @SuppressWarnings({ "unchecked", "deprecation" }) // here as we are dealing with non-type-safe streams private void resultTransformers() { print("****RESULT TRANSFORMERS****"); String sql = """ select extract(year from pay.payment_date) y, extract(month from pay.payment_date) m, stf.first_name, stf.last_name, sum(pay.amount) from staff stf left join payment pay on stf.staff_id = pay.staff_id group by y, m, stf.first_name, stf.last_name """; Session session = getSession(); // Every column gets added List<Map<String, Object>> list = session.createSQLQuery(sql) .setResultTransformer(Transformers.ALIAS_TO_ENTITY_MAP).list(); list.forEach(item -> { print(item.get("first_name") + " sold for " + item.get("sum") + " in " + item.get("y") + "-" + item.get("m")); }); print("Explicit types"); list = session.createSQLQuery(sql).addScalar("y", LongType.INSTANCE).addScalar("m", LongType.INSTANCE) .addScalar("sum").addScalar("first_name").addScalar("last_name") .setResultTransformer(Transformers.ALIAS_TO_ENTITY_MAP).list(); list.forEach(item -> { print(item.get("first_name") + " sold for " + item.get("sum") + " in " + item.get("y") + "-" + item.get("m")); }); print("DTO's"); List<SaleDTO> typeDtos = session.createSQLQuery(sql).addScalar("y", LongType.INSTANCE) .addScalar("m", LongType.INSTANCE).addScalar("sum").addScalar("first_name").addScalar("last_name") .setResultTransformer(Transformers.aliasToBean(SaleDTO.class)).list(); typeDtos.forEach(item -> { print(item.first_name + " sold for " + item.sum + " in " + item.y + "-" + item.m); }); } static public class SaleDTO { public long m; public long y; public String first_name; public String last_name; public BigDecimal sum; } private Session getSession() { return em.unwrap(Session.class); } private StatelessSession getStatelessSession() { return em.getEntityManagerFactory().unwrap(SessionFactory.class).openStatelessSession(); } private void nativeQueries() { print(em.createNativeQuery("select * from Actor", db.Actor.class).getResultStream().findFirst()); StatelessSession session = getStatelessSession(); session.doWork(connection -> { String sql = """ SELECT first_name, last_name, count(*) films FROM actor AS a JOIN film_actor AS fa USING (actor_id) GROUP BY actor_id, first_name, last_name ORDER BY films DESC LIMIT 1; """; /* DSLContext create = DSL.using(connection, SQLDialect.POSTGRES); Field<Integer> COUNT = DSL.field("COUNT(*)", Integer.class); String jooqsql = create.select(ACTOR.FIRST_NAME, ACTOR.LAST_NAME, COUNT.as("films")).from(ACTOR) .join(FILM_ACTOR).using(FILM_ACTOR.ACTOR_ID) .groupBy(ACTOR.ACTOR_ID, ACTOR.FIRST_NAME, ACTOR.LAST_NAME).orderBy(COUNT.desc()).limit(1) .getSQL(ParamType.INLINED); */ print(session.createSQLQuery(sql).addScalar("first_name", StringType.INSTANCE) .addScalar("last_name", StringType.INSTANCE).addScalar("films", LongType.INSTANCE) .getSingleResult()); }); } }
[ "manderse@redhat.com" ]
manderse@redhat.com
9913978b1ac4881c7762abe49d02ebe771378d10
dd66f580d332e4fbfc69f9c828c5dab7ddaa8d63
/demos/flamingo-demo/src/main/java/org/pushingpixels/demo/flamingo/svg/filetypes/transcoded/ext_m.java
89a076091e9bbb3cfc4c84bd114fe65a7d39629b
[ "BSD-3-Clause" ]
permissive
spslinger/radiance
44f06d939afc3e27c0d4997b2fd89a27aff39fdf
7cf51ee22014df1368c04f5f9f6ecbea93695231
refs/heads/master
2020-03-31T18:00:48.170702
2018-10-11T12:49:29
2018-10-11T12:49:29
152,442,895
0
0
BSD-3-Clause
2018-10-11T12:49:31
2018-10-10T15:04:46
Java
UTF-8
Java
false
false
14,127
java
package org.pushingpixels.demo.flamingo.svg.filetypes.transcoded; import java.awt.*; import java.awt.geom.*; import javax.swing.plaf.UIResource; import org.pushingpixels.neon.icon.IsHiDpiAware; import org.pushingpixels.neon.icon.ResizableIcon; import org.pushingpixels.neon.icon.NeonIcon; import org.pushingpixels.neon.icon.NeonIconUIResource; /** * This class has been automatically generated using <a * href="https://github.com/kirill-grouchnikov/radiance">Photon SVG transcoder</a>. */ public class ext_m implements ResizableIcon, IsHiDpiAware { @SuppressWarnings("unused") private void innerPaint(Graphics2D g) { Shape shape = null; Paint paint = null; Stroke stroke = null; float origAlpha = 1.0f; Composite origComposite = g.getComposite(); if (origComposite instanceof AlphaComposite) { AlphaComposite origAlphaComposite = (AlphaComposite)origComposite; if (origAlphaComposite.getRule() == AlphaComposite.SRC_OVER) { origAlpha = origAlphaComposite.getAlpha(); } } AffineTransform defaultTransform_ = g.getTransform(); // g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); AffineTransform defaultTransform__0 = g.getTransform(); g.transform(new AffineTransform(0.009999999776482582f, 0.0f, 0.0f, 0.009999999776482582f, 0.13999999687075615f, -0.0f)); // _0 g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); AffineTransform defaultTransform__0_0 = g.getTransform(); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_0 paint = new LinearGradientPaint(new Point2D.Double(36.108001708984375, 3.003000020980835), new Point2D.Double(36.108001708984375, 101.0009994506836), new float[] {0.0f,0.139f,0.359f,0.617f,1.0f}, new Color[] {new Color(200, 212, 219, 255),new Color(216, 225, 230, 255),new Color(235, 240, 243, 255),new Color(249, 250, 251, 255),new Color(255, 255, 255, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, -1.0f, 0.0f, 102.0f)); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(45.1, 1.0); ((GeneralPath)shape).lineTo(72.0, 27.7); ((GeneralPath)shape).lineTo(72.0, 99.0); ((GeneralPath)shape).lineTo(0.2, 99.0); ((GeneralPath)shape).lineTo(0.2, 1.0); ((GeneralPath)shape).lineTo(45.100002, 1.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.fill(shape); g.setTransform(defaultTransform__0_0); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); AffineTransform defaultTransform__0_1 = g.getTransform(); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_1 paint = new Color(0, 0, 0, 0); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(45.1, 1.0); ((GeneralPath)shape).lineTo(72.0, 27.7); ((GeneralPath)shape).lineTo(72.0, 99.0); ((GeneralPath)shape).lineTo(0.2, 99.0); ((GeneralPath)shape).lineTo(0.2, 1.0); ((GeneralPath)shape).lineTo(45.100002, 1.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.fill(shape); paint = new Color(113, 145, 161, 255); stroke = new BasicStroke(2.0f,0,0,4.0f,null,0.0f); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(45.1, 1.0); ((GeneralPath)shape).lineTo(72.0, 27.7); ((GeneralPath)shape).lineTo(72.0, 99.0); ((GeneralPath)shape).lineTo(0.2, 99.0); ((GeneralPath)shape).lineTo(0.2, 1.0); ((GeneralPath)shape).lineTo(45.100002, 1.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.setStroke(stroke); g.draw(shape); g.setTransform(defaultTransform__0_1); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); AffineTransform defaultTransform__0_2 = g.getTransform(); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_2 paint = new Color(76, 108, 123, 255); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(26.1, 91.1); ((GeneralPath)shape).lineTo(26.1, 71.2); ((GeneralPath)shape).lineTo(32.1, 71.2); ((GeneralPath)shape).lineTo(35.699997, 84.7); ((GeneralPath)shape).lineTo(39.299995, 71.2); ((GeneralPath)shape).lineTo(45.299995, 71.2); ((GeneralPath)shape).lineTo(45.299995, 91.0); ((GeneralPath)shape).lineTo(41.599995, 91.0); ((GeneralPath)shape).lineTo(41.599995, 75.4); ((GeneralPath)shape).lineTo(37.599995, 91.0); ((GeneralPath)shape).lineTo(33.699993, 91.0); ((GeneralPath)shape).lineTo(29.699993, 75.4); ((GeneralPath)shape).lineTo(29.699993, 91.0); ((GeneralPath)shape).lineTo(26.099993, 91.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.fill(shape); g.setTransform(defaultTransform__0_2); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); AffineTransform defaultTransform__0_3 = g.getTransform(); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_3 paint = new LinearGradientPaint(new Point2D.Double(33.5, 25.0), new Point2D.Double(33.5, 21.0), new float[] {0.0f,1.0f}, new Color[] {new Color(173, 204, 220, 255),new Color(76, 108, 123, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(15.0, 21.0); ((GeneralPath)shape).lineTo(52.0, 21.0); ((GeneralPath)shape).lineTo(52.0, 25.0); ((GeneralPath)shape).lineTo(15.0, 25.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.fill(shape); g.setTransform(defaultTransform__0_3); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); AffineTransform defaultTransform__0_4 = g.getTransform(); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_4 paint = new LinearGradientPaint(new Point2D.Double(40.5, 34.0), new Point2D.Double(40.5, 30.0), new float[] {0.0f,1.0f}, new Color[] {new Color(173, 204, 220, 255),new Color(76, 108, 123, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(22.0, 30.0); ((GeneralPath)shape).lineTo(59.0, 30.0); ((GeneralPath)shape).lineTo(59.0, 34.0); ((GeneralPath)shape).lineTo(22.0, 34.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.fill(shape); g.setTransform(defaultTransform__0_4); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); AffineTransform defaultTransform__0_5 = g.getTransform(); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_5 paint = new LinearGradientPaint(new Point2D.Double(33.5, 43.0), new Point2D.Double(33.5, 39.0), new float[] {0.0f,1.0f}, new Color[] {new Color(173, 204, 220, 255),new Color(76, 108, 123, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(15.0, 39.0); ((GeneralPath)shape).lineTo(52.0, 39.0); ((GeneralPath)shape).lineTo(52.0, 43.0); ((GeneralPath)shape).lineTo(15.0, 43.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.fill(shape); g.setTransform(defaultTransform__0_5); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); AffineTransform defaultTransform__0_6 = g.getTransform(); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_6 paint = new LinearGradientPaint(new Point2D.Double(40.5, 52.0), new Point2D.Double(40.5, 48.0), new float[] {0.0f,1.0f}, new Color[] {new Color(173, 204, 220, 255),new Color(76, 108, 123, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(22.0, 48.0); ((GeneralPath)shape).lineTo(59.0, 48.0); ((GeneralPath)shape).lineTo(59.0, 52.0); ((GeneralPath)shape).lineTo(22.0, 52.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.fill(shape); g.setTransform(defaultTransform__0_6); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); AffineTransform defaultTransform__0_7 = g.getTransform(); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_7 paint = new LinearGradientPaint(new Point2D.Double(31.5, 61.0), new Point2D.Double(31.5, 57.0), new float[] {0.0f,1.0f}, new Color[] {new Color(173, 204, 220, 255),new Color(76, 108, 123, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(13.0, 57.0); ((GeneralPath)shape).lineTo(50.0, 57.0); ((GeneralPath)shape).lineTo(50.0, 61.0); ((GeneralPath)shape).lineTo(13.0, 61.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.fill(shape); g.setTransform(defaultTransform__0_7); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); AffineTransform defaultTransform__0_8 = g.getTransform(); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_8 paint = new LinearGradientPaint(new Point2D.Double(45.12200164794922, 74.22899627685547), new Point2D.Double(58.57500076293945, 87.68299865722656), new float[] {0.0f,0.35f,0.532f,0.675f,0.799f,0.908f,1.0f}, new Color[] {new Color(255, 255, 255, 255),new Color(250, 251, 251, 255),new Color(237, 241, 244, 255),new Color(221, 229, 233, 255),new Color(199, 211, 218, 255),new Color(173, 189, 199, 255),new Color(146, 165, 176, 255)}, MultipleGradientPaint.CycleMethod.NO_CYCLE, MultipleGradientPaint.ColorSpaceType.SRGB, new AffineTransform(1.0f, 0.0f, 0.0f, -1.0f, 0.0f, 102.0f)); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(45.1, 1.0); ((GeneralPath)shape).lineTo(72.0, 27.7); ((GeneralPath)shape).lineTo(45.1, 27.7); ((GeneralPath)shape).lineTo(45.1, 1.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.fill(shape); g.setTransform(defaultTransform__0_8); g.setComposite(AlphaComposite.getInstance(3, 1.0f * origAlpha)); AffineTransform defaultTransform__0_9 = g.getTransform(); g.transform(new AffineTransform(1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f)); // _0_9 paint = new Color(0, 0, 0, 0); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(45.1, 1.0); ((GeneralPath)shape).lineTo(72.0, 27.7); ((GeneralPath)shape).lineTo(45.1, 27.7); ((GeneralPath)shape).lineTo(45.1, 1.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.fill(shape); paint = new Color(113, 145, 161, 255); stroke = new BasicStroke(2.0f,0,2,4.0f,null,0.0f); shape = new GeneralPath(); ((GeneralPath)shape).moveTo(45.1, 1.0); ((GeneralPath)shape).lineTo(72.0, 27.7); ((GeneralPath)shape).lineTo(45.1, 27.7); ((GeneralPath)shape).lineTo(45.1, 1.0); ((GeneralPath)shape).closePath(); g.setPaint(paint); g.setStroke(stroke); g.draw(shape); g.setTransform(defaultTransform__0_9); g.setTransform(defaultTransform__0); g.setTransform(defaultTransform_); } /** * Returns the X of the bounding box of the original SVG image. * * @return The X of the bounding box of the original SVG image. */ public static double getOrigX() { return 0.13199996948242188; } /** * Returns the Y of the bounding box of the original SVG image. * * @return The Y of the bounding box of the original SVG image. */ public static double getOrigY() { return 0.0; } /** * Returns the width of the bounding box of the original SVG image. * * @return The width of the bounding box of the original SVG image. */ public static double getOrigWidth() { return 0.7380000352859497; } /** * Returns the height of the bounding box of the original SVG image. * * @return The height of the bounding box of the original SVG image. */ public static double getOrigHeight() { return 1.0; } /** The current width of this resizable icon. */ private int width; /** The current height of this resizable icon. */ private int height; /** * Creates a new transcoded SVG image. It is recommended to use the * {@link #of(int, int)} method to obtain a pre-configured instance. */ public ext_m() { this.width = (int) getOrigWidth(); this.height = (int) getOrigHeight(); } @Override public int getIconHeight() { return height; } @Override public int getIconWidth() { return width; } @Override public void setDimension(Dimension newDimension) { this.width = newDimension.width; this.height = newDimension.height; } @Override public boolean isHiDpiAware() { return true; } @Override public void paintIcon(Component c, Graphics g, int x, int y) { Graphics2D g2d = (Graphics2D) g.create(); g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g2d.translate(x, y); double coef1 = (double) this.width / getOrigWidth(); double coef2 = (double) this.height / getOrigHeight(); double coef = Math.min(coef1, coef2); g2d.clipRect(0, 0, this.width, this.height); g2d.scale(coef, coef); g2d.translate(-getOrigX(), -getOrigY()); if (coef1 != coef2) { if (coef1 < coef2) { int extraDy = (int) ((getOrigWidth() - getOrigHeight()) / 2.0); g2d.translate(0, extraDy); } else { int extraDx = (int) ((getOrigHeight() - getOrigWidth()) / 2.0); g2d.translate(extraDx, 0); } } Graphics2D g2ForInner = (Graphics2D) g2d.create(); innerPaint(g2ForInner); g2ForInner.dispose(); g2d.dispose(); } /** * Returns an instance of this icon with specified dimensions. */ public static NeonIcon of(int width, int height) { ext_m base = new ext_m(); base.width = width; base.height = height; return new NeonIcon(base); } /** * Returns a {@link UIResource} instance of this icon with specified dimensions. */ public static NeonIconUIResource uiResourceOf(int width, int height) { ext_m base = new ext_m(); base.width = width; base.height = height; return new NeonIconUIResource(base); } }
[ "kirill.grouchnikov@gmail.com" ]
kirill.grouchnikov@gmail.com
167ce94e8c18d1b122c9ab6a4ca2ecc8b51752f6
1f88fa8499bb48c35582518344d8fb78dde0b2ca
/app/src/main/java/com/lfy/customviewdemo/ui/StickyLayout.java
f6dfde41e51c2e3d68f30616449c0aa428f686ba
[]
no_license
LiaoFuYun/CustomViewDemo
d7549105c83d1b1b804de16c9cc819db5486a51f
fe21254a908bd78ed8be17842b771d819f2198cd
refs/heads/master
2020-12-03T04:16:04.822651
2017-09-05T09:14:18
2017-09-05T09:14:18
95,840,989
1
0
null
null
null
null
UTF-8
Java
false
false
7,040
java
package com.lfy.customviewdemo.ui; import android.content.Context; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.VelocityTracker; import android.view.View; import android.view.ViewGroup; import android.widget.Scroller; public class StickyLayout extends ViewGroup { private Context mContext; private Scroller mScroller; private VelocityTracker mVelocityTracker; private int childIndex = 0; private int childWidth = 0; private int lastInterceptX = 0; private int lastInterceptY = 0; private int lastX = 0; private int lastY = 0; public StickyLayout(Context context) { super(context); this.mContext = context; init(); } public StickyLayout(Context context, AttributeSet attrs) { super(context, attrs); this.mContext = context; init(); } public StickyLayout(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); this.mContext = context; init(); } private void init() { mScroller = new Scroller(mContext); mVelocityTracker = VelocityTracker.obtain(); } @Override public boolean onInterceptTouchEvent(MotionEvent ev) { boolean intercept = false; int eventX = (int) ev.getX(); int eventY = (int) ev.getY(); switch (ev.getAction()) { case MotionEvent.ACTION_DOWN: intercept = false; break; case MotionEvent.ACTION_MOVE: int diffX = eventX - lastInterceptX; int diffY = eventY - lastInterceptY; intercept = Math.abs(diffX) > Math.abs(diffY); break; case MotionEvent.ACTION_UP: intercept = false; break; } lastInterceptX = eventX; lastInterceptY = eventY; lastX = eventX; lastY = eventY; return intercept; } @Override public boolean onTouchEvent(MotionEvent event) { mVelocityTracker.addMovement(event); int x = (int) event.getX(); int y = (int) event.getY(); switch (event.getAction()) { case MotionEvent.ACTION_DOWN: if (!mScroller.isFinished()) { mScroller.abortAnimation(); } break; case MotionEvent.ACTION_MOVE: scrollBy(lastX - x, 0); break; case MotionEvent.ACTION_UP: int scrollX = getScrollX(); mVelocityTracker.computeCurrentVelocity(1000); float xVelocity = mVelocityTracker.getXVelocity(); System.out.println("scrollX:" + scrollX + "xVelocity:" + xVelocity); if (Math.abs(xVelocity) > 500) { childIndex = xVelocity > 0 ? childIndex - 1 : childIndex + 1; System.out.println("fast:" + childIndex); } else { childIndex = ((scrollX + childWidth / 2) / childWidth); System.out.println("slow:" + childIndex); } childIndex = Math.max(0, Math.min(childIndex, getChildCount() - 1)); int destX = childIndex * childWidth; smoothScrollTo(destX, 0); mVelocityTracker.clear(); break; } lastX = x; lastY = y; return true; } private void smoothScrollTo(int destX, int destY) { int scrollX = getScrollX(); int scrollY = getScrollY(); mScroller.startScroll(scrollX, 0, destX - scrollX, destY - scrollY); invalidate(); } @Override public void computeScroll() { super.computeScroll(); if (!mScroller.computeScrollOffset()) { return; } scrollTo(mScroller.getCurrX(), mScroller.getCurrY()); postInvalidate(); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); int measureWidth = 0; int measureHeight = 0; final int childCount = getChildCount(); if (childCount > 0) { measureChildren(widthMeasureSpec, heightMeasureSpec); } int widthMode = MeasureSpec.getMode(widthMeasureSpec); int widthSpecSize = MeasureSpec.getSize(widthMeasureSpec); int heightMode = MeasureSpec.getMode(heightMeasureSpec); int heightSpecSize = MeasureSpec.getSize(heightMeasureSpec); if (childCount == 0) { setMeasuredDimension(widthSpecSize, heightSpecSize); } else if (widthMode == MeasureSpec.AT_MOST && heightMode == MeasureSpec.AT_MOST) { for (int i = 0; i < childCount; i++) { View child = getChildAt(i); int childWidth = child.getMeasuredWidth(); int childHeight = child.getMeasuredHeight(); // 取所有子view的宽度总和 measureWidth += childWidth; // 取所有子view中的最高高度 if (childHeight > measureHeight) { measureHeight = childHeight; } } setMeasuredDimension(measureWidth, measureHeight); } else if (widthMode == MeasureSpec.AT_MOST) { for (int i = 0; i < childCount; i++) { View child = getChildAt(i); int childWidth = child.getMeasuredWidth(); // 取所有子view的宽度总和 measureWidth += childWidth; } setMeasuredDimension(measureWidth, heightSpecSize); } else if (heightMode == MeasureSpec.AT_MOST) { for (int i = 0; i < childCount; i++) { View child = getChildAt(i); int childHeight = child.getMeasuredHeight(); // 取所有子view中的最高高度 if (childHeight > measureHeight) { measureHeight = childHeight; } } setMeasuredDimension(widthSpecSize, measureHeight); } } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { int childLeft = 0; final int childCount = getChildCount(); for (int i = 0; i < childCount; i++) { View child = getChildAt(i); if (child != null && child.getVisibility() != View.GONE) { final int childMeasuredWidth = child.getMeasuredWidth(); childWidth = childMeasuredWidth; child.layout(childLeft, 0, childLeft + childMeasuredWidth, child.getMeasuredHeight()); childLeft += childMeasuredWidth; } } } @Override protected void onDetachedFromWindow() { super.onDetachedFromWindow(); mVelocityTracker.recycle(); mScroller.abortAnimation(); } }
[ "LiaoFuYun@github.com" ]
LiaoFuYun@github.com
945d85b4a343041bbfafe58fc7973b9e544aab7e
4093451815d65cf4273ade9f346c17959202de95
/app/src/main/java/de/htwdd/htwdresden/RoomTimetableDetailsFragment.java
7169c85d9a648bdcb4f658d8da2b2a85d081e88a
[ "MIT" ]
permissive
bafbes/HTWDresden
71316970ef345a3da435db762272568ae290eaf5
b774dfba218ed01f81e9efb9e5653d8dfcc76289
refs/heads/master
2021-01-13T03:43:42.132637
2016-12-14T19:11:44
2016-12-14T19:11:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,256
java
package de.htwdd.htwdresden; import android.app.Fragment; import android.os.Bundle; import android.support.design.widget.TabLayout; import android.support.v4.view.ViewPager; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import java.util.ArrayList; import java.util.Calendar; import java.util.GregorianCalendar; import java.util.List; import java.util.Locale; import de.htwdd.htwdresden.adapter.ViewPagerAdapter; import de.htwdd.htwdresden.classes.Const; import de.htwdd.htwdresden.interfaces.INavigation; import de.htwdd.htwdresden.types.TabItem; /** * Hauptfragment welches die verschiedenen Sub-Fragmente enthält */ public class RoomTimetableDetailsFragment extends Fragment { private List<TabItem> mTabs = new ArrayList<>(); private String room; public RoomTimetableDetailsFragment() { // Required empty public constructor } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); final Bundle bundle = getArguments(); room = bundle.getString(Const.BundleParams.ROOM_TIMETABLE_ROOM, ""); final Calendar calendar = GregorianCalendar.getInstance(Locale.GERMANY); int currentWeek = calendar.get(Calendar.WEEK_OF_YEAR); calendar.add(Calendar.WEEK_OF_YEAR, 1); int nextWeek = calendar.get(Calendar.WEEK_OF_YEAR); final Bundle bundle_1 = new Bundle(); bundle_1.putInt(Const.BundleParams.TIMETABLE_WEEK, currentWeek); bundle_1.putString(Const.BundleParams.ROOM_TIMETABLE_ROOM, room); final Bundle bundle_2 = new Bundle(); bundle_2.putInt(Const.BundleParams.TIMETABLE_WEEK, nextWeek); bundle_2.putString(Const.BundleParams.ROOM_TIMETABLE_ROOM, room); mTabs.add(new TabItem( getResources().getString(R.string.timetable_current_week, currentWeek), RoomTimetableOverviewFragment.class, bundle_1 )); mTabs.add(new TabItem( getResources().getString(R.string.timetable_next_week, nextWeek), RoomTimetableOverviewFragment.class, bundle_2 )); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment final View view = inflater.inflate(R.layout.fragment_tabs, container, false); // Setze Toolbartitle ((INavigation)getActivity()).setTitle(getResources().getString(R.string.room_timetable_details_title, room)); final ViewPager viewPager = (ViewPager) view.findViewById(R.id.viewpager); // Adapter für Tabs erstellen und an view hängen viewPager.setAdapter( new ViewPagerAdapter(getFragmentManager(), mTabs)); // TabLayout "stylen" final TabLayout tabLayout = (TabLayout) view.findViewById(R.id.sliding_tabs); // Stetze feste Anzahl an Tabs (Tabs wirken nciht angeklatscht) tabLayout.setTabMode(TabLayout.MODE_FIXED); // Tabs nehemen immer die ganze Breite ein tabLayout.setTabGravity(TabLayout.GRAVITY_FILL); tabLayout.setupWithViewPager(viewPager); return view; } }
[ "red.mail2@gmail.com" ]
red.mail2@gmail.com
94baba7de0ed6d05750ecfe4307e8cf0f6b2a1de
dfa945d8bfa2d4e2b8006a2cfffdf4ec7217cee7
/eitaa-src/messenger/volley/toolbox/StringRequest.java
4239b6b759ad78856654909dbbc670a5b2063465
[]
no_license
ondfly/cmp_eitaa_telegram
fd0b258fec8318bd5380baba4708882014c70dc1
79a1473e04f5fe57fe05570117dfda9a3e8c755d
refs/heads/master
2020-03-14T13:03:57.239807
2018-04-30T17:18:47
2018-05-01T17:16:21
131,624,694
2
0
null
null
null
null
UTF-8
Java
false
false
1,686
java
package ir.eitaa.messenger.volley.toolbox; import ir.eitaa.messenger.volley.NetworkResponse; import ir.eitaa.messenger.volley.Request; import ir.eitaa.messenger.volley.Response; import ir.eitaa.messenger.volley.Response.ErrorListener; import ir.eitaa.messenger.volley.Response.Listener; import java.io.UnsupportedEncodingException; public class StringRequest extends Request<String> { private final Response.Listener<String> mListener; public StringRequest(int paramInt, String paramString, Response.Listener<String> paramListener, Response.ErrorListener paramErrorListener) { super(paramInt, paramString, paramErrorListener); this.mListener = paramListener; } public StringRequest(String paramString, Response.Listener<String> paramListener, Response.ErrorListener paramErrorListener) { this(0, paramString, paramListener, paramErrorListener); } protected void deliverResponse(String paramString) { this.mListener.onResponse(paramString); } protected Response<String> parseNetworkResponse(NetworkResponse paramNetworkResponse) { try { String str1 = new String(paramNetworkResponse.data, HttpHeaderParser.parseCharset(paramNetworkResponse.headers)); return Response.success(str1, HttpHeaderParser.parseCacheHeaders(paramNetworkResponse)); } catch (UnsupportedEncodingException localUnsupportedEncodingException) { for (;;) { String str2 = new String(paramNetworkResponse.data); } } } } /* Location: /dex2jar/eitaa-dex2jar.jar!/ir/eitaa/messenger/volley/toolbox/StringRequest.class * Java compiler version: 6 (50.0) * JD-Core Version: 0.7.1 */
[ "ondfly@b00mrang" ]
ondfly@b00mrang
b45c810bdd7c2e816cc683901f1685a3bb9ca2f3
abe3226306c1dec3700a7b5c13f9b8e8268c6d95
/java/udemy-java-programming-mastercourse/Composition/src/com/company/Bedroom.java
59c3b6196c0e4cde16bf596d544160a9db07f140
[]
no_license
xinleihuang/study
dc0038d4ae59e0d233e61807ae9e0de66a0528b7
2b9a8719fb2610d0e97c02beb633aa9a3a1ebe9c
refs/heads/master
2020-04-07T17:40:30.926505
2019-05-10T19:16:50
2019-05-10T19:16:50
158,578,702
0
0
null
null
null
null
UTF-8
Java
false
false
679
java
package com.company; public class Bedroom { private String name; private Wall wall1; private Wall wall2; private Wall wall3; private Wall wall4; private Ceiling ceiling; private Bed bed; private Lamp lamp; public Bedroom(String name, Wall wall1, Wall wall2, Wall wall3, Wall wall4, Ceiling ceiling, Bed bed, Lamp lamp) { this.name = name; this.wall1 = wall1; this.wall2 = wall2; this.wall3 = wall3; this.wall4 = wall4; this.ceiling = ceiling; this.bed = bed; this.lamp = lamp; } public Lamp getLamp() { return lamp; } public void makeBed() { } }
[ "xinleihuang3@gmai.com" ]
xinleihuang3@gmai.com
04eabd5b1fe4bb091d679c573cde2f75d25736df
fc6afc6d3ec03d727360cf17c4e6d8c5fc1a9377
/src/main/java/com/java/freeboard/mapper/Mapper.java
df39d4be241d0cd9956222e0ef89e26d1dd76cff
[]
no_license
TasupK/Spring_MVC3
29514d10bde367ddb950906588469e19c1ddfe24
31fafac6d8359655c98d4c76ba1300a38d8246a3
refs/heads/master
2023-03-31T21:44:43.637112
2021-04-10T07:33:32
2021-04-10T07:33:32
347,585,300
0
0
null
null
null
null
UTF-8
Java
false
false
66
java
package com.java.freeboard.mapper; public class Mapper { }
[ "ruyzlen@gmail.com" ]
ruyzlen@gmail.com
ef35fa152d3eae91ad637ad9545826ce913766f8
4f044581e329abff93076241c832fc80318c98b7
/src/main/java/com/qdum/jhipsterdemo/web/rest/UserResource.java
43b043038d00fffabb1e9e5faf39f41060de956a
[]
no_license
BulkSecurityGeneratorProject/redis_distributed_lock
7e24b2b9a8d8e41d98c573443c479fa868c7dbb1
f46e8d6ac607a3def23e6485fc44a920ea2b2d4a
refs/heads/master
2022-12-11T23:39:23.136888
2019-03-13T02:24:11
2019-03-13T02:24:11
296,687,434
0
0
null
2020-09-18T17:27:03
2020-09-18T17:27:02
null
UTF-8
Java
false
false
8,331
java
package com.qdum.jhipsterdemo.web.rest; import com.qdum.jhipsterdemo.config.Constants; import com.qdum.jhipsterdemo.domain.User; import com.qdum.jhipsterdemo.repository.UserRepository; import com.qdum.jhipsterdemo.security.AuthoritiesConstants; import com.qdum.jhipsterdemo.service.MailService; import com.qdum.jhipsterdemo.service.UserService; import com.qdum.jhipsterdemo.service.dto.UserDTO; import com.qdum.jhipsterdemo.web.rest.errors.BadRequestAlertException; import com.qdum.jhipsterdemo.web.rest.errors.EmailAlreadyUsedException; import com.qdum.jhipsterdemo.web.rest.errors.LoginAlreadyUsedException; import com.qdum.jhipsterdemo.web.rest.util.HeaderUtil; import com.qdum.jhipsterdemo.web.rest.util.PaginationUtil; import io.github.jhipster.web.util.ResponseUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.http.HttpHeaders; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; import javax.validation.Valid; import java.net.URI; import java.net.URISyntaxException; import java.util.*; /** * REST controller for managing users. * <p> * This class accesses the User entity, and needs to fetch its collection of authorities. * <p> * For a normal use-case, it would be better to have an eager relationship between User and Authority, * and send everything to the client side: there would be no View Model and DTO, a lot less code, and an outer-join * which would be good for performance. * <p> * We use a View Model and a DTO for 3 reasons: * <ul> * <li>We want to keep a lazy association between the user and the authorities, because people will * quite often do relationships with the user, and we don't want them to get the authorities all * the time for nothing (for performance reasons). This is the #1 goal: we should not impact our users' * application because of this use-case.</li> * <li> Not having an outer join causes n+1 requests to the database. This is not a real issue as * we have by default a second-level cache. This means on the first HTTP call we do the n+1 requests, * but then all authorities come from the cache, so in fact it's much better than doing an outer join * (which will get lots of data from the database, for each HTTP call).</li> * <li> As this manages users, for security reasons, we'd rather have a DTO layer.</li> * </ul> * <p> * Another option would be to have a specific JPA entity graph to handle this case. */ @RestController @RequestMapping("/api") public class UserResource { private final Logger log = LoggerFactory.getLogger(UserResource.class); private final UserService userService; private final UserRepository userRepository; private final MailService mailService; public UserResource(UserService userService, UserRepository userRepository, MailService mailService) { this.userService = userService; this.userRepository = userRepository; this.mailService = mailService; } /** * POST /users : Creates a new user. * <p> * Creates a new user if the login and email are not already used, and sends an * mail with an activation link. * The user needs to be activated on creation. * * @param userDTO the user to create * @return the ResponseEntity with status 201 (Created) and with body the new user, or with status 400 (Bad Request) if the login or email is already in use * @throws URISyntaxException if the Location URI syntax is incorrect * @throws BadRequestAlertException 400 (Bad Request) if the login or email is already in use */ @PostMapping("/users") @PreAuthorize("hasRole(\"" + AuthoritiesConstants.ADMIN + "\")") public ResponseEntity<User> createUser(@Valid @RequestBody UserDTO userDTO) throws URISyntaxException { log.debug("REST request to save User : {}", userDTO); if (userDTO.getId() != null) { throw new BadRequestAlertException("A new user cannot already have an ID", "userManagement", "idexists"); // Lowercase the user login before comparing with database } else if (userRepository.findOneByLogin(userDTO.getLogin().toLowerCase()).isPresent()) { throw new LoginAlreadyUsedException(); } else if (userRepository.findOneByEmailIgnoreCase(userDTO.getEmail()).isPresent()) { throw new EmailAlreadyUsedException(); } else { User newUser = userService.createUser(userDTO); mailService.sendCreationEmail(newUser); return ResponseEntity.created(new URI("/api/users/" + newUser.getLogin())) .headers(HeaderUtil.createAlert( "userManagement.created", newUser.getLogin())) .body(newUser); } } /** * PUT /users : Updates an existing User. * * @param userDTO the user to update * @return the ResponseEntity with status 200 (OK) and with body the updated user * @throws EmailAlreadyUsedException 400 (Bad Request) if the email is already in use * @throws LoginAlreadyUsedException 400 (Bad Request) if the login is already in use */ @PutMapping("/users") @PreAuthorize("hasRole(\"" + AuthoritiesConstants.ADMIN + "\")") public ResponseEntity<UserDTO> updateUser(@Valid @RequestBody UserDTO userDTO) { log.debug("REST request to update User : {}", userDTO); Optional<User> existingUser = userRepository.findOneByEmailIgnoreCase(userDTO.getEmail()); if (existingUser.isPresent() && (!existingUser.get().getId().equals(userDTO.getId()))) { throw new EmailAlreadyUsedException(); } existingUser = userRepository.findOneByLogin(userDTO.getLogin().toLowerCase()); if (existingUser.isPresent() && (!existingUser.get().getId().equals(userDTO.getId()))) { throw new LoginAlreadyUsedException(); } Optional<UserDTO> updatedUser = userService.updateUser(userDTO); return ResponseUtil.wrapOrNotFound(updatedUser, HeaderUtil.createAlert("userManagement.updated", userDTO.getLogin())); } /** * GET /users : get all users. * * @param pageable the pagination information * @return the ResponseEntity with status 200 (OK) and with body all users */ @GetMapping("/users") public ResponseEntity<List<UserDTO>> getAllUsers(Pageable pageable) { final Page<UserDTO> page = userService.getAllManagedUsers(pageable); HttpHeaders headers = PaginationUtil.generatePaginationHttpHeaders(page, "/api/users"); return new ResponseEntity<>(page.getContent(), headers, HttpStatus.OK); } /** * @return a string list of the all of the roles */ @GetMapping("/users/authorities") @PreAuthorize("hasRole(\"" + AuthoritiesConstants.ADMIN + "\")") public List<String> getAuthorities() { return userService.getAuthorities(); } /** * GET /users/:login : get the "login" user. * * @param login the login of the user to find * @return the ResponseEntity with status 200 (OK) and with body the "login" user, or with status 404 (Not Found) */ @GetMapping("/users/{login:" + Constants.LOGIN_REGEX + "}") public ResponseEntity<UserDTO> getUser(@PathVariable String login) { log.debug("REST request to get User : {}", login); return ResponseUtil.wrapOrNotFound( userService.getUserWithAuthoritiesByLogin(login) .map(UserDTO::new)); } /** * DELETE /users/:login : delete the "login" User. * * @param login the login of the user to delete * @return the ResponseEntity with status 200 (OK) */ @DeleteMapping("/users/{login:" + Constants.LOGIN_REGEX + "}") @PreAuthorize("hasRole(\"" + AuthoritiesConstants.ADMIN + "\")") public ResponseEntity<Void> deleteUser(@PathVariable String login) { log.debug("REST request to delete User: {}", login); userService.deleteUser(login); return ResponseEntity.ok().headers(HeaderUtil.createAlert( "userManagement.deleted", login)).build(); } }
[ "yyt007@126.com" ]
yyt007@126.com
464b51987757734687ef2fd27ecb02c5d3e5c5f4
17f01e3ab4a3432e433096d43f29492c4830ec31
/app/src/main/java/com/example/template/jetpack/lifecycle/LifeCycleTestActivity.java
21390175cc351cab5a473538df37626b9479632c
[]
no_license
FengQing123/Template
2daa1496eb4ffdc451a14ef52f13222cc7a401c1
71e6e998d3f6676276fdf93ae4412aac5e90e472
refs/heads/master
2021-12-03T22:25:55.265372
2021-11-26T09:45:56
2021-11-26T09:45:56
229,215,345
0
0
null
null
null
null
UTF-8
Java
false
false
1,973
java
package com.example.template.jetpack.lifecycle; import android.os.Bundle; import android.util.Log; import android.view.View; import androidx.annotation.Nullable; import com.example.common.util.UIUtil; import com.example.template.R; import com.example.template.app.BaseActivity; import com.example.template.module.recycleview.RecycleViewTestActivity; /** * 功能描述: * Created by gfq on 2020/3/27. */ public class LifeCycleTestActivity extends BaseActivity { private static final String TAG = "LifeCycleTestActivity"; @Override protected int getLayout() { return R.layout.activity_lifecycle; } @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); findViewById(R.id.btn_click).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { UIUtil.showActivity(mActivity, RecycleViewTestActivity.class); } }); MyLocationListener locationListener = new MyLocationListener(this, getLifecycle(), () -> { }); /** * 获取LifecycleObserver的实现类MyLocationListener * 并使用 addObserver方法 添加 */ getLifecycle().addObserver(locationListener); locationListener.enable(); Log.e(TAG, "hhhh-onCreate"); } @Override protected void onStart() { super.onStart(); Log.e(TAG, "hhhh-onStart"); } @Override protected void onResume() { super.onResume(); Log.e(TAG, "hhhh-onResume"); } @Override protected void onPause() { super.onPause(); Log.e(TAG, "hhhh-onPause"); } @Override protected void onStop() { super.onStop(); Log.e(TAG, "hhhh-onStop"); } @Override protected void onDestroy() { super.onDestroy(); Log.e(TAG, "hhhh-onDestroy"); } }
[ "1684908702@qq.com" ]
1684908702@qq.com
bf30035f21cd5f168f08100f8ba97c8dc1d4c0d5
853e545f7c4052ae3f296f7aa1b7d49976c444f2
/src/main/java/com/fab/inventory/dao/BaseDao.java
2262f3f79c7c94e579ec8caa702233099eceff00
[]
no_license
harikesh189/inventory-webapp
39f437c8a39c604e167bf691d949366978fff58b
7bc423008e034ed40bbea0bfcd526ca18027cf66
refs/heads/master
2020-09-19T19:29:06.232916
2016-09-12T10:06:40
2016-09-12T10:06:40
67,795,750
0
0
null
null
null
null
UTF-8
Java
false
false
621
java
package com.fab.inventory.dao; import java.util.List; import javax.persistence.EntityManager; import org.hibernate.Session; import com.fab.inventory.domain.BaseDomain; public interface BaseDao { public EntityManager getEntityManager(); public Session getSession(); public void persist(BaseDomain ob); public BaseDomain get(Class<? extends BaseDomain> clazz, String id); public BaseDomain load(Class<? extends BaseDomain> clazz, String id); public BaseDomain merge(BaseDomain ob); public void update(BaseDomain ob); public void persistAll(List<BaseDomain> objectList); }
[ "harikesh.iiita@gmail.com" ]
harikesh.iiita@gmail.com
21640a74f3db06c0cd40d323905cbb1ad13456c0
e6ed20bcf89497cfbbb754dce1da43ead55e6b09
/jtm_android_demo/src/com/book/jtm/chap5/SQLiteDbHelper.java
217089f872d9791cf699cfa118b288e643e6a48c
[]
no_license
breezeding/android_jtm_sourcecode
9a5ff1164e03a1d01c58c396777e297af58f6c02
3f3c15d301c1cdcd3853bd7aa6b9b4d73b90e870
refs/heads/master
2021-05-30T23:41:49.950751
2016-01-04T08:30:12
2016-01-04T08:30:12
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,577
java
/* * The MIT License (MIT) * * Copyright (c) 2014-2015 Umeng, Inc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.book.jtm.chap5; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; /** * @author mrsimple */ public class SQLiteDbHelper extends SQLiteOpenHelper { public static final String DB_NAME = "database.db"; public static final int DB_VERSION = 2; public static final String TABLE_STUDENT = "students"; /** * 创建student表的SQL语句 */ private static final String STUDENT_CREATE_TABLE_SQL = "CREATE TABLE " + TABLE_STUDENT + " (" + "id integer PRIMARY KEY AUTOINCREMENT, " + "name vachar(20) not null," + "tel_no varchar(11) NOT NULL," + "cls_id integer NOT NULL" + ");"; public SQLiteDbHelper(Context context) { super(context, DB_NAME, null, DB_VERSION); } @Override public void onCreate(SQLiteDatabase db) { // 创建students表 db.execSQL(STUDENT_CREATE_TABLE_SQL); } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { switch (oldVersion) { case 1: upgradeFromVersion1(db); break; default: break; } } private void upgradeFromVersion1(SQLiteDatabase db) { db.execSQL("alter table " + TABLE_STUDENT + " add column age integer"); } }
[ "bboyfeiyu@gmail.com" ]
bboyfeiyu@gmail.com
12b2a5205514a8f31a1fe84ad51afecee584ead9
541c63e137a48d92e4824b178be4804f55f37334
/nodes/expr/LitInt.java
4a7c9f504d85a05bf2bdfc5428c8ef99483d7176
[]
no_license
oliveiraMonica/analisadorLexico
dda1ac1a17680d929848b0c56ec058e4cd2754cd
b902e1fd82ab48a3a4c948f974da845d9e91ed87
refs/heads/master
2020-05-07T21:18:48.855196
2019-04-12T00:35:21
2019-04-12T00:35:21
180,445,432
0
0
null
null
null
null
UTF-8
Java
false
false
349
java
package nodes.expr; import java.util.Hashtable; public class LitInt extends Expr{ private double d; public LitInt(double e){ d = e; } public String getNodeName(){ return ""+d; } public void printTree(int n){ for(int i=0; i < n; i++){ System.out.print("."); } System.out.println(getNodeName()); } }
[ "monica.ufop1@gmail.com" ]
monica.ufop1@gmail.com
dd14f83e0f3acd670730bda1818fbf3232ec0a5f
e08b1ea9587b5e9233e7df3480eaeafb7a25ae04
/src/main/java/util/Constants.java
9a30d7a1fe074f93ab8d6e426092e6c8cce3f43a
[]
no_license
ArpitaNandwani90/FlipkartAssignment
4944bb6056fb2f67e5227306ab286e19fa883908
03c4265bb6b2ff08111b9b6404ba1c328b7b3e6e
refs/heads/master
2022-11-29T23:53:16.902845
2020-08-10T16:46:14
2020-08-10T16:46:14
286,528,789
0
0
null
null
null
null
UTF-8
Java
false
false
218
java
package util; public class Constants { public static String expectedurl = "https://www.flipkart.com/checkout/init?loginFlow=true"; public static String expectedtitle = "Flipkart Customer Care & Help Center"; }
[ "nandwaniarpita@gmail.com" ]
nandwaniarpita@gmail.com
4b18e7bdc7ad3eb58f3ba28f29fe422bafb636d3
e0232dcc63cc6ddbd675ed38358100878ad7a63e
/app/src/main/java/com/example/co2globalservices/ispeak1/YorubaActivity.java
f3f302dc16dfdff566e345ceeca1787817294fe0
[]
no_license
okekechimezieglory/Nitran
8b87523254164487804f5a3a2e8738a8810f0007
6fce8fa876e4dade6f9747b9a6d6db3a568c98ab
refs/heads/master
2022-09-04T22:04:34.056966
2018-09-10T12:49:55
2018-09-10T12:49:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,595
java
package com.example.co2globalservices.ispeak1; import android.content.Context; import android.media.AudioManager; import android.media.MediaPlayer; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ListView; import java.util.ArrayList; public class YorubaActivity extends AppCompatActivity { //handles playback of all the sound files private MediaPlayer mMediaPlayer; // handles audio focus when playing a sound file private AudioManager mAudioManager; AudioManager.OnAudioFocusChangeListener mOnAudioFocusChangeListener = new AudioManager.OnAudioFocusChangeListener() { @Override public void onAudioFocusChange(int focusChange) { if(focusChange == AudioManager.AUDIOFOCUS_LOSS_TRANSIENT || focusChange == AudioManager.AUDIOFOCUS_LOSS_TRANSIENT_CAN_DUCK){ mMediaPlayer.pause(); mMediaPlayer.seekTo(0); }else if (focusChange == AudioManager.AUDIOFOCUS_GAIN){ // The audioFocus_GAIN case means we have regained focus and can // resume playback mMediaPlayer.start(); }else if (focusChange == AudioManager.AUDIOFOCUS_LOSS){ // The AUDIO_FOCUS_LOSS case means we ' ve lost audio focus and // stop playback // stop playback releaseMediaPlayer(); } } }; /** *This listener gets triggered when the {@link MediaPlayer} has completed * playing the audio */ private MediaPlayer.OnCompletionListener mCompletionListener = new MediaPlayer.OnCompletionListener(){ @Override public void onCompletion(MediaPlayer mp) { releaseMediaPlayer(); } }; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.word_list); // create and setup the {@link audioManager} to request audio focus mAudioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE); // create a list of words final ArrayList<Word> words = new ArrayList<Word>(); words.add(new Word("Abandon","kọ̀ sílẹ̀",R.raw.yoru_abandon)); words.add(new Word("Abduct","gbé sálọ",R.raw.yoru_abduct)); words.add(new Word("Abide","bá gbé",R.raw.yoru_abide)); words.add(new Word("Ablaze","gbiná",R.raw.yoru_ablaze)); words.add(new Word("Abortion","ṣíṣẹ́ oyún",R.raw.yoru_abortion)); words.add(new Word("About","nípa ti",R.raw.yoru_about)); words.add(new Word("Absent","kò wá",R.raw.yoru_absent)); words.add(new Word("Absolutely","pátápátá",R.raw.yoru_absolutely)); words.add(new Word("Absorb","fàmu",R.raw.yoru_absorb)); words.add(new Word("Abstain","fà sëhìn",R.raw.yoru_abstain)); words.add(new Word("Abundant","löpõl ọpõ",R.raw.yoru_abundant)); words.add(new Word("Accept","tẹ́wögbà",R.raw.yoru_accept)); words.add(new Word("Accomodate","fún láyè",R.raw.yoru_accomodate)); words.add(new Word("Accuracy","ìṣegëgë",R.raw.yoru_accuracy)); words.add(new Word("Accurate","dédé",R.raw.yoru_accurate)); words.add(new Word("Acceptable","títẹ́wögbà",R.raw.yoru_accept)); words.add(new Word("Accidentally","láìròtëlẹ̀",R.raw.yoru_acidentally)); words.add(new Word("Come","wa",R.raw.yoru_come)); words.add(new Word("Go","Nòò",R.raw.yoru_go)); words.add(new Word("Good Afternoon","Eka sòòn",R.raw.yoru_gud_afternun)); words.add(new Word("Good Evening","Eka lẹ̀",R.raw.yoru_gud_evnin)); words.add(new Word("Good morning","Eka ròò",R.raw.yoru_gud_mornin)); words.add(new Word("Old person","Agbalagba",R.raw.yoru_old_person)); words.add(new Word("Sit down","Jo moo",R.raw.yoru_sit_down)); words.add(new Word("Small person","Omòde",R.raw.yoru_small_person)); words.add(new Word("Stand up","ide",R.raw.yoru_stand_up)); words.add(new Word("Stomach","ikùn",R.raw.yoru_stomach)); words.add(new Word("Till tomorrow","oda ròo",R.raw.yoru_till_2moro)); //create an {@link ArrayAdapter}, whose data source is a list of Strings. The //adapter knows how to create layouts for each item in the list, using the // simple_list_item.xml layout resource defined in the Android framework. // This item layout contains a single {@link TextView}, which the adapter will set //display a single word. WordAdapter adapter = new WordAdapter(this,words); ListView listView=(ListView) findViewById(R.id.list); listView.setAdapter(adapter); listView.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { Word word = words.get(position); // Release the media player if it currently exists because we are about to // play a different sound file. releaseMediaPlayer(); // request audio focus for playback int result=mAudioManager.requestAudioFocus(mOnAudioFocusChangeListener, // use the music stream AudioManager.STREAM_MUSIC, // Request permanent focus. AudioManager.AUDIOFOCUS_GAIN_TRANSIENT); if(result == AudioManager.AUDIOFOCUS_REQUEST_GRANTED){ // we have audio focus now mMediaPlayer= MediaPlayer.create(YorubaActivity.this,word.getAudioResourceId()); mMediaPlayer.start(); // no need to call prepare(); create() does that for you // Setup a listener on the media player, so that we can stop and release the // media palyer once the sound has finished playing. mMediaPlayer.setOnCompletionListener(mCompletionListener); } } }); } /** * clean up media player by releasing all its resources. */ @Override protected void onStop() { super.onStop(); // when the activity is stopped, release the media player resources because we won't // be playing any more sounds. releaseMediaPlayer(); } private void releaseMediaPlayer(){ //if the media player is not null, then it may be currently playing a sound if(mMediaPlayer !=null){ //Regardless of the current state of the media player, release its resources //because we no longer need it mMediaPlayer.release(); //set the media player back to null. For your code, we 've decided that //setting the media player to null is an easy way to tell that the media player //is not configured to play an audio file at the moment. mMediaPlayer=null; // Regardless of whether or not we were granted audio focus, abandon it. This also // unregisters the AudioFocusChangeListener so we don't get anymore callbacks. mAudioManager.abandonAudioFocus(mOnAudioFocusChangeListener); } } }
[ "okekechimezieglory@gmail.com" ]
okekechimezieglory@gmail.com
56494963377fd9bfbde11e0730e937ccbc7dac41
81719679e3d5945def9b7f3a6f638ee274f5d770
/aws-java-sdk-devicefarm/src/main/java/com/amazonaws/services/devicefarm/model/ListInstanceProfilesResult.java
511cffa584ebd6e69d52595eb42302dc6f7d52fc
[ "Apache-2.0" ]
permissive
ZeevHayat1/aws-sdk-java
1e3351f2d3f44608fbd3ff987630b320b98dc55c
bd1a89e53384095bea869a4ea064ef0cf6ed7588
refs/heads/master
2022-04-10T14:18:43.276970
2020-03-07T12:15:44
2020-03-07T12:15:44
172,681,373
1
0
Apache-2.0
2019-02-26T09:36:47
2019-02-26T09:36:47
null
UTF-8
Java
false
false
7,356
java
/* * Copyright 2014-2019 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.devicefarm.model; import java.io.Serializable; import javax.annotation.Generated; /** * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/ListInstanceProfiles" target="_top">AWS * API Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ListInstanceProfilesResult extends com.amazonaws.AmazonWebServiceResult<com.amazonaws.ResponseMetadata> implements Serializable, Cloneable { /** * <p> * An object containing information about your instance profiles. * </p> */ private java.util.List<InstanceProfile> instanceProfiles; /** * <p> * An identifier that can be used in the next call to this operation to return the next set of items in the list. * </p> */ private String nextToken; /** * <p> * An object containing information about your instance profiles. * </p> * * @return An object containing information about your instance profiles. */ public java.util.List<InstanceProfile> getInstanceProfiles() { return instanceProfiles; } /** * <p> * An object containing information about your instance profiles. * </p> * * @param instanceProfiles * An object containing information about your instance profiles. */ public void setInstanceProfiles(java.util.Collection<InstanceProfile> instanceProfiles) { if (instanceProfiles == null) { this.instanceProfiles = null; return; } this.instanceProfiles = new java.util.ArrayList<InstanceProfile>(instanceProfiles); } /** * <p> * An object containing information about your instance profiles. * </p> * <p> * <b>NOTE:</b> This method appends the values to the existing list (if any). Use * {@link #setInstanceProfiles(java.util.Collection)} or {@link #withInstanceProfiles(java.util.Collection)} if you * want to override the existing values. * </p> * * @param instanceProfiles * An object containing information about your instance profiles. * @return Returns a reference to this object so that method calls can be chained together. */ public ListInstanceProfilesResult withInstanceProfiles(InstanceProfile... instanceProfiles) { if (this.instanceProfiles == null) { setInstanceProfiles(new java.util.ArrayList<InstanceProfile>(instanceProfiles.length)); } for (InstanceProfile ele : instanceProfiles) { this.instanceProfiles.add(ele); } return this; } /** * <p> * An object containing information about your instance profiles. * </p> * * @param instanceProfiles * An object containing information about your instance profiles. * @return Returns a reference to this object so that method calls can be chained together. */ public ListInstanceProfilesResult withInstanceProfiles(java.util.Collection<InstanceProfile> instanceProfiles) { setInstanceProfiles(instanceProfiles); return this; } /** * <p> * An identifier that can be used in the next call to this operation to return the next set of items in the list. * </p> * * @param nextToken * An identifier that can be used in the next call to this operation to return the next set of items in the * list. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** * <p> * An identifier that can be used in the next call to this operation to return the next set of items in the list. * </p> * * @return An identifier that can be used in the next call to this operation to return the next set of items in the * list. */ public String getNextToken() { return this.nextToken; } /** * <p> * An identifier that can be used in the next call to this operation to return the next set of items in the list. * </p> * * @param nextToken * An identifier that can be used in the next call to this operation to return the next set of items in the * list. * @return Returns a reference to this object so that method calls can be chained together. */ public ListInstanceProfilesResult withNextToken(String nextToken) { setNextToken(nextToken); 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 (getInstanceProfiles() != null) sb.append("InstanceProfiles: ").append(getInstanceProfiles()).append(","); if (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ListInstanceProfilesResult == false) return false; ListInstanceProfilesResult other = (ListInstanceProfilesResult) obj; if (other.getInstanceProfiles() == null ^ this.getInstanceProfiles() == null) return false; if (other.getInstanceProfiles() != null && other.getInstanceProfiles().equals(this.getInstanceProfiles()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getInstanceProfiles() == null) ? 0 : getInstanceProfiles().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); return hashCode; } @Override public ListInstanceProfilesResult clone() { try { return (ListInstanceProfilesResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }
[ "" ]
a5cf74e7ce3a87f6b4fa1b4d943daf9ba597c718
8d2e4f99838d62d63696435fe963fac226d69f8c
/src/main/java/com/lufax/jijin/daixiao/gson/JijinExStockConfGson.java
d921bcd935bf190a172a32dc050ff09a1a23932f
[ "Apache-2.0" ]
permissive
lmj521/lufax-jijin
a0a0cf88edb5967b53f0a00dffc57a7b3081843b
e07aeb3188a2c09e22307670ba86887c9c07a7e2
refs/heads/master
2021-01-25T12:31:21.470865
2016-04-20T06:50:53
2016-04-20T06:50:53
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,116
java
package com.lufax.jijin.daixiao.gson; import java.math.BigDecimal; import org.apache.commons.lang.builder.ReflectionToStringBuilder; import com.lufax.jersey.utils.Logger; import com.lufax.jijin.daixiao.dto.JijinExStockConfDTO; import com.site.lookup.util.StringUtils; /** * Created by chenguang451 on 2016/1/6. */ public class JijinExStockConfGson { private String fundCode; private String endDate; private String stockCode; private String stockName; private BigDecimal stockPer; private String announceDate; private BigDecimal stockValuePer; private BigDecimal capitalStockPer; private BigDecimal stockValue; private BigDecimal stockShare; public static JijinExStockConfGson castFromDTO(JijinExStockConfDTO dto){ if(null == dto) return null; JijinExStockConfGson gson = new JijinExStockConfGson(); gson.setFundCode(dto.getFundCode()); gson.setEndDate(dto.getEndDate()); gson.setStockCode(dto.getStockCode()); gson.setStockName(dto.getStockName()); if(StringUtils.isNotEmpty(dto.getStockPer())){ try{ gson.setStockPer(new BigDecimal(dto.getStockPer())); }catch(Exception e){ Logger.warn(JijinExStockConfGson.class, "JijinExStockConfGson cast from dto [stockPer] error"); } } gson.setAnnounceDate(dto.getAnnounceDate()); if(StringUtils.isNotEmpty(dto.getStockValuePer())){ try{ gson.setStockValuePer(new BigDecimal(dto.getStockValuePer())); }catch(Exception e){ Logger.warn(JijinExStockConfGson.class, "JijinExStockConfGson cast from dto [stockValuePer] error"); } } if(StringUtils.isNotEmpty(dto.getCapitalStockPer())){ try{ gson.setCapitalStockPer(new BigDecimal(dto.getCapitalStockPer())); }catch(Exception e){ Logger.warn(JijinExStockConfGson.class, "JijinExStockConfGson cast from dto [capitalStockPer] error"); } } if(StringUtils.isNotEmpty(dto.getStockValue())){ try{ gson.setStockValue(new BigDecimal(dto.getStockValue())); }catch(Exception e){ Logger.warn(JijinExStockConfGson.class, "JijinExStockConfGson cast from dto [stockValue] error"); } } if(StringUtils.isNotEmpty(dto.getStockShare())){ try{ gson.setStockShare(new BigDecimal(dto.getStockShare())); }catch(Exception e){ Logger.warn(JijinExStockConfGson.class, "JijinExStockConfGson cast from dto [stockShare] error"); } } return gson; } public String getFundCode() { return fundCode; } public void setFundCode(String fundCode) { this.fundCode = fundCode; } public String getEndDate() { return endDate; } public void setEndDate(String endDate) { this.endDate = endDate; } public String getStockCode() { return stockCode; } public void setStockCode(String stockCode) { this.stockCode = stockCode; } public String getStockName() { return stockName; } public void setStockName(String stockName) { this.stockName = stockName; } public String getAnnounceDate() { return announceDate; } public void setAnnounceDate(String announceDate) { this.announceDate = announceDate; } public BigDecimal getStockPer() { return stockPer; } public void setStockPer(BigDecimal stockPer) { this.stockPer = stockPer; } public BigDecimal getCapitalStockPer() { return capitalStockPer; } public BigDecimal getStockValue() { return stockValue; } public BigDecimal getStockShare() { return stockShare; } public void setCapitalStockPer(BigDecimal capitalStockPer) { this.capitalStockPer = capitalStockPer; } public void setStockValue(BigDecimal stockValue) { this.stockValue = stockValue; } public void setStockShare(BigDecimal stockShare) { this.stockShare = stockShare; } public BigDecimal getStockValuePer() { return stockValuePer; } public void setStockValuePer(BigDecimal stockValuePer) { this.stockValuePer = stockValuePer; } }
[ "xuneng311@lu.com" ]
xuneng311@lu.com
6206755d0775ec1446ca98e60f1221a369eb6216
6665035baa3d02adf2fa7cae3b03893badf2f38a
/src/main/com/negeso/module/core/service/PlaceHolderService.java
f758e916e3c2f6bb90df32507cabeb70f6c533c1
[]
no_license
nikitakyrpenko/steunje
9cda8b3ac5c942b870f5ac5d113cb80f40ec4118
e821194fac07cd57483b57e639b182b50b4254c4
refs/heads/master
2023-01-11T16:06:30.890658
2020-11-09T10:52:16
2020-11-09T10:52:16
311,295,316
0
0
null
null
null
null
UTF-8
Java
false
false
2,549
java
/* * @(#)$Id: $ * * Copyright (c) 2010 Negeso Ukraine * * This software is the confidential and proprietary information of Negeso * ("Confidential Information"). You shall not disclose such Confidential * Information and shall use it only in accordance with the terms of the * license agreement you entered into with Negeso. */ package com.negeso.module.core.service; import java.util.HashMap; import java.util.List; import java.util.Map; import org.hibernate.criterion.Restrictions; import com.negeso.framework.controller.DispatchersContainer; import com.negeso.module.core.dao.PlaceHolderDao; import com.negeso.module.core.domain.PlaceHolder; /** * * @TODO * * @author Mykola Lyhozhon * @version $Revision: $ * */ public class PlaceHolderService { private static Map<Long, Map<String, String>> cachedPlaceHoldersMap = new HashMap<Long, Map<String,String>>(); private PlaceHolderDao placeHolderDao = null; private static PlaceHolderService instance = null; public static PlaceHolderService getInstance() { if (instance == null) { instance = (PlaceHolderService)DispatchersContainer.getInstance().getBean("core", "placeHolderService"); } return instance; } public List<PlaceHolder> listPlaceHolders(Long siteId) { return placeHolderDao.readByCriteria(Restrictions.eq("siteId", siteId)); } public static Map<String, String> getPlaceHoldersMap(Long siteId) { Map<String, String> map = cachedPlaceHoldersMap.get(siteId); if (map == null) { List<PlaceHolder> placeHolders = PlaceHolderService.getInstance().listPlaceHolders(siteId); map = new HashMap<String, String>(); for (PlaceHolder placeHolder : placeHolders) { map.put(placeHolder.getKey().toUpperCase(), placeHolder.getValue()); } cachedPlaceHoldersMap.put(siteId, map); } return map; } public PlaceHolder findById(Long id) { return placeHolderDao.read(id); } public void delete(PlaceHolder placeHolder) { placeHolderDao.delete(placeHolder); placeHolderDao.flush(); PlaceHolderService.resetCache(placeHolder.getSiteId()); } public void createOrUpdate(PlaceHolder placeHolder) { placeHolderDao.createOrUpdate(placeHolder); placeHolderDao.flush(); PlaceHolderService.resetCache(placeHolder.getSiteId()); } public PlaceHolderDao getPlaceHolderDao() { return placeHolderDao; } public void setPlaceHolderDao(PlaceHolderDao placeHolderDao) { this.placeHolderDao = placeHolderDao; } public static void resetCache(Long siteId) { cachedPlaceHoldersMap.put(siteId, null); } }
[ "MykytaK@PHIDIAS.NL" ]
MykytaK@PHIDIAS.NL
25b53f5a5037a9bb9e110f7d3de2a5e3620c6373
ab53a3a5f59d347c3e676a3185e7fd89353ef02d
/Development_knowledge/src/com/gavin/java/reflect/fanshe/constructor/Constructors.java
efb8404ca0041a19fb67685961f0b782f28e960a
[]
no_license
Gavin213917/developKnowledge
65f853c7b65f664c57fb9d275cb7dbcc7f775a33
174660f3b193597e058ddd071055c5589dd62ff8
refs/heads/master
2021-01-16T03:13:58.745863
2020-11-23T01:31:42
2020-11-23T01:31:42
242,957,903
0
0
null
null
null
null
GB18030
Java
false
false
2,730
java
package com.gavin.reflect.fanshe.constructor; import java.lang.reflect.Constructor; /* * 通过Class对象可以获取某个类中的:构造方法、成员变量、成员方法;并访问成员; * * 1.获取构造方法: * 1).批量的方法: * public Constructor[] getConstructors():所有"公有的"构造方法 public Constructor[] getDeclaredConstructors():获取所有的构造方法(包括私有、受保护、默认、公有) * 2).获取单个的方法,并调用: * public Constructor getConstructor(Class... parameterTypes):获取单个的"公有的"构造方法: * public Constructor getDeclaredConstructor(Class... parameterTypes):获取"某个构造方法"可以是私有的,或受保护、默认、公有; * * 调用构造方法: * Constructor-->newInstance(Object... initargs) */ public class Constructors { public static void main(String[] args) throws Exception { //1.加载Class对象 Class clazz = Class.forName("com.gavin.reflect.fanshe.Student"); //2.获取所有公有构造方法 System.out.println("**********************所有公有构造方法*********************************"); Constructor[] conArray = clazz.getConstructors(); for(Constructor c : conArray){ System.out.println(c); } System.out.println("************所有的构造方法(包括:私有、受保护、默认、公有)***************"); conArray = clazz.getDeclaredConstructors(); for(Constructor c : conArray){ System.out.println(c); } System.out.println("*****************获取公有、无参的构造方法*******************************"); Constructor con = clazz.getConstructor(null); Constructor con2 = clazz.getConstructor(char.class); //1>、因为是无参的构造方法所以类型是一个null,不写也可以:这里需要的是一个参数的类型,切记是类型 //2>、返回的是描述这个无参构造函数的类对象。 System.out.println("con = " + con); System.out.println("con2 = " + con2); //调用构造方法 Object obj = con.newInstance(); // System.out.println("obj = " + obj); // Student stu = (Student)obj; System.out.println("******************获取私有构造方法,并调用*******************************"); con = clazz.getDeclaredConstructor(char.class); System.out.println(con); //调用构造方法 con.setAccessible(true);//暴力访问(忽略掉访问修饰符) obj = con.newInstance('男'); } }
[ "1462705240@qq.com" ]
1462705240@qq.com
9f50bdcea909f6b948b44b582fc9182846d0a180
dd677e2e857d51e2f02f41d1b1b6dc7cfe719dd8
/src/main/java/Client/ConcurrentRead.java
54e00ca3411f6926ab7db93b099f36b9bf0efb33
[]
no_license
WBQ1995/ARQHTTP
72598e0480c0e2aa67bbc51d4bd5c347c98fbfe4
f7953caf661d9c454f18c0ce12fb8a9d1ff8f162
refs/heads/master
2020-04-07T18:31:55.994210
2018-12-05T23:19:56
2018-12-05T23:19:56
158,612,747
0
0
null
null
null
null
UTF-8
Java
false
false
2,316
java
package Client; import java.io.File; import java.io.FileWriter; import java.io.IOException; public class ConcurrentRead implements Runnable { public void run(){ String[] args = {"get", "-v", "http://localhost:8008/"}; try { Client client = new Client(); client.handShake(); Thread.sleep(100); ArgsParser parser = new ArgsParser(args); Request request = parser.getRequest(); client.makePackets(request.getRequest()); client.sendRequest(); client.receiveAck(); System.out.println("Request has been sent!\n"); client.increaseAckNumber(); ResponseProcesser responseProcesser = new ResponseProcesser(client); Thread processResponseThread = new Thread(responseProcesser); processResponseThread.start(); Thread.sleep(4000); String data = ""; for (long key:client.getRcvWindow().keySet()) { data += client.getRcvWindow().get(key); } data = analyzeData(data,request); System.out.println(data); System.out.println("client done!"); } catch (IOException ex){ ex.getStackTrace(); } catch (InterruptedException ex){ ex.getStackTrace(); } } private String analyzeData(String data, Request request) throws IOException{ String[] headerAndBody = null; String display = ""; headerAndBody = data.split("\r\n\r\n"); if(request.getIsV()){ display += headerAndBody[0] + "\r\n\r\n"; } if(headerAndBody.length == 2) display += headerAndBody[1] + "\r\n"; String[] body = headerAndBody[0].split(" "); if(request.getWriteFile() && !headerAndBody[1].equals("")){ writeFile(request.getFileName(),headerAndBody[1]); System.out.println("Body of the reponse is written to file: " + request.getFileName() + "\r\n"); } return display; } private void writeFile(String fileName,String data) throws IOException { File file = new File(fileName); FileWriter writer = new FileWriter(file); writer.write(data); writer.close(); } }
[ "boqianwang1995@gmail.com" ]
boqianwang1995@gmail.com
e2dfc4f28418743fec20a269b7afca6ed622e244
81b7af0a413ec1f4665830d3d84feaf36dc0552b
/model-text/src/test/java/com/neaterbits/ide/model/text/CharTextTest.java
345fd0356b06542d6a5fd56d8678c5bdd001e936
[]
no_license
neaterbits/ide
da8e3bacf58e3c9ee131643ba5c6c3cc1e063deb
d2066732e29e19027d755387329a7ce416aa4e52
refs/heads/main
2023-03-05T03:38:39.772116
2021-01-11T01:07:11
2021-01-12T18:58:31
154,734,212
0
0
null
2020-10-14T00:07:12
2018-10-25T20:36:09
Java
UTF-8
Java
false
false
276
java
package com.neaterbits.ide.model.text; import com.neaterbits.ide.util.ui.text.CharText; import com.neaterbits.ide.util.ui.text.Text; public class CharTextTest extends BaseTextTest { @Override protected Text createText(String string) { return new CharText(string); } }
[ "nils.lorentzen@gmail.com" ]
nils.lorentzen@gmail.com
b0779d5f2ad3e86696581f8752a85473ad1120d9
98b7480ba3cdcdc8a0d009f0c2d6973a5751e9d7
/Homework-Chapter-6/Demo/todolist/app/src/main/java/com/byted/camp/todolist/db/TodoContract.java
04e74b760df894bb516747ba39e14fb90d6bc0da
[]
no_license
Boomqwq/2021_Andriod_Studio
04c38a89b512c30620b9996ea863d5b5eed79458
57d8122c73f8914d4bad898d00053f46db1aae5b
refs/heads/main
2023-06-23T04:43:11.253568
2021-07-21T06:17:15
2021-07-21T06:17:15
385,166,562
0
0
null
null
null
null
UTF-8
Java
false
false
1,189
java
package com.byted.camp.todolist.db; import android.provider.BaseColumns; public final class TodoContract { // TODO 1. 定义创建数据库以及升级的操作 public static final String SQL_CREATE_NOTES = "CREATE TABLE " + TodoNote.TABLE_NAME + "(" + TodoNote._ID + " INTEGER PRIMARY KEY AUTOINCREMENT, " + TodoNote.COLUMN_DATE + " INTEGER, " + TodoNote.COLUMN_STATE + " INTEGER, " + TodoNote.COLUMN_CONTENT + " TEXT, " + TodoNote.COLUMN_PRIORITY + " INTEGER"+")"; public static final String SQL_ADD_PRIORITY_COLUMN = "ALTER TABLE " + TodoNote.TABLE_NAME + " ADD " + TodoNote.COLUMN_PRIORITY + " INTEGER"; private TodoContract() { } public static class TodoNote implements BaseColumns { // TODO 2.此处定义表名以及列明 public static final String TABLE_NAME = "note"; public static final String COLUMN_DATE = "date"; public static final String COLUMN_STATE = "state"; public static final String COLUMN_CONTENT = "content"; public static final String COLUMN_PRIORITY = "priority"; } }
[ "87296316+Boomqwq@users.noreply.github.com" ]
87296316+Boomqwq@users.noreply.github.com
a69408502f7edd1d678388a81523a190d58ff5c0
79ba00fa315b3c2c82f8050a0334867c2da8da9e
/Car5.java
dc5b787056d3f079ba797efa0653fa755719033c
[]
no_license
MinsungKim0315/MyOwnStudy_Java
8c1377f5232e285a49186a2a34f045b320043a73
5279964736221f3864619ae1b22c23dc872bc7f9
refs/heads/main
2023-08-30T00:23:45.423063
2021-10-29T20:40:43
2021-10-29T20:40:43
null
0
0
null
null
null
null
UHC
Java
false
false
572
java
package studying.클래스; //인스턴스 멤버와 this public class Car5 { String model; int speed; Car5(String model){ this.model = model; } void setSpeed(int speed) { this.speed = speed; } void run() { for(int i=10;i<=50;i+=10) { this.setSpeed(i); System.out.println(this.model + "가 다립니다.(시속:" + this.speed + "km/h)"); } } public static void main(String[] args) { Car5 myCar = new Car5("Porchse"); Car5 yourCar = new Car5("Benz"); myCar.run(); yourCar.run(); } }
[ "noreply@github.com" ]
MinsungKim0315.noreply@github.com
a6adda5d3c962f78ea2092603b18b1d9b3f69ae0
fc3862ab52ec4b572a999d52f9179087aba58c8e
/android/admin/src/main/java/com/meilinger/tj/admin/SettingsActivity.java
fc63f3d6ee2ad9a44a9fc3494d924809cb9e251b
[ "MIT" ]
permissive
tjmeili/Valkyrie
c982b7e886f05a8fd5bfb3a66d026561fc85db2f
8b97af0fb8edfb1adf7436c025b649b77a3e59b2
refs/heads/master
2020-06-07T10:28:21.225533
2019-06-20T23:37:41
2019-06-20T23:37:41
192,999,836
0
0
null
null
null
null
UTF-8
Java
false
false
4,959
java
package com.meilinger.tj.admin; import android.net.wifi.WifiManager; import android.support.constraint.ConstraintLayout; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.text.Editable; import android.text.TextWatcher; import android.text.format.Formatter; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.ImageView; import android.widget.ProgressBar; import android.widget.TextView; import com.meilinger.tj.admin.network.AsyncTaskResultListener; import com.meilinger.tj.admin.network.TestConnectionAsyncTask; public class SettingsActivity extends AppCompatActivity { private static final String TAG = "SettingsActivity"; private ConstraintLayout clConnectionStatus; private ProgressBar pbConnectionStatus; private TextView tvConnectionStatus; private ImageView ivConnectionStatus; private EditText etServerIP; private Button btnApply; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_settings); @SuppressWarnings("deprecation") WifiManager wifiManager = (WifiManager) getApplicationContext().getSystemService(WIFI_SERVICE); if(wifiManager.getConnectionInfo() != null){ ((TextView) findViewById(R.id.tvDeviceIP)).setText(Formatter.formatIpAddress(wifiManager.getConnectionInfo().getIpAddress())); } btnApply = (Button) findViewById(R.id.btnApply); btnApply.setEnabled(false); etServerIP = (EditText) findViewById(R.id.etServerIP); etServerIP.setText(NetworkDataHolder.getServerIP()); etServerIP.addTextChangedListener(new TextWatcher() { @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { } @Override public void onTextChanged(CharSequence s, int start, int before, int count) { btnApply.setEnabled(true); } @Override public void afterTextChanged(Editable s) { } }); clConnectionStatus = (ConstraintLayout) findViewById(R.id.clConnectionStatus); pbConnectionStatus = (ProgressBar) findViewById(R.id.pbConnectionStatus); tvConnectionStatus = (TextView) findViewById(R.id.tvConnectionStatus); ivConnectionStatus = (ImageView) findViewById(R.id.ivConnectionStatus); clConnectionStatus.setVisibility(View.INVISIBLE); btnApply = (Button) findViewById(R.id.btnApply); btnApply.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { String newServerIP = etServerIP.getText().toString().replace(" ", ""); Log.d(TAG, "onClick: " + newServerIP); NetworkDataHolder.setServerIP(newServerIP); SharedPreferencesHandler sharedPreferencesHandler = new SharedPreferencesHandler(SettingsActivity.this); sharedPreferencesHandler.saveServerIp(newServerIP); testConnection(); btnApply.setEnabled(false); } }); ((Button)findViewById(R.id.testConnectionButton)).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { testConnection(); } }); } private void testConnection(){ setViewsConnecting(); TestConnectionAsyncTask testConnectionAsyncTask = new TestConnectionAsyncTask(); testConnectionAsyncTask.setAsyncTaskResultListener(new AsyncTaskResultListener() { @Override public void onProcessFinished(Result result) { if(result == AsyncTaskResultListener.Result.SUCCESS){ setViewsConnectionSuccess(); } else { setViewsConnectionFailure(); } } }); testConnectionAsyncTask.execute(); } private void setViewsConnecting(){ clConnectionStatus.setVisibility(View.VISIBLE); tvConnectionStatus.setText("Connecting..."); ivConnectionStatus.setVisibility(View.GONE); pbConnectionStatus.setVisibility(View.VISIBLE); } private void setViewsConnectionSuccess(){ tvConnectionStatus.setText("Connected successfully."); ivConnectionStatus.setVisibility(View.VISIBLE); pbConnectionStatus.setVisibility(View.GONE); ivConnectionStatus.setImageResource(R.drawable.check); } private void setViewsConnectionFailure(){ tvConnectionStatus.setText("Failed to connect to server."); ivConnectionStatus.setVisibility(View.VISIBLE); pbConnectionStatus.setVisibility(View.GONE); ivConnectionStatus.setImageResource(R.drawable.cross); } }
[ "tjmeilinger43@gmail.com" ]
tjmeilinger43@gmail.com
e327217149133956c6f5d536110ef61cb6565013
688a2f07087f4d59f605f60ad36c6aeda4edb9db
/paperSpringMVC/src/main/java/com/controller/StudentController.java
6196354a7d258211aa4e26d985db3bedb047bca4
[]
no_license
923296038/defult
17bf7afc5923feb12e88661878388a3ec9438a45
e3ef593cc87615e3fbfb779e5214759059a625f4
refs/heads/master
2022-12-21T04:38:57.576537
2019-08-22T06:52:54
2019-08-22T06:52:54
194,599,702
0
0
null
2022-12-16T04:59:07
2019-07-01T04:29:46
Java
UTF-8
Java
false
false
8,609
java
package com.controller; import atg.taglib.json.util.JSONException; import atg.taglib.json.util.JSONObject; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; import com.service.StudentService; import com.pojo.Student; import com.sun.org.apache.xpath.internal.operations.Mod; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.validation.BindingResult; import org.springframework.validation.ObjectError; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; import org.springframework.web.servlet.ModelAndView; import javax.servlet.http.HttpServletRequest; import java.util.HashMap; import java.util.List; @Controller public class StudentController { // @Autowired // StringUtil stringUtil; @Autowired StudentService studentService; private static final Logger log= LogManager.getLogger(StudentController.class); /** * 跳转到学生添加界面 */ @RequestMapping(value = "toStudentMore") public String toAddStudent(){ log.info("1"); return "StudentMore"; } /** * 添加学生 */ /*@RequestMapping(value="addStudent2",method = RequestMethod.POST) public String addStudent( Model model,Student student){ studentService.insertStudent(student); model.addAttribute("student",student); return "redirect:/findAllStudent"; }*/ //查询,带校验 //bindingResult接受错误 @RequestMapping(value="StudentByName",method = RequestMethod.GET) public String findStudent(Model model,HttpServletRequest request, String name, @Validated Student student, BindingResult bindingResult){ if(name.length()==0&& bindingResult.hasErrors()){ //输出错误信息 List<ObjectError> allErrors = bindingResult.getAllErrors(); for (ObjectError objectError:allErrors){ log.error(objectError.getDefaultMessage()); } //将错误信息传至页面 model.addAttribute("allErrors",allErrors); //出错则重新至商品更新页面 log.error(bindingResult); return "error"; } log.error(bindingResult); List<Student> studentList=studentService.findStudentByName(name); //System.out.println(studentList); //addAttribute提交到前台,视图层才能显示数据 model.addAttribute(studentList); return "ChosenOne"; } @RequestMapping(value = "StudentMore") public String addStudent(Model model,HttpServletRequest request,@Validated Student student,BindingResult bindingResult) { if(student.getName().length()==0||student.getStudent_id()<1||bindingResult.hasErrors()){ //输出错误信息 List<ObjectError> allErrors = bindingResult.getAllErrors(); for (ObjectError objectError:allErrors){ log.error(objectError.getDefaultMessage()); } //将错误信息传至页面 model.addAttribute("allErrors",allErrors); //出错则重新至商品更新页面 log.error("执行了if语句块"); return "error"; } log.error(bindingResult+ "学生姓名是"+ student.getName()+"|"); student.setCreate_time(System.currentTimeMillis()); student.setUpdate_time(System.currentTimeMillis()); studentService.insertStudent(student); log.info(student); return "AllStudent"; } /** 参数model是什么意思? */ @RequestMapping(value="toStudentInfo/{id}", method = RequestMethod.GET) public String toUpdateStudent (Model model,@PathVariable long id){ //先获得原数据才能更改 Student student=studentService.findStudentById(id); log.error(student.getUpdate_time()); //model.addAttibute 往前台传数据 model.addAttribute("student",student); return "StudentInfo"; } @RequestMapping(value = "StudentInfo", method = RequestMethod.POST) public String updateStudent(Model model,HttpServletRequest request,@Validated Student student,BindingResult bindingResult){ if(student.getName().length()==0||student.getStudent_id()<1||bindingResult.hasErrors()){ //输出错误信息 List<ObjectError> allErrors = bindingResult.getAllErrors(); for (ObjectError objectError:allErrors){ log.error(objectError.getDefaultMessage()); } //将错误信息传至页面 model.addAttribute("allErrors",allErrors); //出错则重新至商品更新页面 log.error("执行了if语句块"); return "error"; } student.setUpdate_time(System.currentTimeMillis()); studentService.updateStudent(student); return "redirect:AllStudent"; } //查询一个学生 @RequestMapping(value="StudentById",method = RequestMethod.GET) public String findStudent(Model model, String name, @Validated Student student, BindingResult result){ if (name==null && result.hasErrors()){ List<ObjectError>allErrors=result.getAllErrors(); for (ObjectError objectError:allErrors) { System.out.println(objectError.getDefaultMessage()); } model.addAttribute("errors",allErrors); return "/error.jsp"; } List<Student> studentList=studentService.findStudentByName(name); //System.out.println(studentList); //addAttribute提交到前台,视图层才能显示数据 model.addAttribute(studentList); return "ChosenOne"; } //用jsontaglib返回查询一个人 //通过@ResponseBody注解的方式,方法返回的对象不会经过视图解析器的渲染 @RequestMapping(value = "findStudent_jstl",method = RequestMethod.GET) public @ResponseBody JSONObject jsonDemo()throws JSONException{ Student student = studentService.findStudentById(62); log.error(student); JSONObject jsonObject = new JSONObject(); jsonObject.put("name",student.getName()); jsonObject.put("wish",student.getWish()); return jsonObject; //报no converter错误 } //删除 @RequestMapping(value = "StudentLesser/{id}",method = RequestMethod.DELETE) public String deleteStudent(@PathVariable long id,@Validated Student student,BindingResult result){ studentService.deleteStudent(id); log.info("1"); return "redirect:/AllStudent"; } @RequestMapping(value = "AllStudent", method =RequestMethod.GET) public String findAllStudent(Model model, @RequestParam(defaultValue = "1",required = true, value = "pageNo") Integer pageNo) { Integer pageSize=5;//每页显示记录数为5 PageHelper.startPage(pageNo,pageSize); List<Student>studentList=studentService.findAllStudent();//获取所有用户信息 PageInfo<Student> pageInfo =new PageInfo<Student>(studentList); model.addAttribute("pageInfo",pageInfo); return "AllStudent"; } //测试ResponseBody @RequestMapping("testJson") @ResponseBody public HashMap testJ() { HashMap s = new HashMap(); s.put("student.id ", "1"); s.put("student.name ", "王全"); s.put("student.school ", "hbpu"); s.put("student.major ", "java"); return s; } //测试Json Tag-lib @RequestMapping("json") public String json(){ return "json"; } //测试post @ResponseBody @PostMapping("postID") public Integer getInteger(@RequestBody JSONObject jsonObject) throws JSONException { String a=jsonObject.get( "id" ).toString(); Integer id=Integer.parseInt(a); return id; } //使用json tag-lib生成假数据. @RequestMapping("testJson2") public String selectAll(Model model) { List<Student> students = studentService.findAllStudent(); model.addAttribute("code", "200"); model.addAttribute("message", "传递成功"); model.addAttribute("students", students); return "json"; } @RequestMapping("toError") public String toError(){ return "error"; } }
[ "923296038@qq.com" ]
923296038@qq.com
a641a4bb27fbb78f25ca21f003f45c1e26d4b8db
21836938f86c6dbb552817b6a89ad84240915726
/app/src/main/java/ru/ifmo/md/colloquium3/Currency.java
462280a18be0788830d76a8212a26a96b796aa83
[]
no_license
alex-700/colloquium3
dd119b10bad33bfe736367151396345a75ed934a
9d342992367d24a880b0bf77b0f6fe99fe87bd24
refs/heads/master
2021-01-17T11:17:18.794483
2014-12-23T10:54:14
2014-12-23T10:54:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
538
java
package ru.ifmo.md.colloquium3; /** * Created by Алексей on 23.12.2014. */ public class Currency { private String name; private double value; public Currency(String name, double value) { this.name = name; this.value = value; } public String getName() { return name; } public void setName(String name) { this.name = name; } public double getValue() { return value; } public void setValue(double value) { this.value = value; } }
[ "alex_700_95@mail.ru" ]
alex_700_95@mail.ru
18c98f7a60bcc9d36f564e4dadd4805ffdc70ad7
1d1fcd130e6f887d719867f6a1ddfd084032c4b2
/MethodOverriding/src/Main.java
560c77cca3dcdb39a9483772687e7940326e9648
[]
no_license
serafettingunes/methodOverriding
e4470380bb065845725fc8ef513e2bf57862bb74
9040dea48cd5aa15a20d42390127c64af9f99852
refs/heads/master
2023-04-18T08:38:09.576334
2021-04-29T22:19:26
2021-04-29T22:19:26
362,961,424
0
0
null
null
null
null
UTF-8
Java
false
false
154
java
public class Main { public static void main(String[] args) { DortIslem d=new DortIslem(); System.out.println(d.topla(5, 5,6)); } }
[ "54938342+attila40x@users.noreply.github.com" ]
54938342+attila40x@users.noreply.github.com
2f60f5307ae08df756f1f15db306b9e626288b20
bed3b7a61ecb4e7a2f36c9b37f7159c4311b04f0
/app/src/main/java/com/liuhonghao/com/trainlife/fragment/RecommandFragment.java
064586baee02412bcd724db013cd927928c7432a
[]
no_license
liuhonghao1994/TrainLife
c6a01bd952f8d322118e89e8a0f3c3c61e18dc92
5b24313e6b82a14f3118f22e49992aa85066f0d8
refs/heads/master
2021-01-23T02:39:46.246393
2017-03-24T00:54:15
2017-03-24T00:54:15
86,011,915
0
0
null
null
null
null
UTF-8
Java
false
false
2,603
java
package com.liuhonghao.com.trainlife.fragment; import android.liuhonghao.com.trainlife.R; import android.support.design.widget.TabLayout; import android.support.v4.view.ViewPager; import com.liuhonghao.com.trainlife.adapter.RecommandViewPager; import com.liuhonghao.com.trainlife.base.BaseFragment; import butterknife.Bind; import butterknife.ButterKnife; /** * Created by 刘红豪 on 2017/3/21. */ public class RecommandFragment extends BaseFragment { /*String url = "http://app.bilibili.com/x/feed/index?appkey=1d8b6e7d45233436&build=501000&idx=1490013261&mobi_app=android&network=wifi&platform=android&pull=true&style=2&ts=1490015599000&sign=af4edc66aef7e443c98c28de2b660aa4";*/ @Bind(R.id.tb_recommand_layout) TabLayout tbRecommandLayout; @Bind(R.id.view_recommand) ViewPager viewRecommand; private RecommandViewPager recommandViewPager; @Override public int getLayoutid() { return R.layout.recommand_fragment; } @Override protected void initData(String json) { recommandViewPager=new RecommandViewPager(context); viewRecommand.setAdapter(recommandViewPager); //将tablayout和viewpager关联 tbRecommandLayout.setupWithViewPager(viewRecommand); //设置tab的模式 tbRecommandLayout.setTabMode(TabLayout.MODE_SCROLLABLE); /* rc_total = (RecyclerView) viewRecommand.findViewById(R.id.rc_total);*/ /*rc_total= (RecyclerView) viewRecommand.getChildAt(0).findViewById(R.id.rc_total);*/ /* RecommandBean recommandBean = JSON.parseObject(json, RecommandBean.class); gvTotalAdapter=new GvTotalAdapter(context,recommandBean.getData());*/ /* GridLayoutManager manager1 = new GridLayoutManager(context, 2); rc_total.setLayoutManager(manager1); rc_total.setAdapter(gvTotalAdapter); rc_more = (RecyclerView) viewRecommand.getChildAt(0).findViewById(R.id.rc_more); GridLayoutManager manager2 = new GridLayoutManager(context, 2); rc_more.setLayoutManager(manager2); rc_more.setAdapter(gvTotalAdapter);*/ /* gvTotalAdapter.setOnItemClickListener(new GvTotalAdapter.OnItemClickListener() { @Override public void onItemClick(View view, int position) { Toast.makeText(context, "position=="+position, Toast.LENGTH_SHORT).show(); } });*/ } @Override public String getChildUrl() { return null; } @Override public void onDestroyView() { super.onDestroyView(); ButterKnife.unbind(this); } }
[ "1173111672@qq.com" ]
1173111672@qq.com
0feaf066d28e8d16dd3873b816b953bcc5de9324
bf00a73529ae9fe97b96a4b950e54521ba96991e
/src/main/java/com/epam/models/GameFieldFood.java
3bc9524bbed449c9dd923e8f98e1344baea2ba78
[]
no_license
gelmutAm/tamagotchi-task
8b0e44cf4ec5ca937aaedbf260e7dde65153796f
c6981456f6559e77ffbff05e5e2367c239e553d4
refs/heads/master
2022-04-11T05:09:55.921433
2020-02-17T01:08:57
2020-02-17T01:08:57
238,181,102
0
0
null
null
null
null
UTF-8
Java
false
false
219
java
package com.epam.models; import javax.swing.*; public interface GameFieldFood { int getX(); int getY(); int getIncreaseHappinessValue(); int getIncreaseFullnessValue(); ImageIcon getIcon(); }
[ "a_gelmut@mail.ru" ]
a_gelmut@mail.ru
bea61e26c9143cf5bc15118a96ac9cf0f92bd490
838bc95cab102bc0128febc9b366029303ab04c9
/src/main/java/de/techfak/gse/lwalkenhorst/argumentparser/Option.java
348704541b8547579f78e7ec3be620cafc473f0e
[]
no_license
lukeboxwalker/g-se-2019
6e5d5207b99785311faa1ee0feabc423d44b93ea
2563bdf4cec0af72ad9fc986bf319632f6c5d653
refs/heads/master
2023-08-28T08:11:41.641677
2021-11-14T01:17:40
2021-11-14T01:17:40
326,187,037
1
0
null
null
null
null
UTF-8
Java
false
false
1,325
java
package de.techfak.gse.lwalkenhorst.argumentparser; import java.util.List; /** * Option that could be used in a commandline. */ public interface Option { /** * Option can conflict other options. * Conflicting options are stored in a list * * @return list of conflicting option names */ List<String> getConflictingOptions(); /** * Adds a conflicting option. * Identifies options by there names * * @param option the conflicting option name */ void addConflictingOption(String option); /** * Each option specifies a name. * * @return option name */ String getName(); /** * Each option specifies a short name. * Default short name is the first letter of the name * * @return option short name */ String getShortName(); /** * Option may have arguments. * Each argument can be configured separately {@link Argument} * * @return list if required arguments */ List<Argument> getRequiredArguments(); /** * Adding a new argument to option. * Required arguments are stored in an option * Each option can have zero to many arguments * * @param argument the required argument */ void addRequiredArguments(Argument argument); }
[ "lwalkenhorst@techfak.uni-bielefeld.de" ]
lwalkenhorst@techfak.uni-bielefeld.de
355673ec8a564323c6368d5cf84811bef14aa6c1
42c2fe5e073fb4386508e1da905482c3b99c0bc0
/src/com/biz/interfaces/remocon/RadioRCom.java
fefc95d873e022c9fc34102967e093a9dd6a64a8
[]
no_license
dwt4597/ClassInterface
924b5716488bd21a672952d1d9447be1820505b8
05887647d503bfa941810185757795002eba638b
refs/heads/master
2020-04-07T20:24:12.377932
2018-11-22T11:04:14
2018-11-22T11:04:14
158,686,326
0
0
null
null
null
null
UTF-8
Java
false
false
475
java
package com.biz.interfaces.remocon; public class RadioRCom implements RemoCom{ @Override public void volUp() { // TODO Auto-generated method stub } @Override public void volDown() { // TODO Auto-generated method stub } @Override public void chUp() { // TODO Auto-generated method stub } @Override public void chDown() { // TODO Auto-generated method stub } @Override public void power() { // TODO Auto-generated method stub } }
[ "ijs9200@naver.com" ]
ijs9200@naver.com
9fcd37b934aaf2390e9ec3fdcb92b3ddb3de964e
4948efc296596896cf942b0647a077d87e000988
/study/src/main/java/com/mogu/hui/study/annotation/CacheAnnotation.java
b74f93ad575bfc9d9e4190b858c2a03db571b97e
[]
no_license
liuyueyi/java-web
70b08fbfe22ad69d28230013ffca165a407a2eb3
dbc58fbfa14a5033ca4c336f7a12ecd5ea47df81
refs/heads/master
2021-01-10T08:11:31.927596
2016-02-04T05:29:34
2016-02-04T05:29:34
47,119,685
5
1
null
null
null
null
UTF-8
Java
false
false
1,621
java
package com.mogu.hui.study.annotation; //Java中提供了四种元注解,专门负责注解其他的注解,分别如下 //@Retention元注解,表示需要在什么级别保存该注释信息(生命周期)。可选的RetentionPoicy参数包括: //RetentionPolicy.SOURCE: 停留在java源文件,编译器被丢掉 //RetentionPolicy.CLASS:停留在class文件中,但会被VM丢弃(默认) //RetentionPolicy.RUNTIME:内存中的字节码,VM将在运行时也保留注解,因此可以通过反射机制读取注解的信息 //@Target元注解,默认值为任何元素,表示该注解用于什么地方。可用的ElementType参数包括 //ElementType.CONSTRUCTOR: 构造器声明 //ElementType.FIELD: 成员变量、对象、属性(包括enum实例) //ElementType.LOCAL_VARIABLE: 局部变量声明 //ElementType.METHOD: 方法声明 //ElementType.PACKAGE: 包声明 //ElementType.PARAMETER: 参数声明 //ElementType.TYPE: 类、接口(包括注解类型)或enum声明 //@Documented将注解包含在JavaDoc中 //@Inheried允许子类继承父类中的注解 import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Created by yihui on 16/1/9. */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD, ElementType.TYPE, ElementType.FIELD}) public @interface CacheAnnotation { /** * 作为缓存key的参数位置 * @return */ int keyPos() default 0; /** * 缓存时间 * @return */ int expire() default 180; }
[ "yihui@mogujie.com" ]
yihui@mogujie.com
3a4a4774947440b29d2a09c9bae90d487aeb7fdd
4f9943ac3437abed05e0576a9ba0630cb2f7209c
/TingProject/app/src/main/java/com/testopensourceapplication/tingproject/RoundImageView.java
82fb7ce49efaa3b3fde574a522107f65f3166029
[]
no_license
stormdzh/ximalaya_fm
68fb9ab4961ec92d976608b5d16b8565db41066a
8b7c391808412ba5907980cbf2228ba7284c75ce
refs/heads/master
2021-01-01T18:09:31.954240
2017-07-25T03:58:07
2017-07-25T03:58:07
98,262,328
0
0
null
null
null
null
UTF-8
Java
false
false
7,854
java
package com.testopensourceapplication.tingproject; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Paint; import android.graphics.PorterDuff; import android.graphics.PorterDuffXfermode; import android.graphics.Rect; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; import android.graphics.drawable.NinePatchDrawable; import android.util.AttributeSet; import android.widget.ImageView; /** * Created by HL on 2016/12/22. */ public class RoundImageView extends ImageView { private int mBorderThickness = 0; private Context mContext; private int defaultColor = 0xFFFFFFFF; // 如果只有其中一个有值,则只画一个圆形边框 private int mBorderOutsideColor = 0; private int mBorderInsideColor = 0; // 控件默认长、宽 private int defaultWidth = 0; private int defaultHeight = 0; public RoundImageView(Context context) { super(context); mContext = context; } public RoundImageView(Context context, AttributeSet attrs) { super(context, attrs); mContext = context; setCustomAttributes(attrs); } public RoundImageView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); mContext = context; setCustomAttributes(attrs); } private void setCustomAttributes(AttributeSet attrs) { TypedArray a = mContext.obtainStyledAttributes(attrs, R.styleable.roundedimageview); mBorderThickness = a.getDimensionPixelSize( R.styleable.roundedimageview_border_thickness, 0); mBorderOutsideColor = a .getColor(R.styleable.roundedimageview_border_outside_color, defaultColor); mBorderInsideColor = a.getColor( R.styleable.roundedimageview_border_inside_color, defaultColor); } @Override protected void onDraw(Canvas canvas) { Drawable drawable = getDrawable(); if (drawable == null) { return; } if (getWidth() == 0 || getHeight() == 0) { return; } this.measure(0, 0); if (drawable.getClass() == NinePatchDrawable.class) return; Bitmap b = ((BitmapDrawable) drawable).getBitmap(); Bitmap bitmap = b.copy(Bitmap.Config.ARGB_8888, true); if (defaultWidth == 0) { defaultWidth = getWidth(); } if (defaultHeight == 0) { defaultHeight = getHeight(); } // 保证重新读取图片后不会因为图片大小而改变控件宽、高的大小(针对宽、高为wrap_content布局的imageview,但会导致margin无效) // if (defaultWidth != 0 && defaultHeight != 0) { // LinearLayout.LayoutParams params = new LinearLayout.LayoutParams( // defaultWidth, defaultHeight); // setLayoutParams(params); // } int radius = 0; if (mBorderInsideColor != defaultColor && mBorderOutsideColor != defaultColor) {// 定义画两个边框,分别为外圆边框和内圆边框 radius = (defaultWidth < defaultHeight ? defaultWidth : defaultHeight) / 2 - 2 * mBorderThickness; // 画内圆 drawCircleBorder(canvas, radius + mBorderThickness / 2, mBorderInsideColor); // 画外圆 drawCircleBorder(canvas, radius + mBorderThickness + mBorderThickness / 2, mBorderOutsideColor); } else if (mBorderInsideColor != defaultColor && mBorderOutsideColor == defaultColor) {// 定义画一个边框 radius = (defaultWidth < defaultHeight ? defaultWidth : defaultHeight) / 2 - mBorderThickness; drawCircleBorder(canvas, radius + mBorderThickness / 2, mBorderInsideColor); } else if (mBorderInsideColor == defaultColor && mBorderOutsideColor != defaultColor) {// 定义画一个边框 radius = (defaultWidth < defaultHeight ? defaultWidth : defaultHeight) / 2 - mBorderThickness; drawCircleBorder(canvas, radius + mBorderThickness / 2, mBorderOutsideColor); } else {// 没有边框 radius = (defaultWidth < defaultHeight ? defaultWidth : defaultHeight) / 2; } Bitmap roundBitmap = getCroppedRoundBitmap(bitmap, radius); canvas.drawBitmap(roundBitmap, defaultWidth / 2 - radius, defaultHeight / 2 - radius, null); } /** * 获取裁剪后的圆形图片 * * @param radius * 半径 */ public Bitmap getCroppedRoundBitmap(Bitmap bmp, int radius) { Bitmap scaledSrcBmp; int diameter = radius * 2; // 为了防止宽高不相等,造成圆形图片变形,因此截取长方形中处于中间位置最大的正方形图片 int bmpWidth = bmp.getWidth(); int bmpHeight = bmp.getHeight(); int squareWidth = 0, squareHeight = 0; int x = 0, y = 0; Bitmap squareBitmap; if (bmpHeight > bmpWidth) {// 高大于宽 squareWidth = squareHeight = bmpWidth; x = 0; y = (bmpHeight - bmpWidth) / 2; // 截取正方形图片 squareBitmap = Bitmap.createBitmap(bmp, x, y, squareWidth, squareHeight); } else if (bmpHeight < bmpWidth) {// 宽大于高 squareWidth = squareHeight = bmpHeight; x = (bmpWidth - bmpHeight) / 2; y = 0; squareBitmap = Bitmap.createBitmap(bmp, x, y, squareWidth, squareHeight); } else { squareBitmap = bmp; } if (squareBitmap.getWidth() != diameter || squareBitmap.getHeight() != diameter) { scaledSrcBmp = Bitmap.createScaledBitmap(squareBitmap, diameter, diameter, true); } else { scaledSrcBmp = squareBitmap; } Bitmap output = Bitmap.createBitmap(scaledSrcBmp.getWidth(), scaledSrcBmp.getHeight(), Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(output); Paint paint = new Paint(); Rect rect = new Rect(0, 0, scaledSrcBmp.getWidth(), scaledSrcBmp.getHeight()); paint.setAntiAlias(true); paint.setFilterBitmap(true); paint.setDither(true); canvas.drawARGB(0, 0, 0, 0); canvas.drawCircle(scaledSrcBmp.getWidth() / 2, scaledSrcBmp.getHeight() / 2, scaledSrcBmp.getWidth() / 2, paint); paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN)); canvas.drawBitmap(scaledSrcBmp, rect, rect, paint); // bitmap回收(recycle导致在布局文件XML看不到效果) // bmp.recycle(); // squareBitmap.recycle(); // scaledSrcBmp.recycle(); bmp = null; squareBitmap = null; scaledSrcBmp = null; return output; } /** * 边缘画圆 */ private void drawCircleBorder(Canvas canvas, int radius, int color) { Paint paint = new Paint(); /* 去锯齿 */ paint.setAntiAlias(true); paint.setFilterBitmap(true); paint.setDither(true); paint.setColor(color); /* 设置paint的 style 为STROKE:空心 */ paint.setStyle(Paint.Style.STROKE); /* 设置paint的外框宽度 */ paint.setStrokeWidth(mBorderThickness); canvas.drawCircle(defaultWidth / 2, defaultHeight / 2, radius, paint); } }
[ "411788973@qq.com" ]
411788973@qq.com
38d8799c05d0553dcc5567bdcadc49f2e8e88181
b71fcaf77e7fda8b91719e3304da46dfe613bc19
/amazonInterviewPrep/src/Microsoft/ImplementTrie.java
4d48015ac209e84456dc554a24e3dc4c65dfd7c4
[]
no_license
aashishmahajan/amazoninterviewprep
7e333a179d8b105f9cdfd6c0900a59e145e9cacb
490602fffe83449b150268a2a827656d0b7574ea
refs/heads/master
2020-03-16T17:10:58.503414
2018-06-26T00:57:45
2018-06-26T00:57:45
132,820,365
0
0
null
null
null
null
UTF-8
Java
false
false
2,339
java
package Microsoft; import java.util.HashMap; import java.util.Map; class Trie{ Map<Character,Trie> children; boolean endOfFile; Trie(){ children = new HashMap<>(); endOfFile = false; } } public class ImplementTrie { Trie root; ImplementTrie(){ root = new Trie(); } public static void main(String[] args) { ImplementTrie t = new ImplementTrie(); t.insert(t.root, "abc" ); t.insert(t.root, "abcd"); t.insert(t.root, "db" ); t.insert(t.root, "bcdf"); System.out.println(search(t.root,"bcdf")); t.delete(t.root, "db"); } public void insert(Trie root, String str) { recursiveI(root,str,0); } private void recursiveI(Trie root, String str, int ind) { if(ind == str.length()){ root.endOfFile = true; return; } else{ char c = str.charAt(ind); Trie node = root.children.get(c); if (node == null) { node = new Trie(); root.children.put(c,node); } recursiveI(node,str,ind+1); } } private static boolean search(Trie root, String str) { return recursiveSearch(root, str, 0); } private static boolean recursiveSearch(Trie root, String str, int ind) { if(ind == str.length()){ return root.endOfFile; }else{ if(root.children.containsKey(str.charAt(ind))){ Trie node = root.children.get(str.charAt(ind)); return recursiveSearch(node,str,ind+1); } return false; } } public void delete(Trie root, String str) { deleteI(root, str,0); } public void deleteI(Trie root, String str, int ind ){ if(ind == str.length()){ if(root.children.size()==0){ root =null; return; }root.endOfFile = false; return; }else{ if(root.children.containsKey(str.charAt(ind))){ Trie node =root.children.get(str.charAt(ind)); deleteI(node , str, ind+1); if(node.children.size()==0){ node.endOfFile=false; } } return; } } }
[ "aashish.x.mahajan@disney.com" ]
aashish.x.mahajan@disney.com
20793dad06f3c855a322adf77042bbba0b62dcde
0b56b49b0a8d35621fe39178f1ad6323a237dfcc
/stardust-hazelcast-ra/src/main/java/com/hazelcast/jca/HazelcastConnectionFactoryMetaData.java
35f50ab3690f21afc9d535577787c64bfb39bc7f
[]
no_license
robsman/stardust.components
5af396bb83d5f4789254b85a24186a68d627b662
4e85ea10e61051f33204d17720e0f364c2a54826
refs/heads/master
2021-01-18T05:46:23.494968
2016-02-22T15:23:46
2016-02-22T15:23:46
68,415,869
0
0
null
null
null
null
UTF-8
Java
false
false
2,541
java
/* * Copyright (c) 2008-2012, Hazel Bilisim Ltd. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.hazelcast.jca; import javax.resource.cci.ResourceAdapterMetaData; /** * Simple implementation to return Hazelcast's implementation- * specific information in a JCA-compatible format */ final class HazelcastConnectionFactoryMetaData implements ResourceAdapterMetaData { /** JCA-Connector specific java packge to be used for all information retrieval */ private static final Package HZ_PACKAGE = HazelcastConnectionFactoryImpl.class.getPackage(); /** @return the implementation title from Hazelast */ public String getAdapterName() { return HZ_PACKAGE.getImplementationTitle(); } /** @return the specification title from Hazelast */ public String getAdapterShortDescription() { return HZ_PACKAGE.getSpecificationTitle(); } /** @return Hazelcast's implementation vendor */ public String getAdapterVendorName() { return HZ_PACKAGE.getImplementationVendor(); } /** @return Hazelcast's implementation version */ public String getAdapterVersion() { return HZ_PACKAGE.getImplementationVersion(); } /** There is no real specification thus always an empty String array... */ public String[] getInteractionSpecsSupported() { return new String[] {}; } /** @return Hazelcast's specification version */ public String getSpecVersion() { return HZ_PACKAGE.getSpecificationVersion(); } /* (non-Javadoc) * @see javax.resource.cci.ResourceAdapterMetaData#supportsExecuteWithInputAndOutputRecord() */ public boolean supportsExecuteWithInputAndOutputRecord() { return false; } /* (non-Javadoc) * @see javax.resource.cci.ResourceAdapterMetaData#supportsExecuteWithInputRecordOnly() */ public boolean supportsExecuteWithInputRecordOnly() { return false; } /* (non-Javadoc) * @see javax.resource.cci.ResourceAdapterMetaData#supportsLocalTransactionDemarcation() */ public boolean supportsLocalTransactionDemarcation() { return false; } }
[ "stephan.born@sungard.com" ]
stephan.born@sungard.com
2cdeadc9ed2f76693151ba420c9bcb698a3c6ecd
23d9bebc4132ad1c51f9a57d010d4af81749beae
/src/main/java/exercise/programmers/p12926/P12926.java
ef025aeae6d3c382af986b9cb2e655962122d45e
[]
no_license
siyoon210/Algorithm-DataStructure
51db47ddbd27f7bd47eb59166c8e0d3dfdd60956
a27c27fec80ae150b3749b1a6eeefd83168998ee
refs/heads/master
2022-05-19T14:07:31.986826
2022-04-17T04:12:37
2022-04-17T04:12:37
147,781,302
4
0
null
null
null
null
UTF-8
Java
false
false
1,583
java
package exercise.programmers.p12926; import static org.assertj.core.api.Assertions.assertThat; class Solution { public String solution(String s, int n) { char[] chars = s.toCharArray(); char[] answer = new char[chars.length]; if (n > 26) { n = n % 26; } for (int i = 0; i < chars.length; i++) { if (isLowerCaseAlphabet(chars[i])) { if (!isLowerCaseAlphabet((char) (chars[i] + n))) { answer[i] = (char) (chars[i] + n - 26); continue; } answer[i] = (char) (chars[i] + n); continue; } if (isUpperCaseAlphabet(chars[i])) { if (!isUpperCaseAlphabet((char) (chars[i] + n))) { answer[i] = (char) (chars[i] + n - 26); continue; } answer[i] = (char) (chars[i] + n); continue; } answer[i] = chars[i]; } return String.valueOf(answer); } private boolean isUpperCaseAlphabet(char c) { return c >= 'A' && c <= 'Z'; } private boolean isLowerCaseAlphabet(char c) { return c >= 'a' && c <= 'z'; } } public class P12926 { public static void main(String[] args) { Solution solution = new Solution(); assertThat(solution.solution("AB", 1)).isEqualTo("BC"); assertThat(solution.solution("z", 1)).isEqualTo("a"); assertThat(solution.solution("a B z", 4)).isEqualTo("e F d"); } }
[ "siyoon@woowahan.com" ]
siyoon@woowahan.com
095611b89c64947d8b176ac9457505ac787cc250
4bc9c801310449412de0d32edd6fb7055d1eaad3
/MyWayTrip/app/src/main/java/himywayplay/com/mywaytrip/trip/TripAdapter.java
b3b8d63c4383162cd97df1d54478fc575349d620
[]
no_license
xiasiqiu/MyWayWork
ecb26ada4557b428e5f0d60e845fe3fc7ab9ad01
07d9810b46e466d2ea7aa07e27c15f1b15b7e2e5
refs/heads/master
2016-09-13T21:20:28.068697
2016-05-01T05:47:39
2016-05-01T05:47:39
57,537,798
1
0
null
null
null
null
UTF-8
Java
false
false
5,999
java
package himywayplay.com.mywaytrip.trip; import android.content.Context; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.net.Uri; import android.net.wifi.WifiConfiguration; import android.support.v7.widget.RecyclerView; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import com.facebook.drawee.view.SimpleDraweeView; import org.kymjs.kjframe.KJBitmap; import java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; import java.util.ArrayList; import java.util.Collection; import java.util.List; import himywayplay.com.mywaytrip.R; import himywayplay.com.mywaytrip.commons.Data; import himywayplay.com.mywaytrip.main.widget.MainActivity; import himywayplay.com.mywaytrip.trip.widget.TripDetailActivity; /** * Created by f.x on 2016/4/27. * Email:xiasiqiu@gmail.com */ public class TripAdapter extends RecyclerView.Adapter<TripAdapter.MyViewHolder> { private Context context; private final KJBitmap kjb = new KJBitmap(); private List<Data> list; private static final String TAG = "TripAdapter"; public TripAdapter(Context context) { this.context = context; init(); Log.i(TAG, "创建Adapter" + list.toString()); } @Override public TripAdapter.MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { MyViewHolder holder = new MyViewHolder(LayoutInflater.from( context).inflate(R.layout.item_line, parent, false)); return holder; } @Override public void onBindViewHolder(TripAdapter.MyViewHolder holder, final int position) { holder.tv_title.setText(list.get(position).getLine_title()); holder.tv_content.setText(list.get(position).getLine_content().toString()); kjb.display(holder.iv_bg, list.get(position).getLine_bg()); Uri url = Uri.parse(list.get(position).getLine_bg()); holder.iv_bg.setImageURI(url); holder.iv_bg.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(context, TripDetailActivity.class); intent.putExtra("url", list.get(position).getDetail_url()); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS); context.startActivity(intent); } }); Log.i(TAG, "content" + list.get(position).getLine_content().toString()); } @Override public int getItemCount() { return list.size(); } class MyViewHolder extends RecyclerView.ViewHolder { SimpleDraweeView iv_bg; TextView tv_title; TextView tv_content; public MyViewHolder(View itemView) { super(itemView); iv_bg = (SimpleDraweeView) itemView.findViewById(R.id.iv_line_img); tv_title = (TextView) itemView.findViewById(R.id.tv_line_title); tv_content = (TextView) itemView.findViewById(R.id.tv_line_content); } } private void init() { list = new ArrayList<Data>(); Log.i(TAG, "开始获取数据"); Data data1 = new Data(); data1.setLine_bg("http://www.himywayplay.com/Uploads/Picture/2016-03-31/56fccda836990.png"); data1.setLine_content(" 观旧院镇十里画廊、品大巴山农家菜肴、漂龙潭河飞瀑流泉、享归真劳动体验。"); data1.setLine_title("巴山第一漂、田园采桃李"); data1.setDetail_url("http://www.himywayplay.com/index.php?s=/Home/goods/goods/goods_id/9.html"); Data data2 = new Data(); data2.setLine_bg("http://www.himywayplay.com/Uploads/Picture/2016-03-31/56fccdf64284c.png"); data2.setLine_content(" 阳春时节,正是品茗的好时候。游走在青山绿水间,徜徉于馨香氤氲的茶乡,和茶农们一起背着竹篓,在田园里体验一把摘茶乐。"); data2.setLine_title("蒙顶山采茶制茶亲子自驾之旅"); data2.setDetail_url("http://www.himywayplay.com/index.php?s=/Home/goods/goods/goods_id/10/category/4.html"); Data data3 = new Data(); data3.setLine_bg("http://www.himywayplay.com/Uploads/Picture/2016-03-31/56fccf177bbd3.png"); data3.setLine_content(" 全国第一家生态型的野生动物园,与野生动物零距离接触。"); data3.setLine_title("白马泉•碧峰峡休闲亲子两日游"); data3.setDetail_url("http://www.himywayplay.com/index.php?s=/Home/goods/goods/goods_id/16/category/4.html"); Data data4 = new Data(); data4.setLine_bg("http://www.himywayplay.com/Uploads/Picture/2016-03-31/56fccf6714be0.png"); data4.setLine_content(" 观赏万亩梨花,感受激情阳光,体验汉源丰富多彩的农家风情。和风送暖,草木萌动,3月的汉源阳光灿烂,春意渐浓!"); data4.setLine_title("砂器故里 贡椒之乡亲子自驾两日游"); data4.setDetail_url("http://www.himywayplay.com/index.php?s=/Home/goods/goods/goods_id/17/category/4.html"); Data data5 = new Data(); data5.setLine_bg("http://www.himywayplay.com/Uploads/Picture/2016-03-31/56fce124b8c63.png"); data5.setLine_content(" 泸定铁索桥、新都桥、毛垭大草原、稻城、亚丁景区、冲古寺、卓玛拉错神湖、夏诺多吉神山、仙乃日神山、央迈勇神山"); data5.setLine_title("金秋彩林稻城亚丁6日自驾游"); data5.setDetail_url("http://www.himywayplay.com/index.php?s=/Home/goods/goods/goods_id/30.html"); list.add(data1); list.add(data2); list.add(data3); list.add(data4); list.add(data5); } }
[ "491850673@qq.com" ]
491850673@qq.com
2b79718fa3f524521e110105ce3028b04821752e
06a0f91bfc470eaf3622a8d62285d1db1227d0f9
/src/main/java/com/weiCommity/Util/HttpJson.java
6f079025bb6dfb12af57f94f532107ce4700d2b8
[ "Apache-2.0" ]
permissive
hhxEmily521/WeiMusicCommunity
84d4d25694609f92814839f020003fa4b2846473
1f3aea9b6b3b6bebef0520caafdcdea3f8e9d357
refs/heads/master
2021-01-20T06:12:44.669370
2017-04-29T08:16:13
2017-04-29T08:16:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,853
java
package com.weiCommity.Util; import org.json.JSONObject; import javax.json.Json; import java.io.StringWriter; import java.util.ArrayList; import java.util.List; /** * 描述:服务器封装数据传输用的类,通过这个类不同的客户端可以相互传递数据 * 发送时: * 1.装配需要的变量(如果不修改默认是不发送任何类+传递正常的信息) * 2.调用 constractJsonString() 进行装配JsonString * 3.通过Servlet发送json报文 * * 接收时: * 1.使用bool 变量来检查 resolveJsnString() 方法的结果 * 2.无 Object需求 直接获取信息即可 * 3.若要获取Object 先检查getClassName 看看与目标类是否符合 * 4.符合再取调用 getClassObject 取Object,不符合请重发请求 * Created by uryuo on 17/4/6. */ public class HttpJson { private int statusCode = 400; //默认传递正常 private String Message = "OK"; //默认消息是无异常 private String className = ""; //默认没有类 private Object classObject = null; private JSONObject jsonObject = new JSONObject(); private String jsonString = ""; //json格式的串 //封装Json public void constractJsonString(){ jsonObject.put("statusCode",statusCode); jsonObject.put("message",Message); jsonObject.put("className",className); jsonObject.put("classObject",classObject); StringWriter writer = new StringWriter(); jsonObject.write(writer); jsonString = writer.toString(); } public void resolveJsonString(){ jsonObject = new JSONObject(jsonString); try{ this.statusCode = jsonObject.getInt("statusCode"); this.Message = jsonObject.getString("message"); this.className = jsonObject.getString("className"); this.classObject = jsonObject.get("classObject"); }catch (Exception e){ } finally { } } public void setPara(String key ,String elem){ jsonObject.put(key,elem); } public String getPara(String key){ return jsonObject.getString(key); } public HttpJson() { super(); } public HttpJson(int statusCode, String message) { super(); this.statusCode = statusCode; Message = message; } public HttpJson(String jsonString) { super(); this.jsonString = jsonString; this.resolveJsonString(); } //getter & setter public String getJsonString(){ return jsonString; } public void setJsonString(String jsonString) { this.jsonString = jsonString; } public int getStatusCode() { return statusCode; } public void setStatusCode(int statusCode) { this.statusCode = statusCode; } public String getMessage() { return Message; } public void setMessage(String message) { Message = message; } public String getClassName() { return className; } public void setClassName(String className){ this.className = className; } public Object getClassObject() { return classObject; } public void setClassObject(Object classObject) { this.classObject = classObject; } public static void main(String arg[]){ HttpJson json =new HttpJson(); List<String> input = new ArrayList<String>(); input.add("8d10a31d-0628-426d-bbf7-73d2b69c4d9e"); input.add("d418a1a1-63c3-4fa5-a793-66add18ca0ae"); json.setClassName("List<String>:regist-freq"); json.setPara("UUuid","c015ea85-6701-4b7c-afae-860b39f59c8d"); json.setClassObject(input); json.constractJsonString(); String re = json.getJsonString(); System.out.println(re); } }
[ "uryuohamusta@gmail.com" ]
uryuohamusta@gmail.com
7fbb36a9daac1140b889c77626839c0685ff82c1
14f5a708c85abac9405872719a69d79585ec644f
/stud (1).java
343527c6678c019dfad3cc02a53e17aef49da447
[]
no_license
sandra123vp/java2
bf46f23e50c08ca197fdb904dec3f5f8cb60e4e4
35dabffc327ee2e449164078ae7b1b7af6d0fc00
refs/heads/main
2023-08-03T02:15:06.477042
2021-10-05T18:28:57
2021-10-05T18:28:57
410,945,225
0
0
null
null
null
null
UTF-8
Java
false
false
1,049
java
import java.util.Scanner; class student { String name; int age; String place; String co; int m1,m2,m3; Scanner sc=new Scanner(System.in); void read() { System.out.println("Enter the name:"); name=sc.nextLine(); System.out.println("Enter the Age:"); age=sc.nextInt(); sc.nextLine(); System.out.println("Enter the course:"); co=sc.nextLine(); System.out.println("Enter the place:"); place=sc.nextLine(); } void totel() { int totel=0; System.out.println("Enter the 3 subject mark:"); m1=sc.nextInt(); m2=sc.nextInt(); m3=sc.nextInt(); totel=m1+m2+m3; System.out.println("the totel mark of the student is:"+totel); } void display() { System.out.println("the name is:"+name); System.out.println("the Age is:"+age); System.out.println("the Place is:"+place); System.out.println("the Course is:"+co); } } class stud { public static void main(String arg[]) { student st=new student(); st.read(); st.totel(); st.display(); } }
[ "noreply@github.com" ]
sandra123vp.noreply@github.com
e9e8f5dcdcd0b295030f0a0ec62879b56fd17cea
f6d9f9a55bfd7c9c0f4a691701c9ebca33be3845
/src/main/java/kcs/dto/BusinessDTO.java
e1c9bc95410866d791c40baf19ee7c695f2ee201
[]
no_license
ceooyh/KCS
232aff259b7a77321afe4091d86a9c7c5f31531a
7f286fdcfa71d3981d768af7f46c097a39929817
refs/heads/master
2023-03-21T04:27:26.141758
2021-03-11T08:36:53
2021-03-11T08:36:53
342,273,039
0
0
null
null
null
null
UTF-8
Java
false
false
766
java
package kcs.dto; import org.apache.ibatis.type.Alias; @Alias("business") public class BusinessDTO { private int bno; private String id; private String business_no; public BusinessDTO(int bno, String id, String business_no) { super(); this.bno = bno; this.id = id; this.business_no = business_no; } public BusinessDTO(String id, String business_no) { super(); this.id = id; this.business_no = business_no; } public int getBno() { return bno; } public void setBno(int bno) { this.bno = bno; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getBusiness_no() { return business_no; } public void setBusiness_no(String business_no) { this.business_no = business_no; } }
[ "ceojsqpqp@naver.com" ]
ceojsqpqp@naver.com
fcce839ac67402c6a883744a5eb649c7cc2415cb
32df8cd9bc7c36889982b87b081de932b58be916
/plugin/src/main/java/com/framework/service/AccountService.java
14679280a4757540e1a99c613ab571c8d673f7b0
[]
no_license
xiasummer1019/spring-web
76a1628b61102ecd348d5ed119f741cccf9fb0ee
2d629b9e94ddedc5241e3046f20dc361730163d2
refs/heads/master
2021-08-07T13:53:07.698026
2017-11-08T08:16:08
2017-11-08T08:16:08
92,001,005
0
0
null
null
null
null
UTF-8
Java
false
false
286
java
package com.framework.service; import java.util.Map; /** * 登录业务接口 * service */ public interface AccountService { Map login(String name, String password) ; void logout(String name, String token); void register(Map account); Map getAuth(String token); }
[ "xiasummer1019@hotmail.com" ]
xiasummer1019@hotmail.com
663cd23cc01eb655329a79d477b5a6b305413c2b
046f25bd011deb5ad16a8b7c8f61bdb5f495c29d
/src/main/java/org/yangyuan/security/exception/SecurityFilterAuthException.java
730aa3d3f27852fbfd262a4d0a22e3999a4e39a1
[ "Apache-2.0" ]
permissive
mayude/security
c69b34262a14ba936ae44b3f8528d2e6cd522ceb
6d03394d2a29eca01d22d1c09371ed212e65e26a
refs/heads/master
2020-03-18T11:28:07.981198
2018-05-07T07:56:18
2018-05-07T07:56:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
832
java
package org.yangyuan.security.exception; /** * 基础认证失败异常 * @author yangyuan * @date 2017年4月26日 */ public class SecurityFilterAuthException extends FilterException{ private static final long serialVersionUID = 4317541537006535404L; public SecurityFilterAuthException() { super(); } public SecurityFilterAuthException(String s) { super(s); } public SecurityFilterAuthException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } public SecurityFilterAuthException(String message, Throwable cause) { super(message, cause); } public SecurityFilterAuthException(Throwable cause) { super(cause); } }
[ "iyangyuan@outlook.com" ]
iyangyuan@outlook.com
e0530db7c1928737ef30068ddf201be969cd283e
a697c984c33afa66ef7a9a5c61f03de59ce63f36
/security-app/src/main/java/lab/zlren/security/app/TokenStoreConfig.java
a57e6c4905881e816e76fee39cc34327bc3dfaa8
[]
no_license
zlren/SpringSecurity
a4b5b3cd384bc11a9b165b531ec17cbb70207d73
f2c5e0b506f2c99979ba3ff1a2cb3508fe561d37
refs/heads/master
2021-07-21T12:21:20.056112
2017-10-30T14:42:35
2017-10-30T14:42:35
106,522,942
0
0
null
null
null
null
UTF-8
Java
false
false
2,560
java
package lab.zlren.security.app; import lab.zlren.security.app.jwt.MyJwtTokenEnhancer; import lab.zlren.security.core.properties.SecurityProperties; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.connection.RedisConnectionFactory; import org.springframework.security.oauth2.provider.token.TokenEnhancer; import org.springframework.security.oauth2.provider.token.TokenStore; import org.springframework.security.oauth2.provider.token.store.JwtAccessTokenConverter; import org.springframework.security.oauth2.provider.token.store.JwtTokenStore; import org.springframework.security.oauth2.provider.token.store.redis.RedisTokenStore; /** * 将token存储在redis中 * * @author zlren * @date 17/10/26 */ @Configuration public class TokenStoreConfig { @Autowired private RedisConnectionFactory redisConnectionFactory; @Bean @ConditionalOnProperty(prefix = "lab.zlren.security.oauth2", name = "storeType", havingValue = "redis") public TokenStore redisTokenStore() { return new RedisTokenStore(redisConnectionFactory); } /** * prefix.name 是要被检查的属性key * 当lab.zlren.security.oauth2.storeType的值为jwt的时候,启动这个配置 * 当我在配置文件中根本没有配上面那个key的时候我也认为是匹配的 */ @Configuration @ConditionalOnProperty(prefix = "lab.zlren.security.oauth2", name = "storeType", havingValue = "jwt", matchIfMissing = true) public static class JwtTokenConfig { @Autowired private SecurityProperties securityProperties; @Bean public TokenStore jwtTokenStore() { return new JwtTokenStore(jwtAccessTokenConverter()); } @Bean public JwtAccessTokenConverter jwtAccessTokenConverter() { JwtAccessTokenConverter jwtAccessTokenConverter = new JwtAccessTokenConverter(); jwtAccessTokenConverter.setSigningKey(securityProperties.getOauth2().getJwtSigningKey()); return jwtAccessTokenConverter; } @Bean @ConditionalOnMissingBean(name = "jwtTokenEnhancer") public TokenEnhancer jwtTokenEnhancer() { return new MyJwtTokenEnhancer(); } } }
[ "zlren2012@163.com" ]
zlren2012@163.com
ad531ba3ce25bb626210341d0d062d846d730e00
4691acca4e62da71a857385cffce2b6b4aef3bb3
/patterns-modules/cqrs-es/src/main/java/com/baeldung/patterns/domain/Address.java
dfaa724434e21885c2bf82f1c0db28af910c3e81
[ "MIT" ]
permissive
lor6/tutorials
800f2e48d7968c047407bbd8a61b47be7ec352f2
e993db2c23d559d503b8bf8bc27aab0847224593
refs/heads/master
2023-05-29T06:17:47.980938
2023-05-19T08:37:45
2023-05-19T08:37:45
145,218,314
7
11
MIT
2018-08-18T12:29:20
2018-08-18T12:29:19
null
UTF-8
Java
false
false
227
java
package com.baeldung.patterns.domain; import lombok.AllArgsConstructor; import lombok.Data; @Data @AllArgsConstructor public class Address { private String city; private String state; private String postcode; }
[ "kumar.chandrakant@soprabanking.com" ]
kumar.chandrakant@soprabanking.com
32fbcb69232d4ca2d699028514b836449a13ee7f
292e268f4f1a38688058a55cc075fb4deadfd7ed
/JavaEE2/bishe/src/main/java/top/aleaf/sync/handler/DeleteUserHandler.java
9b3616a902bcb2654c0700775787ee837cdfc319
[]
no_license
zitiaozhan/IDEA_CODE
5a4b542ebe0b95158acb8587c9c3b064a650da48
8d1cb83ebae06c571240063bc6713903341e2cfe
refs/heads/master
2022-01-20T09:58:03.249776
2019-05-19T10:08:49
2019-05-19T10:08:49
174,442,379
0
0
null
null
null
null
UTF-8
Java
false
false
3,982
java
package top.aleaf.sync.handler; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Component; import org.springframework.transaction.annotation.Transactional; import top.aleaf.service.*; import top.aleaf.sync.EventHandler; import top.aleaf.sync.EventModel; import top.aleaf.sync.EventType; import top.aleaf.utils.ConstantUtil; import javax.annotation.Resource; import java.util.Collections; import java.util.List; /** * 〈删除用户时触发〉 * * @author 郭新晔 * @create 2019/5/9 0009 * Author: 郭新晔 */ @Component public class DeleteUserHandler implements EventHandler { private static final Logger LOGGER = LoggerFactory.getLogger(DeleteUserHandler.class); @Resource private CompanyProjectService companyProjectService; @Resource private GovernmentProjectService governmentProjectService; @Resource private PrizeService prizeService; @Resource private TeachingMaterialService teachingMaterialService; @Resource private PatentService patentService; @Resource private SoftwareWorkService softwareWorkService; @Resource private LectureService lectureService; @Resource private AcademicExchangeService academicExchangeService; @Resource private PaperService paperService; @Transactional(rollbackFor = Exception.class) @Override public void doHandle(EventModel eventModel) { int userId = eventModel.getEntityId(); try { //更新此人发布的项目的状态 //COMPANY_PROJECT this.companyProjectService.getByCreatedId(userId).forEach(item -> { item.setStatus(ConstantUtil.PROJECT_STATUS_USER_INVALID); companyProjectService.save(item); }); //GOVERNMENT_PROJECT this.governmentProjectService.getByCreatedId(userId).forEach(item -> { item.setStatus(ConstantUtil.PROJECT_STATUS_USER_INVALID); governmentProjectService.save(item); }); //PRIZE this.prizeService.getByCreatedId(userId).forEach(item -> { item.setStatus(ConstantUtil.PROJECT_STATUS_USER_INVALID); prizeService.save(item); }); //TEACHING_MATERIAL this.teachingMaterialService.getByCreatedId(userId).forEach(item -> { item.setStatus(ConstantUtil.PROJECT_STATUS_USER_INVALID); teachingMaterialService.save(item); }); //PATENT this.patentService.getByCreatedId(userId).forEach(item -> { item.setStatus(ConstantUtil.PROJECT_STATUS_USER_INVALID); patentService.save(item); }); //SOFTWARE_WORK this.softwareWorkService.getByCreatedId(userId).forEach(item -> { item.setStatus(ConstantUtil.PROJECT_STATUS_USER_INVALID); softwareWorkService.save(item); }); //LECTURE this.lectureService.getByCreatedId(userId).forEach(item -> { item.setStatus(ConstantUtil.PROJECT_STATUS_USER_INVALID); lectureService.save(item); }); //ACADEMIC_EXCHANGE this.academicExchangeService.getByCreatedId(userId).forEach(item -> { item.setStatus(ConstantUtil.PROJECT_STATUS_USER_INVALID); academicExchangeService.save(item); }); //PAPER this.paperService.getByCreatedId(userId).forEach(item -> { item.setStatus(ConstantUtil.PROJECT_STATUS_USER_INVALID); paperService.save(item); }); }catch (Exception e){ e.printStackTrace(); LOGGER.error("注销用户更新项目状态失败"); } } @Override public List<EventType> getSupportTypes() { return Collections.singletonList(EventType.LOGOUT_USER); } }
[ "“zitiaozhan@163.com”" ]
“zitiaozhan@163.com”
137aad1329c5602cf91ff0f054df54109e1aba38
d6267a448e056b47d79cc716d18edec6dd91154c
/modules/spring/src/test/java/org/apache/ignite/transactions/spring/SpringTransactionManagerContextInjectionTest.java
467be200a33797b9d723864d9ab444e746ad1ba2
[ "Apache-2.0", "LicenseRef-scancode-gutenberg-2020", "CC0-1.0", "BSD-3-Clause" ]
permissive
sk8tz/ignite
1635163cc2309aa0f9fd65734317af861679679f
2774d879a72b0eeced862cc9a3fbd5d9c5ff2d72
refs/heads/master
2023-04-19T03:07:50.202953
2017-01-04T21:01:13
2017-01-04T21:01:13
78,094,618
0
0
Apache-2.0
2023-04-17T19:45:36
2017-01-05T08:30:14
Java
UTF-8
Java
false
false
4,107
java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.ignite.transactions.spring; import org.apache.ignite.Ignite; import org.apache.ignite.TestInjectionLifecycleBean; import org.apache.ignite.configuration.IgniteConfiguration; import org.apache.ignite.internal.IgnitionEx; import org.apache.ignite.lifecycle.LifecycleBean; import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest; import org.springframework.beans.factory.BeanFactory; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; /** * */ public class SpringTransactionManagerContextInjectionTest extends GridCommonAbstractTest { /** * @throws Exception If failed. */ public void testBeanInjectionUsingConfigPath() throws Exception { BeanFactory factory = new AnnotationConfigApplicationContext(TestPathConfiguration.class); Ignite grid = IgnitionEx.grid("springInjectionTest"); IgniteConfiguration cfg = grid.configuration(); LifecycleBean[] beans = cfg.getLifecycleBeans(); assertEquals(2, beans.length); TestInjectionLifecycleBean bean1 = (TestInjectionLifecycleBean)beans[0]; TestInjectionLifecycleBean bean2 = (TestInjectionLifecycleBean)beans[1]; bean1.checkState(); bean2.checkState(); } /** * @throws Exception If failed. */ public void testBeanInjectionUsingConfig() throws Exception { BeanFactory factory = new AnnotationConfigApplicationContext(TestCfgConfiguration.class); TestInjectionLifecycleBean bean1 = (TestInjectionLifecycleBean)factory.getBean("bean1"); TestInjectionLifecycleBean bean2 = (TestInjectionLifecycleBean)factory.getBean("bean2"); bean1.checkState(); bean2.checkState(); } /** {@inheritDoc} */ @Override protected void afterTest() throws Exception { stopAllGrids(); super.afterTest(); } /** */ @SuppressWarnings("WeakerAccess") @Configuration static class TestPathConfiguration { /** */ @Bean(name = "mgr") public SpringTransactionManager springTransactionManager() { SpringTransactionManager mgr = new SpringTransactionManager(); mgr.setConfigurationPath("org/apache/ignite/spring-injection-test.xml"); return mgr; } } /** */ @SuppressWarnings("WeakerAccess") @Configuration static class TestCfgConfiguration { /** */ @Bean(name = "mgr") public SpringTransactionManager springTransactionManager() { IgniteConfiguration cfg = new IgniteConfiguration(); cfg.setLocalHost("127.0.0.1"); cfg.setGridName("stmcit"); cfg.setLifecycleBeans(bean1(), bean2()); SpringTransactionManager mgr = new SpringTransactionManager(); mgr.setConfiguration(cfg); return mgr; } /** */ @Bean(name = "bean1") LifecycleBean bean1() { return new TestInjectionLifecycleBean(); } /** */ @Bean(name = "bean2") LifecycleBean bean2() { return new TestInjectionLifecycleBean(); } } }
[ "eshangareev@gridgain.com" ]
eshangareev@gridgain.com
52328b7c0284cf4c1214f45bc27faa7b7bd88fca
b34054000163aa2458e00bec572f3415399083f8
/micro-service/micro-netty/src/main/java/com/ltyc/sms/codec/cmpp/CmppActiveTestResponseMessageCodec.java
9cd74199fc6e30a0af7dc1942db6fd380a9e6934
[]
no_license
Ywfgu/micro-Ywfgu-parent
d6d183c7ddbe8586ae1fddd654e3b52f7ff08b46
c7d15b640c06ad0a60c829729dbd9a07fcc21d03
refs/heads/master
2022-12-21T22:09:47.887237
2020-03-16T06:25:37
2020-03-16T06:25:37
241,548,736
0
0
null
null
null
null
UTF-8
Java
false
false
2,404
java
package com.ltyc.sms.codec.cmpp; import com.ltyc.sms.entity.cmpp30.msg.CmppActiveTestResponseMessage; import com.ltyc.sms.entity.cmpp30.msg.Message; import com.ltyc.sms.entity.cmpp30.packet.Cmpp30ActiveTestResponse; import com.ltyc.sms.entity.cmpp30.packet.CmppPacketType; import com.ltyc.sms.entity.PacketType; import io.netty.buffer.ByteBuf; import io.netty.buffer.Unpooled; import io.netty.channel.ChannelHandlerContext; import io.netty.handler.codec.MessageToMessageCodec; import io.netty.util.ReferenceCountUtil; import java.util.List; import static com.ltyc.sms.common.utils.NettyByteBufUtil.toArray; /** * @author guht * @version 1.0 * @Description * @create 2020/2/6 */ public class CmppActiveTestResponseMessageCodec extends MessageToMessageCodec<Message, CmppActiveTestResponseMessage> { private PacketType packetType; public CmppActiveTestResponseMessageCodec() { this(CmppPacketType.CMPPACTIVETESTRESPONSE); } public CmppActiveTestResponseMessageCodec(PacketType packetType) { this.packetType = packetType; } @Override protected void decode(ChannelHandlerContext ctx, Message msg, List<Object> out) throws Exception { long commandId = ((Long) msg.getHeader().getCommandId()).longValue(); if (packetType.getCommandId() != commandId) { //不解析,交给下一个codec out.add(msg); return; } CmppActiveTestResponseMessage responseMessage = new CmppActiveTestResponseMessage(msg.getHeader()); ByteBuf bodyBuffer = Unpooled.wrappedBuffer(msg.getBodyBuffer()); //甘肃测试环境回包缺少reserved字段,这里要容错 if(bodyBuffer.readableBytes()>0) { responseMessage.setReserved(bodyBuffer.readByte()); } ReferenceCountUtil.release(bodyBuffer); out.add(responseMessage); } @Override protected void encode(ChannelHandlerContext ctx, CmppActiveTestResponseMessage msg, List<Object> out) throws Exception { ByteBuf bodyBuffer = ctx.alloc().buffer(Cmpp30ActiveTestResponse.RESERVED.getBodyLength()); bodyBuffer.writeByte(msg.getReserved()); msg.setBodyBuffer(toArray(bodyBuffer,bodyBuffer.readableBytes())); msg.getHeader().setBodyLength(msg.getBodyBuffer().length); ReferenceCountUtil.release(bodyBuffer); out.add(msg); } }
[ "guht@eastcom-sw.com" ]
guht@eastcom-sw.com
4b725ebef572736e785c6cf3ce6714b45ebe349d
6b1311d1ce7be17980b2fc60157484812a0e3e94
/security/src/main/java/com/example/security/config/mybatis/MyBatisConfig.java
74de3093f787084733035f12bb09114ed958c297
[]
no_license
ohyesmygod/secretbook
a312cc317d1f93064a52be5b731460db77815ec1
d24e73e3c9a00757cb46f87006d8bd447bf00f4c
refs/heads/master
2020-09-27T07:29:14.721964
2019-12-17T08:06:31
2019-12-17T08:06:31
226,463,972
0
0
null
2019-12-17T07:34:12
2019-12-07T06:02:24
Java
UTF-8
Java
false
false
264
java
package com.example.security.config.mybatis; import org.mybatis.spring.annotation.MapperScan; import org.springframework.context.annotation.Configuration; @Configuration @MapperScan(basePackages = {"com.example.security.mapper"}) public class MyBatisConfig { }
[ "ludaliang@cloudh.net.cn" ]
ludaliang@cloudh.net.cn
90b5fc7b251370de9b0237a59e3eb76093a289fd
9a52fe3bcdd090a396e59c68c63130f32c54a7a8
/sources/com/google/zxing/oned/rss/expanded/RSSExpandedReader.java
943ddf68c89ff42c09b6b60cc9a4f8d785021e2b
[]
no_license
mzkh/LudoKing
19d7c76a298ee5bd1454736063bc392e103a8203
ee0d0e75ed9fa8894ed9877576d8e5589813b1ba
refs/heads/master
2022-04-25T06:08:41.916017
2020-04-14T17:00:45
2020-04-14T17:00:45
255,670,636
1
0
null
null
null
null
UTF-8
Java
false
false
27,598
java
package com.google.zxing.oned.rss.expanded; import androidx.recyclerview.widget.ItemTouchHelper.Callback; import com.facebook.internal.FacebookRequestErrorClassification; import com.google.android.gms.games.Notifications; import com.google.zxing.BarcodeFormat; import com.google.zxing.DecodeHintType; import com.google.zxing.FormatException; import com.google.zxing.NotFoundException; import com.google.zxing.Result; import com.google.zxing.ResultPoint; import com.google.zxing.common.BitArray; import com.google.zxing.common.detector.MathUtils; import com.google.zxing.oned.rss.AbstractRSSReader; import com.google.zxing.oned.rss.DataCharacter; import com.google.zxing.oned.rss.FinderPattern; import com.google.zxing.oned.rss.RSSUtils; import com.google.zxing.oned.rss.expanded.decoders.AbstractExpandedDecoder; import com.ludo.king.BuildConfig; import java.util.ArrayList; import java.util.Collections; import java.util.Iterator; import java.util.List; import java.util.Map; public final class RSSExpandedReader extends AbstractRSSReader { private static final int[] EVEN_TOTAL_SUBSET = {4, 20, 52, 104, 204}; private static final int[][] FINDER_PATTERNS = {new int[]{1, 8, 4, 1}, new int[]{3, 6, 4, 1}, new int[]{3, 4, 6, 1}, new int[]{3, 2, 8, 1}, new int[]{2, 6, 5, 1}, new int[]{2, 2, 9, 1}}; private static final int[][] FINDER_PATTERN_SEQUENCES = {new int[]{0, 0}, new int[]{0, 1, 1}, new int[]{0, 2, 1, 3}, new int[]{0, 4, 1, 3, 2}, new int[]{0, 4, 1, 3, 3, 5}, new int[]{0, 4, 1, 3, 4, 5, 5}, new int[]{0, 0, 1, 1, 2, 2, 3, 3}, new int[]{0, 0, 1, 1, 2, 2, 3, 4, 4}, new int[]{0, 0, 1, 1, 2, 2, 3, 4, 5, 5}, new int[]{0, 0, 1, 1, 2, 3, 3, 4, 4, 5, 5}}; private static final int FINDER_PAT_A = 0; private static final int FINDER_PAT_B = 1; private static final int FINDER_PAT_C = 2; private static final int FINDER_PAT_D = 3; private static final int FINDER_PAT_E = 4; private static final int FINDER_PAT_F = 5; private static final int[] GSUM = {0, 348, 1388, 2948, 3988}; private static final int MAX_PAIRS = 11; private static final int[] SYMBOL_WIDEST = {7, 5, 4, 3, 1}; private static final int[][] WEIGHTS = {new int[]{1, 3, 9, 27, 81, 32, 96, 77}, new int[]{20, 60, 180, 118, 143, 7, 21, 63}, new int[]{189, 145, 13, 39, 117, 140, 209, 205}, new int[]{193, 157, 49, 147, 19, 57, 171, 91}, new int[]{62, 186, 136, 197, 169, 85, 44, 132}, new int[]{185, 133, 188, 142, 4, 12, 36, 108}, new int[]{113, 128, 173, 97, 80, 29, 87, 50}, new int[]{150, 28, 84, 41, 123, 158, 52, 156}, new int[]{46, 138, 203, 187, 139, 206, 196, 166}, new int[]{76, 17, 51, BuildConfig.VERSION_CODE, 37, 111, 122, 155}, new int[]{43, 129, 176, 106, 107, 110, 119, 146}, new int[]{16, 48, 144, 10, 30, 90, 59, 177}, new int[]{109, 116, 137, Callback.DEFAULT_DRAG_ANIMATION_DURATION, 178, 112, 125, 164}, new int[]{70, 210, 208, 202, 184, 130, 179, 115}, new int[]{134, 191, 151, 31, 93, 68, 204, FacebookRequestErrorClassification.EC_INVALID_TOKEN}, new int[]{148, 22, 66, 198, 172, 94, 71, 2}, new int[]{6, 18, 54, 162, 64, 192, 154, 40}, new int[]{120, 149, 25, 75, 14, 42, 126, 167}, new int[]{79, 26, 78, 23, 69, 207, 199, 175}, new int[]{103, 98, 83, 38, 114, 131, 182, 124}, new int[]{161, 61, 183, Notifications.NOTIFICATION_TYPES_ALL, 170, 88, 53, 159}, new int[]{55, 165, 73, 8, 24, 72, 5, 15}, new int[]{45, 135, 194, 160, 58, 174, 100, 89}}; private final List<ExpandedPair> pairs = new ArrayList(11); private final List<ExpandedRow> rows = new ArrayList(); private final int[] startEnd = new int[2]; private boolean startFromEven; public Result decodeRow(int i, BitArray bitArray, Map<DecodeHintType, ?> map) throws NotFoundException, FormatException { this.pairs.clear(); this.startFromEven = false; try { return constructResult(decodeRow2pairs(i, bitArray)); } catch (NotFoundException unused) { this.pairs.clear(); this.startFromEven = true; return constructResult(decodeRow2pairs(i, bitArray)); } } public void reset() { this.pairs.clear(); this.rows.clear(); } /* access modifiers changed from: 0000 */ public List<ExpandedPair> decodeRow2pairs(int i, BitArray bitArray) throws NotFoundException { boolean z = false; while (!z) { try { this.pairs.add(retrieveNextPair(bitArray, this.pairs, i)); } catch (NotFoundException e) { if (!this.pairs.isEmpty()) { z = true; } else { throw e; } } } if (checkChecksum()) { return this.pairs; } boolean z2 = !this.rows.isEmpty(); storeRow(i, false); if (z2) { List<ExpandedPair> checkRows = checkRows(false); if (checkRows != null) { return checkRows; } List<ExpandedPair> checkRows2 = checkRows(true); if (checkRows2 != null) { return checkRows2; } } throw NotFoundException.getNotFoundInstance(); } private List<ExpandedPair> checkRows(boolean z) { List<ExpandedPair> list = null; if (this.rows.size() > 25) { this.rows.clear(); return null; } this.pairs.clear(); if (z) { Collections.reverse(this.rows); } try { list = checkRows(new ArrayList(), 0); } catch (NotFoundException unused) { } if (z) { Collections.reverse(this.rows); } return list; } private List<ExpandedPair> checkRows(List<ExpandedRow> list, int i) throws NotFoundException { while (i < this.rows.size()) { ExpandedRow expandedRow = (ExpandedRow) this.rows.get(i); this.pairs.clear(); for (ExpandedRow pairs2 : list) { this.pairs.addAll(pairs2.getPairs()); } this.pairs.addAll(expandedRow.getPairs()); if (!isValidSequence(this.pairs)) { i++; } else if (checkChecksum()) { return this.pairs; } else { ArrayList arrayList = new ArrayList(list); arrayList.add(expandedRow); try { return checkRows(arrayList, i + 1); } catch (NotFoundException unused) { } } } throw NotFoundException.getNotFoundInstance(); } private static boolean isValidSequence(List<ExpandedPair> list) { int[][] iArr; boolean z; for (int[] iArr2 : FINDER_PATTERN_SEQUENCES) { if (list.size() <= iArr2.length) { int i = 0; while (true) { if (i >= list.size()) { z = true; break; } else if (((ExpandedPair) list.get(i)).getFinderPattern().getValue() != iArr2[i]) { z = false; break; } else { i++; } } if (z) { return true; } } } return false; } private void storeRow(int i, boolean z) { boolean z2 = false; int i2 = 0; boolean z3 = false; while (true) { if (i2 >= this.rows.size()) { break; } ExpandedRow expandedRow = (ExpandedRow) this.rows.get(i2); if (expandedRow.getRowNumber() > i) { z2 = expandedRow.isEquivalent(this.pairs); break; } else { z3 = expandedRow.isEquivalent(this.pairs); i2++; } } if (!z2 && !z3 && !isPartialRow(this.pairs, this.rows)) { this.rows.add(i2, new ExpandedRow(this.pairs, i, z)); removePartialRows(this.pairs, this.rows); } } private static void removePartialRows(List<ExpandedPair> list, List<ExpandedRow> list2) { boolean z; Iterator it = list2.iterator(); while (it.hasNext()) { ExpandedRow expandedRow = (ExpandedRow) it.next(); if (expandedRow.getPairs().size() != list.size()) { Iterator it2 = expandedRow.getPairs().iterator(); while (true) { z = false; boolean z2 = true; if (!it2.hasNext()) { z = true; break; } ExpandedPair expandedPair = (ExpandedPair) it2.next(); Iterator it3 = list.iterator(); while (true) { if (it3.hasNext()) { if (expandedPair.equals((ExpandedPair) it3.next())) { continue; break; } } else { z2 = false; continue; break; } } if (!z2) { break; } } if (z) { it.remove(); } } } } private static boolean isPartialRow(Iterable<ExpandedPair> iterable, Iterable<ExpandedRow> iterable2) { boolean z; boolean z2; Iterator it = iterable2.iterator(); do { z = false; if (it.hasNext()) { ExpandedRow expandedRow = (ExpandedRow) it.next(); Iterator it2 = iterable.iterator(); while (true) { if (!it2.hasNext()) { z = true; continue; break; } ExpandedPair expandedPair = (ExpandedPair) it2.next(); Iterator it3 = expandedRow.getPairs().iterator(); while (true) { if (it3.hasNext()) { if (expandedPair.equals((ExpandedPair) it3.next())) { z2 = true; continue; break; } } else { z2 = false; continue; break; } } if (!z2) { continue; break; } } } else { return false; } } while (!z); return true; } /* access modifiers changed from: 0000 */ public List<ExpandedRow> getRows() { return this.rows; } static Result constructResult(List<ExpandedPair> list) throws NotFoundException, FormatException { String parseInformation = AbstractExpandedDecoder.createDecoder(BitArrayBuilder.buildBitArray(list)).parseInformation(); ResultPoint[] resultPoints = ((ExpandedPair) list.get(0)).getFinderPattern().getResultPoints(); ResultPoint[] resultPoints2 = ((ExpandedPair) list.get(list.size() - 1)).getFinderPattern().getResultPoints(); return new Result(parseInformation, null, new ResultPoint[]{resultPoints[0], resultPoints[1], resultPoints2[0], resultPoints2[1]}, BarcodeFormat.RSS_EXPANDED); } private boolean checkChecksum() { ExpandedPair expandedPair = (ExpandedPair) this.pairs.get(0); DataCharacter leftChar = expandedPair.getLeftChar(); DataCharacter rightChar = expandedPair.getRightChar(); if (rightChar == null) { return false; } int checksumPortion = rightChar.getChecksumPortion(); int i = 2; for (int i2 = 1; i2 < this.pairs.size(); i2++) { ExpandedPair expandedPair2 = (ExpandedPair) this.pairs.get(i2); checksumPortion += expandedPair2.getLeftChar().getChecksumPortion(); i++; DataCharacter rightChar2 = expandedPair2.getRightChar(); if (rightChar2 != null) { checksumPortion += rightChar2.getChecksumPortion(); i++; } } if (((i - 4) * 211) + (checksumPortion % 211) == leftChar.getValue()) { return true; } return false; } private static int getNextSecondBar(BitArray bitArray, int i) { if (bitArray.get(i)) { return bitArray.getNextSet(bitArray.getNextUnset(i)); } return bitArray.getNextUnset(bitArray.getNextSet(i)); } /* access modifiers changed from: 0000 */ public ExpandedPair retrieveNextPair(BitArray bitArray, List<ExpandedPair> list, int i) throws NotFoundException { FinderPattern parseFoundFinderPattern; DataCharacter dataCharacter; boolean z = list.size() % 2 == 0; if (this.startFromEven) { z = !z; } int i2 = -1; boolean z2 = true; do { findNextPair(bitArray, list, i2); parseFoundFinderPattern = parseFoundFinderPattern(bitArray, i, z); if (parseFoundFinderPattern == null) { i2 = getNextSecondBar(bitArray, this.startEnd[0]); continue; } else { z2 = false; continue; } } while (z2); DataCharacter decodeDataCharacter = decodeDataCharacter(bitArray, parseFoundFinderPattern, z, true); if (list.isEmpty() || !((ExpandedPair) list.get(list.size() - 1)).mustBeLast()) { try { dataCharacter = decodeDataCharacter(bitArray, parseFoundFinderPattern, z, false); } catch (NotFoundException unused) { dataCharacter = null; } return new ExpandedPair(decodeDataCharacter, dataCharacter, parseFoundFinderPattern, true); } throw NotFoundException.getNotFoundInstance(); } private void findNextPair(BitArray bitArray, List<ExpandedPair> list, int i) throws NotFoundException { int[] decodeFinderCounters = getDecodeFinderCounters(); decodeFinderCounters[0] = 0; decodeFinderCounters[1] = 0; decodeFinderCounters[2] = 0; decodeFinderCounters[3] = 0; int size = bitArray.getSize(); if (i < 0) { if (list.isEmpty()) { i = 0; } else { i = ((ExpandedPair) list.get(list.size() - 1)).getFinderPattern().getStartEnd()[1]; } } boolean z = list.size() % 2 != 0; if (this.startFromEven) { z = !z; } boolean z2 = false; while (i < size) { z2 = !bitArray.get(i); if (!z2) { break; } i++; } int i2 = i; int i3 = 0; while (i < size) { if (bitArray.get(i) != z2) { decodeFinderCounters[i3] = decodeFinderCounters[i3] + 1; } else { if (i3 == 3) { if (z) { reverseCounters(decodeFinderCounters); } if (isFinderPattern(decodeFinderCounters)) { int[] iArr = this.startEnd; iArr[0] = i2; iArr[1] = i; return; } if (z) { reverseCounters(decodeFinderCounters); } i2 += decodeFinderCounters[0] + decodeFinderCounters[1]; decodeFinderCounters[0] = decodeFinderCounters[2]; decodeFinderCounters[1] = decodeFinderCounters[3]; decodeFinderCounters[2] = 0; decodeFinderCounters[3] = 0; i3--; } else { i3++; } decodeFinderCounters[i3] = 1; z2 = !z2; } i++; } throw NotFoundException.getNotFoundInstance(); } private static void reverseCounters(int[] iArr) { int length = iArr.length; for (int i = 0; i < length / 2; i++) { int i2 = iArr[i]; int i3 = (length - i) - 1; iArr[i] = iArr[i3]; iArr[i3] = i2; } } private FinderPattern parseFoundFinderPattern(BitArray bitArray, int i, boolean z) { int i2; int i3; int i4; if (z) { int i5 = this.startEnd[0] - 1; while (i5 >= 0 && !bitArray.get(i5)) { i5--; } int i6 = i5 + 1; int[] iArr = this.startEnd; int i7 = iArr[0] - i6; i3 = iArr[1]; i4 = i6; i2 = i7; } else { int[] iArr2 = this.startEnd; int i8 = iArr2[0]; int nextUnset = bitArray.getNextUnset(iArr2[1] + 1); i2 = nextUnset - this.startEnd[1]; i3 = nextUnset; i4 = i8; } int[] decodeFinderCounters = getDecodeFinderCounters(); System.arraycopy(decodeFinderCounters, 0, decodeFinderCounters, 1, decodeFinderCounters.length - 1); decodeFinderCounters[0] = i2; try { FinderPattern finderPattern = new FinderPattern(parseFinderValue(decodeFinderCounters, FINDER_PATTERNS), new int[]{i4, i3}, i4, i3, i); return finderPattern; } catch (NotFoundException unused) { return null; } } /* access modifiers changed from: 0000 */ public DataCharacter decodeDataCharacter(BitArray bitArray, FinderPattern finderPattern, boolean z, boolean z2) throws NotFoundException { BitArray bitArray2 = bitArray; int[] dataCharacterCounters = getDataCharacterCounters(); for (int i = 0; i < dataCharacterCounters.length; i++) { dataCharacterCounters[i] = 0; } if (z2) { recordPatternInReverse(bitArray, finderPattern.getStartEnd()[0], dataCharacterCounters); } else { recordPattern(bitArray, finderPattern.getStartEnd()[1], dataCharacterCounters); int i2 = 0; for (int length = dataCharacterCounters.length - 1; i2 < length; length--) { int i3 = dataCharacterCounters[i2]; dataCharacterCounters[i2] = dataCharacterCounters[length]; dataCharacterCounters[length] = i3; i2++; } } float sum = ((float) MathUtils.sum(dataCharacterCounters)) / 17.0f; float f = ((float) (finderPattern.getStartEnd()[1] - finderPattern.getStartEnd()[0])) / 15.0f; if (Math.abs(sum - f) / f <= 0.3f) { int[] oddCounts = getOddCounts(); int[] evenCounts = getEvenCounts(); float[] oddRoundingErrors = getOddRoundingErrors(); float[] evenRoundingErrors = getEvenRoundingErrors(); for (int i4 = 0; i4 < dataCharacterCounters.length; i4++) { float f2 = (((float) dataCharacterCounters[i4]) * 1.0f) / sum; int i5 = (int) (0.5f + f2); int i6 = 8; if (i5 <= 0) { if (f2 >= 0.3f) { i6 = 1; } else { throw NotFoundException.getNotFoundInstance(); } } else if (i5 <= 8) { i6 = i5; } else if (f2 > 8.7f) { throw NotFoundException.getNotFoundInstance(); } int i7 = i4 / 2; if ((i4 & 1) == 0) { oddCounts[i7] = i6; oddRoundingErrors[i7] = f2 - ((float) i6); } else { evenCounts[i7] = i6; evenRoundingErrors[i7] = f2 - ((float) i6); } } adjustOddEvenCounts(17); int value = (((finderPattern.getValue() * 4) + (z ? 0 : 2)) + (z2 ^ true ? 1 : 0)) - 1; int i8 = 0; int i9 = 0; for (int length2 = oddCounts.length - 1; length2 >= 0; length2--) { if (isNotA1left(finderPattern, z, z2)) { i8 += oddCounts[length2] * WEIGHTS[value][length2 * 2]; } i9 += oddCounts[length2]; } int i10 = 0; for (int length3 = evenCounts.length - 1; length3 >= 0; length3--) { if (isNotA1left(finderPattern, z, z2)) { i10 += evenCounts[length3] * WEIGHTS[value][(length3 * 2) + 1]; } } int i11 = i8 + i10; if ((i9 & 1) != 0 || i9 > 13 || i9 < 4) { throw NotFoundException.getNotFoundInstance(); } int i12 = (13 - i9) / 2; int i13 = SYMBOL_WIDEST[i12]; int i14 = 9 - i13; return new DataCharacter((RSSUtils.getRSSvalue(oddCounts, i13, true) * EVEN_TOTAL_SUBSET[i12]) + RSSUtils.getRSSvalue(evenCounts, i14, false) + GSUM[i12], i11); } throw NotFoundException.getNotFoundInstance(); } private static boolean isNotA1left(FinderPattern finderPattern, boolean z, boolean z2) { return finderPattern.getValue() != 0 || !z || !z2; } /* JADX WARNING: Removed duplicated region for block: B:15:0x0032 */ /* JADX WARNING: Removed duplicated region for block: B:16:0x0034 */ /* JADX WARNING: Removed duplicated region for block: B:19:0x0039 */ /* JADX WARNING: Removed duplicated region for block: B:21:0x003c */ /* JADX WARNING: Removed duplicated region for block: B:30:0x0050 */ /* JADX WARNING: Removed duplicated region for block: B:51:0x007c */ /* JADX WARNING: Removed duplicated region for block: B:56:0x0091 */ /* JADX WARNING: Removed duplicated region for block: B:58:0x009e */ /* JADX WARNING: Removed duplicated region for block: B:63:0x00b3 */ /* JADX WARNING: Removed duplicated region for block: B:69:? A[RETURN, SYNTHETIC] */ /* JADX WARNING: Removed duplicated region for block: B:8:0x0022 */ /* JADX WARNING: Removed duplicated region for block: B:9:0x0025 */ /* Code decompiled incorrectly, please refer to instructions dump. */ private void adjustOddEvenCounts(int r11) throws com.google.zxing.NotFoundException { /* r10 = this; int[] r0 = r10.getOddCounts() int r0 = com.google.zxing.common.detector.MathUtils.sum(r0) int[] r1 = r10.getEvenCounts() int r1 = com.google.zxing.common.detector.MathUtils.sum(r1) r2 = 4 r3 = 13 r4 = 0 r5 = 1 if (r0 <= r3) goto L_0x0019 r6 = 1 goto L_0x001f L_0x0019: if (r0 >= r2) goto L_0x001e r6 = 0 r7 = 1 goto L_0x0020 L_0x001e: r6 = 0 L_0x001f: r7 = 0 L_0x0020: if (r1 <= r3) goto L_0x0025 r2 = 0 r3 = 1 goto L_0x002b L_0x0025: if (r1 >= r2) goto L_0x0029 r2 = 1 goto L_0x002a L_0x0029: r2 = 0 L_0x002a: r3 = 0 L_0x002b: int r8 = r0 + r1 int r8 = r8 - r11 r11 = r0 & 1 if (r11 != r5) goto L_0x0034 r11 = 1 goto L_0x0035 L_0x0034: r11 = 0 L_0x0035: r9 = r1 & 1 if (r9 != 0) goto L_0x003a r4 = 1 L_0x003a: if (r8 != r5) goto L_0x0050 if (r11 == 0) goto L_0x0047 if (r4 != 0) goto L_0x0042 L_0x0040: r6 = 1 goto L_0x007a L_0x0042: com.google.zxing.NotFoundException r11 = com.google.zxing.NotFoundException.getNotFoundInstance() throw r11 L_0x0047: if (r4 == 0) goto L_0x004b r3 = 1 goto L_0x007a L_0x004b: com.google.zxing.NotFoundException r11 = com.google.zxing.NotFoundException.getNotFoundInstance() throw r11 L_0x0050: r9 = -1 if (r8 != r9) goto L_0x0067 if (r11 == 0) goto L_0x005e if (r4 != 0) goto L_0x0059 L_0x0057: r7 = 1 goto L_0x007a L_0x0059: com.google.zxing.NotFoundException r11 = com.google.zxing.NotFoundException.getNotFoundInstance() throw r11 L_0x005e: if (r4 == 0) goto L_0x0062 r2 = 1 goto L_0x007a L_0x0062: com.google.zxing.NotFoundException r11 = com.google.zxing.NotFoundException.getNotFoundInstance() throw r11 L_0x0067: if (r8 != 0) goto L_0x00c4 if (r11 == 0) goto L_0x0078 if (r4 == 0) goto L_0x0073 if (r0 >= r1) goto L_0x0071 r3 = 1 goto L_0x0057 L_0x0071: r2 = 1 goto L_0x0040 L_0x0073: com.google.zxing.NotFoundException r11 = com.google.zxing.NotFoundException.getNotFoundInstance() throw r11 L_0x0078: if (r4 != 0) goto L_0x00bf L_0x007a: if (r7 == 0) goto L_0x008f if (r6 != 0) goto L_0x008a int[] r11 = r10.getOddCounts() float[] r0 = r10.getOddRoundingErrors() increment(r11, r0) goto L_0x008f L_0x008a: com.google.zxing.NotFoundException r11 = com.google.zxing.NotFoundException.getNotFoundInstance() throw r11 L_0x008f: if (r6 == 0) goto L_0x009c int[] r11 = r10.getOddCounts() float[] r0 = r10.getOddRoundingErrors() decrement(r11, r0) L_0x009c: if (r2 == 0) goto L_0x00b1 if (r3 != 0) goto L_0x00ac int[] r11 = r10.getEvenCounts() float[] r0 = r10.getOddRoundingErrors() increment(r11, r0) goto L_0x00b1 L_0x00ac: com.google.zxing.NotFoundException r11 = com.google.zxing.NotFoundException.getNotFoundInstance() throw r11 L_0x00b1: if (r3 == 0) goto L_0x00be int[] r11 = r10.getEvenCounts() float[] r0 = r10.getEvenRoundingErrors() decrement(r11, r0) L_0x00be: return L_0x00bf: com.google.zxing.NotFoundException r11 = com.google.zxing.NotFoundException.getNotFoundInstance() throw r11 L_0x00c4: com.google.zxing.NotFoundException r11 = com.google.zxing.NotFoundException.getNotFoundInstance() throw r11 return */ throw new UnsupportedOperationException("Method not decompiled: com.google.zxing.oned.rss.expanded.RSSExpandedReader.adjustOddEvenCounts(int):void"); } }
[ "mdkhnmm@amazon.com" ]
mdkhnmm@amazon.com
50af7ae7498c7cacbd144d65c4182f33a12f4dfa
c0dc118ccea75be1415f0dc9395171cc0801d552
/DemoApp_BCM/app/src/main/java/com/tkdrnjs0621/demoapp_bcm/MainActivity.java
cb1c08854090af205553087946ccec0d2d65e076
[]
no_license
ssai-snu/Intern_2021_Spring
e03f6700d72b5fa672463140a3b9e9c563293279
e6715fed0012020d5f045c36e0419275e843d156
refs/heads/main
2023-05-23T17:44:59.814855
2021-06-29T20:35:03
2021-06-29T20:35:03
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,439
java
package com.tkdrnjs0621.demoapp_bcm; import androidx.appcompat.app.AppCompatActivity; import android.bluetooth.BluetoothAdapter; import android.content.Intent; import android.graphics.Point; import android.os.Bundle; import android.os.Looper; import android.util.Log; import android.view.Display; import android.view.View; import android.widget.Button; import android.widget.ImageView; import android.widget.TextView; public class MainActivity extends AppCompatActivity implements ClickManagerCallback{ TextView tv; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE); discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300); startActivity(discoverableIntent); Log.i("ee","eeee"); Display display = getWindowManager().getDefaultDisplay(); Point size = new Point(); display.getSize(size); BluetoothClickManager bcm = new BluetoothClickManager(this, BluetoothAdapter.getDefaultAdapter(), Looper.getMainLooper(),size.x,size.y); bcm.addView(R.id.btn0); bcm.addView(R.id.btn1); bcm.addView(R.id.btn2); bcm.addView(R.id.btn3); bcm.addView(R.id.btn4); bcm.addView(R.id.btn5); bcm.addView(R.id.btn6); bcm.addView(R.id.btn7); bcm.addView(R.id.btn8); bcm.addView(R.id.btn9); bcm.addView(R.id.btn10); bcm.addView(R.id.btn11); bcm.addView(R.id.btn12); bcm.addView(R.id.btn13); bcm.addView(R.id.btn14); tv = (TextView) findViewById(R.id.textView); View.OnClickListener cl = new View.OnClickListener() { @Override public void onClick(View view) { try{ Button btn = (Button) view; tv.setText("Clicked Button : "+btn.getText().toString()); } catch (Exception e) { } } }; ((Button) findViewById(R.id.btn0)).setOnClickListener(cl); ((Button) findViewById(R.id.btn1)).setOnClickListener(cl); ((Button) findViewById(R.id.btn2)).setOnClickListener(cl); ((Button) findViewById(R.id.btn3)).setOnClickListener(cl); ((Button) findViewById(R.id.btn4)).setOnClickListener(cl); ((Button) findViewById(R.id.btn5)).setOnClickListener(cl); ((Button) findViewById(R.id.btn6)).setOnClickListener(cl); ((Button) findViewById(R.id.btn7)).setOnClickListener(cl); ((Button) findViewById(R.id.btn8)).setOnClickListener(cl); ((Button) findViewById(R.id.btn9)).setOnClickListener(cl); ((Button) findViewById(R.id.btn10)).setOnClickListener(cl); ((Button) findViewById(R.id.btn11)).setOnClickListener(cl); ((Button) findViewById(R.id.btn12)).setOnClickListener(cl); ((Button) findViewById(R.id.btn13)).setOnClickListener(cl); ((Button) findViewById(R.id.btn14)).setOnClickListener(cl); } @Override public void performAction(int action, int id) { switch (action) { case 0: //Hover { break; } case 1: //Click { View v = findViewById(id); Log.i("MainActivity","clicked : "+id); v.performClick(); break; } default: { }//should not fall here } } public void performAction(int action, int x, int y) { ImageView iv = (ImageView) findViewById(R.id.imageView); switch (action) { case 0: //Hover case 1: //Click { iv.setX(x); iv.setY(y); break; } default: { }//should not fall here } } @Override public ViewDataArgs getViewData(int id) { View v = findViewById(id); int[] location = new int[2]; v.getLocationOnScreen(location); int x_tl=location[0]; int y_tl=location[1]; int w = v.getWidth(); int h = v.getHeight(); return new ViewDataArgs(x_tl,y_tl,w,h); } }
[ "tkdrnjs0621@snu.ac.kr" ]
tkdrnjs0621@snu.ac.kr
e405d04bbab56f361482b9ed96aa01a9def4daf0
1ce1ee68034f7392de01cdd99fd01e4078ac05c3
/SeasonalFruit.java
aa7410ef4e93df7c007a8845268a81b09937441a
[]
no_license
violetwei/online-virtual-market-place
92b24b23b5c8680c1c391ff5718615682660a148
f3632add416917f05290bb1c2346417ccca45946
refs/heads/master
2020-04-04T21:05:34.706914
2018-11-12T02:25:26
2018-11-12T02:25:26
156,273,114
0
0
null
null
null
null
UTF-8
Java
false
false
937
java
/* * Write a class SeasonalFruit derived from the Fruit class. * * The SeasonalFruit class has no fields, but it has the following public methods: * A constructor that takes as input a String with the name of the product, a double indicating the weight in kg, * and an int indicating the price per kg of such product. The constructor uses the inputs to create a Fruit. * * A getCost() method that takes no input and returns the cost of the product in cents. * Since this type of Fruit is in season, its original cost should receive a 15% discount. For instance, 0.5 kgs of McIntosh apples at 480 cents per kg cost 204 cents. */ public class SeasonalFruit extends Fruit{ //constructor public SeasonalFruit(String name_of_product, double weight, int price_per_kg) { super(name_of_product, weight, price_per_kg); } public int getCost() { double cost = super.getCost() * 0.85; return (int)cost; } }
[ "noreply@github.com" ]
violetwei.noreply@github.com
55d567f8e34d9ea58671b2f22bb34d8ff468f259
98bcb36b307ce97f2e3a61c720bd0898c00d71f8
/modules/dfp_axis/src/main/java/com/google/api/ads/dfp/axis/v201505/SuggestedAdUnitUpdateResult.java
5b66a0f291d098ad8e36a7f6003643478ab7c8fc
[ "Apache-2.0" ]
permissive
goliva/googleads-java-lib
7050c16adbdfe1bf966414c1c412124b4f1352cc
ed88ac7508c382453682d18f46e53e9673286039
refs/heads/master
2021-01-22T00:52:23.999379
2015-07-17T22:20:42
2015-07-17T22:20:42
36,671,823
0
1
null
2015-07-17T22:20:42
2015-06-01T15:58:41
Java
UTF-8
Java
false
false
6,617
java
/** * SuggestedAdUnitUpdateResult.java * * This file was auto-generated from WSDL * by the Apache Axis 1.4 Mar 02, 2009 (07:08:06 PST) WSDL2Java emitter. */ package com.google.api.ads.dfp.axis.v201505; /** * Represents the result of performing an action on {@link SuggestedAdUnit} * objects. */ public class SuggestedAdUnitUpdateResult implements java.io.Serializable { /* The ids of the {@link AdUnit} objects that were created in * response to a * performSuggestedAdUnitAction call. */ private java.lang.String[] newAdUnitIds; /* The number of objects that were changed as a result of performing * the * action. */ private java.lang.Integer numChanges; public SuggestedAdUnitUpdateResult() { } public SuggestedAdUnitUpdateResult( java.lang.String[] newAdUnitIds, java.lang.Integer numChanges) { this.newAdUnitIds = newAdUnitIds; this.numChanges = numChanges; } /** * Gets the newAdUnitIds value for this SuggestedAdUnitUpdateResult. * * @return newAdUnitIds * The ids of the {@link AdUnit} objects that were created in * response to a * performSuggestedAdUnitAction call. */ public java.lang.String[] getNewAdUnitIds() { return newAdUnitIds; } /** * Sets the newAdUnitIds value for this SuggestedAdUnitUpdateResult. * * @param newAdUnitIds * The ids of the {@link AdUnit} objects that were created in * response to a * performSuggestedAdUnitAction call. */ public void setNewAdUnitIds(java.lang.String[] newAdUnitIds) { this.newAdUnitIds = newAdUnitIds; } public java.lang.String getNewAdUnitIds(int i) { return this.newAdUnitIds[i]; } public void setNewAdUnitIds(int i, java.lang.String _value) { this.newAdUnitIds[i] = _value; } /** * Gets the numChanges value for this SuggestedAdUnitUpdateResult. * * @return numChanges * The number of objects that were changed as a result of performing * the * action. */ public java.lang.Integer getNumChanges() { return numChanges; } /** * Sets the numChanges value for this SuggestedAdUnitUpdateResult. * * @param numChanges * The number of objects that were changed as a result of performing * the * action. */ public void setNumChanges(java.lang.Integer numChanges) { this.numChanges = numChanges; } private java.lang.Object __equalsCalc = null; public synchronized boolean equals(java.lang.Object obj) { if (!(obj instanceof SuggestedAdUnitUpdateResult)) return false; SuggestedAdUnitUpdateResult other = (SuggestedAdUnitUpdateResult) obj; if (obj == null) return false; if (this == obj) return true; if (__equalsCalc != null) { return (__equalsCalc == obj); } __equalsCalc = obj; boolean _equals; _equals = true && ((this.newAdUnitIds==null && other.getNewAdUnitIds()==null) || (this.newAdUnitIds!=null && java.util.Arrays.equals(this.newAdUnitIds, other.getNewAdUnitIds()))) && ((this.numChanges==null && other.getNumChanges()==null) || (this.numChanges!=null && this.numChanges.equals(other.getNumChanges()))); __equalsCalc = null; return _equals; } private boolean __hashCodeCalc = false; public synchronized int hashCode() { if (__hashCodeCalc) { return 0; } __hashCodeCalc = true; int _hashCode = 1; if (getNewAdUnitIds() != null) { for (int i=0; i<java.lang.reflect.Array.getLength(getNewAdUnitIds()); i++) { java.lang.Object obj = java.lang.reflect.Array.get(getNewAdUnitIds(), i); if (obj != null && !obj.getClass().isArray()) { _hashCode += obj.hashCode(); } } } if (getNumChanges() != null) { _hashCode += getNumChanges().hashCode(); } __hashCodeCalc = false; return _hashCode; } // Type metadata private static org.apache.axis.description.TypeDesc typeDesc = new org.apache.axis.description.TypeDesc(SuggestedAdUnitUpdateResult.class, true); static { typeDesc.setXmlType(new javax.xml.namespace.QName("https://www.google.com/apis/ads/publisher/v201505", "SuggestedAdUnitUpdateResult")); org.apache.axis.description.ElementDesc elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("newAdUnitIds"); elemField.setXmlName(new javax.xml.namespace.QName("https://www.google.com/apis/ads/publisher/v201505", "newAdUnitIds")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "string")); elemField.setMinOccurs(0); elemField.setNillable(false); elemField.setMaxOccursUnbounded(true); typeDesc.addFieldDesc(elemField); elemField = new org.apache.axis.description.ElementDesc(); elemField.setFieldName("numChanges"); elemField.setXmlName(new javax.xml.namespace.QName("https://www.google.com/apis/ads/publisher/v201505", "numChanges")); elemField.setXmlType(new javax.xml.namespace.QName("http://www.w3.org/2001/XMLSchema", "int")); elemField.setMinOccurs(0); elemField.setNillable(false); typeDesc.addFieldDesc(elemField); } /** * Return type metadata object */ public static org.apache.axis.description.TypeDesc getTypeDesc() { return typeDesc; } /** * Get Custom Serializer */ public static org.apache.axis.encoding.Serializer getSerializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanSerializer( _javaType, _xmlType, typeDesc); } /** * Get Custom Deserializer */ public static org.apache.axis.encoding.Deserializer getDeserializer( java.lang.String mechType, java.lang.Class _javaType, javax.xml.namespace.QName _xmlType) { return new org.apache.axis.encoding.ser.BeanDeserializer( _javaType, _xmlType, typeDesc); } }
[ "api.cseeley@gmail.com" ]
api.cseeley@gmail.com
07959f9885de93a2d439cf8e72559c024db09252
a8fb95dd87f49444ead0dc684a491b92b655a347
/src/main/common/util/SessionKit.java
92805381945e6ed82ab8785962067ba5065be938
[]
no_license
FrozenCharlos/CPMS
b0d7b1231c59ce5d436be813a0bd5349d025636a
2a87d583c61ba0e310cd1885adf8424fffd968e0
refs/heads/master
2020-04-29T21:52:31.718020
2019-04-10T08:29:11
2019-04-10T08:29:11
176,427,889
3
0
null
null
null
null
UTF-8
Java
false
false
378
java
package main.common.util; import javax.servlet.http.HttpSession; public class SessionKit { private static ThreadLocal<HttpSession> tl = new ThreadLocal<HttpSession>(); public static void set(HttpSession s) { tl.set(s); } public static HttpSession get() { return tl.get(); } public static void remove() { tl.remove(); } }
[ "1173128047@qq.com" ]
1173128047@qq.com
b91d5ef4f8afeeeaa7fea4aadaebaa50e4995b3b
6f7bf7087a8127d0e654e0f506aaca33d40f0662
/src/tilegame/input/KeyManager.java
cddaf822f69f9438ddd8be7231ca92f152cb8543
[]
no_license
rsupak/TileGame
9dde0ca62f43f3d54276d236d6f89f05c36877c0
03905d8950c1f6d4eb67f7aa6f4660954c1ebccf
refs/heads/master
2021-07-23T15:43:26.416063
2017-11-03T03:09:37
2017-11-03T03:09:37
109,346,337
0
0
null
null
null
null
UTF-8
Java
false
false
785
java
package tilegame.input; import java.awt.event.KeyEvent; import java.awt.event.KeyListener; public class KeyManager implements KeyListener { private boolean[] keys; public boolean up, down, left, right; public KeyManager() { keys = new boolean[256]; } public void tick() { up = keys[KeyEvent.VK_W]; down = keys[KeyEvent.VK_S]; left = keys[KeyEvent.VK_A]; right = keys[KeyEvent.VK_D]; } @Override public void keyTyped(KeyEvent e) { } @Override public void keyPressed(KeyEvent e) { keys[e.getKeyCode()] = true; System.out.println("Pressed"); } @Override public void keyReleased(KeyEvent e) { keys[e.getKeyCode()] = false; } }
[ "richard.supak@icloud.com" ]
richard.supak@icloud.com
68939417b6d6ecdb756017ca3c7985ea8ad40810
f6b90fae50ea0cd37c457994efadbd5560a5d663
/android/nut-dex2jar.src/com/amap/api/maps2d/model/TextOptions.java
15e749a6be36bf67a613fb2b5041d239ccc9be75
[]
no_license
dykdykdyk/decompileTools
5925ae91f588fefa7c703925e4629c782174cd68
4de5c1a23f931008fa82b85046f733c1439f06cf
refs/heads/master
2020-01-27T09:56:48.099821
2016-09-14T02:47:11
2016-09-14T02:47:11
66,894,502
1
0
null
null
null
null
UTF-8
Java
false
false
3,558
java
package com.amap.api.maps2d.model; import android.graphics.Typeface; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; public class TextOptions implements Parcelable { public static final TextOptionsCreator CREATOR = new TextOptionsCreator(); private String a; private Typeface b = Typeface.DEFAULT; private boolean c = true; private float d; private LatLng e; private float f = 0.0F; private int g = 0; private Object h; private int i = -16777216; private int j = 20; private int k = 3; private int l = 6; public TextOptions align(int paramInt1, int paramInt2) { this.k = paramInt1; this.l = paramInt2; return this; } public TextOptions backgroundColor(int paramInt) { this.g = paramInt; return this; } public int describeContents() { return 0; } public TextOptions fontColor(int paramInt) { this.i = paramInt; return this; } public TextOptions fontSize(int paramInt) { this.j = paramInt; return this; } public int getAlignX() { return this.k; } public int getAlignY() { return this.l; } public int getBackgroundColor() { return this.g; } public int getFontColor() { return this.i; } public int getFontSize() { return this.j; } public Object getObject() { return this.h; } public LatLng getPosition() { return this.e; } public float getRotate() { return this.f; } public String getText() { return this.a; } public Typeface getTypeface() { return this.b; } public float getZIndex() { return this.d; } public boolean isVisible() { return this.c; } public TextOptions position(LatLng paramLatLng) { this.e = paramLatLng; return this; } public TextOptions rotate(float paramFloat) { this.f = paramFloat; return this; } public TextOptions setObject(Object paramObject) { this.h = paramObject; return this; } public TextOptions text(String paramString) { this.a = paramString; return this; } public TextOptions typeface(Typeface paramTypeface) { this.b = paramTypeface; return this; } public TextOptions visible(boolean paramBoolean) { this.c = paramBoolean; return this; } public void writeToParcel(Parcel paramParcel, int paramInt) { Bundle localBundle = new Bundle(); if (this.e != null) { localBundle.putDouble("lat", this.e.latitude); localBundle.putDouble("lng", this.e.longitude); } paramParcel.writeBundle(localBundle); paramParcel.writeString(this.a); paramParcel.writeInt(this.b.getStyle()); paramParcel.writeFloat(this.f); paramParcel.writeInt(this.k); paramParcel.writeInt(this.l); paramParcel.writeInt(this.g); paramParcel.writeInt(this.i); paramParcel.writeInt(this.j); paramParcel.writeFloat(this.d); if (this.c); for (paramInt = 1; ; paramInt = 0) { paramParcel.writeByte((byte)paramInt); if ((this.h instanceof Parcelable)) { localBundle = new Bundle(); localBundle.putParcelable("obj", (Parcelable)this.h); paramParcel.writeBundle(localBundle); } return; } } public TextOptions zIndex(float paramFloat) { this.d = paramFloat; return this; } } /* Location: C:\crazyd\work\ustone\odm2016031702\baidu\android\nut-dex2jar.jar * Qualified Name: com.amap.api.maps2d.model.TextOptions * JD-Core Version: 0.6.2 */
[ "819468107@qq.com" ]
819468107@qq.com
4345f7f5988860c91149fd25f14e05b614712aeb
a471a95b64ab58983da5324b13f87857283aba3d
/src/main/java/fi/derpnet/derpbot/httpapi/HttpApiDaemon.java
a10321f76e38346ad419896b33b7d07b589d33ef
[]
no_license
Scrin/DerpBot
7c2483e1777f4e7ecbfb8d39a86176a4ca705cdc
9dc56c4109231db14423f86d4f0ef2449eea65f5
refs/heads/master
2021-05-09T19:37:51.142644
2019-10-23T15:28:58
2019-10-23T15:28:58
118,652,204
0
2
null
2020-12-02T18:37:50
2018-01-23T18:34:38
Java
UTF-8
Java
false
false
2,158
java
package fi.derpnet.derpbot.httpapi; import fi.derpnet.derpbot.controller.MainController; import fi.derpnet.derpbot.httpapi.handler.MessageHandler; import java.io.IOException; import java.net.InetSocketAddress; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.io.IOUtils; import org.apache.commons.lang3.StringUtils; import org.apache.log4j.Logger; import org.eclipse.jetty.server.Server; import org.eclipse.jetty.server.Request; import org.eclipse.jetty.server.handler.AbstractHandler; public class HttpApiDaemon { private static final Logger LOG = Logger.getLogger(HttpApiDaemon.class); private static final int HTTP_PORT = 8080; public void init(MainController controller) { String secret = controller.getConfig().get("http.api.secret"); if (StringUtils.isBlank(secret)) { LOG.info("http.api.secret not set, http api disabled"); return; } try { MessageHandler messageHandler = new MessageHandler(controller); Server server = new Server(new InetSocketAddress("localhost", HTTP_PORT)); server.setHandler(new AbstractHandler() { @Override public void handle(String path, Request request, HttpServletRequest servletRequest, HttpServletResponse response) throws IOException, ServletException { if (secret.equals(request.getHeader("Secret"))) { String requestBody = IOUtils.toString(request.getReader()); switch (path) { case "/msg": messageHandler.handle(requestBody); break; } } response.setStatus(200); request.setHandled(true); } }); server.start(); LOG.info("http api started on port " + HTTP_PORT); } catch (Exception ex) { LOG.error("Failed to start HttpApiDaemon", ex); } } }
[ "Microx256@gmail.com" ]
Microx256@gmail.com
b05feae4fc10a620b6465647beef2fece3804751
13c82eeb3d6caaa31d88b52429ea4239f54f30cd
/chap004/src/main/java/java8_3/chap11/map/TreeMapEx.java
42d977fc9bf0ca95f2b582feb3b3090ab57a22f5
[]
no_license
nekisse-lee/java_study
9d8c3735cc02c66a2c66210c4e3859727fee860c
b661a3b22e61e90f9134bc3d1229954c5672f024
refs/heads/master
2020-05-22T13:59:48.844596
2019-08-04T08:18:06
2019-08-04T08:18:06
186,373,107
0
0
null
null
null
null
UTF-8
Java
false
false
2,412
java
package java8_3.chap11.map; import java.util.*; public class TreeMapEx { @SuppressWarnings("Duplicates") public static void main(String[] args) { String[] data = { "A","K","A","K","D","K","A","K","K","K","Z","D" }; TreeMap map = new TreeMap(); for(int i=0; i < data.length; i++) { if(map.containsKey(data[i])) { Integer value = (Integer)map.get(data[i]); map.put(data[i], new Integer(value.intValue() + 1)); } else { map.put(data[i], new Integer(1)); } } Iterator it = map.entrySet().iterator(); System.out.println("= 기본정렬 ="); while(it.hasNext()) { Map.Entry entry = (Map.Entry)it.next(); int value = ((Integer)entry.getValue()).intValue(); System.out.println(entry.getKey() + " : " + printBar('#', value) + " " + value ); } System.out.println(); // map을 ArrayList로 변환한 다음에 Collectons.sort()로 정렬 Set set = map.entrySet(); List list = new ArrayList(set); // ArrayList(Collection c) // static void sort(List list, Comparator c) Collections.sort(list, new ValueComparator()); it = list.iterator(); System.out.println("= 값의 크기가 큰 순서로 정렬 ="); while(it.hasNext()) { Map.Entry entry = (Map.Entry)it.next(); int value = ((Integer)entry.getValue()).intValue(); System.out.println(entry.getKey() + " : " + printBar('#', value) + " " + value ); } } // public static void main(String[] args) static class ValueComparator implements Comparator { public int compare(Object o1, Object o2) { if(o1 instanceof Map.Entry && o2 instanceof Map.Entry) { Map.Entry e1 = (Map.Entry)o1; Map.Entry e2 = (Map.Entry)o2; int v1 = ((Integer)e1.getValue()).intValue(); int v2 = ((Integer)e2.getValue()).intValue(); return v2 - v1; } return -1; } } // static class ValueComparator implements Comparator { public static String printBar(char ch, int value) { char[] bar = new char[value]; for(int i=0; i < bar.length; i++) { bar[i] = ch; } return new String(bar); } }
[ "lsh891224@gmail.com" ]
lsh891224@gmail.com
9cace7b9d58dd4890e265592806aace64e531822
c164d8f1a6068b871372bae8262609fd279d774c
/src/main/java/edu/uiowa/slis/VIVOISF/Thing/ThingNameShortESIterator.java
3e30b3a31e6adc3782d45a49ff8792eba3c5ee51
[ "Apache-2.0" ]
permissive
eichmann/VIVOISF
ad0a299df177d303ec851ff2453cbcbd7cae1ef8
e80cd8b74915974fac7ebae8e5e7be8615355262
refs/heads/master
2020-03-19T03:44:27.662527
2018-06-03T22:44:58
2018-06-03T22:44:58
135,757,275
0
1
null
null
null
null
UTF-8
Java
false
false
3,219
java
package edu.uiowa.slis.VIVOISF.Thing; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import javax.servlet.jsp.JspException; import javax.servlet.jsp.JspTagException; import org.apache.jena.query.QuerySolution; import org.apache.jena.query.ResultSet; @SuppressWarnings("serial") public class ThingNameShortESIterator extends edu.uiowa.slis.VIVOISF.TagLibSupport { static ThingNameShortESIterator currentInstance = null; private static final Log log = LogFactory.getLog(ThingNameShortESIterator.class); static boolean firstInstance = false; static boolean lastInstance = false; String subjectURI = null; String nameShortES = null; ResultSet rs = null; public int doStartTag() throws JspException { currentInstance = this; try { Thing ancestorInstance = (Thing) findAncestorWithClass(this, Thing.class); if (ancestorInstance != null) { subjectURI = ancestorInstance.getSubjectURI(); } if (ancestorInstance == null && subjectURI == null) { throw new JspException("subject URI generation currently not supported"); } rs = getResultSet(prefix+"SELECT ?s where { <" + subjectURI + "> <http://aims.fao.org/aos/geopolitical.owl#nameShortES> ?s } "); if(rs.hasNext()) { QuerySolution sol = rs.nextSolution(); nameShortES = sol.get("?s").isLiteral() ? sol.get("?s").asLiteral().getString() : sol.get("?s").toString(); firstInstance = true; lastInstance = ! rs.hasNext(); return EVAL_BODY_INCLUDE; } } catch (Exception e) { log.error("Exception raised in ThingIterator doStartTag", e); clearServiceState(); freeConnection(); throw new JspTagException("Exception raised in ThingIterator doStartTag"); } return SKIP_BODY; } public int doAfterBody() throws JspException { try { if(rs.hasNext()) { QuerySolution sol = rs.nextSolution(); nameShortES = sol.get("?s").isLiteral() ? sol.get("?s").asLiteral().getString() : sol.get("?s").toString(); firstInstance = false; lastInstance = ! rs.hasNext(); return EVAL_BODY_AGAIN; } } catch (Exception e) { log.error("Exception raised in ThingIterator doAfterBody", e); clearServiceState(); freeConnection(); throw new JspTagException("Exception raised in ThingIterator doAfterBody"); } return SKIP_BODY; } public int doEndTag() throws JspException { currentInstance = null; try { // do processing } catch (Exception e) { log.error("Exception raised in Thing doEndTag", e); throw new JspTagException("Exception raised in Thing doEndTag"); } finally { clearServiceState(); freeConnection(); } return super.doEndTag(); } private void clearServiceState() { subjectURI = null; } public void setNameShortES(String theNameShortES) { nameShortES = theNameShortES; } public String getNameShortES() { return nameShortES; } public static void setFirstInstance(Boolean theFirstInstance) { firstInstance = theFirstInstance; } public static Boolean getFirstInstance() { return firstInstance; } public static void setLastInstance(Boolean theLastInstance) { lastInstance = theLastInstance; } public static Boolean getLastInstance() { return lastInstance; } }
[ "david-eichmann@uiowa.edu" ]
david-eichmann@uiowa.edu
205db341aa1e790f49b9d81628b2c16db0247a84
900d6073617011ba01b754f8f559b4695cfd7bf3
/src/main/java/com/exercise/service/AssetService.java
9882d82f95c9dc02edababab018f9ab05956fda1
[]
no_license
amitrrao/my-spaces-api
b93b8da1ff384d081738b5f6fba0dbff8931a34c
ed3822c3e0539a64dc7eeae3738e2a599f47decc
refs/heads/master
2021-09-04T06:28:42.779369
2018-01-16T17:20:04
2018-01-16T17:20:04
117,259,942
0
0
null
null
null
null
UTF-8
Java
false
false
2,336
java
package com.exercise.service; import java.util.List; import java.util.NoSuchElementException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.exercise.base.Type; import com.exercise.data.TestData; import com.exercise.exceptions.ItemNotFoundException; import com.exercise.item.Item; /** * * AssetService is a service class that implements methods to fetch Asset related information. * These methods are invoked from a controller. * Currently all the data comes from the TestData class. In production, it will come from a database. * * @author arao */ @Service public class AssetService { private static final Logger logger = LoggerFactory.getLogger(AssetService.class); @Autowired private SpaceService spaceService; /*** * A method to get all assets for a given spaceId. * * @param spaceId * @return a list of all Asset instances. * @throws ItemNotFoundException - If the given spaceId is not found. */ public List<Item> getAllAssetsBySpace(String spaceId) throws ItemNotFoundException { logger.info(String.format("Getting all assets with spaceId: %s.", spaceId)); if (spaceService.isValidSpaceId(spaceId)) { return TestData.ASSETS; } else { throw new ItemNotFoundException(String.format("%s with id %s not found.", Type.SPACE.getType(), spaceId)); } } /** * A method to get an asset given a spaceId and an assetId. * * @param spaceId * @param assetId * @return a single Asset instance * @throws ItemNotFoundException - If the given spaceId is not found. */ public Item getAssetBySpaceIdAndAssetId(String spaceId, String assetId) throws ItemNotFoundException { logger.info(String.format("Getting asset with spaceId: %s and assetId: %s", spaceId, assetId)); try { if (spaceService.isValidSpaceId(spaceId)) { Item asset = TestData.ASSETS.stream().filter(a -> a.getSys() .getId() .equals(assetId)) .findFirst() .get(); return asset; } else { throw new ItemNotFoundException(String.format("%s with id %s not found.", Type.SPACE.getType(), spaceId)); } } catch(NoSuchElementException nsee) { throw new ItemNotFoundException(String.format("%s not found.", Type.ASSET.getType())); } } }
[ "amith.nie@gmail.com" ]
amith.nie@gmail.com
516846dd05d04f10c2955c00b623317636a6992a
dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9
/data_defect4j/preprossed_method_corpus/Math/56/org/apache/commons/math/stat/descriptive/moment/GeometricMean_GeometricMean_63.java
8aff04c79f4aab27aa5c58b93073b783da109e2e
[]
no_license
hvdthong/NetML
dca6cf4d34c5799b400d718e0a6cd2e0b167297d
9bb103da21327912e5a29cbf9be9ff4d058731a5
refs/heads/master
2021-06-30T15:03:52.618255
2020-10-07T01:58:48
2020-10-07T01:58:48
150,383,588
1
1
null
2018-09-26T07:08:45
2018-09-26T07:08:44
null
UTF-8
Java
false
false
856
java
org apach common math stat descript moment return href http www xycoon geometr htm geometr valu link sum log sumoflog instanc comput sum log return code exp sum log code valu result code nan code valu neg code doubl posit infin code result code code code doubl posit infin code code doubl neg infin code valu result code nan code strong note implement strong multipl thread access instanc concurr thread invok code increment code code clear code method extern version revis date geometr geometricmean abstract storeless univari statist abstractstorelessunivariatestatist serializ creat geometr geometricmean instanc geometr geometricmean sum log sumoflog sum log sumoflog
[ "hvdthong@gmail.com" ]
hvdthong@gmail.com
570219cae05e87121815427f540ffbe33fac55b0
1e553563301cc4912e0db6444c94020088772120
/Lab 7/src/Calculator.java
42887322eb52589cd8309d5a04a21d725a721dd0
[]
no_license
anudit/java2sem
497812aba1c9043e273e75297c6bcecf478603e8
12dcba14ed68adad55d5177d22daec696876aacd
refs/heads/master
2022-01-19T17:02:57.714154
2019-05-03T02:48:55
2019-05-03T02:48:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
459
java
package Lab7; public class Calculator { private double a; private double b; Calculator(){ } Calculator(float a, float b){ this.a = a; this.b = b; } public void add(){ System.out.println(a+b); } public void subtract(){ System.out.println(a-b); } public void multiply(){ System.out.println(a*b); } public void divide(){ System.out.println(a/b); } }
[ "nagaranudit@gmail.com" ]
nagaranudit@gmail.com
23b960f4432d4a7cd9be688f1950d73bd65402e9
986959557259f50fffd1f5977b0abe489cf6bcf4
/app/src/main/java/edu/estgp/njoy/njoy/ble/BluetoothLeService.java
57fbef8037a0c760ebebac99b62e1c881f37e58d
[]
no_license
pedroleitao95/NJOYFP
c31848728fbb127b6a625214da2e3bd93f9fd5e3
1298310f5c933f658ea33708747f10d4774a237e
refs/heads/master
2020-03-25T16:08:33.761861
2018-08-07T19:26:02
2018-08-07T19:26:02
143,916,810
0
0
null
null
null
null
UTF-8
Java
false
false
23,082
java
/* * Copyright (C) 2013 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package edu.estgp.njoy.njoy.ble; import android.app.Service; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothGatt; import android.bluetooth.BluetoothGattCallback; import android.bluetooth.BluetoothGattCharacteristic; import android.bluetooth.BluetoothGattDescriptor; import android.bluetooth.BluetoothGattService; import android.bluetooth.BluetoothManager; import android.bluetooth.BluetoothProfile; import android.content.Context; import android.content.Intent; import android.os.Binder; import android.os.IBinder; import android.util.Log; import java.io.UnsupportedEncodingException; import java.util.List; /** * Service for managing connection and data communication with a GATT server hosted on a * given Bluetooth LE device. */ public class BluetoothLeService extends Service { private final static String TAG = BluetoothLeService.class.getSimpleName(); private BluetoothManager mBluetoothManager; private BluetoothAdapter mBluetoothAdapter; private BluetoothGatt mBluetoothGatt; public String mBluetoothDeviceAddress; private static final int STATE_DISCONNECTED = 0; private static final int STATE_CONNECTING = 1; private static final int STATE_CONNECTED = 2; public int mConnectionState = STATE_DISCONNECTED; //To tell the onCharacteristicWrite call back function that this is a new characteristic, //not the Write Characteristic to the device successfully. private static final int WRITE_NEW_CHARACTERISTIC = -1; //define the limited length of the characteristic. private static final int MAX_CHARACTERISTIC_LENGTH = 17; //Show that Characteristic is writing or not. private boolean mIsWritingCharacteristic=false; //class to store the Characteristic and content string push into the ring buffer. private class BluetoothGattCharacteristicHelper{ BluetoothGattCharacteristic mCharacteristic; String mCharacteristicValue; BluetoothGattCharacteristicHelper(BluetoothGattCharacteristic characteristic, String characteristicValue){ mCharacteristic=characteristic; mCharacteristicValue=characteristicValue; } } //ring buffer private RingBuffer<BluetoothGattCharacteristicHelper> mCharacteristicRingBuffer = new RingBuffer<BluetoothGattCharacteristicHelper>(8); public final static String ACTION_GATT_CONNECTED = "com.example.bluetooth.le.ACTION_GATT_CONNECTED"; public final static String ACTION_GATT_DISCONNECTED = "com.example.bluetooth.le.ACTION_GATT_DISCONNECTED"; public final static String ACTION_GATT_SERVICES_DISCOVERED = "com.example.bluetooth.le.ACTION_GATT_SERVICES_DISCOVERED"; public final static String ACTION_DATA_AVAILABLE = "com.example.bluetooth.le.ACTION_DATA_AVAILABLE"; public final static String EXTRA_DATA = "com.example.bluetooth.le.EXTRA_DATA"; // public final static UUID UUID_HEART_RATE_MEASUREMENT = // UUID.fromString(SampleGattAttributes.HEART_RATE_MEASUREMENT); // Implements callback methods for GATT events that the app cares about. For example, // connection change and services discovered. private final BluetoothGattCallback mGattCallback = new BluetoothGattCallback() { @Override public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) { String intentAction; //Log.d("NJOY", "BluetoothGattCallback.onConnectionStateChange newState: " + newState); if (newState == BluetoothProfile.STATE_CONNECTED) { intentAction = ACTION_GATT_CONNECTED; mConnectionState = STATE_CONNECTED; broadcastUpdate(intentAction); // Log.i(TAG, "BluetoothGattCallback.onConnectionStateChange Connected to GATT server."); // Attempts to discover services after successful connection. if (mBluetoothGatt.discoverServices()) { //Log.i(TAG, "Attempting to start service discovery:"); } else { // Log.i(TAG, "Attempting to start service discovery: not success"); } } else if (newState == BluetoothProfile.STATE_DISCONNECTED) { intentAction = ACTION_GATT_DISCONNECTED; mConnectionState = STATE_DISCONNECTED; //Log.i(TAG, "BluetoothGattCallback.onConnectionStateChange disconnected from GATT server."); broadcastUpdate(intentAction); } } @Override public void onServicesDiscovered(BluetoothGatt gatt, int status) { //Log.d("NJOY", "BluetoothGattCallback.onServicesDiscovered status: " + status); if (status == BluetoothGatt.GATT_SUCCESS) { broadcastUpdate(ACTION_GATT_SERVICES_DISCOVERED); } else { Log.w(TAG, "BluetoothGattCallback.onServicesDiscovered received status: " + status); } } @Override public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) { //Log.d("NJOY", "BluetoothGattCallback.onCharacteristicWrite status: " + status); //this block should be synchronized to prevent the function overloading synchronized(this) { //CharacteristicWrite success if (status == BluetoothGatt.GATT_SUCCESS) { //Log.d("NJOY", "BluetoothGattCallbackonCharacteristicWrite success:"+ new String(characteristic.getValue())); if (mCharacteristicRingBuffer.isEmpty()) { mIsWritingCharacteristic = false; } else { BluetoothGattCharacteristicHelper bluetoothGattCharacteristicHelper = mCharacteristicRingBuffer.next(); if(bluetoothGattCharacteristicHelper.mCharacteristicValue.length() > MAX_CHARACTERISTIC_LENGTH) { try { bluetoothGattCharacteristicHelper.mCharacteristic.setValue(bluetoothGattCharacteristicHelper.mCharacteristicValue.substring(0, MAX_CHARACTERISTIC_LENGTH).getBytes("ISO-8859-1")); } catch (UnsupportedEncodingException e) { // this should never happen because "US-ASCII" is hard-coded. throw new IllegalStateException(e); } if (mBluetoothGatt.writeCharacteristic(bluetoothGattCharacteristicHelper.mCharacteristic)) { // Log.d("NJOY", "writeCharacteristic init "+new String(bluetoothGattCharacteristicHelper.mCharacteristic.getValue())+ ":success"); } else { // Log.d("NJOY", "writeCharacteristic init "+new String(bluetoothGattCharacteristicHelper.mCharacteristic.getValue())+ ":failure"); } bluetoothGattCharacteristicHelper.mCharacteristicValue = bluetoothGattCharacteristicHelper.mCharacteristicValue.substring(MAX_CHARACTERISTIC_LENGTH); } else { try { bluetoothGattCharacteristicHelper.mCharacteristic.setValue(bluetoothGattCharacteristicHelper.mCharacteristicValue.getBytes("ISO-8859-1")); } catch (UnsupportedEncodingException e) { // this should never happen because "US-ASCII" is hard-coded. throw new IllegalStateException(e); } if (mBluetoothGatt.writeCharacteristic(bluetoothGattCharacteristicHelper.mCharacteristic)) { // Log.d("NJOY", "writeCharacteristic init "+new String(bluetoothGattCharacteristicHelper.mCharacteristic.getValue())+ ":success"); } else { // Log.d("NJOY", "writeCharacteristic init "+new String(bluetoothGattCharacteristicHelper.mCharacteristic.getValue())+ ":failure"); } bluetoothGattCharacteristicHelper.mCharacteristicValue = ""; mCharacteristicRingBuffer.pop(); } } } //WRITE a NEW CHARACTERISTIC else if (status == WRITE_NEW_CHARACTERISTIC) { if ((!mCharacteristicRingBuffer.isEmpty()) && mIsWritingCharacteristic == false) { BluetoothGattCharacteristicHelper bluetoothGattCharacteristicHelper = mCharacteristicRingBuffer.next(); if (bluetoothGattCharacteristicHelper.mCharacteristicValue.length() > MAX_CHARACTERISTIC_LENGTH) { try { bluetoothGattCharacteristicHelper.mCharacteristic.setValue(bluetoothGattCharacteristicHelper.mCharacteristicValue.substring(0, MAX_CHARACTERISTIC_LENGTH).getBytes("ISO-8859-1")); } catch (UnsupportedEncodingException e) { // this should never happen because "US-ASCII" is hard-coded. throw new IllegalStateException(e); } if (mBluetoothGatt.writeCharacteristic(bluetoothGattCharacteristicHelper.mCharacteristic)) { //Log.d("NJOY", "writeCharacteristic init "+new String(bluetoothGattCharacteristicHelper.mCharacteristic.getValue())+ ":success"); } else { //Log.d("NJOY", "writeCharacteristic init "+new String(bluetoothGattCharacteristicHelper.mCharacteristic.getValue())+ ":failure"); } bluetoothGattCharacteristicHelper.mCharacteristicValue = bluetoothGattCharacteristicHelper.mCharacteristicValue.substring(MAX_CHARACTERISTIC_LENGTH); } else { try { bluetoothGattCharacteristicHelper.mCharacteristic.setValue(bluetoothGattCharacteristicHelper.mCharacteristicValue.getBytes("ISO-8859-1")); } catch (UnsupportedEncodingException e) { // this should never happen because "US-ASCII" is hard-coded. throw new IllegalStateException(e); } if (mBluetoothGatt.writeCharacteristic(bluetoothGattCharacteristicHelper.mCharacteristic)) { // Log.d("NJOY", "writeCharacteristic init "+new String(bluetoothGattCharacteristicHelper.mCharacteristic.getValue())+ ":success"); } else { // Log.d("NJOY", "writeCharacteristic init "+new String(bluetoothGattCharacteristicHelper.mCharacteristic.getValue())+ ":failure"); } bluetoothGattCharacteristicHelper.mCharacteristicValue = ""; mCharacteristicRingBuffer.pop(); } } mIsWritingCharacteristic = true; //clear the buffer to prevent the lock of the mIsWritingCharacteristic if (mCharacteristicRingBuffer.isFull()) { mCharacteristicRingBuffer.clear(); mIsWritingCharacteristic = false; } } else { //CharacteristicWrite fail mCharacteristicRingBuffer.clear(); Log.d("NJOY", "onCharacteristicWrite fail:"+ new String(characteristic.getValue())); } } } @Override public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) { if (status == BluetoothGatt.GATT_SUCCESS) { //Log.d("NJOY", "BluetoothGattCallback.onCharacteristicRead "+characteristic.getUuid().toString()); broadcastUpdate(ACTION_DATA_AVAILABLE, characteristic); } } @Override public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor characteristic, int status){ //Log.d("NJOY", "BluetoothGattCallback.onDescriptorWrite "+characteristic.getUuid().toString()+" "+status); } @Override public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) { //Log.d("NJOY", "BluetoothGattCallback.onDescriptorWrite "+characteristic.getUuid().toString()+" "); broadcastUpdate(ACTION_DATA_AVAILABLE, characteristic); } }; private void broadcastUpdate(final String action) { Intent intent = new Intent(action); sendBroadcast(intent); } private void broadcastUpdate(String action, BluetoothGattCharacteristic characteristic) { //Log.d("NJOY", "BluetoothLeService broadcastUpdate"); Intent intent = new Intent(action); // For all other profiles, writes the data formatted in HEX. byte[] data = characteristic.getValue(); if (data != null && data.length > 0) { intent.putExtra(EXTRA_DATA, new String(data)); sendBroadcast(intent); } } public class LocalBinder extends Binder { BluetoothLeService getService() { return BluetoothLeService.this; } } @Override public IBinder onBind(Intent intent) { return mBinder; } @Override public boolean onUnbind(Intent intent) { // After using a given device, you should make sure that BluetoothGatt.close() is called // such that resources are cleaned up properly. In this particular example, close() is // invoked when the UI is disconnected from the Service. close(); return super.onUnbind(intent); } private final IBinder mBinder = new LocalBinder(); /** * Initializes a reference to the local Bluetooth adapter. * * @return Return true if the initialization is successful. */ public boolean initialize() { // For API level 18 and above, get a reference to BluetoothAdapter through // BluetoothManager. if (mBluetoothManager == null) { mBluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE); if (mBluetoothManager == null) { Log.e(TAG, "BluetoothLeService.initialize Unable to initialize BluetoothManager."); return false; } } mBluetoothAdapter = mBluetoothManager.getAdapter(); if (mBluetoothAdapter == null) { Log.e(TAG, "BluetoothLeService.initialize Unable to obtain a BluetoothAdapter."); return false; } return true; } /** * Connects to the GATT server hosted on the Bluetooth LE device. * * @param address The device address of the destination device. * * @return Return true if the connection is initiated successfully. The connection result * is reported asynchronously through the * {@code BluetoothGattCallback#onConnectionStateChange(android.bluetooth.BluetoothGatt, int, int)} * callback. */ public boolean connect(final String address) { Log.d("NJOY", "BluetoothLeService.connect address: " + address + ", " + mBluetoothGatt); if (mBluetoothAdapter == null || address == null) { Log.w(TAG, "BluetoothLeService.connect bluetoothAdapter not initialized or unspecified address."); return false; } final BluetoothDevice device = mBluetoothAdapter.getRemoteDevice(address); if (device == null) { Log.w(TAG, "BluetoothLeService.connect Device not found. Unable to connect."); return false; } // We want to directly connect to the device, so we are setting the autoConnect parameter to false. synchronized (this) { mBluetoothGatt = device.connectGatt(this, false, mGattCallback, BluetoothDevice.TRANSPORT_LE); } mBluetoothDeviceAddress = address; mConnectionState = STATE_CONNECTING; return true; } /** * Disconnects an existing connection or cancel a pending connection. The disconnection result * is reported asynchronously through the * {@code BluetoothGattCallback#onConnectionStateChange(android.bluetooth.BluetoothGatt, int, int)} * callback. */ public void disconnect() { Log.d("NJOY", "BluetoothLeService.disconnect"); if (mBluetoothAdapter == null || mBluetoothGatt == null) { Log.w(TAG, "BluetoothLeService.disconnect bluetoothAdapter not initialized"); return; } mBluetoothGatt.disconnect(); } /** * After using a given BLE device, the app must call this method to ensure resources are * released properly. */ public void close() { Log.d("NJOY", "BluetoothLeService.close"); if (mBluetoothGatt == null) { return; } mBluetoothGatt.close(); mBluetoothGatt = null; } /** * Request a read on a given {@code BluetoothGattCharacteristic}. The read result is reported * asynchronously through the {@code BluetoothGattCallback#onCharacteristicRead(android.bluetooth.BluetoothGatt, android.bluetooth.BluetoothGattCharacteristic, int)} * callback. * * @param characteristic The characteristic to read from. */ public void readCharacteristic(BluetoothGattCharacteristic characteristic) { if (mBluetoothAdapter == null || mBluetoothGatt == null) { Log.w(TAG, "BluetoothLeService.readCharacteristic bluetoothAdapter not initialized"); return; } mBluetoothGatt.readCharacteristic(characteristic); } /** * Write information to the device on a given {@code BluetoothGattCharacteristic}. The content string and characteristic is * only pushed into a ring buffer. All the transmission is based on the {@code onCharacteristicWrite} call back function, * which is called directly in this function * * @param characteristic The characteristic to write to. */ public void writeCharacteristic(BluetoothGattCharacteristic characteristic) { if (mBluetoothAdapter == null || mBluetoothGatt == null) { Log.w(TAG, "BluetoothLeService.writeCharacteristic bluetoothAdapter not initialized"); return; } //The character size of TI CC2540 is limited to 17 bytes, otherwise characteristic can not be sent properly, //so String should be cut to comply this restriction. And something should be done here: String writeCharacteristicString; try { writeCharacteristicString = new String(characteristic.getValue(),"ISO-8859-1"); } catch (UnsupportedEncodingException e) { // this should never happen because "US-ASCII" is hard-coded. throw new IllegalStateException(e); } //Log.d("NJOY", "allwriteCharacteristicString:"+writeCharacteristicString); //As the communication is asynchronous content string and characteristic should be pushed into an ring buffer for further transmission mCharacteristicRingBuffer.push(new BluetoothGattCharacteristicHelper(characteristic,writeCharacteristicString) ); //Log.d("NJOY", "mCharacteristicRingBufferlength:"+mCharacteristicRingBuffer.size()); //The progress of onCharacteristicWrite and writeCharacteristic is almost the same. So callback function is called directly here //for details see the onCharacteristicWrite function mGattCallback.onCharacteristicWrite(mBluetoothGatt, characteristic, WRITE_NEW_CHARACTERISTIC); } /** * Enables or disables notification on a give characteristic. * * @param characteristic Characteristic to act on. * @param enabled If true, enable notification. False otherwise. */ public void setCharacteristicNotification(BluetoothGattCharacteristic characteristic, boolean enabled) { if (mBluetoothAdapter == null || mBluetoothGatt == null) { Log.w(TAG, "BluetoothLeService.writeCharacteristicBluetoothAdapter not initialized"); return; } mBluetoothGatt.setCharacteristicNotification(characteristic, enabled); //BluetoothGattDescriptor descriptor = characteristic.getDescriptor(characteristic.getUuid()); //descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE); //mBluetoothGatt.writeDescriptor(descriptor); // This is specific to Heart Rate Measurement. // if (UUID_HEART_RATE_MEASUREMENT.equals(characteristic.getUuid())) { // BluetoothGattDescriptor descriptor = characteristic.getDescriptor( // UUID.fromString(SampleGattAttributes.CLIENT_CHARACTERISTIC_CONFIG)); // descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE); // mBluetoothGatt.writeDescriptor(descriptor); // } } /** * Retrieves a list of supported GATT services on the connected device. This should be * invoked only after {@code BluetoothGatt#discoverServices()} completes successfully. * * @return A {@code List} of supported services. */ public List<BluetoothGattService> getSupportedGattServices() { if (mBluetoothGatt == null) return null; return mBluetoothGatt.getServices(); } }
[ "pedro.leitao95@gmail.com" ]
pedro.leitao95@gmail.com
cc3626c064ffe2003c478d826a47f52314b39c75
ffc235d28c284105c2689ada05df9f0151a5c7b0
/src/main/java/com/example/mapper/PlayerMapper.java
e5e768d470ce44caaead907ddd4e870fc611d325
[]
no_license
aoyhic/mosaic
656110a16f809ec08c0956ba8651053e395e27e2
66198b6c2401d9db1af9ff77da1382e657f68129
refs/heads/master
2020-05-24T22:50:43.925208
2017-03-30T08:24:58
2017-03-30T08:24:58
84,888,399
0
0
null
null
null
null
UTF-8
Java
false
false
766
java
package com.example.mapper; import java.util.List; import org.apache.ibatis.annotations.Select; import com.example.domain.Player; import com.example.util.Pagination; public interface PlayerMapper { @Select("select count(*) from player") int selectTotalCount(); @Select("select * from player") List<Player> selectAll(); List<Player> selectAllWithPosition(); @Select({ "select *", "from player", "order by playerno", "offset #{firstItem} -1 rows", "fetch next #{itemsPerPage} rows only" }) List<Player> selectPage(Pagination paging); List<Player> selectPageWithPosition(Pagination paging); @Select("select * from player where playerno=#{playerno}") Player selectByPlayerno(); Player selectByPlayernoWithPosition(int playerno); }
[ "java" ]
java
163add4d6baab2ecd71bb8820ded369f3acfda79
56cf34c40c5048b7b5f9a257288bba1c34b1d5e2
/src/org/xpup/hafmis/syscollection/common/dao/ChgPaymentHeadDAO.java
b24110cdc12714d501ea548b61ae14e8ea1d8e84
[]
no_license
witnesslq/zhengxin
0a62d951dc69d8d6b1b8bcdca883ee11531fbb83
0ea9ad67aa917bd1911c917334b6b5f9ebfd563a
refs/heads/master
2020-12-30T11:16:04.359466
2012-06-27T13:43:40
2012-06-27T13:43:40
null
0
0
null
null
null
null
GB18030
Java
false
false
6,615
java
package org.xpup.hafmis.syscollection.common.dao; import java.io.Serializable; import java.math.BigDecimal; import java.sql.SQLException; import java.util.Iterator; import java.util.List; import java.util.Vector; import org.apache.commons.lang.Validate; import org.hibernate.HibernateException; import org.hibernate.Query; import org.hibernate.Session; import org.springframework.orm.hibernate3.HibernateCallback; import org.springframework.orm.hibernate3.support.HibernateDaoSupport; import org.xpup.hafmis.syscollection.common.domain.entity.ChgOrgRate; import org.xpup.hafmis.syscollection.common.domain.entity.ChgPaymentHead; public class ChgPaymentHeadDAO extends HibernateDaoSupport{ /** * 根据主键查询 * @param id * @return */ public ChgPaymentHead queryById(Integer id) { Validate.notNull(id); return (ChgPaymentHead) getHibernateTemplate().get(ChgPaymentHead.class,id); } /** * 插入记录 * @param chgPaymentHead * @return */ public Serializable insert(ChgPaymentHead chgPaymentHead){ Serializable id = null; try{ Validate.notNull(chgPaymentHead); id = getHibernateTemplate().save(chgPaymentHead); }catch(Exception e){ e.printStackTrace(); } return id; } /** * 李娟 * 根据缴存头表ID及启用状态查询 * @param payHeadId * @param chgStatus * @return */ public List queryChgPaymentHeadByPayHeadId(final Serializable orgid,final Serializable payHeadId,final Integer chgStatus ){ List chgPaymentHead = null; chgPaymentHead = getHibernateTemplate() .executeFind(new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException, SQLException { String hql = "from ChgPaymentHead chgPaymentHead "; Vector parameters = new Vector(); String criterion = ""; if (orgid != null&&!orgid.equals("")) { criterion += "chgPaymentHead.org.id = ? and "; parameters.add(new Integer(orgid.toString())); } if (payHeadId != null&&!payHeadId.equals("")) { criterion += "chgPaymentHead.paymentHead.id = ? and "; parameters.add(new Integer(payHeadId.toString())); }else{ criterion += "chgPaymentHead.paymentHead.id is null and "; } if (chgStatus != null&&!chgStatus.equals("")) { criterion += "chgPaymentHead.chgStatus = ? and "; parameters.add(chgStatus); } if (criterion.length() != 0) criterion = "where " + criterion.substring(0, criterion.lastIndexOf("and")); hql = hql + criterion; Query query = session.createQuery(hql); for (int i = 0; i < parameters.size(); i++) { query.setParameter(i, parameters.get(i)); } return query.list(); } }); return chgPaymentHead; } /** * 查询缴额变更头表(AA202)的最大的id * 没有条件 * @return 吴洪涛 */ public Serializable queryChgPaymentHeadWuht(){ Serializable id = null; id = (Serializable) getHibernateTemplate() .execute(new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException, SQLException { String hql = "select max(chgPaymentHead.id) " + "from ChgPaymentHead chgPaymentHead "; Vector parameters = new Vector(); Query query = session.createQuery(hql); for (int i = 0; i < parameters.size(); i++) { query.setParameter(i, parameters.get(i)); } return query.uniqueResult(); } }); return id; } /** * 于庆丰 count chg_type=2 * @param office * @param bank * @param orgCharacter * @param dept * @param ragion * @param startDate * @param endDate * @return */ public int queryCount(final String office,final String bank,final String orgCharacter, final String dept,final String ragion,final String startDate,final String endDate){ int count = 0; try{ Integer countInteger = (Integer)getHibernateTemplate().execute( new HibernateCallback(){ public Object doInHibernate(Session session) throws HibernateException, SQLException { String hql = "select count(chgPaymentHead.id) from ChgPaymentHead chgPaymentHead "; Vector parameters = new Vector(); String criterion = ""; if(office != null && !"".equals(office)){ criterion += " chgPaymentHead.org.orgInfo.officecode = ? and "; parameters.add(office); } if(bank != null && !"".equals(bank)){ criterion += " chgPaymentHead.org.orgInfo.collectionBankId = ? and "; parameters.add(bank); } if(orgCharacter != null && !"".equals(orgCharacter)){ criterion += " chgPaymentHead.org.orgInfo.character = ? and "; parameters.add(orgCharacter); } if(dept != null && !"".equals(dept)){ criterion += " chgPaymentHead.org.orgInfo.deptInCharge = ? and "; parameters.add(dept); } if(ragion != null && !"".equals(ragion)){ criterion += " chgPaymentHead.org.orgInfo.region = ? and "; parameters.add(ragion); } if(startDate != null && !"".equals(startDate) && endDate != null && !"".equals(endDate)){ criterion += " (chgPaymentHead.bizDate between ? and ?) and "; parameters.add(startDate); parameters.add(endDate); } if (criterion.length() != 0) criterion = " where chgPaymentHead.chgStatus=2 and chgPaymentHead.chgtype=B and " + criterion.substring(0, criterion.lastIndexOf("and")); // criterion = " where " // + criterion.substring(0, criterion.lastIndexOf("and")); hql = hql + criterion ; Query query = session.createQuery(hql); for (int i = 0; i < parameters.size(); i++) { query.setParameter(i, parameters.get(i)); } Integer countTemp=new Integer(0); Iterator it=query.iterate(); if(it.hasNext()){ countTemp=(Integer)it.next(); } return countTemp; } }); count = countInteger.intValue(); }catch(Exception e){ e.printStackTrace(); } return count; } }
[ "yuelaotou@gmail.com" ]
yuelaotou@gmail.com
abdf592279815ca79cc44326076677dd0d496a84
cc38cc0f5ffb7cad933fa2a427fc459cdb077cd7
/src/main/java/com/devlogmoa/domain/member/Role.java
d83df1ef8c633d721d00f4c1cd073ba22a5c8c0c
[]
no_license
monkeyDugi/dev_log_moa
cd06da55ab0a1b36a6c3aee322d37d7f23a2f78d
2d6fed75e96a55e69e44e337fb0a7adbf047b96f
refs/heads/main
2023-08-26T08:26:36.251715
2021-10-26T15:54:39
2021-10-26T15:54:39
358,889,507
12
0
null
2021-10-10T09:13:44
2021-04-17T13:43:13
JavaScript
UTF-8
Java
false
false
327
java
package com.devlogmoa.domain.member; import lombok.Getter; import lombok.RequiredArgsConstructor; @RequiredArgsConstructor @Getter public enum Role { GUEST("ROLE_GUEST", "비회원"), USER("ROLE_USER", "회원"), ADMIN("ROLE_ADMIN", "관리자"); private final String key; private final String title; }
[ "lbd4946@gmail.com" ]
lbd4946@gmail.com
8a608a74ef2037cc7e2ba2f5caa3a74448c41778
1767eae991afcb081159f4e76aeac6c47d500a20
/Smalltalk/src/test/java/experimental/TestDynaInvokeByCast.java
3960f6596ae1d5c9d54d33f7eaa047739dcf84a3
[]
no_license
herrwieger/latenightsmalltalk
3c87d48f8fbbc85209aadd48b5ac8f7cf4a25abe
e416e03e346c882f05036878b794e422e285f426
refs/heads/master
2021-01-25T04:08:09.620674
2008-03-09T15:11:04
2008-03-09T15:11:04
38,327,070
1
0
null
null
null
null
UTF-8
Java
false
false
3,581
java
package experimental; import java.lang.reflect.Method; import org.testng.annotations.Test; public class TestDynaInvokeByCast { //-------------------------------------------------------------------------- // constants //-------------------------------------------------------------------------- private static final int MAX_ITERATION = 100000000; private static final Integer VALUE = Integer.valueOf(42); //-------------------------------------------------------------------------- // class variables //-------------------------------------------------------------------------- private static Foo sfFoo = new Foo(); //-------------------------------------------------------------------------- // instance variables //-------------------------------------------------------------------------- @Test(invocationCount=2) public void testInvokeByClassCast() { long startTime = System.currentTimeMillis(); for (long i=0; i<MAX_ITERATION; i++) { ((Foo)getFooObject()).doFoo(VALUE); } long elapsedTime = System.currentTimeMillis() - startTime; System.out.println("testInvokeByClassCast=" + elapsedTime + " ,numFoos=" + getFoo().fNumFoos); } @Test(invocationCount=2) public void testInvokeByInterfaceCast() { long startTime = System.currentTimeMillis(); for (long i=0; i<MAX_ITERATION; i++) { ((FooInterface)getFooObject()).doFoo(VALUE); } long elapsedTime = System.currentTimeMillis() - startTime; System.out.println("testInvokeByInterfaceCast=" + elapsedTime + " ,numFoos=" + getFoo().fNumFoos); } @Test(invocationCount=2) public void testInvokeNatural() { long startTime = System.currentTimeMillis(); Integer value = Integer.valueOf(42); for (long i=0; i<MAX_ITERATION; i++) { getFoo().doFoo(value); } long elapsedTime = System.currentTimeMillis() - startTime; System.out.println("testInvokeNatural=" + elapsedTime + " ,numFoos=" + getFoo().fNumFoos); } @Test(invocationCount=2) public void testInvokeByReflection() throws Exception { Method method = Foo.class.getMethod("doFoo", new Class[]{Object.class}); long startTime = System.currentTimeMillis(); for (long i=0; i<MAX_ITERATION; i++) { method.invoke(getFooObject(), VALUE); } long elapsedTime = System.currentTimeMillis() - startTime; System.out.println("testInvokeByReflection=" + elapsedTime + " ,numFoos=" + getFoo().fNumFoos); } private Foo getFoo() { return sfFoo; } private Object getFooObject() { return sfFoo; } //-------------------------------------------------------------------------- // interface and class foo //-------------------------------------------------------------------------- public static interface FooInterface { public abstract boolean doFoo(Object pNum); } public static class Foo implements FooInterface { long fNumFoos; /* (non-Javadoc) * @see experimental.FooInterface#doFoo(java.lang.Object) */ public boolean doFoo(Object pNum) { int intValue = ((Integer) pNum).intValue(); fNumFoos++; return intValue % 2 == 0; } } }
[ "thomas.wieger@gmx.de" ]
thomas.wieger@gmx.de
7fce83e0aaadd10061e8599ec82fa47615b6809a
1fca490389eff0adf68d6b0e8b9c7365ab777016
/app/src/test/java/cn/edu/s07150833gdmec/mycontacts/ExampleUnitTest.java
91254aa3dee9ea5590c0573a4d57ea438d210824
[]
no_license
gdmec07150833/MyContacts
998cc4e5ad748e375fdf63486b9134411dbf0e6a
3d5f353d181aa94a5775f843693ee1db92ad4eb4
refs/heads/master
2021-01-12T08:33:35.809951
2016-12-16T01:46:34
2016-12-16T01:46:34
76,611,396
0
0
null
null
null
null
UTF-8
Java
false
false
325
java
package cn.edu.s07150833gdmec.mycontacts; import org.junit.Test; import static org.junit.Assert.*; /** * To work on unit tests, switch the Test Artifact in the Build Variants view. */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); } }
[ "sp36232565@163.com" ]
sp36232565@163.com
d2c533627d71064fed54361e65856b48cc959362
2932b63401a364a868f2354215cb25b748df47b5
/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/org/changeip/seoul/malin/R.java
be20cc7d6c8dea7608bc742438acab034d754414
[]
no_license
nkbang/malin
2c7f30d92fcff365a0230f17f5125cd4acf87f9f
8d2d515a3953173f056c02516d8806d8ac26c97c
refs/heads/master
2021-01-02T23:19:10.197990
2020-10-27T16:53:08
2020-10-27T16:53:08
99,495,440
0
0
null
null
null
null
UTF-8
Java
false
false
682,445
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 org.changeip.seoul.malin; public final class R { public static final class anim { public static final int abc_fade_in=0x7f010000; public static final int abc_fade_out=0x7f010001; public static final int abc_grow_fade_in_from_bottom=0x7f010002; public static final int abc_popup_enter=0x7f010003; public static final int abc_popup_exit=0x7f010004; public static final int abc_shrink_fade_out_from_bottom=0x7f010005; public static final int abc_slide_in_bottom=0x7f010006; public static final int abc_slide_in_top=0x7f010007; public static final int abc_slide_out_bottom=0x7f010008; public static final int abc_slide_out_top=0x7f010009; public static final int abc_tooltip_enter=0x7f01000a; public static final int abc_tooltip_exit=0x7f01000b; } public static final class attr { /** * Custom divider drawable to use for elements in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarDivider=0x7f020000; /** * Custom item state list drawable background for action bar items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f020001; /** * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f020002; /** * Size of the Action Bar, including the contextual * bar used to present Action Modes. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap_content</td><td>0</td><td></td></tr> * </table> */ public static final int actionBarSize=0x7f020003; /** * Reference to a style for the split Action Bar. This style * controls the split component that holds the menu/action * buttons. actionBarStyle is still used for the primary * bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f020004; /** * Reference to a style for the Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarStyle=0x7f020005; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f020006; /** * Default style for tabs within an action bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f020007; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f020008; /** * Reference to a theme that should be used to inflate the * action bar. This will be inherited by any widget inflated * into the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarTheme=0x7f020009; /** * Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar. Most of the time * this will be a reference to the current theme, but when * the action bar has a significantly different contrast * profile than the rest of the activity the difference * can become important. If this is set to @null the current * theme will be used. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f02000a; /** * Default action button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionButtonStyle=0x7f02000b; /** * Default ActionBar dropdown style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f02000c; /** * An optional layout to be used as an action view. * See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionLayout=0x7f02000d; /** * TextAppearance style that will be applied to text that * appears within action menu items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f02000e; /** * Color for text that appears within action menu items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int actionMenuTextColor=0x7f02000f; /** * Background drawable to use for action mode UI * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeBackground=0x7f020010; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f020011; /** * Drawable to use for the close action mode button * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f020012; /** * Drawable to use for the Copy action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f020013; /** * Drawable to use for the Cut action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f020014; /** * Drawable to use for the Find action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f020015; /** * Drawable to use for the Paste action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f020016; /** * PopupWindow style to use for action modes when showing as a window overlay. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f020017; /** * Drawable to use for the Select all action button in Contextual Action Bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f020018; /** * Drawable to use for the Share action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeShareDrawable=0x7f020019; /** * Background drawable to use for action mode UI in the lower split bar * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f02001a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeStyle=0x7f02001b; /** * Drawable to use for the Web Search action button in WebView selection action modes * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f02001c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f02001d; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f02001e; /** * The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item. * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} * for more info. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionProviderClass=0x7f02001f; /** * The name of an optional View class to instantiate and use as an * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int actionViewClass=0x7f020020; /** * Default ActivityChooserView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f020021; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f020022; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int alertDialogCenterButtons=0x7f020023; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogStyle=0x7f020024; /** * Theme to use for alert dialogs spawned from this theme. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int alertDialogTheme=0x7f020025; /** * Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int allowStacking=0x7f020026; /** * Alpha multiplier applied to the base color. * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int alpha=0x7f020027; /** * The alphabetic modifier key. This is the modifier when using a keyboard * with alphabetic keys. The values should be kept in sync with KeyEvent * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int alphabeticModifiers=0x7f020028; /** * The length of the arrow head when formed to make an arrow * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int arrowHeadLength=0x7f020029; /** * The length of the shaft when formed to make an arrow * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int arrowShaftLength=0x7f02002a; /** * Default AutoCompleteTextView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f02002b; /** * The maximum text size constraint to be used when auto-sizing text. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeMaxTextSize=0x7f02002c; /** * The minimum text size constraint to be used when auto-sizing text. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeMinTextSize=0x7f02002d; /** * Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides * <code>autoSizeStepGranularity</code> if set. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int autoSizePresetSizes=0x7f02002e; /** * Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>. The default is 1px. Overwrites * <code>autoSizePresetSizes</code> if set. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int autoSizeStepGranularity=0x7f02002f; /** * Specify the type of auto-size. Note that this feature is not supported by EditText, * works only for TextView. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td>No auto-sizing (default).</td></tr> * <tr><td>uniform</td><td>1</td><td>Uniform horizontal and vertical text size scaling to fit within the * container.</td></tr> * </table> */ public static final int autoSizeTextType=0x7f020030; /** * Specifies a background drawable for the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int background=0x7f020031; /** * Specifies a background drawable for the bottom component of a split action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f020032; /** * Specifies a background drawable for a second stacked row of the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f020033; /** * Tint to apply to the background. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundTint=0x7f020034; /** * Blending mode used to apply the background tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int backgroundTintMode=0x7f020035; /** * The length of the bars when they are parallel to each other * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int barLength=0x7f020036; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int barrierAllowsGoneWidgets=0x7f020037; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>3</td><td></td></tr> * <tr><td>end</td><td>6</td><td></td></tr> * <tr><td>left</td><td>0</td><td></td></tr> * <tr><td>right</td><td>1</td><td></td></tr> * <tr><td>start</td><td>5</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> */ public static final int barrierDirection=0x7f020038; /** * Style for buttons without an explicit border, often used in groups. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f020039; /** * Style for buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f02003a; /** * Style for the "negative" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f02003b; /** * Style for the "neutral" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f02003c; /** * Style for the "positive" buttons within button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f02003d; /** * Style for button bars * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonBarStyle=0x7f02003e; /** * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> */ public static final int buttonGravity=0x7f02003f; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int buttonIconDimen=0x7f020040; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f020041; /** * Normal Button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyle=0x7f020042; /** * Small Button style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f020043; /** * Tint to apply to the button drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int buttonTint=0x7f020044; /** * Blending mode used to apply the button tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int buttonTintMode=0x7f020045; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int chainUseRtl=0x7f020046; /** * Default Checkbox style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkboxStyle=0x7f020047; /** * Default CheckedTextView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f020048; /** * Close button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeIcon=0x7f020049; /** * Specifies a layout to use for the "close" item at the starting edge. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int closeItemLayout=0x7f02004a; /** * Text to set as the content description for the collapse button. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int collapseContentDescription=0x7f02004b; /** * Icon drawable to use for the collapse button. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int collapseIcon=0x7f02004c; /** * The drawing color for the bars * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int color=0x7f02004d; /** * Bright complement to the primary branding color. By default, this is the color applied * to framework controls (via colorControlActivated). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorAccent=0x7f02004e; /** * Default color of background imagery for floating components, ex. dialogs, popups, and cards. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorBackgroundFloating=0x7f02004f; /** * The color applied to framework buttons in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorButtonNormal=0x7f020050; /** * The color applied to framework controls in their activated (ex. checked) state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlActivated=0x7f020051; /** * The color applied to framework control highlights (ex. ripples, list selectors). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlHighlight=0x7f020052; /** * The color applied to framework controls in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorControlNormal=0x7f020053; /** * Color used for error states and things that need to be drawn to * the user's attention. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorError=0x7f020054; /** * The primary branding color for the app. By default, this is the color applied to the * action bar background. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorPrimary=0x7f020055; /** * Dark variant of the primary branding color. By default, this is the color applied to * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorPrimaryDark=0x7f020056; /** * The color applied to framework switch thumbs in their normal state. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int colorSwitchThumbNormal=0x7f020057; /** * Commit icon shown in the query suggestion row * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int commitIcon=0x7f020058; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int constraintSet=0x7f020059; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int constraint_referenced_ids=0x7f02005a; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int content=0x7f02005b; /** * The content description associated with the item. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int contentDescription=0x7f02005c; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetEnd=0x7f02005d; /** * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetEndWithActions=0x7f02005e; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetLeft=0x7f02005f; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetRight=0x7f020060; /** * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetStart=0x7f020061; /** * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int contentInsetStartWithNavigation=0x7f020062; /** * The background used by framework controls. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int controlBackground=0x7f020063; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int coordinatorLayoutStyle=0x7f020064; /** * Specifies a layout for custom navigation. Overrides navigationMode. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int customNavigationLayout=0x7f020065; /** * Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int defaultQueryHint=0x7f020066; /** * Preferred corner radius of dialogs. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dialogCornerRadius=0x7f020067; /** * Preferred padding for dialog content. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dialogPreferredPadding=0x7f020068; /** * Theme to use for dialogs spawned from this theme. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dialogTheme=0x7f020069; /** * Options affecting how the action bar is displayed. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> */ public static final int displayOptions=0x7f02006a; /** * Specifies the drawable used for item dividers. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int divider=0x7f02006b; /** * A drawable that may be used as a horizontal divider between visual elements. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerHorizontal=0x7f02006c; /** * Size of padding on either end of a divider. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dividerPadding=0x7f02006d; /** * A drawable that may be used as a vertical divider between visual elements. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dividerVertical=0x7f02006e; /** * The total size of the drawable * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int drawableSize=0x7f02006f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f020070; /** * ListPopupWindow compatibility * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f020071; /** * The preferred item height for dropdown lists. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int dropdownListPreferredItemHeight=0x7f020072; /** * EditText background drawable. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextBackground=0x7f020073; /** * EditText text foreground color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int editTextColor=0x7f020074; /** * Default EditText style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int editTextStyle=0x7f020075; /** * Elevation for the action bar itself * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int elevation=0x7f020076; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>gone</td><td>0</td><td></td></tr> * <tr><td>invisible</td><td>1</td><td></td></tr> * </table> */ public static final int emptyVisibility=0x7f020077; /** * The drawable to show in the button for expanding the activities overflow popup. * <strong>Note:</strong> Clients would like to set this drawable * as a clue about the action the chosen activity will perform. For * example, if share activity is to be chosen the drawable should * give a clue that sharing is to be performed. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f020078; /** * Distance from the top of the TextView to the first text baseline. If set, this * overrides the value set for paddingTop. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int firstBaselineToTopHeight=0x7f020079; /** * The reference to the font file to be used. This should be a file in the res/font folder * and should therefore have an R reference value. E.g. @font/myfont * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int font=0x7f02007a; /** * The attribute for the font family. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontFamily=0x7f02007b; /** * The authority of the Font Provider to be used for the request. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderAuthority=0x7f02007c; /** * The sets of hashes for the certificates the provider should be signed with. This is * used to verify the identity of the provider, and is only required if the provider is not * part of the system image. This value may point to one list or a list of lists, where each * individual list represents one collection of signature hashes. Refer to your font provider's * documentation for these values. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int fontProviderCerts=0x7f02007d; /** * The strategy to be used when fetching font data from a font provider in XML layouts. * This attribute is ignored when the resource is loaded from code, as it is equivalent to the * choice of API between {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and * {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} * (async). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>async</td><td>1</td><td>The async font fetch works as follows. * First, check the local cache, then if the requeted font is not cached, trigger a * request the font and continue with layout inflation. Once the font fetch succeeds, the * target text view will be refreshed with the downloaded font data. The * fontProviderFetchTimeout will be ignored if async loading is specified.</td></tr> * <tr><td>blocking</td><td>0</td><td>The blocking font fetch works as follows. * First, check the local cache, then if the requested font is not cached, request the * font from the provider and wait until it is finished. You can change the length of * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the * default typeface will be used instead.</td></tr> * </table> */ public static final int fontProviderFetchStrategy=0x7f02007e; /** * The length of the timeout during fetching. * <p>May be an integer value, such as "<code>100</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>forever</td><td>ffffffff</td><td>A special value for the timeout. In this case, the blocking font fetching will not * timeout and wait until a reply is received from the font provider.</td></tr> * </table> */ public static final int fontProviderFetchTimeout=0x7f02007f; /** * The package for the Font Provider to be used for the request. This is used to verify * the identity of the provider. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderPackage=0x7f020080; /** * The query to be sent over to the provider. Refer to your font provider's documentation * on the format of this string. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontProviderQuery=0x7f020081; /** * The style of the given font file. This will be used when the font is being loaded into * the font stack and will override any style information in the font's header tables. If * unspecified, the value in the font's header tables will be used. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> */ public static final int fontStyle=0x7f020082; /** * The variation settings to be applied to the font. The string should be in the following * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be * used, or the font used does not support variation settings, this attribute needs not be * specified. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int fontVariationSettings=0x7f020083; /** * The weight of the given font file. This will be used when the font is being loaded into * the font stack and will override any weight information in the font's header tables. Must * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value * in the font's header tables will be used. * <p>May be an integer value, such as "<code>100</code>". */ public static final int fontWeight=0x7f020084; /** * The max gap between the bars when they are parallel to each other * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int gapBetweenBars=0x7f020085; /** * Go button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int goIcon=0x7f020086; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int height=0x7f020087; /** * Set true to hide the action bar on a vertical nested scroll of content. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int hideOnContentScroll=0x7f020088; /** * Specifies a drawable to use for the 'home as up' indicator. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f020089; /** * Specifies a layout to use for the "home" section of the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int homeLayout=0x7f02008a; /** * Specifies the drawable used for the application icon. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int icon=0x7f02008b; /** * Tint to apply to the icon. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int iconTint=0x7f02008c; /** * Blending mode used to apply the icon tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the icon’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The icon’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int iconTintMode=0x7f02008d; /** * The default state of the SearchView. If true, it will be iconified when not in * use and expanded when clicked. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int iconifiedByDefault=0x7f02008e; /** * ImageButton background drawable. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int imageButtonStyle=0x7f02008f; /** * Specifies a style resource to use for an indeterminate progress spinner. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f020090; /** * The maximal number of items initially shown in the activity list. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int initialActivityCount=0x7f020091; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int isLightTheme=0x7f020092; /** * Specifies padding that should be applied to the left and right sides of * system-provided items in the bar. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int itemPadding=0x7f020093; /** * A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge. * Child views can refer to these keylines for alignment using * layout_keyline="index" where index is a 0-based index into * this array. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int keylines=0x7f020094; /** * Distance from the bottom of the TextView to the last text baseline. If set, this * overrides the value set for paddingBottom. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int lastBaselineToBottomHeight=0x7f020095; /** * The layout to use for the search view. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout=0x7f020096; /** * The id of an anchor view that this view should position relative to. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_anchor=0x7f020097; /** * Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>center</td><td>11</td><td>Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.</td></tr> * <tr><td>center_horizontal</td><td>1</td><td>Place object in the horizontal center of its container, not changing its size.</td></tr> * <tr><td>center_vertical</td><td>10</td><td>Place object in the vertical center of its container, not changing its size.</td></tr> * <tr><td>clip_horizontal</td><td>8</td><td>Additional option that can be set to have the left and/or right edges of * the child clipped to its container's bounds. * The clip will be based on the horizontal gravity: a left gravity will clip the right * edge, a right gravity will clip the left edge, and neither will clip both edges.</td></tr> * <tr><td>clip_vertical</td><td>80</td><td>Additional option that can be set to have the top and/or bottom edges of * the child clipped to its container's bounds. * The clip will be based on the vertical gravity: a top gravity will clip the bottom * edge, a bottom gravity will clip the top edge, and neither will clip both edges.</td></tr> * <tr><td>end</td><td>800005</td><td>Push object to the end of its container, not changing its size.</td></tr> * <tr><td>fill</td><td>77</td><td>Grow the horizontal and vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_horizontal</td><td>7</td><td>Grow the horizontal size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_vertical</td><td>70</td><td>Grow the vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>left</td><td>3</td><td>Push object to the left of its container, not changing its size.</td></tr> * <tr><td>right</td><td>5</td><td>Push object to the right of its container, not changing its size.</td></tr> * <tr><td>start</td><td>800003</td><td>Push object to the beginning of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> */ public static final int layout_anchorGravity=0x7f020098; /** * The class name of a Behavior class defining special runtime behavior * for this child view. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layout_behavior=0x7f020099; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int layout_constrainedHeight=0x7f02009a; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int layout_constrainedWidth=0x7f02009b; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintBaseline_creator=0x7f02009c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBaseline_toBaselineOf=0x7f02009d; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintBottom_creator=0x7f02009e; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBottom_toBottomOf=0x7f02009f; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintBottom_toTopOf=0x7f0200a0; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int layout_constraintCircle=0x7f0200a1; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintCircleAngle=0x7f0200a2; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int layout_constraintCircleRadius=0x7f0200a3; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int layout_constraintDimensionRatio=0x7f0200a4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintEnd_toEndOf=0x7f0200a5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintEnd_toStartOf=0x7f0200a6; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int layout_constraintGuide_begin=0x7f0200a7; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int layout_constraintGuide_end=0x7f0200a8; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintGuide_percent=0x7f0200a9; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintHeight_default=0x7f0200aa; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintHeight_max=0x7f0200ab; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintHeight_min=0x7f0200ac; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHeight_percent=0x7f0200ad; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHorizontal_bias=0x7f0200ae; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintHorizontal_chainStyle=0x7f0200af; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintHorizontal_weight=0x7f0200b0; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintLeft_creator=0x7f0200b1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintLeft_toLeftOf=0x7f0200b2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintLeft_toRightOf=0x7f0200b3; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintRight_creator=0x7f0200b4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintRight_toLeftOf=0x7f0200b5; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintRight_toRightOf=0x7f0200b6; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintStart_toEndOf=0x7f0200b7; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintStart_toStartOf=0x7f0200b8; /** * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_constraintTop_creator=0x7f0200b9; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintTop_toBottomOf=0x7f0200ba; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> */ public static final int layout_constraintTop_toTopOf=0x7f0200bb; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintVertical_bias=0x7f0200bc; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintVertical_chainStyle=0x7f0200bd; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintVertical_weight=0x7f0200be; /** * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> */ public static final int layout_constraintWidth_default=0x7f0200bf; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintWidth_max=0x7f0200c0; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> */ public static final int layout_constraintWidth_min=0x7f0200c1; /** * <p>May be a floating point value, such as "<code>1.2</code>". */ public static final int layout_constraintWidth_percent=0x7f0200c2; /** * Specifies how this view dodges the inset edges of the CoordinatorLayout. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>77</td><td>Dodge all the inset edges.</td></tr> * <tr><td>bottom</td><td>50</td><td>Dodge the bottom inset edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Dodge the end inset edge.</td></tr> * <tr><td>left</td><td>3</td><td>Dodge the left inset edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't dodge any edges</td></tr> * <tr><td>right</td><td>5</td><td>Dodge the right inset edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Dodge the start inset edge.</td></tr> * <tr><td>top</td><td>30</td><td>Dodge the top inset edge.</td></tr> * </table> */ public static final int layout_dodgeInsetEdges=0x7f0200c3; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int layout_editor_absoluteX=0x7f0200c4; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int layout_editor_absoluteY=0x7f0200c5; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int layout_goneMarginBottom=0x7f0200c6; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int layout_goneMarginEnd=0x7f0200c7; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int layout_goneMarginLeft=0x7f0200c8; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int layout_goneMarginRight=0x7f0200c9; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int layout_goneMarginStart=0x7f0200ca; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int layout_goneMarginTop=0x7f0200cb; /** * Specifies how this view insets the CoordinatorLayout and make some other views * dodge it. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Inset the bottom edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Inset the end edge.</td></tr> * <tr><td>left</td><td>3</td><td>Inset the left edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't inset.</td></tr> * <tr><td>right</td><td>5</td><td>Inset the right edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Inset the start edge.</td></tr> * <tr><td>top</td><td>30</td><td>Inset the top edge.</td></tr> * </table> */ public static final int layout_insetEdge=0x7f0200cc; /** * The index of a keyline this view should position relative to. * android:layout_gravity will affect how the view aligns to the * specified keyline. * <p>May be an integer value, such as "<code>100</code>". */ public static final int layout_keyline=0x7f0200cd; /** * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>barrier</td><td>2</td><td></td></tr> * <tr><td>chains</td><td>4</td><td></td></tr> * <tr><td>dimensions</td><td>8</td><td></td></tr> * <tr><td>direct</td><td>1</td><td>direct, barriers, chains</td></tr> * <tr><td>groups</td><td>20</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>standard</td><td>7</td><td></td></tr> * </table> */ public static final int layout_optimizationLevel=0x7f0200ce; /** * Explicit height between lines of text. If set, this will override the values set * for lineSpacingExtra and lineSpacingMultiplier. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int lineHeight=0x7f0200cf; /** * Drawable used as a background for selected list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f0200d0; /** * The list divider used in alert dialogs. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f0200d1; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listItemLayout=0x7f0200d2; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listLayout=0x7f0200d3; /** * Default menu-style ListView style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f0200d4; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f0200d5; /** * The preferred list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeight=0x7f0200d6; /** * A larger, more robust list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeightLarge=0x7f0200d7; /** * A smaller, sleeker list item height. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemHeightSmall=0x7f0200d8; /** * The preferred padding along the left edge of list items. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemPaddingLeft=0x7f0200d9; /** * The preferred padding along the right edge of list items. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int listPreferredItemPaddingRight=0x7f0200da; /** * Specifies the drawable used for the application logo. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int logo=0x7f0200db; /** * A content description string to describe the appearance of the * associated logo image. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int logoDescription=0x7f0200dc; /** * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int maxButtonHeight=0x7f0200dd; /** * When set to true, all children with a weight will be considered having * the minimum size of the largest child. If false, all children are * measured normally. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int measureWithLargestChild=0x7f0200de; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f0200df; /** * Text to set as the content description for the navigation button * located at the start of the toolbar. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int navigationContentDescription=0x7f0200e0; /** * Icon drawable to use for the navigation button located at * the start of the toolbar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int navigationIcon=0x7f0200e1; /** * The type of navigation to use. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>listMode</td><td>1</td><td>The action bar will use a selection list for navigation.</td></tr> * <tr><td>normal</td><td>0</td><td>Normal static title text</td></tr> * <tr><td>tabMode</td><td>2</td><td>The action bar will use a series of horizontal tabs for navigation.</td></tr> * </table> */ public static final int navigationMode=0x7f0200e2; /** * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) * keyboard. The values should be kept in sync with KeyEvent * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> */ public static final int numericModifiers=0x7f0200e3; /** * Whether the popup window should overlap its anchor view. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int overlapAnchor=0x7f0200e4; /** * Bottom padding to use when no buttons are present. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingBottomNoButtons=0x7f0200e5; /** * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingEnd=0x7f0200e6; /** * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingStart=0x7f0200e7; /** * Top padding to use when no title is present. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int paddingTopNoTitle=0x7f0200e8; /** * The background of a panel when it is inset from the left and right edges of the screen. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelBackground=0x7f0200e9; /** * Default Panel Menu style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f0200ea; /** * Default Panel Menu width. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int panelMenuListWidth=0x7f0200eb; /** * Default PopupMenu style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupMenuStyle=0x7f0200ec; /** * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupTheme=0x7f0200ed; /** * Default PopupWindow style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int popupWindowStyle=0x7f0200ee; /** * Whether space should be reserved in layout when an icon is missing. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int preserveIconSpacing=0x7f0200ef; /** * Specifies the horizontal padding on either end for an embedded progress bar. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int progressBarPadding=0x7f0200f0; /** * Specifies a style resource to use for an embedded progress bar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int progressBarStyle=0x7f0200f1; /** * Background for the section containing the search query * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int queryBackground=0x7f0200f2; /** * An optional user-defined query hint string to be displayed in the empty query field. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int queryHint=0x7f0200f3; /** * Default RadioButton style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int radioButtonStyle=0x7f0200f4; /** * Default RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyle=0x7f0200f5; /** * Indicator RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f0200f6; /** * Small indicator RatingBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f0200f7; /** * Search icon displayed as a text field hint * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchHintIcon=0x7f0200f8; /** * Search icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchIcon=0x7f0200f9; /** * Style for the search query widget. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int searchViewStyle=0x7f0200fa; /** * Default SeekBar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int seekBarStyle=0x7f0200fb; /** * A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackground=0x7f0200fc; /** * Background drawable for borderless standalone items that need focus/pressed states. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f0200fd; /** * How this item should display in the Action Bar, if present. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>always</td><td>2</td><td>Always show this item in an actionbar, even if it would override * the system's limits of how much stuff to put there. This may make * your action bar look bad on some screens. In most cases you should * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".</td></tr> * <tr><td>collapseActionView</td><td>8</td><td>This item's action view collapses to a normal menu * item. When expanded, the action view takes over a * larger segment of its container.</td></tr> * <tr><td>ifRoom</td><td>1</td><td>Show this item in an action bar if there is room for it as determined * by the system. Favor this option over "always" where possible. * Mutually exclusive with "never" and "always".</td></tr> * <tr><td>never</td><td>0</td><td>Never show this item in an action bar, show it in the overflow menu instead. * Mutually exclusive with "ifRoom" and "always".</td></tr> * <tr><td>withText</td><td>4</td><td>When this item is shown as an action in the action bar, show a text * label with it even if it has an icon representation.</td></tr> * </table> */ public static final int showAsAction=0x7f0200fe; /** * Setting for which dividers to show. * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> */ public static final int showDividers=0x7f0200ff; /** * Whether to draw on/off text. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showText=0x7f020100; /** * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int showTitle=0x7f020101; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f020102; /** * Whether bars should rotate or not during transition * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int spinBars=0x7f020103; /** * Default Spinner style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f020104; /** * Default Spinner style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int spinnerStyle=0x7f020105; /** * Whether to split the track and leave a gap for the thumb drawable. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int splitTrack=0x7f020106; /** * Sets a drawable as the content of this ImageView. Allows the use of vector drawable * when running on older versions of the platform. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int srcCompat=0x7f020107; /** * State identifier indicating the popup will be above the anchor. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int state_above_anchor=0x7f020108; /** * Drawable to display behind the status bar when the view is set to draw behind it. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int statusBarBackground=0x7f020109; /** * Drawable for the arrow icon indicating a particular item is a submenu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subMenuArrow=0x7f02010a; /** * Background for the section containing the action (e.g. voice search) * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int submitBackground=0x7f02010b; /** * Specifies subtitle text used for navigationMode="normal" * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int subtitle=0x7f02010c; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f02010d; /** * A color to apply to the subtitle string. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int subtitleTextColor=0x7f02010e; /** * Specifies a style to use for subtitle text. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f02010f; /** * Layout for query suggestion rows * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f020110; /** * Minimum width for the switch component * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int switchMinWidth=0x7f020111; /** * Minimum space between the switch and caption text * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int switchPadding=0x7f020112; /** * Default style for the Switch widget. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchStyle=0x7f020113; /** * TextAppearance style for text displayed on the switch thumb. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int switchTextAppearance=0x7f020114; /** * Present the text in ALL CAPS. This may use a small-caps form when available. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int textAllCaps=0x7f020115; /** * Text color, typeface, size, and style for the text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f020116; /** * The preferred TextAppearance for the primary text of list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f020117; /** * The preferred TextAppearance for the secondary text of list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSecondary=0x7f020118; /** * The preferred TextAppearance for the primary text of small list items. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f020119; /** * Text color, typeface, size, and style for header text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=0x7f02011a; /** * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f02011b; /** * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f02011c; /** * Text color, typeface, size, and style for small text inside of a popup menu. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f02011d; /** * Color of list item text in alert dialogs. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int textColorAlertDialogListItem=0x7f02011e; /** * Text color for urls in search suggestions, used by things like global search * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int textColorSearchUrl=0x7f02011f; /** * Deprecated. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int theme=0x7f020120; /** * The thickness (stroke size) for the bar paint * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int thickness=0x7f020121; /** * Amount of padding on either side of text within the switch thumb. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int thumbTextPadding=0x7f020122; /** * Tint to apply to the thumb drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int thumbTint=0x7f020123; /** * Blending mode used to apply the thumb tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int thumbTintMode=0x7f020124; /** * Drawable displayed at each progress position on a seekbar. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tickMark=0x7f020125; /** * Tint to apply to the tick mark drawable. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tickMarkTint=0x7f020126; /** * Blending mode used to apply the tick mark tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int tickMarkTintMode=0x7f020127; /** * Tint to apply to the image source. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tint=0x7f020128; /** * Blending mode used to apply the image source tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int tintMode=0x7f020129; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int title=0x7f02012a; /** * Specifies extra space on the left, start, right and end sides * of the toolbar's title. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMargin=0x7f02012b; /** * Specifies extra space on the bottom side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginBottom=0x7f02012c; /** * Specifies extra space on the end side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginEnd=0x7f02012d; /** * Specifies extra space on the start side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginStart=0x7f02012e; /** * Specifies extra space on the top side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ public static final int titleMarginTop=0x7f02012f; /** * {@deprecated Use titleMargin} * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). */ @Deprecated public static final int titleMargins=0x7f020130; /** * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int titleTextAppearance=0x7f020131; /** * A color to apply to the title string. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int titleTextColor=0x7f020132; /** * Specifies a style to use for title text. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int titleTextStyle=0x7f020133; /** * Default Toolar NavigationButtonStyle * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f020134; /** * Default Toolbar style. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int toolbarStyle=0x7f020135; /** * Foreground color to use for tooltips * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int tooltipForegroundColor=0x7f020136; /** * Background to use for tooltips * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int tooltipFrameBackground=0x7f020137; /** * The tooltip text associated with the item. * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int tooltipText=0x7f020138; /** * Drawable to use as the "track" that the switch thumb slides within. * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int track=0x7f020139; /** * Tint to apply to the track. * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". */ public static final int trackTint=0x7f02013a; /** * Blending mode used to apply the track tint. * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> */ public static final int trackTintMode=0x7f02013b; /** * The index of the font in the tcc font file. If the font file referenced is not in the * tcc format, this attribute needs not be specified. * <p>May be an integer value, such as "<code>100</code>". */ public static final int ttcIndex=0x7f02013c; /** * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; */ public static final int viewInflaterClass=0x7f02013d; /** * Voice button icon * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". */ public static final int voiceIcon=0x7f02013e; /** * Flag indicating whether this window should have an Action Bar * in place of the usual title bar. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBar=0x7f02013f; /** * Flag indicating whether this window's Action Bar should overlay * application content. Does nothing if the window would not * have an Action Bar. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionBarOverlay=0x7f020140; /** * Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar). * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowActionModeOverlay=0x7f020141; /** * A fixed height for the window along the major axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedHeightMajor=0x7f020142; /** * A fixed height for the window along the minor axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedHeightMinor=0x7f020143; /** * A fixed width for the window along the major axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedWidthMajor=0x7f020144; /** * A fixed width for the window along the minor axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowFixedWidthMinor=0x7f020145; /** * The minimum width the window is allowed to be, along the major * axis of the screen. That is, when in landscape. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowMinWidthMajor=0x7f020146; /** * The minimum width the window is allowed to be, along the minor * axis of the screen. That is, when in portrait. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. */ public static final int windowMinWidthMinor=0x7f020147; /** * Flag indicating whether there should be no title on this window. * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". */ public static final int windowNoTitle=0x7f020148; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f030000; public static final int abc_allow_stacked_button_bar=0x7f030001; public static final int abc_config_actionMenuItemAllCaps=0x7f030002; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f040000; public static final int abc_background_cache_hint_selector_material_light=0x7f040001; public static final int abc_btn_colored_borderless_text_material=0x7f040002; public static final int abc_btn_colored_text_material=0x7f040003; public static final int abc_color_highlight_material=0x7f040004; public static final int abc_hint_foreground_material_dark=0x7f040005; public static final int abc_hint_foreground_material_light=0x7f040006; public static final int abc_input_method_navigation_guard=0x7f040007; public static final int abc_primary_text_disable_only_material_dark=0x7f040008; public static final int abc_primary_text_disable_only_material_light=0x7f040009; public static final int abc_primary_text_material_dark=0x7f04000a; public static final int abc_primary_text_material_light=0x7f04000b; public static final int abc_search_url_text=0x7f04000c; public static final int abc_search_url_text_normal=0x7f04000d; public static final int abc_search_url_text_pressed=0x7f04000e; public static final int abc_search_url_text_selected=0x7f04000f; public static final int abc_secondary_text_material_dark=0x7f040010; public static final int abc_secondary_text_material_light=0x7f040011; public static final int abc_tint_btn_checkable=0x7f040012; public static final int abc_tint_default=0x7f040013; public static final int abc_tint_edittext=0x7f040014; public static final int abc_tint_seek_thumb=0x7f040015; public static final int abc_tint_spinner=0x7f040016; public static final int abc_tint_switch_track=0x7f040017; public static final int accent_material_dark=0x7f040018; public static final int accent_material_light=0x7f040019; public static final int background_floating_material_dark=0x7f04001a; public static final int background_floating_material_light=0x7f04001b; public static final int background_material_dark=0x7f04001c; public static final int background_material_light=0x7f04001d; public static final int bright_foreground_disabled_material_dark=0x7f04001e; public static final int bright_foreground_disabled_material_light=0x7f04001f; public static final int bright_foreground_inverse_material_dark=0x7f040020; public static final int bright_foreground_inverse_material_light=0x7f040021; public static final int bright_foreground_material_dark=0x7f040022; public static final int bright_foreground_material_light=0x7f040023; public static final int button_material_dark=0x7f040024; public static final int button_material_light=0x7f040025; public static final int colorAccent=0x7f040026; public static final int colorPrimary=0x7f040027; public static final int colorPrimaryDark=0x7f040028; public static final int dim_foreground_disabled_material_dark=0x7f040029; public static final int dim_foreground_disabled_material_light=0x7f04002a; public static final int dim_foreground_material_dark=0x7f04002b; public static final int dim_foreground_material_light=0x7f04002c; public static final int error_color_material_dark=0x7f04002d; public static final int error_color_material_light=0x7f04002e; public static final int foreground_material_dark=0x7f04002f; public static final int foreground_material_light=0x7f040030; public static final int highlighted_text_material_dark=0x7f040031; public static final int highlighted_text_material_light=0x7f040032; public static final int material_blue_grey_800=0x7f040033; public static final int material_blue_grey_900=0x7f040034; public static final int material_blue_grey_950=0x7f040035; public static final int material_deep_teal_200=0x7f040036; public static final int material_deep_teal_500=0x7f040037; public static final int material_grey_100=0x7f040038; public static final int material_grey_300=0x7f040039; public static final int material_grey_50=0x7f04003a; public static final int material_grey_600=0x7f04003b; public static final int material_grey_800=0x7f04003c; public static final int material_grey_850=0x7f04003d; public static final int material_grey_900=0x7f04003e; public static final int notification_action_color_filter=0x7f04003f; public static final int notification_icon_bg_color=0x7f040040; public static final int primary_dark_material_dark=0x7f040041; public static final int primary_dark_material_light=0x7f040042; public static final int primary_material_dark=0x7f040043; public static final int primary_material_light=0x7f040044; public static final int primary_text_default_material_dark=0x7f040045; public static final int primary_text_default_material_light=0x7f040046; public static final int primary_text_disabled_material_dark=0x7f040047; public static final int primary_text_disabled_material_light=0x7f040048; public static final int ripple_material_dark=0x7f040049; public static final int ripple_material_light=0x7f04004a; public static final int secondary_text_default_material_dark=0x7f04004b; public static final int secondary_text_default_material_light=0x7f04004c; public static final int secondary_text_disabled_material_dark=0x7f04004d; public static final int secondary_text_disabled_material_light=0x7f04004e; public static final int switch_thumb_disabled_material_dark=0x7f04004f; public static final int switch_thumb_disabled_material_light=0x7f040050; public static final int switch_thumb_material_dark=0x7f040051; public static final int switch_thumb_material_light=0x7f040052; public static final int switch_thumb_normal_material_dark=0x7f040053; public static final int switch_thumb_normal_material_light=0x7f040054; public static final int tooltip_background_dark=0x7f040055; public static final int tooltip_background_light=0x7f040056; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f050000; public static final int abc_action_bar_content_inset_with_nav=0x7f050001; public static final int abc_action_bar_default_height_material=0x7f050002; public static final int abc_action_bar_default_padding_end_material=0x7f050003; public static final int abc_action_bar_default_padding_start_material=0x7f050004; public static final int abc_action_bar_elevation_material=0x7f050005; public static final int abc_action_bar_icon_vertical_padding_material=0x7f050006; public static final int abc_action_bar_overflow_padding_end_material=0x7f050007; public static final int abc_action_bar_overflow_padding_start_material=0x7f050008; public static final int abc_action_bar_stacked_max_height=0x7f050009; public static final int abc_action_bar_stacked_tab_max_width=0x7f05000a; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f05000b; public static final int abc_action_bar_subtitle_top_margin_material=0x7f05000c; public static final int abc_action_button_min_height_material=0x7f05000d; public static final int abc_action_button_min_width_material=0x7f05000e; public static final int abc_action_button_min_width_overflow_material=0x7f05000f; public static final int abc_alert_dialog_button_bar_height=0x7f050010; public static final int abc_alert_dialog_button_dimen=0x7f050011; public static final int abc_button_inset_horizontal_material=0x7f050012; public static final int abc_button_inset_vertical_material=0x7f050013; public static final int abc_button_padding_horizontal_material=0x7f050014; public static final int abc_button_padding_vertical_material=0x7f050015; public static final int abc_cascading_menus_min_smallest_width=0x7f050016; public static final int abc_config_prefDialogWidth=0x7f050017; public static final int abc_control_corner_material=0x7f050018; public static final int abc_control_inset_material=0x7f050019; public static final int abc_control_padding_material=0x7f05001a; public static final int abc_dialog_corner_radius_material=0x7f05001b; public static final int abc_dialog_fixed_height_major=0x7f05001c; public static final int abc_dialog_fixed_height_minor=0x7f05001d; public static final int abc_dialog_fixed_width_major=0x7f05001e; public static final int abc_dialog_fixed_width_minor=0x7f05001f; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f050020; public static final int abc_dialog_list_padding_top_no_title=0x7f050021; public static final int abc_dialog_min_width_major=0x7f050022; public static final int abc_dialog_min_width_minor=0x7f050023; public static final int abc_dialog_padding_material=0x7f050024; public static final int abc_dialog_padding_top_material=0x7f050025; public static final int abc_dialog_title_divider_material=0x7f050026; public static final int abc_disabled_alpha_material_dark=0x7f050027; public static final int abc_disabled_alpha_material_light=0x7f050028; public static final int abc_dropdownitem_icon_width=0x7f050029; public static final int abc_dropdownitem_text_padding_left=0x7f05002a; public static final int abc_dropdownitem_text_padding_right=0x7f05002b; public static final int abc_edit_text_inset_bottom_material=0x7f05002c; public static final int abc_edit_text_inset_horizontal_material=0x7f05002d; public static final int abc_edit_text_inset_top_material=0x7f05002e; public static final int abc_floating_window_z=0x7f05002f; public static final int abc_list_item_padding_horizontal_material=0x7f050030; public static final int abc_panel_menu_list_width=0x7f050031; public static final int abc_progress_bar_height_material=0x7f050032; public static final int abc_search_view_preferred_height=0x7f050033; public static final int abc_search_view_preferred_width=0x7f050034; public static final int abc_seekbar_track_background_height_material=0x7f050035; public static final int abc_seekbar_track_progress_height_material=0x7f050036; public static final int abc_select_dialog_padding_start_material=0x7f050037; public static final int abc_switch_padding=0x7f050038; public static final int abc_text_size_body_1_material=0x7f050039; public static final int abc_text_size_body_2_material=0x7f05003a; public static final int abc_text_size_button_material=0x7f05003b; public static final int abc_text_size_caption_material=0x7f05003c; public static final int abc_text_size_display_1_material=0x7f05003d; public static final int abc_text_size_display_2_material=0x7f05003e; public static final int abc_text_size_display_3_material=0x7f05003f; public static final int abc_text_size_display_4_material=0x7f050040; public static final int abc_text_size_headline_material=0x7f050041; public static final int abc_text_size_large_material=0x7f050042; public static final int abc_text_size_medium_material=0x7f050043; public static final int abc_text_size_menu_header_material=0x7f050044; public static final int abc_text_size_menu_material=0x7f050045; public static final int abc_text_size_small_material=0x7f050046; public static final int abc_text_size_subhead_material=0x7f050047; public static final int abc_text_size_subtitle_material_toolbar=0x7f050048; public static final int abc_text_size_title_material=0x7f050049; public static final int abc_text_size_title_material_toolbar=0x7f05004a; public static final int compat_button_inset_horizontal_material=0x7f05004b; public static final int compat_button_inset_vertical_material=0x7f05004c; public static final int compat_button_padding_horizontal_material=0x7f05004d; public static final int compat_button_padding_vertical_material=0x7f05004e; public static final int compat_control_corner_material=0x7f05004f; public static final int compat_notification_large_icon_max_height=0x7f050050; public static final int compat_notification_large_icon_max_width=0x7f050051; public static final int disabled_alpha_material_dark=0x7f050052; public static final int disabled_alpha_material_light=0x7f050053; public static final int highlight_alpha_material_colored=0x7f050054; public static final int highlight_alpha_material_dark=0x7f050055; public static final int highlight_alpha_material_light=0x7f050056; public static final int hint_alpha_material_dark=0x7f050057; public static final int hint_alpha_material_light=0x7f050058; public static final int hint_pressed_alpha_material_dark=0x7f050059; public static final int hint_pressed_alpha_material_light=0x7f05005a; public static final int notification_action_icon_size=0x7f05005b; public static final int notification_action_text_size=0x7f05005c; public static final int notification_big_circle_margin=0x7f05005d; public static final int notification_content_margin_start=0x7f05005e; public static final int notification_large_icon_height=0x7f05005f; public static final int notification_large_icon_width=0x7f050060; public static final int notification_main_column_padding_top=0x7f050061; public static final int notification_media_narrow_margin=0x7f050062; public static final int notification_right_icon_size=0x7f050063; public static final int notification_right_side_padding_top=0x7f050064; public static final int notification_small_icon_background_padding=0x7f050065; public static final int notification_small_icon_size_as_large=0x7f050066; public static final int notification_subtext_size=0x7f050067; public static final int notification_top_pad=0x7f050068; public static final int notification_top_pad_large_text=0x7f050069; public static final int tooltip_corner_radius=0x7f05006a; public static final int tooltip_horizontal_padding=0x7f05006b; public static final int tooltip_margin=0x7f05006c; public static final int tooltip_precise_anchor_extra_offset=0x7f05006d; public static final int tooltip_precise_anchor_threshold=0x7f05006e; public static final int tooltip_vertical_padding=0x7f05006f; public static final int tooltip_y_offset_non_touch=0x7f050070; public static final int tooltip_y_offset_touch=0x7f050071; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f060000; public static final int abc_action_bar_item_background_material=0x7f060001; public static final int abc_btn_borderless_material=0x7f060002; public static final int abc_btn_check_material=0x7f060003; public static final int abc_btn_check_to_on_mtrl_000=0x7f060004; public static final int abc_btn_check_to_on_mtrl_015=0x7f060005; public static final int abc_btn_colored_material=0x7f060006; public static final int abc_btn_default_mtrl_shape=0x7f060007; public static final int abc_btn_radio_material=0x7f060008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f060009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f06000a; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f06000b; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f06000c; public static final int abc_cab_background_internal_bg=0x7f06000d; public static final int abc_cab_background_top_material=0x7f06000e; public static final int abc_cab_background_top_mtrl_alpha=0x7f06000f; public static final int abc_control_background_material=0x7f060010; public static final int abc_dialog_material_background=0x7f060011; public static final int abc_edit_text_material=0x7f060012; public static final int abc_ic_ab_back_material=0x7f060013; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f060014; public static final int abc_ic_clear_material=0x7f060015; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f060016; public static final int abc_ic_go_search_api_material=0x7f060017; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f060018; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f060019; public static final int abc_ic_menu_overflow_material=0x7f06001a; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f06001b; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f06001c; public static final int abc_ic_menu_share_mtrl_alpha=0x7f06001d; public static final int abc_ic_search_api_material=0x7f06001e; public static final int abc_ic_star_black_16dp=0x7f06001f; public static final int abc_ic_star_black_36dp=0x7f060020; public static final int abc_ic_star_black_48dp=0x7f060021; public static final int abc_ic_star_half_black_16dp=0x7f060022; public static final int abc_ic_star_half_black_36dp=0x7f060023; public static final int abc_ic_star_half_black_48dp=0x7f060024; public static final int abc_ic_voice_search_api_material=0x7f060025; public static final int abc_item_background_holo_dark=0x7f060026; public static final int abc_item_background_holo_light=0x7f060027; public static final int abc_list_divider_material=0x7f060028; public static final int abc_list_divider_mtrl_alpha=0x7f060029; public static final int abc_list_focused_holo=0x7f06002a; public static final int abc_list_longpressed_holo=0x7f06002b; public static final int abc_list_pressed_holo_dark=0x7f06002c; public static final int abc_list_pressed_holo_light=0x7f06002d; public static final int abc_list_selector_background_transition_holo_dark=0x7f06002e; public static final int abc_list_selector_background_transition_holo_light=0x7f06002f; public static final int abc_list_selector_disabled_holo_dark=0x7f060030; public static final int abc_list_selector_disabled_holo_light=0x7f060031; public static final int abc_list_selector_holo_dark=0x7f060032; public static final int abc_list_selector_holo_light=0x7f060033; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f060034; public static final int abc_popup_background_mtrl_mult=0x7f060035; public static final int abc_ratingbar_indicator_material=0x7f060036; public static final int abc_ratingbar_material=0x7f060037; public static final int abc_ratingbar_small_material=0x7f060038; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f060039; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f06003a; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f06003b; public static final int abc_scrubber_primary_mtrl_alpha=0x7f06003c; public static final int abc_scrubber_track_mtrl_alpha=0x7f06003d; public static final int abc_seekbar_thumb_material=0x7f06003e; public static final int abc_seekbar_tick_mark_material=0x7f06003f; public static final int abc_seekbar_track_material=0x7f060040; public static final int abc_spinner_mtrl_am_alpha=0x7f060041; public static final int abc_spinner_textfield_background_material=0x7f060042; public static final int abc_switch_thumb_material=0x7f060043; public static final int abc_switch_track_mtrl_alpha=0x7f060044; public static final int abc_tab_indicator_material=0x7f060045; public static final int abc_tab_indicator_mtrl_alpha=0x7f060046; public static final int abc_text_cursor_material=0x7f060047; public static final int abc_text_select_handle_left_mtrl_dark=0x7f060048; public static final int abc_text_select_handle_left_mtrl_light=0x7f060049; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f06004a; public static final int abc_text_select_handle_middle_mtrl_light=0x7f06004b; public static final int abc_text_select_handle_right_mtrl_dark=0x7f06004c; public static final int abc_text_select_handle_right_mtrl_light=0x7f06004d; public static final int abc_textfield_activated_mtrl_alpha=0x7f06004e; public static final int abc_textfield_default_mtrl_alpha=0x7f06004f; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f060050; public static final int abc_textfield_search_default_mtrl_alpha=0x7f060051; public static final int abc_textfield_search_material=0x7f060052; public static final int abc_vector_test=0x7f060053; public static final int notification_action_background=0x7f060054; public static final int notification_bg=0x7f060055; public static final int notification_bg_low=0x7f060056; public static final int notification_bg_low_normal=0x7f060057; public static final int notification_bg_low_pressed=0x7f060058; public static final int notification_bg_normal=0x7f060059; public static final int notification_bg_normal_pressed=0x7f06005a; public static final int notification_icon_background=0x7f06005b; public static final int notification_template_icon_bg=0x7f06005c; public static final int notification_template_icon_low_bg=0x7f06005d; public static final int notification_tile_bg=0x7f06005e; public static final int notify_panel_notification_icon_bg=0x7f06005f; public static final int tooltip_frame_dark=0x7f060060; public static final int tooltip_frame_light=0x7f060061; } public static final class id { public static final int ALT=0x7f070000; public static final int CTRL=0x7f070001; public static final int FUNCTION=0x7f070002; public static final int META=0x7f070003; public static final int SHIFT=0x7f070004; public static final int SYM=0x7f070005; public static final int action_bar=0x7f070006; public static final int action_bar_activity_content=0x7f070007; public static final int action_bar_container=0x7f070008; public static final int action_bar_root=0x7f070009; public static final int action_bar_spinner=0x7f07000a; public static final int action_bar_subtitle=0x7f07000b; public static final int action_bar_title=0x7f07000c; public static final int action_container=0x7f07000d; public static final int action_context_bar=0x7f07000e; public static final int action_divider=0x7f07000f; public static final int action_image=0x7f070010; public static final int action_menu_divider=0x7f070011; public static final int action_menu_presenter=0x7f070012; public static final int action_mode_bar=0x7f070013; public static final int action_mode_bar_stub=0x7f070014; public static final int action_mode_close_button=0x7f070015; public static final int action_text=0x7f070016; public static final int actions=0x7f070017; public static final int activity_chooser_view_content=0x7f070018; public static final int add=0x7f070019; public static final int alertTitle=0x7f07001a; public static final int all=0x7f07001b; public static final int always=0x7f07001c; public static final int async=0x7f07001d; public static final int barrier=0x7f07001e; public static final int beginning=0x7f07001f; public static final int blocking=0x7f070020; public static final int bottom=0x7f070021; public static final int buttonPanel=0x7f070022; public static final int center=0x7f070023; public static final int center_horizontal=0x7f070024; public static final int center_vertical=0x7f070025; public static final int chains=0x7f070026; public static final int checkbox=0x7f070027; public static final int chronometer=0x7f070028; public static final int clip_horizontal=0x7f070029; public static final int clip_vertical=0x7f07002a; public static final int collapseActionView=0x7f07002b; public static final int content=0x7f07002c; public static final int contentPanel=0x7f07002d; public static final int custom=0x7f07002e; public static final int customPanel=0x7f07002f; public static final int decor_content_parent=0x7f070030; public static final int default_activity_button=0x7f070031; public static final int dimensions=0x7f070032; public static final int direct=0x7f070033; public static final int disableHome=0x7f070034; public static final int edit_query=0x7f070035; public static final int end=0x7f070036; public static final int expand_activities_button=0x7f070037; public static final int expanded_menu=0x7f070038; public static final int fill=0x7f070039; public static final int fill_horizontal=0x7f07003a; public static final int fill_vertical=0x7f07003b; public static final int forever=0x7f07003c; public static final int gone=0x7f07003d; public static final int group_divider=0x7f07003e; public static final int groups=0x7f07003f; public static final int home=0x7f070040; public static final int homeAsUp=0x7f070041; public static final int icon=0x7f070042; public static final int icon_group=0x7f070043; public static final int ifRoom=0x7f070044; public static final int image=0x7f070045; public static final int info=0x7f070046; public static final int invisible=0x7f070047; public static final int italic=0x7f070048; public static final int left=0x7f070049; public static final int line1=0x7f07004a; public static final int line3=0x7f07004b; public static final int listMode=0x7f07004c; public static final int list_item=0x7f07004d; public static final int message=0x7f07004e; public static final int middle=0x7f07004f; public static final int multiply=0x7f070050; public static final int never=0x7f070051; public static final int none=0x7f070052; public static final int normal=0x7f070053; public static final int notification_background=0x7f070054; public static final int notification_main_column=0x7f070055; public static final int notification_main_column_container=0x7f070056; public static final int packed=0x7f070057; public static final int parent=0x7f070058; public static final int parentPanel=0x7f070059; public static final int percent=0x7f07005a; public static final int progress_circular=0x7f07005b; public static final int progress_horizontal=0x7f07005c; public static final int radio=0x7f07005d; public static final int right=0x7f07005e; public static final int right_icon=0x7f07005f; public static final int right_side=0x7f070060; public static final int screen=0x7f070061; public static final int scrollIndicatorDown=0x7f070062; public static final int scrollIndicatorUp=0x7f070063; public static final int scrollView=0x7f070064; public static final int search_badge=0x7f070065; public static final int search_bar=0x7f070066; public static final int search_button=0x7f070067; public static final int search_close_btn=0x7f070068; public static final int search_edit_frame=0x7f070069; public static final int search_go_btn=0x7f07006a; public static final int search_mag_icon=0x7f07006b; public static final int search_plate=0x7f07006c; public static final int search_src_text=0x7f07006d; public static final int search_voice_btn=0x7f07006e; public static final int select_dialog_listview=0x7f07006f; public static final int shortcut=0x7f070070; public static final int showCustom=0x7f070071; public static final int showHome=0x7f070072; public static final int showTitle=0x7f070073; public static final int spacer=0x7f070074; public static final int split_action_bar=0x7f070075; public static final int spread=0x7f070076; public static final int spread_inside=0x7f070077; public static final int src_atop=0x7f070078; public static final int src_in=0x7f070079; public static final int src_over=0x7f07007a; public static final int standard=0x7f07007b; public static final int start=0x7f07007c; public static final int submenuarrow=0x7f07007d; public static final int submit_area=0x7f07007e; public static final int tabMode=0x7f07007f; public static final int tag_transition_group=0x7f070080; public static final int tag_unhandled_key_event_manager=0x7f070081; public static final int tag_unhandled_key_listeners=0x7f070082; public static final int text=0x7f070083; public static final int text2=0x7f070084; public static final int textSpacerNoButtons=0x7f070085; public static final int textSpacerNoTitle=0x7f070086; public static final int time=0x7f070087; public static final int title=0x7f070088; public static final int titleDividerNoCustom=0x7f070089; public static final int title_template=0x7f07008a; public static final int top=0x7f07008b; public static final int topPanel=0x7f07008c; public static final int uniform=0x7f07008d; public static final int up=0x7f07008e; public static final int useLogo=0x7f07008f; public static final int webView=0x7f070090; public static final int withText=0x7f070091; public static final int wrap=0x7f070092; public static final int wrap_content=0x7f070093; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f080000; public static final int abc_config_activityShortDur=0x7f080001; public static final int cancel_button_image_alpha=0x7f080002; public static final int config_tooltipAnimTime=0x7f080003; public static final int status_bar_notification_info_maxnum=0x7f080004; } public static final class layout { public static final int abc_action_bar_title_item=0x7f090000; public static final int abc_action_bar_up_container=0x7f090001; public static final int abc_action_menu_item_layout=0x7f090002; public static final int abc_action_menu_layout=0x7f090003; public static final int abc_action_mode_bar=0x7f090004; public static final int abc_action_mode_close_item_material=0x7f090005; public static final int abc_activity_chooser_view=0x7f090006; public static final int abc_activity_chooser_view_list_item=0x7f090007; public static final int abc_alert_dialog_button_bar_material=0x7f090008; public static final int abc_alert_dialog_material=0x7f090009; public static final int abc_alert_dialog_title_material=0x7f09000a; public static final int abc_cascading_menu_item_layout=0x7f09000b; public static final int abc_dialog_title_material=0x7f09000c; public static final int abc_expanded_menu_layout=0x7f09000d; public static final int abc_list_menu_item_checkbox=0x7f09000e; public static final int abc_list_menu_item_icon=0x7f09000f; public static final int abc_list_menu_item_layout=0x7f090010; public static final int abc_list_menu_item_radio=0x7f090011; public static final int abc_popup_menu_header_item_layout=0x7f090012; public static final int abc_popup_menu_item_layout=0x7f090013; public static final int abc_screen_content_include=0x7f090014; public static final int abc_screen_simple=0x7f090015; public static final int abc_screen_simple_overlay_action_mode=0x7f090016; public static final int abc_screen_toolbar=0x7f090017; public static final int abc_search_dropdown_item_icons_2line=0x7f090018; public static final int abc_search_view=0x7f090019; public static final int abc_select_dialog_material=0x7f09001a; public static final int abc_tooltip=0x7f09001b; public static final int activity_main=0x7f09001c; public static final int notification_action=0x7f09001d; public static final int notification_action_tombstone=0x7f09001e; public static final int notification_template_custom_big=0x7f09001f; public static final int notification_template_icon_group=0x7f090020; public static final int notification_template_part_chronometer=0x7f090021; public static final int notification_template_part_time=0x7f090022; public static final int select_dialog_item_material=0x7f090023; public static final int select_dialog_multichoice_material=0x7f090024; public static final int select_dialog_singlechoice_material=0x7f090025; public static final int support_simple_spinner_dropdown_item=0x7f090026; } public static final class mipmap { public static final int ic_launcher=0x7f0a0000; public static final int ic_launcher_round=0x7f0a0001; } public static final class string { public static final int abc_action_bar_home_description=0x7f0b0000; public static final int abc_action_bar_up_description=0x7f0b0001; public static final int abc_action_menu_overflow_description=0x7f0b0002; public static final int abc_action_mode_done=0x7f0b0003; public static final int abc_activity_chooser_view_see_all=0x7f0b0004; public static final int abc_activitychooserview_choose_application=0x7f0b0005; public static final int abc_capital_off=0x7f0b0006; public static final int abc_capital_on=0x7f0b0007; public static final int abc_font_family_body_1_material=0x7f0b0008; public static final int abc_font_family_body_2_material=0x7f0b0009; public static final int abc_font_family_button_material=0x7f0b000a; public static final int abc_font_family_caption_material=0x7f0b000b; public static final int abc_font_family_display_1_material=0x7f0b000c; public static final int abc_font_family_display_2_material=0x7f0b000d; public static final int abc_font_family_display_3_material=0x7f0b000e; public static final int abc_font_family_display_4_material=0x7f0b000f; public static final int abc_font_family_headline_material=0x7f0b0010; public static final int abc_font_family_menu_material=0x7f0b0011; public static final int abc_font_family_subhead_material=0x7f0b0012; public static final int abc_font_family_title_material=0x7f0b0013; public static final int abc_menu_alt_shortcut_label=0x7f0b0014; public static final int abc_menu_ctrl_shortcut_label=0x7f0b0015; public static final int abc_menu_delete_shortcut_label=0x7f0b0016; public static final int abc_menu_enter_shortcut_label=0x7f0b0017; public static final int abc_menu_function_shortcut_label=0x7f0b0018; public static final int abc_menu_meta_shortcut_label=0x7f0b0019; public static final int abc_menu_shift_shortcut_label=0x7f0b001a; public static final int abc_menu_space_shortcut_label=0x7f0b001b; public static final int abc_menu_sym_shortcut_label=0x7f0b001c; public static final int abc_prepend_shortcut_label=0x7f0b001d; public static final int abc_search_hint=0x7f0b001e; public static final int abc_searchview_description_clear=0x7f0b001f; public static final int abc_searchview_description_query=0x7f0b0020; public static final int abc_searchview_description_search=0x7f0b0021; public static final int abc_searchview_description_submit=0x7f0b0022; public static final int abc_searchview_description_voice=0x7f0b0023; public static final int abc_shareactionprovider_share_with=0x7f0b0024; public static final int abc_shareactionprovider_share_with_application=0x7f0b0025; public static final int abc_toolbar_collapse_description=0x7f0b0026; public static final int app_name=0x7f0b0027; public static final int search_menu_title=0x7f0b0028; public static final int status_bar_notification_info_overflow=0x7f0b0029; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0c0000; public static final int AlertDialog_AppCompat_Light=0x7f0c0001; public static final int Animation_AppCompat_Dialog=0x7f0c0002; public static final int Animation_AppCompat_DropDownUp=0x7f0c0003; public static final int Animation_AppCompat_Tooltip=0x7f0c0004; public static final int AppTheme=0x7f0c0005; public static final int Base_AlertDialog_AppCompat=0x7f0c0006; public static final int Base_AlertDialog_AppCompat_Light=0x7f0c0007; public static final int Base_Animation_AppCompat_Dialog=0x7f0c0008; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0c0009; public static final int Base_Animation_AppCompat_Tooltip=0x7f0c000a; public static final int Base_DialogWindowTitle_AppCompat=0x7f0c000b; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0c000c; public static final int Base_TextAppearance_AppCompat=0x7f0c000d; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0c000e; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0c000f; public static final int Base_TextAppearance_AppCompat_Button=0x7f0c0010; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0c0011; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0c0012; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0c0013; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0c0014; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0c0015; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0c0016; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0c0017; public static final int Base_TextAppearance_AppCompat_Large=0x7f0c0018; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0c0019; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c001a; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c001b; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0c001c; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0c001d; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0c001e; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0c001f; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c0020; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0c0021; public static final int Base_TextAppearance_AppCompat_Small=0x7f0c0022; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0c0023; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0c0024; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0c0025; public static final int Base_TextAppearance_AppCompat_Title=0x7f0c0026; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0c0027; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0c0028; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c0029; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c002a; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c002b; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c002c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c002d; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c002e; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c002f; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0c0030; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c0031; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c0032; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c0033; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c0034; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0035; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0036; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0037; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0c0038; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0039; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c003a; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c003b; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c003c; public static final int Base_Theme_AppCompat=0x7f0c003d; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0c003e; public static final int Base_Theme_AppCompat_Dialog=0x7f0c003f; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0c0040; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0c0041; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0c0042; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0c0043; public static final int Base_Theme_AppCompat_Light=0x7f0c0044; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0c0045; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0c0046; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0c0047; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0c0048; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0049; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0c004a; public static final int Base_ThemeOverlay_AppCompat=0x7f0c004b; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0c004c; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0c004d; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c004e; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0c004f; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0050; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0c0051; public static final int Base_V21_Theme_AppCompat=0x7f0c0052; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0c0053; public static final int Base_V21_Theme_AppCompat_Light=0x7f0c0054; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0c0055; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0c0056; public static final int Base_V22_Theme_AppCompat=0x7f0c0057; public static final int Base_V22_Theme_AppCompat_Light=0x7f0c0058; public static final int Base_V23_Theme_AppCompat=0x7f0c0059; public static final int Base_V23_Theme_AppCompat_Light=0x7f0c005a; public static final int Base_V26_Theme_AppCompat=0x7f0c005b; public static final int Base_V26_Theme_AppCompat_Light=0x7f0c005c; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0c005d; public static final int Base_V28_Theme_AppCompat=0x7f0c005e; public static final int Base_V28_Theme_AppCompat_Light=0x7f0c005f; public static final int Base_V7_Theme_AppCompat=0x7f0c0060; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0c0061; public static final int Base_V7_Theme_AppCompat_Light=0x7f0c0062; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0c0063; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0c0064; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0c0065; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0c0066; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0c0067; public static final int Base_Widget_AppCompat_ActionBar=0x7f0c0068; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0c0069; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0c006a; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0c006b; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0c006c; public static final int Base_Widget_AppCompat_ActionButton=0x7f0c006d; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0c006e; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0c006f; public static final int Base_Widget_AppCompat_ActionMode=0x7f0c0070; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0c0071; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0c0072; public static final int Base_Widget_AppCompat_Button=0x7f0c0073; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0c0074; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0c0075; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c0076; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0c0077; public static final int Base_Widget_AppCompat_Button_Small=0x7f0c0078; public static final int Base_Widget_AppCompat_ButtonBar=0x7f0c0079; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c007a; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0c007b; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0c007c; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0c007d; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0c007e; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0c007f; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0c0080; public static final int Base_Widget_AppCompat_EditText=0x7f0c0081; public static final int Base_Widget_AppCompat_ImageButton=0x7f0c0082; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0c0083; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0084; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c0085; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0c0086; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c0087; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0088; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0c0089; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c008a; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0c008b; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0c008c; public static final int Base_Widget_AppCompat_ListView=0x7f0c008d; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0c008e; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0c008f; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0c0090; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0c0091; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0c0092; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0c0093; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0094; public static final int Base_Widget_AppCompat_RatingBar=0x7f0c0095; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0c0096; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0c0097; public static final int Base_Widget_AppCompat_SearchView=0x7f0c0098; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0c0099; public static final int Base_Widget_AppCompat_SeekBar=0x7f0c009a; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0c009b; public static final int Base_Widget_AppCompat_Spinner=0x7f0c009c; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0c009d; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0c009e; public static final int Base_Widget_AppCompat_Toolbar=0x7f0c009f; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c00a0; public static final int Platform_AppCompat=0x7f0c00a1; public static final int Platform_AppCompat_Light=0x7f0c00a2; public static final int Platform_ThemeOverlay_AppCompat=0x7f0c00a3; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0c00a4; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0c00a5; public static final int Platform_V21_AppCompat=0x7f0c00a6; public static final int Platform_V21_AppCompat_Light=0x7f0c00a7; public static final int Platform_V25_AppCompat=0x7f0c00a8; public static final int Platform_V25_AppCompat_Light=0x7f0c00a9; public static final int Platform_Widget_AppCompat_Spinner=0x7f0c00aa; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0c00ab; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0c00ac; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0c00ad; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0c00ae; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0c00af; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut=0x7f0c00b0; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow=0x7f0c00b1; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0c00b2; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title=0x7f0c00b3; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0c00b4; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0c00b5; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0c00b6; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0c00b7; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0c00b8; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0c00b9; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0c00ba; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0c00bb; public static final int TextAppearance_AppCompat=0x7f0c00bc; public static final int TextAppearance_AppCompat_Body1=0x7f0c00bd; public static final int TextAppearance_AppCompat_Body2=0x7f0c00be; public static final int TextAppearance_AppCompat_Button=0x7f0c00bf; public static final int TextAppearance_AppCompat_Caption=0x7f0c00c0; public static final int TextAppearance_AppCompat_Display1=0x7f0c00c1; public static final int TextAppearance_AppCompat_Display2=0x7f0c00c2; public static final int TextAppearance_AppCompat_Display3=0x7f0c00c3; public static final int TextAppearance_AppCompat_Display4=0x7f0c00c4; public static final int TextAppearance_AppCompat_Headline=0x7f0c00c5; public static final int TextAppearance_AppCompat_Inverse=0x7f0c00c6; public static final int TextAppearance_AppCompat_Large=0x7f0c00c7; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0c00c8; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0c00c9; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0c00ca; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c00cb; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c00cc; public static final int TextAppearance_AppCompat_Medium=0x7f0c00cd; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0c00ce; public static final int TextAppearance_AppCompat_Menu=0x7f0c00cf; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c00d0; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0c00d1; public static final int TextAppearance_AppCompat_Small=0x7f0c00d2; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0c00d3; public static final int TextAppearance_AppCompat_Subhead=0x7f0c00d4; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0c00d5; public static final int TextAppearance_AppCompat_Title=0x7f0c00d6; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0c00d7; public static final int TextAppearance_AppCompat_Tooltip=0x7f0c00d8; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c00d9; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c00da; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c00db; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c00dc; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c00dd; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c00de; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0c00df; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c00e0; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0c00e1; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0c00e2; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c00e3; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c00e4; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c00e5; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00e6; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c00e7; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c00e8; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c00e9; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0c00ea; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c00eb; public static final int TextAppearance_Compat_Notification=0x7f0c00ec; public static final int TextAppearance_Compat_Notification_Info=0x7f0c00ed; public static final int TextAppearance_Compat_Notification_Line2=0x7f0c00ee; public static final int TextAppearance_Compat_Notification_Time=0x7f0c00ef; public static final int TextAppearance_Compat_Notification_Title=0x7f0c00f0; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c00f1; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c00f2; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c00f3; public static final int Theme_AppCompat=0x7f0c00f4; public static final int Theme_AppCompat_CompactMenu=0x7f0c00f5; public static final int Theme_AppCompat_DayNight=0x7f0c00f6; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0c00f7; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0c00f8; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0c00f9; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0c00fa; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0c00fb; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0c00fc; public static final int Theme_AppCompat_Dialog=0x7f0c00fd; public static final int Theme_AppCompat_Dialog_Alert=0x7f0c00fe; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0c00ff; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0c0100; public static final int Theme_AppCompat_Light=0x7f0c0101; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0c0102; public static final int Theme_AppCompat_Light_Dialog=0x7f0c0103; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0c0104; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0105; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0106; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0c0107; public static final int Theme_AppCompat_NoActionBar=0x7f0c0108; public static final int ThemeOverlay_AppCompat=0x7f0c0109; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0c010a; public static final int ThemeOverlay_AppCompat_Dark=0x7f0c010b; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c010c; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0c010d; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c010e; public static final int ThemeOverlay_AppCompat_Light=0x7f0c010f; public static final int Widget_AppCompat_ActionBar=0x7f0c0110; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0c0111; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0c0112; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0c0113; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0c0114; public static final int Widget_AppCompat_ActionButton=0x7f0c0115; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0c0116; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0c0117; public static final int Widget_AppCompat_ActionMode=0x7f0c0118; public static final int Widget_AppCompat_ActivityChooserView=0x7f0c0119; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0c011a; public static final int Widget_AppCompat_Button=0x7f0c011b; public static final int Widget_AppCompat_Button_Borderless=0x7f0c011c; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0c011d; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c011e; public static final int Widget_AppCompat_Button_Colored=0x7f0c011f; public static final int Widget_AppCompat_Button_Small=0x7f0c0120; public static final int Widget_AppCompat_ButtonBar=0x7f0c0121; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c0122; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0c0123; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0c0124; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0c0125; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0c0126; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0c0127; public static final int Widget_AppCompat_EditText=0x7f0c0128; public static final int Widget_AppCompat_ImageButton=0x7f0c0129; public static final int Widget_AppCompat_Light_ActionBar=0x7f0c012a; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0c012b; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0c012c; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c012d; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0c012e; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0c012f; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c0130; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0131; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0c0132; public static final int Widget_AppCompat_Light_ActionButton=0x7f0c0133; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0c0134; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0c0135; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0c0136; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0c0137; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0c0138; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0c0139; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0c013a; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0c013b; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0c013c; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c013d; public static final int Widget_AppCompat_Light_SearchView=0x7f0c013e; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0c013f; public static final int Widget_AppCompat_ListMenuView=0x7f0c0140; public static final int Widget_AppCompat_ListPopupWindow=0x7f0c0141; public static final int Widget_AppCompat_ListView=0x7f0c0142; public static final int Widget_AppCompat_ListView_DropDown=0x7f0c0143; public static final int Widget_AppCompat_ListView_Menu=0x7f0c0144; public static final int Widget_AppCompat_PopupMenu=0x7f0c0145; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0c0146; public static final int Widget_AppCompat_PopupWindow=0x7f0c0147; public static final int Widget_AppCompat_ProgressBar=0x7f0c0148; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0149; public static final int Widget_AppCompat_RatingBar=0x7f0c014a; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0c014b; public static final int Widget_AppCompat_RatingBar_Small=0x7f0c014c; public static final int Widget_AppCompat_SearchView=0x7f0c014d; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0c014e; public static final int Widget_AppCompat_SeekBar=0x7f0c014f; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0c0150; public static final int Widget_AppCompat_Spinner=0x7f0c0151; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0c0152; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c0153; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0c0154; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0c0155; public static final int Widget_AppCompat_Toolbar=0x7f0c0156; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c0157; public static final int Widget_Compat_NotificationActionContainer=0x7f0c0158; public static final int Widget_Compat_NotificationActionText=0x7f0c0159; public static final int Widget_Support_CoordinatorLayout=0x7f0c015a; } 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 org.changeip.seoul.malin:background}</code></td><td>Specifies a background drawable for the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_backgroundSplit org.changeip.seoul.malin:backgroundSplit}</code></td><td>Specifies a background drawable for the bottom component of a split action bar.</td></tr> * <tr><td><code>{@link #ActionBar_backgroundStacked org.changeip.seoul.malin:backgroundStacked}</code></td><td>Specifies a background drawable for a second stacked row of the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEnd org.changeip.seoul.malin:contentInsetEnd}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetEndWithActions org.changeip.seoul.malin:contentInsetEndWithActions}</code></td><td>Minimum inset for content views within a bar when actions from a menu * are present.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetLeft org.changeip.seoul.malin:contentInsetLeft}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetRight org.changeip.seoul.malin:contentInsetRight}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStart org.changeip.seoul.malin:contentInsetStart}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation org.changeip.seoul.malin:contentInsetStartWithNavigation}</code></td><td>Minimum inset for content views within a bar when a navigation button * is present, such as the Up button.</td></tr> * <tr><td><code>{@link #ActionBar_customNavigationLayout org.changeip.seoul.malin:customNavigationLayout}</code></td><td>Specifies a layout for custom navigation.</td></tr> * <tr><td><code>{@link #ActionBar_displayOptions org.changeip.seoul.malin:displayOptions}</code></td><td>Options affecting how the action bar is displayed.</td></tr> * <tr><td><code>{@link #ActionBar_divider org.changeip.seoul.malin:divider}</code></td><td>Specifies the drawable used for item dividers.</td></tr> * <tr><td><code>{@link #ActionBar_elevation org.changeip.seoul.malin:elevation}</code></td><td>Elevation for the action bar itself</td></tr> * <tr><td><code>{@link #ActionBar_height org.changeip.seoul.malin:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_hideOnContentScroll org.changeip.seoul.malin:hideOnContentScroll}</code></td><td>Set true to hide the action bar on a vertical nested scroll of content.</td></tr> * <tr><td><code>{@link #ActionBar_homeAsUpIndicator org.changeip.seoul.malin:homeAsUpIndicator}</code></td><td>Specifies a drawable to use for the 'home as up' indicator.</td></tr> * <tr><td><code>{@link #ActionBar_homeLayout org.changeip.seoul.malin:homeLayout}</code></td><td>Specifies a layout to use for the "home" section of the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_icon org.changeip.seoul.malin:icon}</code></td><td>Specifies the drawable used for the application icon.</td></tr> * <tr><td><code>{@link #ActionBar_indeterminateProgressStyle org.changeip.seoul.malin:indeterminateProgressStyle}</code></td><td>Specifies a style resource to use for an indeterminate progress spinner.</td></tr> * <tr><td><code>{@link #ActionBar_itemPadding org.changeip.seoul.malin:itemPadding}</code></td><td>Specifies padding that should be applied to the left and right sides of * system-provided items in the bar.</td></tr> * <tr><td><code>{@link #ActionBar_logo org.changeip.seoul.malin:logo}</code></td><td>Specifies the drawable used for the application logo.</td></tr> * <tr><td><code>{@link #ActionBar_navigationMode org.changeip.seoul.malin:navigationMode}</code></td><td>The type of navigation to use.</td></tr> * <tr><td><code>{@link #ActionBar_popupTheme org.changeip.seoul.malin:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #ActionBar_progressBarPadding org.changeip.seoul.malin:progressBarPadding}</code></td><td>Specifies the horizontal padding on either end for an embedded progress bar.</td></tr> * <tr><td><code>{@link #ActionBar_progressBarStyle org.changeip.seoul.malin:progressBarStyle}</code></td><td>Specifies a style resource to use for an embedded progress bar.</td></tr> * <tr><td><code>{@link #ActionBar_subtitle org.changeip.seoul.malin:subtitle}</code></td><td>Specifies subtitle text used for navigationMode="normal"</td></tr> * <tr><td><code>{@link #ActionBar_subtitleTextStyle org.changeip.seoul.malin:subtitleTextStyle}</code></td><td>Specifies a style to use for subtitle text.</td></tr> * <tr><td><code>{@link #ActionBar_title org.changeip.seoul.malin:title}</code></td><td></td></tr> * <tr><td><code>{@link #ActionBar_titleTextStyle org.changeip.seoul.malin:titleTextStyle}</code></td><td>Specifies a style to use for title text.</td></tr> * </table> * @see #ActionBar_background * @see #ActionBar_backgroundSplit * @see #ActionBar_backgroundStacked * @see #ActionBar_contentInsetEnd * @see #ActionBar_contentInsetEndWithActions * @see #ActionBar_contentInsetLeft * @see #ActionBar_contentInsetRight * @see #ActionBar_contentInsetStart * @see #ActionBar_contentInsetStartWithNavigation * @see #ActionBar_customNavigationLayout * @see #ActionBar_displayOptions * @see #ActionBar_divider * @see #ActionBar_elevation * @see #ActionBar_height * @see #ActionBar_hideOnContentScroll * @see #ActionBar_homeAsUpIndicator * @see #ActionBar_homeLayout * @see #ActionBar_icon * @see #ActionBar_indeterminateProgressStyle * @see #ActionBar_itemPadding * @see #ActionBar_logo * @see #ActionBar_navigationMode * @see #ActionBar_popupTheme * @see #ActionBar_progressBarPadding * @see #ActionBar_progressBarStyle * @see #ActionBar_subtitle * @see #ActionBar_subtitleTextStyle * @see #ActionBar_title * @see #ActionBar_titleTextStyle */ public static final int[] ActionBar={ 0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f020062, 0x7f020065, 0x7f02006a, 0x7f02006b, 0x7f020076, 0x7f020087, 0x7f020088, 0x7f020089, 0x7f02008a, 0x7f02008b, 0x7f020090, 0x7f020093, 0x7f0200db, 0x7f0200e2, 0x7f0200ed, 0x7f0200f0, 0x7f0200f1, 0x7f02010c, 0x7f02010f, 0x7f02012a, 0x7f020133 }; /** * <p> * @attr description * Specifies a background drawable for the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:background */ public static final int ActionBar_background=0; /** * <p> * @attr description * Specifies a background drawable for the bottom component of a split action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:backgroundSplit */ public static final int ActionBar_backgroundSplit=1; /** * <p> * @attr description * Specifies a background drawable for a second stacked row of the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:backgroundStacked */ public static final int ActionBar_backgroundStacked=2; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetEnd */ public static final int ActionBar_contentInsetEnd=3; /** * <p> * @attr description * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions=4; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetLeft */ public static final int ActionBar_contentInsetLeft=5; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetRight */ public static final int ActionBar_contentInsetRight=6; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetStart */ public static final int ActionBar_contentInsetStart=7; /** * <p> * @attr description * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation=8; /** * <p> * @attr description * Specifies a layout for custom navigation. Overrides navigationMode. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:customNavigationLayout */ public static final int ActionBar_customNavigationLayout=9; /** * <p> * @attr description * Options affecting how the action bar is displayed. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>disableHome</td><td>20</td><td></td></tr> * <tr><td>homeAsUp</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>showCustom</td><td>10</td><td></td></tr> * <tr><td>showHome</td><td>2</td><td></td></tr> * <tr><td>showTitle</td><td>8</td><td></td></tr> * <tr><td>useLogo</td><td>1</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:displayOptions */ public static final int ActionBar_displayOptions=10; /** * <p> * @attr description * Specifies the drawable used for item dividers. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:divider */ public static final int ActionBar_divider=11; /** * <p> * @attr description * Elevation for the action bar itself * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:elevation */ public static final int ActionBar_elevation=12; /** * <p> * @attr description * Specifies a fixed height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:height */ public static final int ActionBar_height=13; /** * <p> * @attr description * Set true to hide the action bar on a vertical nested scroll of content. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll=14; /** * <p> * @attr description * Up navigation glyph * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator=15; /** * <p> * @attr description * Specifies a layout to use for the "home" section of the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:homeLayout */ public static final int ActionBar_homeLayout=16; /** * <p> * @attr description * Specifies the drawable used for the application icon. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:icon */ public static final int ActionBar_icon=17; /** * <p> * @attr description * Specifies a style resource to use for an indeterminate progress spinner. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle=18; /** * <p> * @attr description * Specifies padding that should be applied to the left and right sides of * system-provided items in the bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:itemPadding */ public static final int ActionBar_itemPadding=19; /** * <p> * @attr description * Specifies the drawable used for the application logo. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:logo */ public static final int ActionBar_logo=20; /** * <p> * @attr description * The type of navigation to use. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>listMode</td><td>1</td><td>The action bar will use a selection list for navigation.</td></tr> * <tr><td>normal</td><td>0</td><td>Normal static title text</td></tr> * <tr><td>tabMode</td><td>2</td><td>The action bar will use a series of horizontal tabs for navigation.</td></tr> * </table> * * @attr name org.changeip.seoul.malin:navigationMode */ public static final int ActionBar_navigationMode=21; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:popupTheme */ public static final int ActionBar_popupTheme=22; /** * <p> * @attr description * Specifies the horizontal padding on either end for an embedded progress bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:progressBarPadding */ public static final int ActionBar_progressBarPadding=23; /** * <p> * @attr description * Specifies a style resource to use for an embedded progress bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:progressBarStyle */ public static final int ActionBar_progressBarStyle=24; /** * <p> * @attr description * Specifies subtitle text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:subtitle */ public static final int ActionBar_subtitle=25; /** * <p> * @attr description * Specifies a style to use for subtitle text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle=26; /** * <p> * @attr description * Specifies title text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:title */ public static final int ActionBar_title=27; /** * <p> * @attr description * Specifies a style to use for title text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:titleTextStyle */ public static final int ActionBar_titleTextStyle=28; /** * Attributes that can be used with a ActionBarLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> * </table> * @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout={ 0x010100b3 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #ActionBarLayout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity=0; /** * Attributes that can be used with a ActionMenuItemView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> * </table> * @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView={ 0x0101013f }; /** * <p>This symbol is the offset where the {@link android.R.attr#minWidth} * attribute's value can be found in the {@link #ActionMenuItemView} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth=0; public static final int[] ActionMenuView={ }; /** * Attributes that can be used with a ActionMode. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActionMode_background org.changeip.seoul.malin:background}</code></td><td>Specifies a background drawable for the action bar.</td></tr> * <tr><td><code>{@link #ActionMode_backgroundSplit org.changeip.seoul.malin:backgroundSplit}</code></td><td>Specifies a background drawable for the bottom component of a split action bar.</td></tr> * <tr><td><code>{@link #ActionMode_closeItemLayout org.changeip.seoul.malin:closeItemLayout}</code></td><td>Specifies a layout to use for the "close" item at the starting edge.</td></tr> * <tr><td><code>{@link #ActionMode_height org.changeip.seoul.malin:height}</code></td><td></td></tr> * <tr><td><code>{@link #ActionMode_subtitleTextStyle org.changeip.seoul.malin:subtitleTextStyle}</code></td><td>Specifies a style to use for subtitle text.</td></tr> * <tr><td><code>{@link #ActionMode_titleTextStyle org.changeip.seoul.malin:titleTextStyle}</code></td><td>Specifies a style to use for title text.</td></tr> * </table> * @see #ActionMode_background * @see #ActionMode_backgroundSplit * @see #ActionMode_closeItemLayout * @see #ActionMode_height * @see #ActionMode_subtitleTextStyle * @see #ActionMode_titleTextStyle */ public static final int[] ActionMode={ 0x7f020031, 0x7f020032, 0x7f02004a, 0x7f020087, 0x7f02010f, 0x7f020133 }; /** * <p> * @attr description * Specifies a background for the action mode bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:background */ public static final int ActionMode_background=0; /** * <p> * @attr description * Specifies a background for the split action mode bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:backgroundSplit */ public static final int ActionMode_backgroundSplit=1; /** * <p> * @attr description * Specifies a layout to use for the "close" item at the starting edge. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:closeItemLayout */ public static final int ActionMode_closeItemLayout=2; /** * <p> * @attr description * Specifies a fixed height for the action mode bar. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:height */ public static final int ActionMode_height=3; /** * <p> * @attr description * Specifies a style to use for subtitle text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle=4; /** * <p> * @attr description * Specifies a style to use for title text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:titleTextStyle */ public static final int ActionMode_titleTextStyle=5; /** * Attributes that can be used with a ActivityChooserView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable org.changeip.seoul.malin:expandActivityOverflowButtonDrawable}</code></td><td>The drawable to show in the button for expanding the activities overflow popup.</td></tr> * <tr><td><code>{@link #ActivityChooserView_initialActivityCount org.changeip.seoul.malin:initialActivityCount}</code></td><td>The maximal number of items initially shown in the activity list.</td></tr> * </table> * @see #ActivityChooserView_expandActivityOverflowButtonDrawable * @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView={ 0x7f020078, 0x7f020091 }; /** * <p> * @attr description * The drawable to show in the button for expanding the activities overflow popup. * <strong>Note:</strong> Clients would like to set this drawable * as a clue about the action the chosen activity will perform. For * example, if share activity is to be chosen the drawable should * give a clue that sharing is to be performed. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; /** * <p> * @attr description * The maximal number of items initially shown in the activity list. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount=1; /** * Attributes that can be used with a AlertDialog. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_buttonIconDimen org.changeip.seoul.malin:buttonIconDimen}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout org.changeip.seoul.malin:buttonPanelSideLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listItemLayout org.changeip.seoul.malin:listItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_listLayout org.changeip.seoul.malin:listLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout org.changeip.seoul.malin:multiChoiceItemLayout}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_showTitle org.changeip.seoul.malin:showTitle}</code></td><td></td></tr> * <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout org.changeip.seoul.malin:singleChoiceItemLayout}</code></td><td></td></tr> * </table> * @see #AlertDialog_android_layout * @see #AlertDialog_buttonIconDimen * @see #AlertDialog_buttonPanelSideLayout * @see #AlertDialog_listItemLayout * @see #AlertDialog_listLayout * @see #AlertDialog_multiChoiceItemLayout * @see #AlertDialog_showTitle * @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog={ 0x010100f2, 0x7f020040, 0x7f020041, 0x7f0200d2, 0x7f0200d3, 0x7f0200df, 0x7f020101, 0x7f020102 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int AlertDialog_android_layout=0; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#buttonIconDimen} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:buttonIconDimen */ public static final int AlertDialog_buttonIconDimen=1; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#buttonPanelSideLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout=2; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#listItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:listItemLayout */ public static final int AlertDialog_listItemLayout=3; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#listLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:listLayout */ public static final int AlertDialog_listLayout=4; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#multiChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout=5; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#showTitle} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:showTitle */ public static final int AlertDialog_showTitle=6; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#singleChoiceItemLayout} * attribute's value can be found in the {@link #AlertDialog} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout=7; /** * Attributes that can be used with a AnimatedStateListDrawableCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_dither android:dither}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_variablePadding android:variablePadding}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_constantSize android:constantSize}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableCompat_android_dither * @see #AnimatedStateListDrawableCompat_android_visible * @see #AnimatedStateListDrawableCompat_android_variablePadding * @see #AnimatedStateListDrawableCompat_android_constantSize * @see #AnimatedStateListDrawableCompat_android_enterFadeDuration * @see #AnimatedStateListDrawableCompat_android_exitFadeDuration */ public static final int[] AnimatedStateListDrawableCompat={ 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** * <p> * @attr description * Enables or disables dithering of the bitmap if the bitmap does not have the * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with * an RGB 565 screen). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:dither */ public static final int AnimatedStateListDrawableCompat_android_dither=0; /** * <p> * @attr description * Indicates whether the drawable should be initially visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int AnimatedStateListDrawableCompat_android_visible=1; /** * <p> * @attr description * If true, allows the drawable's padding to change based on the * current state that is selected. If false, the padding will * stay the same (based on the maximum padding of all the states). * Enabling this feature requires that the owner of the drawable * deal with performing layout when the state changes, which is * often not supported. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:variablePadding */ public static final int AnimatedStateListDrawableCompat_android_variablePadding=2; /** * <p> * @attr description * If true, the drawable's reported internal size will remain * constant as the state changes; the size is the maximum of all * of the states. If false, the size will vary based on the * current state. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:constantSize */ public static final int AnimatedStateListDrawableCompat_android_constantSize=3; /** * <p> * @attr description * Amount of time (in milliseconds) to fade in a new state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:enterFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration=4; /** * <p> * @attr description * Amount of time (in milliseconds) to fade out an old state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:exitFadeDuration */ public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration=5; /** * Attributes that can be used with a AnimatedStateListDrawableItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableItem_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableItem_android_id * @see #AnimatedStateListDrawableItem_android_drawable */ public static final int[] AnimatedStateListDrawableItem={ 0x010100d0, 0x01010199 }; /** * <p> * @attr description * Keyframe identifier for use in specifying transitions. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int AnimatedStateListDrawableItem_android_id=0; /** * <p> * @attr description * Reference to a drawable resource to use for the frame. If not * given, the drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int AnimatedStateListDrawableItem_android_drawable=1; /** * Attributes that can be used with a AnimatedStateListDrawableTransition. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_drawable android:drawable}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_toId android:toId}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_fromId android:fromId}</code></td><td></td></tr> * <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_reversible android:reversible}</code></td><td></td></tr> * </table> * @see #AnimatedStateListDrawableTransition_android_drawable * @see #AnimatedStateListDrawableTransition_android_toId * @see #AnimatedStateListDrawableTransition_android_fromId * @see #AnimatedStateListDrawableTransition_android_reversible */ public static final int[] AnimatedStateListDrawableTransition={ 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }; /** * <p> * @attr description * Reference to a animation drawable resource to use for the frame. If not * given, the animation drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int AnimatedStateListDrawableTransition_android_drawable=0; /** * <p> * @attr description * Keyframe identifier for the ending state. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:toId */ public static final int AnimatedStateListDrawableTransition_android_toId=1; /** * <p> * @attr description * Keyframe identifier for the starting state. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:fromId */ public static final int AnimatedStateListDrawableTransition_android_fromId=2; /** * <p> * @attr description * Whether this transition is reversible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:reversible */ public static final int AnimatedStateListDrawableTransition_android_reversible=3; /** * Attributes that can be used with a 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 org.changeip.seoul.malin:srcCompat}</code></td><td>Sets a drawable as the content of this ImageView.</td></tr> * <tr><td><code>{@link #AppCompatImageView_tint org.changeip.seoul.malin:tint}</code></td><td>Tint to apply to the image source.</td></tr> * <tr><td><code>{@link #AppCompatImageView_tintMode org.changeip.seoul.malin:tintMode}</code></td><td>Blending mode used to apply the image source tint.</td></tr> * </table> * @see #AppCompatImageView_android_src * @see #AppCompatImageView_srcCompat * @see #AppCompatImageView_tint * @see #AppCompatImageView_tintMode */ public static final int[] AppCompatImageView={ 0x01010119, 0x7f020107, 0x7f020128, 0x7f020129 }; /** * <p>This symbol is the offset where the {@link android.R.attr#src} * attribute's value can be found in the {@link #AppCompatImageView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:src */ public static final int AppCompatImageView_android_src=0; /** * <p> * @attr description * Sets a drawable as the content of this ImageView. Allows the use of vector drawable * when running on older versions of the platform. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:srcCompat */ public static final int AppCompatImageView_srcCompat=1; /** * <p> * @attr description * Tint to apply to the image source. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:tint */ public static final int AppCompatImageView_tint=2; /** * <p> * @attr description * Blending mode used to apply the image source tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name org.changeip.seoul.malin: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 org.changeip.seoul.malin:tickMark}</code></td><td>Drawable displayed at each progress position on a seekbar.</td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint org.changeip.seoul.malin:tickMarkTint}</code></td><td>Tint to apply to the tick mark drawable.</td></tr> * <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode org.changeip.seoul.malin:tickMarkTintMode}</code></td><td>Blending mode used to apply the tick mark tint.</td></tr> * </table> * @see #AppCompatSeekBar_android_thumb * @see #AppCompatSeekBar_tickMark * @see #AppCompatSeekBar_tickMarkTint * @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar={ 0x01010142, 0x7f020125, 0x7f020126, 0x7f020127 }; /** * <p>This symbol is the offset where the {@link android.R.attr#thumb} * attribute's value can be found in the {@link #AppCompatSeekBar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb=0; /** * <p> * @attr description * Drawable displayed at each progress position on a seekbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:tickMark */ public static final int AppCompatSeekBar_tickMark=1; /** * <p> * @attr description * Tint to apply to the tick mark drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint=2; /** * <p> * @attr description * Blending mode used to apply the tick mark tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name org.changeip.seoul.malin:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode=3; /** * Attributes that can be used with a AppCompatTextHelper. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> * </table> * @see #AppCompatTextHelper_android_textAppearance * @see #AppCompatTextHelper_android_drawableTop * @see #AppCompatTextHelper_android_drawableBottom * @see #AppCompatTextHelper_android_drawableLeft * @see #AppCompatTextHelper_android_drawableRight * @see #AppCompatTextHelper_android_drawableStart * @see #AppCompatTextHelper_android_drawableEnd */ public static final int[] AppCompatTextHelper={ 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance=0; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableTop} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop=1; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom=2; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft=3; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableRight} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight=4; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableStart} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart=5; /** * <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} * attribute's value can be found in the {@link #AppCompatTextHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd=6; /** * Attributes that can be used with a AppCompatTextView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize org.changeip.seoul.malin:autoSizeMaxTextSize}</code></td><td>The maximum text size constraint to be used when auto-sizing text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize org.changeip.seoul.malin:autoSizeMinTextSize}</code></td><td>The minimum text size constraint to be used when auto-sizing text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes org.changeip.seoul.malin:autoSizePresetSizes}</code></td><td>Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity org.changeip.seoul.malin:autoSizeStepGranularity}</code></td><td>Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>.</td></tr> * <tr><td><code>{@link #AppCompatTextView_autoSizeTextType org.changeip.seoul.malin:autoSizeTextType}</code></td><td>Specify the type of auto-size.</td></tr> * <tr><td><code>{@link #AppCompatTextView_firstBaselineToTopHeight org.changeip.seoul.malin:firstBaselineToTopHeight}</code></td><td>Distance from the top of the TextView to the first text baseline.</td></tr> * <tr><td><code>{@link #AppCompatTextView_fontFamily org.changeip.seoul.malin:fontFamily}</code></td><td>The attribute for the font family.</td></tr> * <tr><td><code>{@link #AppCompatTextView_lastBaselineToBottomHeight org.changeip.seoul.malin:lastBaselineToBottomHeight}</code></td><td>Distance from the bottom of the TextView to the last text baseline.</td></tr> * <tr><td><code>{@link #AppCompatTextView_lineHeight org.changeip.seoul.malin:lineHeight}</code></td><td>Explicit height between lines of text.</td></tr> * <tr><td><code>{@link #AppCompatTextView_textAllCaps org.changeip.seoul.malin:textAllCaps}</code></td><td>Present the text in ALL CAPS.</td></tr> * </table> * @see #AppCompatTextView_android_textAppearance * @see #AppCompatTextView_autoSizeMaxTextSize * @see #AppCompatTextView_autoSizeMinTextSize * @see #AppCompatTextView_autoSizePresetSizes * @see #AppCompatTextView_autoSizeStepGranularity * @see #AppCompatTextView_autoSizeTextType * @see #AppCompatTextView_firstBaselineToTopHeight * @see #AppCompatTextView_fontFamily * @see #AppCompatTextView_lastBaselineToBottomHeight * @see #AppCompatTextView_lineHeight * @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView={ 0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f020079, 0x7f02007b, 0x7f020095, 0x7f0200cf, 0x7f020115 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textAppearance} * attribute's value can be found in the {@link #AppCompatTextView} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance=0; /** * <p> * @attr description * The maximum text size constraint to be used when auto-sizing text. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize=1; /** * <p> * @attr description * The minimum text size constraint to be used when auto-sizing text. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize=2; /** * <p> * @attr description * Resource array of dimensions to be used in conjunction with * <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides * <code>autoSizeStepGranularity</code> if set. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes=3; /** * <p> * @attr description * Specify the auto-size step size if <code>autoSizeTextType</code> is set to * <code>uniform</code>. The default is 1px. Overwrites * <code>autoSizePresetSizes</code> if set. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity=4; /** * <p> * @attr description * Specify the type of auto-size. Note that this feature is not supported by EditText, * works only for TextView. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>none</td><td>0</td><td>No auto-sizing (default).</td></tr> * <tr><td>uniform</td><td>1</td><td>Uniform horizontal and vertical text size scaling to fit within the * container.</td></tr> * </table> * * @attr name org.changeip.seoul.malin:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType=5; /** * <p> * @attr description * Distance from the top of the TextView to the first text baseline. If set, this * overrides the value set for paddingTop. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:firstBaselineToTopHeight */ public static final int AppCompatTextView_firstBaselineToTopHeight=6; /** * <p> * @attr description * The attribute for the font family. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:fontFamily */ public static final int AppCompatTextView_fontFamily=7; /** * <p> * @attr description * Distance from the bottom of the TextView to the last text baseline. If set, this * overrides the value set for paddingBottom. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:lastBaselineToBottomHeight */ public static final int AppCompatTextView_lastBaselineToBottomHeight=8; /** * <p> * @attr description * Explicit height between lines of text. If set, this will override the values set * for lineSpacingExtra and lineSpacingMultiplier. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:lineHeight */ public static final int AppCompatTextView_lineHeight=9; /** * <p> * @attr description * Present the text in ALL CAPS. This may use a small-caps form when available. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:textAllCaps */ public static final int AppCompatTextView_textAllCaps=10; /** * Attributes that can be used with a AppCompatTheme. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarDivider org.changeip.seoul.malin:actionBarDivider}</code></td><td>Custom divider drawable to use for elements in the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground org.changeip.seoul.malin:actionBarItemBackground}</code></td><td>Custom item state list drawable background for action bar items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme org.changeip.seoul.malin:actionBarPopupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSize org.changeip.seoul.malin:actionBarSize}</code></td><td>Size of the Action Bar, including the contextual * bar used to present Action Modes.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle org.changeip.seoul.malin:actionBarSplitStyle}</code></td><td>Reference to a style for the split Action Bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarStyle org.changeip.seoul.malin:actionBarStyle}</code></td><td>Reference to a style for the Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle org.changeip.seoul.malin:actionBarTabBarStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle org.changeip.seoul.malin:actionBarTabStyle}</code></td><td>Default style for tabs within an action bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle org.changeip.seoul.malin:actionBarTabTextStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarTheme org.changeip.seoul.malin:actionBarTheme}</code></td><td>Reference to a theme that should be used to inflate the * action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme org.changeip.seoul.malin:actionBarWidgetTheme}</code></td><td>Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionButtonStyle org.changeip.seoul.malin:actionButtonStyle}</code></td><td>Default action button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle org.changeip.seoul.malin:actionDropDownStyle}</code></td><td>Default ActionBar dropdown style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance org.changeip.seoul.malin:actionMenuTextAppearance}</code></td><td>TextAppearance style that will be applied to text that * appears within action menu items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor org.changeip.seoul.malin:actionMenuTextColor}</code></td><td>Color for text that appears within action menu items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeBackground org.changeip.seoul.malin:actionModeBackground}</code></td><td>Background drawable to use for action mode UI</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle org.changeip.seoul.malin:actionModeCloseButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable org.changeip.seoul.malin:actionModeCloseDrawable}</code></td><td>Drawable to use for the close action mode button</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable org.changeip.seoul.malin:actionModeCopyDrawable}</code></td><td>Drawable to use for the Copy action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable org.changeip.seoul.malin:actionModeCutDrawable}</code></td><td>Drawable to use for the Cut action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable org.changeip.seoul.malin:actionModeFindDrawable}</code></td><td>Drawable to use for the Find action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable org.changeip.seoul.malin:actionModePasteDrawable}</code></td><td>Drawable to use for the Paste action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle org.changeip.seoul.malin:actionModePopupWindowStyle}</code></td><td>PopupWindow style to use for action modes when showing as a window overlay.</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable org.changeip.seoul.malin:actionModeSelectAllDrawable}</code></td><td>Drawable to use for the Select all action button in Contextual Action Bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable org.changeip.seoul.malin:actionModeShareDrawable}</code></td><td>Drawable to use for the Share action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground org.changeip.seoul.malin:actionModeSplitBackground}</code></td><td>Background drawable to use for action mode UI in the lower split bar</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeStyle org.changeip.seoul.malin:actionModeStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable org.changeip.seoul.malin:actionModeWebSearchDrawable}</code></td><td>Drawable to use for the Web Search action button in WebView selection action modes</td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle org.changeip.seoul.malin:actionOverflowButtonStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle org.changeip.seoul.malin:actionOverflowMenuStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle org.changeip.seoul.malin:activityChooserViewStyle}</code></td><td>Default ActivityChooserView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle org.changeip.seoul.malin:alertDialogButtonGroupStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons org.changeip.seoul.malin:alertDialogCenterButtons}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogStyle org.changeip.seoul.malin:alertDialogStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_alertDialogTheme org.changeip.seoul.malin:alertDialogTheme}</code></td><td>Theme to use for alert dialogs spawned from this theme.</td></tr> * <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle org.changeip.seoul.malin:autoCompleteTextViewStyle}</code></td><td>Default AutoCompleteTextView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle org.changeip.seoul.malin:borderlessButtonStyle}</code></td><td>Style for buttons without an explicit border, often used in groups.</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle org.changeip.seoul.malin:buttonBarButtonStyle}</code></td><td>Style for buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle org.changeip.seoul.malin:buttonBarNegativeButtonStyle}</code></td><td>Style for the "negative" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle org.changeip.seoul.malin:buttonBarNeutralButtonStyle}</code></td><td>Style for the "neutral" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle org.changeip.seoul.malin:buttonBarPositiveButtonStyle}</code></td><td>Style for the "positive" buttons within button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonBarStyle org.changeip.seoul.malin:buttonBarStyle}</code></td><td>Style for button bars</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyle org.changeip.seoul.malin:buttonStyle}</code></td><td>Normal Button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall org.changeip.seoul.malin:buttonStyleSmall}</code></td><td>Small Button style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_checkboxStyle org.changeip.seoul.malin:checkboxStyle}</code></td><td>Default Checkbox style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle org.changeip.seoul.malin:checkedTextViewStyle}</code></td><td>Default CheckedTextView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorAccent org.changeip.seoul.malin:colorAccent}</code></td><td>Bright complement to the primary branding color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating org.changeip.seoul.malin:colorBackgroundFloating}</code></td><td>Default color of background imagery for floating components, ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorButtonNormal org.changeip.seoul.malin:colorButtonNormal}</code></td><td>The color applied to framework buttons in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlActivated org.changeip.seoul.malin:colorControlActivated}</code></td><td>The color applied to framework controls in their activated (ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlHighlight org.changeip.seoul.malin:colorControlHighlight}</code></td><td>The color applied to framework control highlights (ex.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorControlNormal org.changeip.seoul.malin:colorControlNormal}</code></td><td>The color applied to framework controls in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorError org.changeip.seoul.malin:colorError}</code></td><td>Color used for error states and things that need to be drawn to * the user's attention.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimary org.changeip.seoul.malin:colorPrimary}</code></td><td>The primary branding color for the app.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark org.changeip.seoul.malin:colorPrimaryDark}</code></td><td>Dark variant of the primary branding color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal org.changeip.seoul.malin:colorSwitchThumbNormal}</code></td><td>The color applied to framework switch thumbs in their normal state.</td></tr> * <tr><td><code>{@link #AppCompatTheme_controlBackground org.changeip.seoul.malin:controlBackground}</code></td><td>The background used by framework controls.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogCornerRadius org.changeip.seoul.malin:dialogCornerRadius}</code></td><td>Preferred corner radius of dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding org.changeip.seoul.malin:dialogPreferredPadding}</code></td><td>Preferred padding for dialog content.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dialogTheme org.changeip.seoul.malin:dialogTheme}</code></td><td>Theme to use for dialogs spawned from this theme.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerHorizontal org.changeip.seoul.malin:dividerHorizontal}</code></td><td>A drawable that may be used as a horizontal divider between visual elements.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dividerVertical org.changeip.seoul.malin:dividerVertical}</code></td><td>A drawable that may be used as a vertical divider between visual elements.</td></tr> * <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle org.changeip.seoul.malin:dropDownListViewStyle}</code></td><td>ListPopupWindow compatibility</td></tr> * <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight org.changeip.seoul.malin:dropdownListPreferredItemHeight}</code></td><td>The preferred item height for dropdown lists.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextBackground org.changeip.seoul.malin:editTextBackground}</code></td><td>EditText background drawable.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextColor org.changeip.seoul.malin:editTextColor}</code></td><td>EditText text foreground color.</td></tr> * <tr><td><code>{@link #AppCompatTheme_editTextStyle org.changeip.seoul.malin:editTextStyle}</code></td><td>Default EditText style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator org.changeip.seoul.malin:homeAsUpIndicator}</code></td><td>Specifies a drawable to use for the 'home as up' indicator.</td></tr> * <tr><td><code>{@link #AppCompatTheme_imageButtonStyle org.changeip.seoul.malin:imageButtonStyle}</code></td><td>ImageButton background drawable.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator org.changeip.seoul.malin:listChoiceBackgroundIndicator}</code></td><td>Drawable used as a background for selected list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog org.changeip.seoul.malin:listDividerAlertDialog}</code></td><td>The list divider used in alert dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle org.changeip.seoul.malin:listMenuViewStyle}</code></td><td>Default menu-style ListView style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle org.changeip.seoul.malin:listPopupWindowStyle}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight org.changeip.seoul.malin:listPreferredItemHeight}</code></td><td>The preferred list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge org.changeip.seoul.malin:listPreferredItemHeightLarge}</code></td><td>A larger, more robust list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall org.changeip.seoul.malin:listPreferredItemHeightSmall}</code></td><td>A smaller, sleeker list item height.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft org.changeip.seoul.malin:listPreferredItemPaddingLeft}</code></td><td>The preferred padding along the left edge of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight org.changeip.seoul.malin:listPreferredItemPaddingRight}</code></td><td>The preferred padding along the right edge of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelBackground org.changeip.seoul.malin:panelBackground}</code></td><td>The background of a panel when it is inset from the left and right edges of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme org.changeip.seoul.malin:panelMenuListTheme}</code></td><td>Default Panel Menu style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth org.changeip.seoul.malin:panelMenuListWidth}</code></td><td>Default Panel Menu width.</td></tr> * <tr><td><code>{@link #AppCompatTheme_popupMenuStyle org.changeip.seoul.malin:popupMenuStyle}</code></td><td>Default PopupMenu style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_popupWindowStyle org.changeip.seoul.malin:popupWindowStyle}</code></td><td>Default PopupWindow style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_radioButtonStyle org.changeip.seoul.malin:radioButtonStyle}</code></td><td>Default RadioButton style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyle org.changeip.seoul.malin:ratingBarStyle}</code></td><td>Default RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator org.changeip.seoul.malin:ratingBarStyleIndicator}</code></td><td>Indicator RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall org.changeip.seoul.malin:ratingBarStyleSmall}</code></td><td>Small indicator RatingBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_searchViewStyle org.changeip.seoul.malin:searchViewStyle}</code></td><td>Style for the search query widget.</td></tr> * <tr><td><code>{@link #AppCompatTheme_seekBarStyle org.changeip.seoul.malin:seekBarStyle}</code></td><td>Default SeekBar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackground org.changeip.seoul.malin:selectableItemBackground}</code></td><td>A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges.</td></tr> * <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless org.changeip.seoul.malin:selectableItemBackgroundBorderless}</code></td><td>Background drawable for borderless standalone items that need focus/pressed states.</td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle org.changeip.seoul.malin:spinnerDropDownItemStyle}</code></td><td>Default Spinner style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_spinnerStyle org.changeip.seoul.malin:spinnerStyle}</code></td><td>Default Spinner style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_switchStyle org.changeip.seoul.malin:switchStyle}</code></td><td>Default style for the Switch widget.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu org.changeip.seoul.malin:textAppearanceLargePopupMenu}</code></td><td>Text color, typeface, size, and style for the text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem org.changeip.seoul.malin:textAppearanceListItem}</code></td><td>The preferred TextAppearance for the primary text of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary org.changeip.seoul.malin:textAppearanceListItemSecondary}</code></td><td>The preferred TextAppearance for the secondary text of list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall org.changeip.seoul.malin:textAppearanceListItemSmall}</code></td><td>The preferred TextAppearance for the primary text of small list items.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader org.changeip.seoul.malin:textAppearancePopupMenuHeader}</code></td><td>Text color, typeface, size, and style for header text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle org.changeip.seoul.malin:textAppearanceSearchResultSubtitle}</code></td><td>Text color, typeface, size, and style for system search result subtitle.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle org.changeip.seoul.malin:textAppearanceSearchResultTitle}</code></td><td>Text color, typeface, size, and style for system search result title.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu org.changeip.seoul.malin:textAppearanceSmallPopupMenu}</code></td><td>Text color, typeface, size, and style for small text inside of a popup menu.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem org.changeip.seoul.malin:textColorAlertDialogListItem}</code></td><td>Color of list item text in alert dialogs.</td></tr> * <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl org.changeip.seoul.malin:textColorSearchUrl}</code></td><td>Text color for urls in search suggestions, used by things like global search</td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle org.changeip.seoul.malin:toolbarNavigationButtonStyle}</code></td><td>Default Toolar NavigationButtonStyle</td></tr> * <tr><td><code>{@link #AppCompatTheme_toolbarStyle org.changeip.seoul.malin:toolbarStyle}</code></td><td>Default Toolbar style.</td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor org.changeip.seoul.malin:tooltipForegroundColor}</code></td><td>Foreground color to use for tooltips</td></tr> * <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground org.changeip.seoul.malin:tooltipFrameBackground}</code></td><td>Background to use for tooltips</td></tr> * <tr><td><code>{@link #AppCompatTheme_viewInflaterClass org.changeip.seoul.malin:viewInflaterClass}</code></td><td></td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBar org.changeip.seoul.malin:windowActionBar}</code></td><td>Flag indicating whether this window should have an Action Bar * in place of the usual title bar.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay org.changeip.seoul.malin:windowActionBarOverlay}</code></td><td>Flag indicating whether this window's Action Bar should overlay * application content.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay org.changeip.seoul.malin:windowActionModeOverlay}</code></td><td>Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar).</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor org.changeip.seoul.malin:windowFixedHeightMajor}</code></td><td>A fixed height for the window along the major axis of the screen, * that is, when in portrait.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor org.changeip.seoul.malin:windowFixedHeightMinor}</code></td><td>A fixed height for the window along the minor axis of the screen, * that is, when in landscape.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor org.changeip.seoul.malin:windowFixedWidthMajor}</code></td><td>A fixed width for the window along the major axis of the screen, * that is, when in landscape.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor org.changeip.seoul.malin:windowFixedWidthMinor}</code></td><td>A fixed width for the window along the minor axis of the screen, * that is, when in portrait.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor org.changeip.seoul.malin:windowMinWidthMajor}</code></td><td>The minimum width the window is allowed to be, along the major * axis of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor org.changeip.seoul.malin:windowMinWidthMinor}</code></td><td>The minimum width the window is allowed to be, along the minor * axis of the screen.</td></tr> * <tr><td><code>{@link #AppCompatTheme_windowNoTitle org.changeip.seoul.malin:windowNoTitle}</code></td><td>Flag indicating whether there should be no title on this window.</td></tr> * </table> * @see #AppCompatTheme_android_windowIsFloating * @see #AppCompatTheme_android_windowAnimationStyle * @see #AppCompatTheme_actionBarDivider * @see #AppCompatTheme_actionBarItemBackground * @see #AppCompatTheme_actionBarPopupTheme * @see #AppCompatTheme_actionBarSize * @see #AppCompatTheme_actionBarSplitStyle * @see #AppCompatTheme_actionBarStyle * @see #AppCompatTheme_actionBarTabBarStyle * @see #AppCompatTheme_actionBarTabStyle * @see #AppCompatTheme_actionBarTabTextStyle * @see #AppCompatTheme_actionBarTheme * @see #AppCompatTheme_actionBarWidgetTheme * @see #AppCompatTheme_actionButtonStyle * @see #AppCompatTheme_actionDropDownStyle * @see #AppCompatTheme_actionMenuTextAppearance * @see #AppCompatTheme_actionMenuTextColor * @see #AppCompatTheme_actionModeBackground * @see #AppCompatTheme_actionModeCloseButtonStyle * @see #AppCompatTheme_actionModeCloseDrawable * @see #AppCompatTheme_actionModeCopyDrawable * @see #AppCompatTheme_actionModeCutDrawable * @see #AppCompatTheme_actionModeFindDrawable * @see #AppCompatTheme_actionModePasteDrawable * @see #AppCompatTheme_actionModePopupWindowStyle * @see #AppCompatTheme_actionModeSelectAllDrawable * @see #AppCompatTheme_actionModeShareDrawable * @see #AppCompatTheme_actionModeSplitBackground * @see #AppCompatTheme_actionModeStyle * @see #AppCompatTheme_actionModeWebSearchDrawable * @see #AppCompatTheme_actionOverflowButtonStyle * @see #AppCompatTheme_actionOverflowMenuStyle * @see #AppCompatTheme_activityChooserViewStyle * @see #AppCompatTheme_alertDialogButtonGroupStyle * @see #AppCompatTheme_alertDialogCenterButtons * @see #AppCompatTheme_alertDialogStyle * @see #AppCompatTheme_alertDialogTheme * @see #AppCompatTheme_autoCompleteTextViewStyle * @see #AppCompatTheme_borderlessButtonStyle * @see #AppCompatTheme_buttonBarButtonStyle * @see #AppCompatTheme_buttonBarNegativeButtonStyle * @see #AppCompatTheme_buttonBarNeutralButtonStyle * @see #AppCompatTheme_buttonBarPositiveButtonStyle * @see #AppCompatTheme_buttonBarStyle * @see #AppCompatTheme_buttonStyle * @see #AppCompatTheme_buttonStyleSmall * @see #AppCompatTheme_checkboxStyle * @see #AppCompatTheme_checkedTextViewStyle * @see #AppCompatTheme_colorAccent * @see #AppCompatTheme_colorBackgroundFloating * @see #AppCompatTheme_colorButtonNormal * @see #AppCompatTheme_colorControlActivated * @see #AppCompatTheme_colorControlHighlight * @see #AppCompatTheme_colorControlNormal * @see #AppCompatTheme_colorError * @see #AppCompatTheme_colorPrimary * @see #AppCompatTheme_colorPrimaryDark * @see #AppCompatTheme_colorSwitchThumbNormal * @see #AppCompatTheme_controlBackground * @see #AppCompatTheme_dialogCornerRadius * @see #AppCompatTheme_dialogPreferredPadding * @see #AppCompatTheme_dialogTheme * @see #AppCompatTheme_dividerHorizontal * @see #AppCompatTheme_dividerVertical * @see #AppCompatTheme_dropDownListViewStyle * @see #AppCompatTheme_dropdownListPreferredItemHeight * @see #AppCompatTheme_editTextBackground * @see #AppCompatTheme_editTextColor * @see #AppCompatTheme_editTextStyle * @see #AppCompatTheme_homeAsUpIndicator * @see #AppCompatTheme_imageButtonStyle * @see #AppCompatTheme_listChoiceBackgroundIndicator * @see #AppCompatTheme_listDividerAlertDialog * @see #AppCompatTheme_listMenuViewStyle * @see #AppCompatTheme_listPopupWindowStyle * @see #AppCompatTheme_listPreferredItemHeight * @see #AppCompatTheme_listPreferredItemHeightLarge * @see #AppCompatTheme_listPreferredItemHeightSmall * @see #AppCompatTheme_listPreferredItemPaddingLeft * @see #AppCompatTheme_listPreferredItemPaddingRight * @see #AppCompatTheme_panelBackground * @see #AppCompatTheme_panelMenuListTheme * @see #AppCompatTheme_panelMenuListWidth * @see #AppCompatTheme_popupMenuStyle * @see #AppCompatTheme_popupWindowStyle * @see #AppCompatTheme_radioButtonStyle * @see #AppCompatTheme_ratingBarStyle * @see #AppCompatTheme_ratingBarStyleIndicator * @see #AppCompatTheme_ratingBarStyleSmall * @see #AppCompatTheme_searchViewStyle * @see #AppCompatTheme_seekBarStyle * @see #AppCompatTheme_selectableItemBackground * @see #AppCompatTheme_selectableItemBackgroundBorderless * @see #AppCompatTheme_spinnerDropDownItemStyle * @see #AppCompatTheme_spinnerStyle * @see #AppCompatTheme_switchStyle * @see #AppCompatTheme_textAppearanceLargePopupMenu * @see #AppCompatTheme_textAppearanceListItem * @see #AppCompatTheme_textAppearanceListItemSecondary * @see #AppCompatTheme_textAppearanceListItemSmall * @see #AppCompatTheme_textAppearancePopupMenuHeader * @see #AppCompatTheme_textAppearanceSearchResultSubtitle * @see #AppCompatTheme_textAppearanceSearchResultTitle * @see #AppCompatTheme_textAppearanceSmallPopupMenu * @see #AppCompatTheme_textColorAlertDialogListItem * @see #AppCompatTheme_textColorSearchUrl * @see #AppCompatTheme_toolbarNavigationButtonStyle * @see #AppCompatTheme_toolbarStyle * @see #AppCompatTheme_tooltipForegroundColor * @see #AppCompatTheme_tooltipFrameBackground * @see #AppCompatTheme_viewInflaterClass * @see #AppCompatTheme_windowActionBar * @see #AppCompatTheme_windowActionBarOverlay * @see #AppCompatTheme_windowActionModeOverlay * @see #AppCompatTheme_windowFixedHeightMajor * @see #AppCompatTheme_windowFixedHeightMinor * @see #AppCompatTheme_windowFixedWidthMajor * @see #AppCompatTheme_windowFixedWidthMinor * @see #AppCompatTheme_windowMinWidthMajor * @see #AppCompatTheme_windowMinWidthMinor * @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme={ 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f020042, 0x7f020043, 0x7f020047, 0x7f020048, 0x7f02004e, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020057, 0x7f020063, 0x7f020067, 0x7f020068, 0x7f020069, 0x7f02006c, 0x7f02006e, 0x7f020071, 0x7f020072, 0x7f020073, 0x7f020074, 0x7f020075, 0x7f020089, 0x7f02008f, 0x7f0200d0, 0x7f0200d1, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8, 0x7f0200d9, 0x7f0200da, 0x7f0200e9, 0x7f0200ea, 0x7f0200eb, 0x7f0200ec, 0x7f0200ee, 0x7f0200f4, 0x7f0200f5, 0x7f0200f6, 0x7f0200f7, 0x7f0200fa, 0x7f0200fb, 0x7f0200fc, 0x7f0200fd, 0x7f020104, 0x7f020105, 0x7f020113, 0x7f020116, 0x7f020117, 0x7f020118, 0x7f020119, 0x7f02011a, 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, 0x7f02011f, 0x7f020134, 0x7f020135, 0x7f020136, 0x7f020137, 0x7f02013d, 0x7f02013f, 0x7f020140, 0x7f020141, 0x7f020142, 0x7f020143, 0x7f020144, 0x7f020145, 0x7f020146, 0x7f020147, 0x7f020148 }; /** * <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating=0; /** * <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle=1; /** * <p> * @attr description * Custom divider drawable to use for elements in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider=2; /** * <p> * @attr description * Custom item state list drawable background for action bar items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground=3; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme=4; /** * <p> * @attr description * Size of the Action Bar, including the contextual * bar used to present Action Modes. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap_content</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:actionBarSize */ public static final int AppCompatTheme_actionBarSize=5; /** * <p> * @attr description * Reference to a style for the split Action Bar. This style * controls the split component that holds the menu/action * buttons. actionBarStyle is still used for the primary * bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle=6; /** * <p> * @attr description * Reference to a style for the Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle=7; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#actionBarTabBarStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle=8; /** * <p> * @attr description * Default style for tabs within an action bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle=9; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#actionBarTabTextStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle=10; /** * <p> * @attr description * Reference to a theme that should be used to inflate the * action bar. This will be inherited by any widget inflated * into the action bar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme=11; /** * <p> * @attr description * Reference to a theme that should be used to inflate widgets * and layouts destined for the action bar. Most of the time * this will be a reference to the current theme, but when * the action bar has a significantly different contrast * profile than the rest of the activity the difference * can become important. If this is set to @null the current * theme will be used. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme=12; /** * <p> * @attr description * Default action button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle=13; /** * <p> * @attr description * Default ActionBar dropdown style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle=14; /** * <p> * @attr description * TextAppearance style that will be applied to text that * appears within action menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance=15; /** * <p> * @attr description * Color for text that appears within action menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor=16; /** * <p> * @attr description * Background drawable to use for action mode UI * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground=17; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#actionModeCloseButtonStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle=18; /** * <p> * @attr description * Drawable to use for the close action mode button * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable=19; /** * <p> * @attr description * Drawable to use for the Copy action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable=20; /** * <p> * @attr description * Drawable to use for the Cut action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable=21; /** * <p> * @attr description * Drawable to use for the Find action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable=22; /** * <p> * @attr description * Drawable to use for the Paste action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable=23; /** * <p> * @attr description * PopupWindow style to use for action modes when showing as a window overlay. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle=24; /** * <p> * @attr description * Drawable to use for the Select all action button in Contextual Action Bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable=25; /** * <p> * @attr description * Drawable to use for the Share action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable=26; /** * <p> * @attr description * Background drawable to use for action mode UI in the lower split bar * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground=27; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#actionModeStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle=28; /** * <p> * @attr description * Drawable to use for the Web Search action button in WebView selection action modes * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable=29; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#actionOverflowButtonStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle=30; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#actionOverflowMenuStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle=31; /** * <p> * @attr description * Default ActivityChooserView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle=32; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#alertDialogButtonGroupStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#alertDialogCenterButtons} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons=34; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#alertDialogStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle=35; /** * <p> * @attr description * Theme to use for alert dialogs spawned from this theme. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme=36; /** * <p> * @attr description * Default AutoCompleteTextView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle=37; /** * <p> * @attr description * Style for buttons without an explicit border, often used in groups. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle=38; /** * <p> * @attr description * Style for buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle=39; /** * <p> * @attr description * Style for the "negative" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; /** * <p> * @attr description * Style for the "neutral" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; /** * <p> * @attr description * Style for the "positive" buttons within button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; /** * <p> * @attr description * Style for button bars * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle=43; /** * <p> * @attr description * Normal Button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:buttonStyle */ public static final int AppCompatTheme_buttonStyle=44; /** * <p> * @attr description * Small Button style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall=45; /** * <p> * @attr description * Default Checkbox style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle=46; /** * <p> * @attr description * Default CheckedTextView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle=47; /** * <p> * @attr description * Bright complement to the primary branding color. By default, this is the color applied * to framework controls (via colorControlActivated). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:colorAccent */ public static final int AppCompatTheme_colorAccent=48; /** * <p> * @attr description * Default color of background imagery for floating components, ex. dialogs, popups, and cards. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating=49; /** * <p> * @attr description * The color applied to framework buttons in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal=50; /** * <p> * @attr description * The color applied to framework controls in their activated (ex. checked) state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated=51; /** * <p> * @attr description * The color applied to framework control highlights (ex. ripples, list selectors). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight=52; /** * <p> * @attr description * The color applied to framework controls in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal=53; /** * <p> * @attr description * Color used for error states and things that need to be drawn to * the user's attention. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:colorError */ public static final int AppCompatTheme_colorError=54; /** * <p> * @attr description * The primary branding color for the app. By default, this is the color applied to the * action bar background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:colorPrimary */ public static final int AppCompatTheme_colorPrimary=55; /** * <p> * @attr description * Dark variant of the primary branding color. By default, this is the color applied to * the status bar (via statusBarColor) and navigation bar (via navigationBarColor). * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark=56; /** * <p> * @attr description * The color applied to framework switch thumbs in their normal state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal=57; /** * <p> * @attr description * The background used by framework controls. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:controlBackground */ public static final int AppCompatTheme_controlBackground=58; /** * <p> * @attr description * Preferred corner radius of dialogs. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:dialogCornerRadius */ public static final int AppCompatTheme_dialogCornerRadius=59; /** * <p> * @attr description * Preferred padding for dialog content. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding=60; /** * <p> * @attr description * Theme to use for dialogs spawned from this theme. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:dialogTheme */ public static final int AppCompatTheme_dialogTheme=61; /** * <p> * @attr description * A drawable that may be used as a horizontal divider between visual elements. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal=62; /** * <p> * @attr description * A drawable that may be used as a vertical divider between visual elements. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:dividerVertical */ public static final int AppCompatTheme_dividerVertical=63; /** * <p> * @attr description * ListPopupWindow compatibility * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle=64; /** * <p> * @attr description * The preferred item height for dropdown lists. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight=65; /** * <p> * @attr description * EditText background drawable. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:editTextBackground */ public static final int AppCompatTheme_editTextBackground=66; /** * <p> * @attr description * EditText text foreground color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:editTextColor */ public static final int AppCompatTheme_editTextColor=67; /** * <p> * @attr description * Default EditText style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:editTextStyle */ public static final int AppCompatTheme_editTextStyle=68; /** * <p> * @attr description * Specifies a drawable to use for the 'home as up' indicator. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator=69; /** * <p> * @attr description * ImageButton background drawable. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle=70; /** * <p> * @attr description * Drawable used as a background for selected list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator=71; /** * <p> * @attr description * The list divider used in alert dialogs. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog=72; /** * <p> * @attr description * Default menu-style ListView style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle=73; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#listPopupWindowStyle} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle=74; /** * <p> * @attr description * The preferred list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight=75; /** * <p> * @attr description * A larger, more robust list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge=76; /** * <p> * @attr description * A smaller, sleeker list item height. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall=77; /** * <p> * @attr description * The preferred padding along the left edge of list items. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft=78; /** * <p> * @attr description * The preferred padding along the right edge of list items. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight=79; /** * <p> * @attr description * The background of a panel when it is inset from the left and right edges of the screen. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:panelBackground */ public static final int AppCompatTheme_panelBackground=80; /** * <p> * @attr description * Default Panel Menu style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme=81; /** * <p> * @attr description * Default Panel Menu width. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth=82; /** * <p> * @attr description * Default PopupMenu style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle=83; /** * <p> * @attr description * Default PopupWindow style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle=84; /** * <p> * @attr description * Default RadioButton style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle=85; /** * <p> * @attr description * Default RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle=86; /** * <p> * @attr description * Indicator RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator=87; /** * <p> * @attr description * Small indicator RatingBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall=88; /** * <p> * @attr description * Style for the search query widget. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle=89; /** * <p> * @attr description * Default SeekBar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle=90; /** * <p> * @attr description * A style that may be applied to buttons or other selectable items * that should react to pressed and focus states, but that do not * have a clear visual border along the edges. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground=91; /** * <p> * @attr description * Background drawable for borderless standalone items that need focus/pressed states. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless=92; /** * <p> * @attr description * Default Spinner style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle=93; /** * <p> * @attr description * Default Spinner style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle=94; /** * <p> * @attr description * Default style for the Switch widget. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:switchStyle */ public static final int AppCompatTheme_switchStyle=95; /** * <p> * @attr description * Text color, typeface, size, and style for the text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu=96; /** * <p> * @attr description * The preferred TextAppearance for the primary text of list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem=97; /** * <p> * @attr description * The preferred TextAppearance for the secondary text of list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary=98; /** * <p> * @attr description * The preferred TextAppearance for the primary text of small list items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall=99; /** * <p> * @attr description * Text color, typeface, size, and style for header text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader=100; /** * <p> * @attr description * Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=101; /** * <p> * @attr description * Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle=102; /** * <p> * @attr description * Text color, typeface, size, and style for small text inside of a popup menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu=103; /** * <p> * @attr description * Color of list item text in alert dialogs. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem=104; /** * <p> * @attr description * Text color for urls in search suggestions, used by things like global search * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl=105; /** * <p> * @attr description * Default Toolar NavigationButtonStyle * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle=106; /** * <p> * @attr description * Default Toolbar style. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle=107; /** * <p> * @attr description * Foreground color to use for tooltips * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor=108; /** * <p> * @attr description * Background to use for tooltips * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground=109; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#viewInflaterClass} * attribute's value can be found in the {@link #AppCompatTheme} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:viewInflaterClass */ public static final int AppCompatTheme_viewInflaterClass=110; /** * <p> * @attr description * Flag indicating whether this window should have an Action Bar * in place of the usual title bar. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:windowActionBar */ public static final int AppCompatTheme_windowActionBar=111; /** * <p> * @attr description * Flag indicating whether this window's Action Bar should overlay * application content. Does nothing if the window would not * have an Action Bar. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay=112; /** * <p> * @attr description * Flag indicating whether action modes should overlay window content * when there is not reserved space for their UI (such as an Action Bar). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay=113; /** * <p> * @attr description * A fixed height for the window along the major axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name org.changeip.seoul.malin:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor=114; /** * <p> * @attr description * A fixed height for the window along the minor axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name org.changeip.seoul.malin:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor=115; /** * <p> * @attr description * A fixed width for the window along the major axis of the screen, * that is, when in landscape. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name org.changeip.seoul.malin:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor=116; /** * <p> * @attr description * A fixed width for the window along the minor axis of the screen, * that is, when in portrait. Can be either an absolute dimension * or a fraction of the screen size in that dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name org.changeip.seoul.malin:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor=117; /** * <p> * @attr description * The minimum width the window is allowed to be, along the major * axis of the screen. That is, when in landscape. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name org.changeip.seoul.malin:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor=118; /** * <p> * @attr description * The minimum width the window is allowed to be, along the minor * axis of the screen. That is, when in portrait. Can be either * an absolute dimension or a fraction of the screen size in that * dimension. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name org.changeip.seoul.malin:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor=119; /** * <p> * @attr description * Flag indicating whether there should be no title on this window. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle=120; /** * 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 org.changeip.seoul.malin:allowStacking}</code></td><td>Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side.</td></tr> * </table> * @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout={ 0x7f020026 }; /** * <p> * @attr description * Whether to automatically stack the buttons when there is not * enough space to lay them out side-by-side. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:allowStacking */ public static final int ButtonBarLayout_allowStacking=0; /** * Attributes that can be used with a ColorStateListItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> * <tr><td><code>{@link #ColorStateListItem_alpha org.changeip.seoul.malin:alpha}</code></td><td>Alpha multiplier applied to the base color.</td></tr> * </table> * @see #ColorStateListItem_android_color * @see #ColorStateListItem_android_alpha * @see #ColorStateListItem_alpha */ public static final int[] ColorStateListItem={ 0x010101a5, 0x0101031f, 0x7f020027 }; /** * <p> * @attr description * Base color for this state. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:color */ public static final int ColorStateListItem_android_color=0; /** * <p>This symbol is the offset where the {@link android.R.attr#alpha} * attribute's value can be found in the {@link #ColorStateListItem} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:alpha */ public static final int ColorStateListItem_android_alpha=1; /** * <p> * @attr description * Alpha multiplier applied to the base color. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:alpha */ public static final int ColorStateListItem_alpha=2; /** * Attributes that can be used with a CompoundButton. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> * <tr><td><code>{@link #CompoundButton_buttonTint org.changeip.seoul.malin:buttonTint}</code></td><td>Tint to apply to the button drawable.</td></tr> * <tr><td><code>{@link #CompoundButton_buttonTintMode org.changeip.seoul.malin:buttonTintMode}</code></td><td>Blending mode used to apply the button tint.</td></tr> * </table> * @see #CompoundButton_android_button * @see #CompoundButton_buttonTint * @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton={ 0x01010107, 0x7f020044, 0x7f020045 }; /** * <p>This symbol is the offset where the {@link android.R.attr#button} * attribute's value can be found in the {@link #CompoundButton} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:button */ public static final int CompoundButton_android_button=0; /** * <p> * @attr description * Tint to apply to the button drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:buttonTint */ public static final int CompoundButton_buttonTint=1; /** * <p> * @attr description * Blending mode used to apply the button tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name org.changeip.seoul.malin:buttonTintMode */ public static final int CompoundButton_buttonTintMode=2; /** * Attributes that can be used with a ConstraintLayout_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_maxHeight android:maxHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_barrierAllowsGoneWidgets org.changeip.seoul.malin:barrierAllowsGoneWidgets}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_barrierDirection org.changeip.seoul.malin:barrierDirection}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_chainUseRtl org.changeip.seoul.malin:chainUseRtl}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_constraintSet org.changeip.seoul.malin:constraintSet}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_constraint_referenced_ids org.changeip.seoul.malin:constraint_referenced_ids}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constrainedHeight org.changeip.seoul.malin:layout_constrainedHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constrainedWidth org.changeip.seoul.malin:layout_constrainedWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator org.changeip.seoul.malin:layout_constraintBaseline_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf org.changeip.seoul.malin:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator org.changeip.seoul.malin:layout_constraintBottom_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf org.changeip.seoul.malin:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf org.changeip.seoul.malin:layout_constraintBottom_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircle org.changeip.seoul.malin:layout_constraintCircle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircleAngle org.changeip.seoul.malin:layout_constraintCircleAngle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintCircleRadius org.changeip.seoul.malin:layout_constraintCircleRadius}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio org.changeip.seoul.malin:layout_constraintDimensionRatio}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf org.changeip.seoul.malin:layout_constraintEnd_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf org.changeip.seoul.malin:layout_constraintEnd_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin org.changeip.seoul.malin:layout_constraintGuide_begin}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end org.changeip.seoul.malin:layout_constraintGuide_end}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent org.changeip.seoul.malin:layout_constraintGuide_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default org.changeip.seoul.malin:layout_constraintHeight_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max org.changeip.seoul.malin:layout_constraintHeight_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min org.changeip.seoul.malin:layout_constraintHeight_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_percent org.changeip.seoul.malin:layout_constraintHeight_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias org.changeip.seoul.malin:layout_constraintHorizontal_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle org.changeip.seoul.malin:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight org.changeip.seoul.malin:layout_constraintHorizontal_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator org.changeip.seoul.malin:layout_constraintLeft_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf org.changeip.seoul.malin:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf org.changeip.seoul.malin:layout_constraintLeft_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator org.changeip.seoul.malin:layout_constraintRight_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf org.changeip.seoul.malin:layout_constraintRight_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf org.changeip.seoul.malin:layout_constraintRight_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf org.changeip.seoul.malin:layout_constraintStart_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf org.changeip.seoul.malin:layout_constraintStart_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator org.changeip.seoul.malin:layout_constraintTop_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf org.changeip.seoul.malin:layout_constraintTop_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf org.changeip.seoul.malin:layout_constraintTop_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias org.changeip.seoul.malin:layout_constraintVertical_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle org.changeip.seoul.malin:layout_constraintVertical_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight org.changeip.seoul.malin:layout_constraintVertical_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default org.changeip.seoul.malin:layout_constraintWidth_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max org.changeip.seoul.malin:layout_constraintWidth_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min org.changeip.seoul.malin:layout_constraintWidth_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_percent org.changeip.seoul.malin:layout_constraintWidth_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX org.changeip.seoul.malin:layout_editor_absoluteX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY org.changeip.seoul.malin:layout_editor_absoluteY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom org.changeip.seoul.malin:layout_goneMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd org.changeip.seoul.malin:layout_goneMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft org.changeip.seoul.malin:layout_goneMarginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight org.changeip.seoul.malin:layout_goneMarginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart org.changeip.seoul.malin:layout_goneMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop org.changeip.seoul.malin:layout_goneMarginTop}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel org.changeip.seoul.malin:layout_optimizationLevel}</code></td><td></td></tr> * </table> * @see #ConstraintLayout_Layout_android_orientation * @see #ConstraintLayout_Layout_android_maxWidth * @see #ConstraintLayout_Layout_android_maxHeight * @see #ConstraintLayout_Layout_android_minWidth * @see #ConstraintLayout_Layout_android_minHeight * @see #ConstraintLayout_Layout_barrierAllowsGoneWidgets * @see #ConstraintLayout_Layout_barrierDirection * @see #ConstraintLayout_Layout_chainUseRtl * @see #ConstraintLayout_Layout_constraintSet * @see #ConstraintLayout_Layout_constraint_referenced_ids * @see #ConstraintLayout_Layout_layout_constrainedHeight * @see #ConstraintLayout_Layout_layout_constrainedWidth * @see #ConstraintLayout_Layout_layout_constraintBaseline_creator * @see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf * @see #ConstraintLayout_Layout_layout_constraintBottom_creator * @see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf * @see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf * @see #ConstraintLayout_Layout_layout_constraintCircle * @see #ConstraintLayout_Layout_layout_constraintCircleAngle * @see #ConstraintLayout_Layout_layout_constraintCircleRadius * @see #ConstraintLayout_Layout_layout_constraintDimensionRatio * @see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf * @see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf * @see #ConstraintLayout_Layout_layout_constraintGuide_begin * @see #ConstraintLayout_Layout_layout_constraintGuide_end * @see #ConstraintLayout_Layout_layout_constraintGuide_percent * @see #ConstraintLayout_Layout_layout_constraintHeight_default * @see #ConstraintLayout_Layout_layout_constraintHeight_max * @see #ConstraintLayout_Layout_layout_constraintHeight_min * @see #ConstraintLayout_Layout_layout_constraintHeight_percent * @see #ConstraintLayout_Layout_layout_constraintHorizontal_bias * @see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle * @see #ConstraintLayout_Layout_layout_constraintHorizontal_weight * @see #ConstraintLayout_Layout_layout_constraintLeft_creator * @see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf * @see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf * @see #ConstraintLayout_Layout_layout_constraintRight_creator * @see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf * @see #ConstraintLayout_Layout_layout_constraintRight_toRightOf * @see #ConstraintLayout_Layout_layout_constraintStart_toEndOf * @see #ConstraintLayout_Layout_layout_constraintStart_toStartOf * @see #ConstraintLayout_Layout_layout_constraintTop_creator * @see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf * @see #ConstraintLayout_Layout_layout_constraintTop_toTopOf * @see #ConstraintLayout_Layout_layout_constraintVertical_bias * @see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle * @see #ConstraintLayout_Layout_layout_constraintVertical_weight * @see #ConstraintLayout_Layout_layout_constraintWidth_default * @see #ConstraintLayout_Layout_layout_constraintWidth_max * @see #ConstraintLayout_Layout_layout_constraintWidth_min * @see #ConstraintLayout_Layout_layout_constraintWidth_percent * @see #ConstraintLayout_Layout_layout_editor_absoluteX * @see #ConstraintLayout_Layout_layout_editor_absoluteY * @see #ConstraintLayout_Layout_layout_goneMarginBottom * @see #ConstraintLayout_Layout_layout_goneMarginEnd * @see #ConstraintLayout_Layout_layout_goneMarginLeft * @see #ConstraintLayout_Layout_layout_goneMarginRight * @see #ConstraintLayout_Layout_layout_goneMarginStart * @see #ConstraintLayout_Layout_layout_goneMarginTop * @see #ConstraintLayout_Layout_layout_optimizationLevel */ public static final int[] ConstraintLayout_Layout={ 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f020037, 0x7f020038, 0x7f020046, 0x7f020059, 0x7f02005a, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1, 0x7f0200c2, 0x7f0200c4, 0x7f0200c5, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200ce }; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int ConstraintLayout_Layout_android_orientation=0; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int ConstraintLayout_Layout_android_maxWidth=1; /** * <p>This symbol is the offset where the {@link android.R.attr#maxHeight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxHeight */ public static final int ConstraintLayout_Layout_android_maxHeight=2; /** * <p>This symbol is the offset where the {@link android.R.attr#minWidth} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minWidth */ public static final int ConstraintLayout_Layout_android_minWidth=3; /** * <p>This symbol is the offset where the {@link android.R.attr#minHeight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minHeight */ public static final int ConstraintLayout_Layout_android_minHeight=4; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#barrierAllowsGoneWidgets} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:barrierAllowsGoneWidgets */ public static final int ConstraintLayout_Layout_barrierAllowsGoneWidgets=5; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#barrierDirection} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>3</td><td></td></tr> * <tr><td>end</td><td>6</td><td></td></tr> * <tr><td>left</td><td>0</td><td></td></tr> * <tr><td>right</td><td>1</td><td></td></tr> * <tr><td>start</td><td>5</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:barrierDirection */ public static final int ConstraintLayout_Layout_barrierDirection=6; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#chainUseRtl} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:chainUseRtl */ public static final int ConstraintLayout_Layout_chainUseRtl=7; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#constraintSet} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:constraintSet */ public static final int ConstraintLayout_Layout_constraintSet=8; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#constraint_referenced_ids} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:constraint_referenced_ids */ public static final int ConstraintLayout_Layout_constraint_referenced_ids=9; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constrainedHeight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:layout_constrainedHeight */ public static final int ConstraintLayout_Layout_layout_constrainedHeight=10; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constrainedWidth} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:layout_constrainedWidth */ public static final int ConstraintLayout_Layout_layout_constrainedWidth=11; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintBaseline_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintBaseline_creator */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator=12; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintBaseline_toBaselineOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf=13; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintBottom_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintBottom_creator */ public static final int ConstraintLayout_Layout_layout_constraintBottom_creator=14; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintBottom_toBottomOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintBottom_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf=15; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintBottom_toTopOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintBottom_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf=16; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintCircle} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:layout_constraintCircle */ public static final int ConstraintLayout_Layout_layout_constraintCircle=17; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintCircleAngle} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintCircleAngle */ public static final int ConstraintLayout_Layout_layout_constraintCircleAngle=18; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintCircleRadius} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_constraintCircleRadius */ public static final int ConstraintLayout_Layout_layout_constraintCircleRadius=19; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintDimensionRatio} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:layout_constraintDimensionRatio */ public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio=20; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintEnd_toEndOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintEnd_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf=21; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintEnd_toStartOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintEnd_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf=22; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintGuide_begin} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_constraintGuide_begin */ public static final int ConstraintLayout_Layout_layout_constraintGuide_begin=23; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintGuide_end} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_constraintGuide_end */ public static final int ConstraintLayout_Layout_layout_constraintGuide_end=24; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintGuide_percent} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintGuide_percent */ public static final int ConstraintLayout_Layout_layout_constraintGuide_percent=25; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHeight_default} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintHeight_default */ public static final int ConstraintLayout_Layout_layout_constraintHeight_default=26; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHeight_max} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintHeight_max */ public static final int ConstraintLayout_Layout_layout_constraintHeight_max=27; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHeight_min} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintHeight_min */ public static final int ConstraintLayout_Layout_layout_constraintHeight_min=28; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHeight_percent} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintHeight_percent */ public static final int ConstraintLayout_Layout_layout_constraintHeight_percent=29; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHorizontal_bias} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintHorizontal_bias */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias=30; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHorizontal_chainStyle} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintHorizontal_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle=31; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHorizontal_weight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintHorizontal_weight */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight=32; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintLeft_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintLeft_creator */ public static final int ConstraintLayout_Layout_layout_constraintLeft_creator=33; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintLeft_toLeftOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintLeft_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf=34; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintLeft_toRightOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintLeft_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf=35; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintRight_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintRight_creator */ public static final int ConstraintLayout_Layout_layout_constraintRight_creator=36; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintRight_toLeftOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintRight_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf=37; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintRight_toRightOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintRight_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf=38; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintStart_toEndOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintStart_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf=39; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintStart_toStartOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintStart_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf=40; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintTop_creator} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintTop_creator */ public static final int ConstraintLayout_Layout_layout_constraintTop_creator=41; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintTop_toBottomOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintTop_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf=42; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintTop_toTopOf} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintTop_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf=43; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintVertical_bias} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintVertical_bias */ public static final int ConstraintLayout_Layout_layout_constraintVertical_bias=44; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintVertical_chainStyle} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintVertical_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle=45; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintVertical_weight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintVertical_weight */ public static final int ConstraintLayout_Layout_layout_constraintVertical_weight=46; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintWidth_default} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintWidth_default */ public static final int ConstraintLayout_Layout_layout_constraintWidth_default=47; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintWidth_max} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintWidth_max */ public static final int ConstraintLayout_Layout_layout_constraintWidth_max=48; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintWidth_min} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintWidth_min */ public static final int ConstraintLayout_Layout_layout_constraintWidth_min=49; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintWidth_percent} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintWidth_percent */ public static final int ConstraintLayout_Layout_layout_constraintWidth_percent=50; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_editor_absoluteX} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_editor_absoluteX */ public static final int ConstraintLayout_Layout_layout_editor_absoluteX=51; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_editor_absoluteY} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_editor_absoluteY */ public static final int ConstraintLayout_Layout_layout_editor_absoluteY=52; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginBottom} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginBottom */ public static final int ConstraintLayout_Layout_layout_goneMarginBottom=53; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginEnd} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginEnd */ public static final int ConstraintLayout_Layout_layout_goneMarginEnd=54; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginLeft} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginLeft */ public static final int ConstraintLayout_Layout_layout_goneMarginLeft=55; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginRight} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginRight */ public static final int ConstraintLayout_Layout_layout_goneMarginRight=56; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginStart} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginStart */ public static final int ConstraintLayout_Layout_layout_goneMarginStart=57; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginTop} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginTop */ public static final int ConstraintLayout_Layout_layout_goneMarginTop=58; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_optimizationLevel} * attribute's value can be found in the {@link #ConstraintLayout_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>barrier</td><td>2</td><td></td></tr> * <tr><td>chains</td><td>4</td><td></td></tr> * <tr><td>dimensions</td><td>8</td><td></td></tr> * <tr><td>direct</td><td>1</td><td>direct, barriers, chains</td></tr> * <tr><td>groups</td><td>20</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>standard</td><td>7</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_optimizationLevel */ public static final int ConstraintLayout_Layout_layout_optimizationLevel=59; /** * Attributes that can be used with a ConstraintLayout_placeholder. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ConstraintLayout_placeholder_content org.changeip.seoul.malin:content}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintLayout_placeholder_emptyVisibility org.changeip.seoul.malin:emptyVisibility}</code></td><td></td></tr> * </table> * @see #ConstraintLayout_placeholder_content * @see #ConstraintLayout_placeholder_emptyVisibility */ public static final int[] ConstraintLayout_placeholder={ 0x7f02005b, 0x7f020077 }; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#content} * attribute's value can be found in the {@link #ConstraintLayout_placeholder} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:content */ public static final int ConstraintLayout_placeholder_content=0; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#emptyVisibility} * attribute's value can be found in the {@link #ConstraintLayout_placeholder} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>gone</td><td>0</td><td></td></tr> * <tr><td>invisible</td><td>1</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:emptyVisibility */ public static final int ConstraintLayout_placeholder_emptyVisibility=1; /** * Attributes that can be used with a ConstraintSet. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ConstraintSet_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_visibility android:visibility}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_width android:layout_width}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_height android:layout_height}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_maxHeight android:maxHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_minWidth android:minWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_minHeight android:minHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_alpha android:alpha}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_transformPivotX android:transformPivotX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_transformPivotY android:transformPivotY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationX android:translationX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationY android:translationY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_scaleX android:scaleX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_scaleY android:scaleY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_rotation android:rotation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_rotationX android:rotationX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_rotationY android:rotationY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_translationZ android:translationZ}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_android_elevation android:elevation}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_barrierAllowsGoneWidgets org.changeip.seoul.malin:barrierAllowsGoneWidgets}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_barrierDirection org.changeip.seoul.malin:barrierDirection}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_chainUseRtl org.changeip.seoul.malin:chainUseRtl}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_constraint_referenced_ids org.changeip.seoul.malin:constraint_referenced_ids}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constrainedHeight org.changeip.seoul.malin:layout_constrainedHeight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constrainedWidth org.changeip.seoul.malin:layout_constrainedWidth}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_creator org.changeip.seoul.malin:layout_constraintBaseline_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf org.changeip.seoul.malin:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator org.changeip.seoul.malin:layout_constraintBottom_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf org.changeip.seoul.malin:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf org.changeip.seoul.malin:layout_constraintBottom_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintCircle org.changeip.seoul.malin:layout_constraintCircle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintCircleAngle org.changeip.seoul.malin:layout_constraintCircleAngle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintCircleRadius org.changeip.seoul.malin:layout_constraintCircleRadius}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio org.changeip.seoul.malin:layout_constraintDimensionRatio}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf org.changeip.seoul.malin:layout_constraintEnd_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf org.changeip.seoul.malin:layout_constraintEnd_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin org.changeip.seoul.malin:layout_constraintGuide_begin}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end org.changeip.seoul.malin:layout_constraintGuide_end}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent org.changeip.seoul.malin:layout_constraintGuide_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default org.changeip.seoul.malin:layout_constraintHeight_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max org.changeip.seoul.malin:layout_constraintHeight_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min org.changeip.seoul.malin:layout_constraintHeight_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_percent org.changeip.seoul.malin:layout_constraintHeight_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias org.changeip.seoul.malin:layout_constraintHorizontal_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle org.changeip.seoul.malin:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight org.changeip.seoul.malin:layout_constraintHorizontal_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator org.changeip.seoul.malin:layout_constraintLeft_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf org.changeip.seoul.malin:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf org.changeip.seoul.malin:layout_constraintLeft_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator org.changeip.seoul.malin:layout_constraintRight_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf org.changeip.seoul.malin:layout_constraintRight_toLeftOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf org.changeip.seoul.malin:layout_constraintRight_toRightOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf org.changeip.seoul.malin:layout_constraintStart_toEndOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf org.changeip.seoul.malin:layout_constraintStart_toStartOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator org.changeip.seoul.malin:layout_constraintTop_creator}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf org.changeip.seoul.malin:layout_constraintTop_toBottomOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf org.changeip.seoul.malin:layout_constraintTop_toTopOf}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias org.changeip.seoul.malin:layout_constraintVertical_bias}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle org.changeip.seoul.malin:layout_constraintVertical_chainStyle}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight org.changeip.seoul.malin:layout_constraintVertical_weight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default org.changeip.seoul.malin:layout_constraintWidth_default}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max org.changeip.seoul.malin:layout_constraintWidth_max}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min org.changeip.seoul.malin:layout_constraintWidth_min}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_percent org.changeip.seoul.malin:layout_constraintWidth_percent}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX org.changeip.seoul.malin:layout_editor_absoluteX}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY org.changeip.seoul.malin:layout_editor_absoluteY}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom org.changeip.seoul.malin:layout_goneMarginBottom}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd org.changeip.seoul.malin:layout_goneMarginEnd}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft org.changeip.seoul.malin:layout_goneMarginLeft}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginRight org.changeip.seoul.malin:layout_goneMarginRight}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginStart org.changeip.seoul.malin:layout_goneMarginStart}</code></td><td></td></tr> * <tr><td><code>{@link #ConstraintSet_layout_goneMarginTop org.changeip.seoul.malin:layout_goneMarginTop}</code></td><td></td></tr> * </table> * @see #ConstraintSet_android_orientation * @see #ConstraintSet_android_id * @see #ConstraintSet_android_visibility * @see #ConstraintSet_android_layout_width * @see #ConstraintSet_android_layout_height * @see #ConstraintSet_android_layout_marginLeft * @see #ConstraintSet_android_layout_marginTop * @see #ConstraintSet_android_layout_marginRight * @see #ConstraintSet_android_layout_marginBottom * @see #ConstraintSet_android_maxWidth * @see #ConstraintSet_android_maxHeight * @see #ConstraintSet_android_minWidth * @see #ConstraintSet_android_minHeight * @see #ConstraintSet_android_alpha * @see #ConstraintSet_android_transformPivotX * @see #ConstraintSet_android_transformPivotY * @see #ConstraintSet_android_translationX * @see #ConstraintSet_android_translationY * @see #ConstraintSet_android_scaleX * @see #ConstraintSet_android_scaleY * @see #ConstraintSet_android_rotation * @see #ConstraintSet_android_rotationX * @see #ConstraintSet_android_rotationY * @see #ConstraintSet_android_layout_marginStart * @see #ConstraintSet_android_layout_marginEnd * @see #ConstraintSet_android_translationZ * @see #ConstraintSet_android_elevation * @see #ConstraintSet_barrierAllowsGoneWidgets * @see #ConstraintSet_barrierDirection * @see #ConstraintSet_chainUseRtl * @see #ConstraintSet_constraint_referenced_ids * @see #ConstraintSet_layout_constrainedHeight * @see #ConstraintSet_layout_constrainedWidth * @see #ConstraintSet_layout_constraintBaseline_creator * @see #ConstraintSet_layout_constraintBaseline_toBaselineOf * @see #ConstraintSet_layout_constraintBottom_creator * @see #ConstraintSet_layout_constraintBottom_toBottomOf * @see #ConstraintSet_layout_constraintBottom_toTopOf * @see #ConstraintSet_layout_constraintCircle * @see #ConstraintSet_layout_constraintCircleAngle * @see #ConstraintSet_layout_constraintCircleRadius * @see #ConstraintSet_layout_constraintDimensionRatio * @see #ConstraintSet_layout_constraintEnd_toEndOf * @see #ConstraintSet_layout_constraintEnd_toStartOf * @see #ConstraintSet_layout_constraintGuide_begin * @see #ConstraintSet_layout_constraintGuide_end * @see #ConstraintSet_layout_constraintGuide_percent * @see #ConstraintSet_layout_constraintHeight_default * @see #ConstraintSet_layout_constraintHeight_max * @see #ConstraintSet_layout_constraintHeight_min * @see #ConstraintSet_layout_constraintHeight_percent * @see #ConstraintSet_layout_constraintHorizontal_bias * @see #ConstraintSet_layout_constraintHorizontal_chainStyle * @see #ConstraintSet_layout_constraintHorizontal_weight * @see #ConstraintSet_layout_constraintLeft_creator * @see #ConstraintSet_layout_constraintLeft_toLeftOf * @see #ConstraintSet_layout_constraintLeft_toRightOf * @see #ConstraintSet_layout_constraintRight_creator * @see #ConstraintSet_layout_constraintRight_toLeftOf * @see #ConstraintSet_layout_constraintRight_toRightOf * @see #ConstraintSet_layout_constraintStart_toEndOf * @see #ConstraintSet_layout_constraintStart_toStartOf * @see #ConstraintSet_layout_constraintTop_creator * @see #ConstraintSet_layout_constraintTop_toBottomOf * @see #ConstraintSet_layout_constraintTop_toTopOf * @see #ConstraintSet_layout_constraintVertical_bias * @see #ConstraintSet_layout_constraintVertical_chainStyle * @see #ConstraintSet_layout_constraintVertical_weight * @see #ConstraintSet_layout_constraintWidth_default * @see #ConstraintSet_layout_constraintWidth_max * @see #ConstraintSet_layout_constraintWidth_min * @see #ConstraintSet_layout_constraintWidth_percent * @see #ConstraintSet_layout_editor_absoluteX * @see #ConstraintSet_layout_editor_absoluteY * @see #ConstraintSet_layout_goneMarginBottom * @see #ConstraintSet_layout_goneMarginEnd * @see #ConstraintSet_layout_goneMarginLeft * @see #ConstraintSet_layout_goneMarginRight * @see #ConstraintSet_layout_goneMarginStart * @see #ConstraintSet_layout_goneMarginTop */ public static final int[] ConstraintSet={ 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f020037, 0x7f020038, 0x7f020046, 0x7f02005a, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1, 0x7f0200c2, 0x7f0200c4, 0x7f0200c5, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb }; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int ConstraintSet_android_orientation=0; /** * <p>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int ConstraintSet_android_id=1; /** * <p>This symbol is the offset where the {@link android.R.attr#visibility} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>gone</td><td>2</td><td></td></tr> * <tr><td>invisible</td><td>1</td><td></td></tr> * <tr><td>visible</td><td>0</td><td></td></tr> * </table> * * @attr name android:visibility */ public static final int ConstraintSet_android_visibility=2; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_width} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_width */ public static final int ConstraintSet_android_layout_width=3; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_height} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_height */ public static final int ConstraintSet_android_layout_height=4; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginLeft} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:layout_marginLeft */ public static final int ConstraintSet_android_layout_marginLeft=5; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginTop} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:layout_marginTop */ public static final int ConstraintSet_android_layout_marginTop=6; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginRight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:layout_marginRight */ public static final int ConstraintSet_android_layout_marginRight=7; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginBottom} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:layout_marginBottom */ public static final int ConstraintSet_android_layout_marginBottom=8; /** * <p>This symbol is the offset where the {@link android.R.attr#maxWidth} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int ConstraintSet_android_maxWidth=9; /** * <p>This symbol is the offset where the {@link android.R.attr#maxHeight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxHeight */ public static final int ConstraintSet_android_maxHeight=10; /** * <p>This symbol is the offset where the {@link android.R.attr#minWidth} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minWidth */ public static final int ConstraintSet_android_minWidth=11; /** * <p>This symbol is the offset where the {@link android.R.attr#minHeight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minHeight */ public static final int ConstraintSet_android_minHeight=12; /** * <p>This symbol is the offset where the {@link android.R.attr#alpha} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:alpha */ public static final int ConstraintSet_android_alpha=13; /** * <p>This symbol is the offset where the {@link android.R.attr#transformPivotX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:transformPivotX */ public static final int ConstraintSet_android_transformPivotX=14; /** * <p>This symbol is the offset where the {@link android.R.attr#transformPivotY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:transformPivotY */ public static final int ConstraintSet_android_transformPivotY=15; /** * <p>This symbol is the offset where the {@link android.R.attr#translationX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:translationX */ public static final int ConstraintSet_android_translationX=16; /** * <p>This symbol is the offset where the {@link android.R.attr#translationY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:translationY */ public static final int ConstraintSet_android_translationY=17; /** * <p>This symbol is the offset where the {@link android.R.attr#scaleX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:scaleX */ public static final int ConstraintSet_android_scaleX=18; /** * <p>This symbol is the offset where the {@link android.R.attr#scaleY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:scaleY */ public static final int ConstraintSet_android_scaleY=19; /** * <p>This symbol is the offset where the {@link android.R.attr#rotation} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:rotation */ public static final int ConstraintSet_android_rotation=20; /** * <p>This symbol is the offset where the {@link android.R.attr#rotationX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:rotationX */ public static final int ConstraintSet_android_rotationX=21; /** * <p>This symbol is the offset where the {@link android.R.attr#rotationY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:rotationY */ public static final int ConstraintSet_android_rotationY=22; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginStart} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:layout_marginStart */ public static final int ConstraintSet_android_layout_marginStart=23; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_marginEnd} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:layout_marginEnd */ public static final int ConstraintSet_android_layout_marginEnd=24; /** * <p>This symbol is the offset where the {@link android.R.attr#translationZ} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:translationZ */ public static final int ConstraintSet_android_translationZ=25; /** * <p>This symbol is the offset where the {@link android.R.attr#elevation} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:elevation */ public static final int ConstraintSet_android_elevation=26; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#barrierAllowsGoneWidgets} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:barrierAllowsGoneWidgets */ public static final int ConstraintSet_barrierAllowsGoneWidgets=27; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#barrierDirection} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>3</td><td></td></tr> * <tr><td>end</td><td>6</td><td></td></tr> * <tr><td>left</td><td>0</td><td></td></tr> * <tr><td>right</td><td>1</td><td></td></tr> * <tr><td>start</td><td>5</td><td></td></tr> * <tr><td>top</td><td>2</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:barrierDirection */ public static final int ConstraintSet_barrierDirection=28; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#chainUseRtl} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:chainUseRtl */ public static final int ConstraintSet_chainUseRtl=29; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#constraint_referenced_ids} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:constraint_referenced_ids */ public static final int ConstraintSet_constraint_referenced_ids=30; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constrainedHeight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:layout_constrainedHeight */ public static final int ConstraintSet_layout_constrainedHeight=31; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constrainedWidth} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:layout_constrainedWidth */ public static final int ConstraintSet_layout_constrainedWidth=32; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintBaseline_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintBaseline_creator */ public static final int ConstraintSet_layout_constraintBaseline_creator=33; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintBaseline_toBaselineOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf=34; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintBottom_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintBottom_creator */ public static final int ConstraintSet_layout_constraintBottom_creator=35; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintBottom_toBottomOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintBottom_toBottomOf */ public static final int ConstraintSet_layout_constraintBottom_toBottomOf=36; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintBottom_toTopOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintBottom_toTopOf */ public static final int ConstraintSet_layout_constraintBottom_toTopOf=37; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintCircle} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:layout_constraintCircle */ public static final int ConstraintSet_layout_constraintCircle=38; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintCircleAngle} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintCircleAngle */ public static final int ConstraintSet_layout_constraintCircleAngle=39; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintCircleRadius} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_constraintCircleRadius */ public static final int ConstraintSet_layout_constraintCircleRadius=40; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintDimensionRatio} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:layout_constraintDimensionRatio */ public static final int ConstraintSet_layout_constraintDimensionRatio=41; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintEnd_toEndOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintEnd_toEndOf */ public static final int ConstraintSet_layout_constraintEnd_toEndOf=42; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintEnd_toStartOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintEnd_toStartOf */ public static final int ConstraintSet_layout_constraintEnd_toStartOf=43; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintGuide_begin} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_constraintGuide_begin */ public static final int ConstraintSet_layout_constraintGuide_begin=44; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintGuide_end} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_constraintGuide_end */ public static final int ConstraintSet_layout_constraintGuide_end=45; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintGuide_percent} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintGuide_percent */ public static final int ConstraintSet_layout_constraintGuide_percent=46; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHeight_default} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintHeight_default */ public static final int ConstraintSet_layout_constraintHeight_default=47; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHeight_max} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintHeight_max */ public static final int ConstraintSet_layout_constraintHeight_max=48; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHeight_min} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintHeight_min */ public static final int ConstraintSet_layout_constraintHeight_min=49; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHeight_percent} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintHeight_percent */ public static final int ConstraintSet_layout_constraintHeight_percent=50; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHorizontal_bias} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintHorizontal_bias */ public static final int ConstraintSet_layout_constraintHorizontal_bias=51; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHorizontal_chainStyle} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintHorizontal_chainStyle */ public static final int ConstraintSet_layout_constraintHorizontal_chainStyle=52; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintHorizontal_weight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintHorizontal_weight */ public static final int ConstraintSet_layout_constraintHorizontal_weight=53; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintLeft_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintLeft_creator */ public static final int ConstraintSet_layout_constraintLeft_creator=54; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintLeft_toLeftOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintLeft_toLeftOf */ public static final int ConstraintSet_layout_constraintLeft_toLeftOf=55; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintLeft_toRightOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintLeft_toRightOf */ public static final int ConstraintSet_layout_constraintLeft_toRightOf=56; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintRight_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintRight_creator */ public static final int ConstraintSet_layout_constraintRight_creator=57; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintRight_toLeftOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintRight_toLeftOf */ public static final int ConstraintSet_layout_constraintRight_toLeftOf=58; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintRight_toRightOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintRight_toRightOf */ public static final int ConstraintSet_layout_constraintRight_toRightOf=59; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintStart_toEndOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintStart_toEndOf */ public static final int ConstraintSet_layout_constraintStart_toEndOf=60; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintStart_toStartOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintStart_toStartOf */ public static final int ConstraintSet_layout_constraintStart_toStartOf=61; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintTop_creator} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_constraintTop_creator */ public static final int ConstraintSet_layout_constraintTop_creator=62; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintTop_toBottomOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintTop_toBottomOf */ public static final int ConstraintSet_layout_constraintTop_toBottomOf=63; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintTop_toTopOf} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>parent</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintTop_toTopOf */ public static final int ConstraintSet_layout_constraintTop_toTopOf=64; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintVertical_bias} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintVertical_bias */ public static final int ConstraintSet_layout_constraintVertical_bias=65; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintVertical_chainStyle} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>packed</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>spread_inside</td><td>1</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintVertical_chainStyle */ public static final int ConstraintSet_layout_constraintVertical_chainStyle=66; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintVertical_weight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintVertical_weight */ public static final int ConstraintSet_layout_constraintVertical_weight=67; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintWidth_default} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>percent</td><td>2</td><td></td></tr> * <tr><td>spread</td><td>0</td><td></td></tr> * <tr><td>wrap</td><td>1</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintWidth_default */ public static final int ConstraintSet_layout_constraintWidth_default=68; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintWidth_max} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintWidth_max */ public static final int ConstraintSet_layout_constraintWidth_max=69; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintWidth_min} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>wrap</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_constraintWidth_min */ public static final int ConstraintSet_layout_constraintWidth_min=70; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_constraintWidth_percent} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name org.changeip.seoul.malin:layout_constraintWidth_percent */ public static final int ConstraintSet_layout_constraintWidth_percent=71; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_editor_absoluteX} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_editor_absoluteX */ public static final int ConstraintSet_layout_editor_absoluteX=72; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_editor_absoluteY} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_editor_absoluteY */ public static final int ConstraintSet_layout_editor_absoluteY=73; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginBottom} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginBottom */ public static final int ConstraintSet_layout_goneMarginBottom=74; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginEnd} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginEnd */ public static final int ConstraintSet_layout_goneMarginEnd=75; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginLeft} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginLeft */ public static final int ConstraintSet_layout_goneMarginLeft=76; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginRight} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginRight */ public static final int ConstraintSet_layout_goneMarginRight=77; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginStart} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginStart */ public static final int ConstraintSet_layout_goneMarginStart=78; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#layout_goneMarginTop} * attribute's value can be found in the {@link #ConstraintSet} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:layout_goneMarginTop */ public static final int ConstraintSet_layout_goneMarginTop=79; /** * 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 org.changeip.seoul.malin:keylines}</code></td><td>A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_statusBarBackground org.changeip.seoul.malin:statusBarBackground}</code></td><td>Drawable to display behind the status bar when the view is set to draw behind it.</td></tr> * </table> * @see #CoordinatorLayout_keylines * @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout={ 0x7f020094, 0x7f020109 }; /** * <p> * @attr description * A reference to an array of integers representing the * locations of horizontal keylines in dp from the starting edge. * Child views can refer to these keylines for alignment using * layout_keyline="index" where index is a 0-based index into * this array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:keylines */ public static final int CoordinatorLayout_keylines=0; /** * <p> * @attr description * Drawable to display behind the status bar when the view is set to draw behind it. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin: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 org.changeip.seoul.malin:layout_anchor}</code></td><td>The id of an anchor view that this view should position relative to.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity org.changeip.seoul.malin:layout_anchorGravity}</code></td><td>Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior org.changeip.seoul.malin:layout_behavior}</code></td><td>The class name of a Behavior class defining special runtime behavior * for this child view.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges org.changeip.seoul.malin:layout_dodgeInsetEdges}</code></td><td>Specifies how this view dodges the inset edges of the CoordinatorLayout.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge org.changeip.seoul.malin:layout_insetEdge}</code></td><td>Specifies how this view insets the CoordinatorLayout and make some other views * dodge it.</td></tr> * <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline org.changeip.seoul.malin:layout_keyline}</code></td><td>The index of a keyline this view should position relative to.</td></tr> * </table> * @see #CoordinatorLayout_Layout_android_layout_gravity * @see #CoordinatorLayout_Layout_layout_anchor * @see #CoordinatorLayout_Layout_layout_anchorGravity * @see #CoordinatorLayout_Layout_layout_behavior * @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges * @see #CoordinatorLayout_Layout_layout_insetEdge * @see #CoordinatorLayout_Layout_layout_keyline */ public static final int[] CoordinatorLayout_Layout={ 0x010100b3, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f0200c3, 0x7f0200cc, 0x7f0200cd }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int CoordinatorLayout_Layout_android_layout_gravity=0; /** * <p> * @attr description * The id of an anchor view that this view should position relative to. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor=1; /** * <p> * @attr description * Specifies how an object should position relative to an anchor, on both the X and Y axes, * within its parent's bounds. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>center</td><td>11</td><td>Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.</td></tr> * <tr><td>center_horizontal</td><td>1</td><td>Place object in the horizontal center of its container, not changing its size.</td></tr> * <tr><td>center_vertical</td><td>10</td><td>Place object in the vertical center of its container, not changing its size.</td></tr> * <tr><td>clip_horizontal</td><td>8</td><td>Additional option that can be set to have the left and/or right edges of * the child clipped to its container's bounds. * The clip will be based on the horizontal gravity: a left gravity will clip the right * edge, a right gravity will clip the left edge, and neither will clip both edges.</td></tr> * <tr><td>clip_vertical</td><td>80</td><td>Additional option that can be set to have the top and/or bottom edges of * the child clipped to its container's bounds. * The clip will be based on the vertical gravity: a top gravity will clip the bottom * edge, a bottom gravity will clip the top edge, and neither will clip both edges.</td></tr> * <tr><td>end</td><td>800005</td><td>Push object to the end of its container, not changing its size.</td></tr> * <tr><td>fill</td><td>77</td><td>Grow the horizontal and vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_horizontal</td><td>7</td><td>Grow the horizontal size of the object if needed so it completely fills its container.</td></tr> * <tr><td>fill_vertical</td><td>70</td><td>Grow the vertical size of the object if needed so it completely fills its container.</td></tr> * <tr><td>left</td><td>3</td><td>Push object to the left of its container, not changing its size.</td></tr> * <tr><td>right</td><td>5</td><td>Push object to the right of its container, not changing its size.</td></tr> * <tr><td>start</td><td>800003</td><td>Push object to the beginning of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity=2; /** * <p> * @attr description * The class name of a Behavior class defining special runtime behavior * for this child view. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior=3; /** * <p> * @attr description * Specifies how this view dodges the inset edges of the CoordinatorLayout. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>77</td><td>Dodge all the inset edges.</td></tr> * <tr><td>bottom</td><td>50</td><td>Dodge the bottom inset edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Dodge the end inset edge.</td></tr> * <tr><td>left</td><td>3</td><td>Dodge the left inset edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't dodge any edges</td></tr> * <tr><td>right</td><td>5</td><td>Dodge the right inset edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Dodge the start inset edge.</td></tr> * <tr><td>top</td><td>30</td><td>Dodge the top inset edge.</td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4; /** * <p> * @attr description * Specifies how this view insets the CoordinatorLayout and make some other views * dodge it. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Inset the bottom edge.</td></tr> * <tr><td>end</td><td>800005</td><td>Inset the end edge.</td></tr> * <tr><td>left</td><td>3</td><td>Inset the left edge.</td></tr> * <tr><td>none</td><td>0</td><td>Don't inset.</td></tr> * <tr><td>right</td><td>5</td><td>Inset the right edge.</td></tr> * <tr><td>start</td><td>800003</td><td>Inset the start edge.</td></tr> * <tr><td>top</td><td>30</td><td>Inset the top edge.</td></tr> * </table> * * @attr name org.changeip.seoul.malin:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge=5; /** * <p> * @attr description * The index of a keyline this view should position relative to. * android:layout_gravity will affect how the view aligns to the * specified keyline. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:layout_keyline */ public static final int CoordinatorLayout_Layout_layout_keyline=6; /** * 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 org.changeip.seoul.malin:arrowHeadLength}</code></td><td>The length of the arrow head when formed to make an arrow</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength org.changeip.seoul.malin:arrowShaftLength}</code></td><td>The length of the shaft when formed to make an arrow</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_barLength org.changeip.seoul.malin:barLength}</code></td><td>The length of the bars when they are parallel to each other</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_color org.changeip.seoul.malin:color}</code></td><td>The drawing color for the bars</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_drawableSize org.changeip.seoul.malin:drawableSize}</code></td><td>The total size of the drawable</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars org.changeip.seoul.malin:gapBetweenBars}</code></td><td>The max gap between the bars when they are parallel to each other</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_spinBars org.changeip.seoul.malin:spinBars}</code></td><td>Whether bars should rotate or not during transition</td></tr> * <tr><td><code>{@link #DrawerArrowToggle_thickness org.changeip.seoul.malin:thickness}</code></td><td>The thickness (stroke size) for the bar paint</td></tr> * </table> * @see #DrawerArrowToggle_arrowHeadLength * @see #DrawerArrowToggle_arrowShaftLength * @see #DrawerArrowToggle_barLength * @see #DrawerArrowToggle_color * @see #DrawerArrowToggle_drawableSize * @see #DrawerArrowToggle_gapBetweenBars * @see #DrawerArrowToggle_spinBars * @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle={ 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004d, 0x7f02006f, 0x7f020085, 0x7f020103, 0x7f020121 }; /** * <p> * @attr description * The length of the arrow head when formed to make an arrow * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength=0; /** * <p> * @attr description * The length of the shaft when formed to make an arrow * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength=1; /** * <p> * @attr description * The length of the bars when they are parallel to each other * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:barLength */ public static final int DrawerArrowToggle_barLength=2; /** * <p> * @attr description * The drawing color for the bars * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:color */ public static final int DrawerArrowToggle_color=3; /** * <p> * @attr description * The total size of the drawable * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:drawableSize */ public static final int DrawerArrowToggle_drawableSize=4; /** * <p> * @attr description * The max gap between the bars when they are parallel to each other * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars=5; /** * <p> * @attr description * Whether bars should rotate or not during transition * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:spinBars */ public static final int DrawerArrowToggle_spinBars=6; /** * <p> * @attr description * The thickness (stroke size) for the bar paint * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:thickness */ public static final int DrawerArrowToggle_thickness=7; /** * 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 org.changeip.seoul.malin:fontProviderAuthority}</code></td><td>The authority of the Font Provider to be used for the request.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderCerts org.changeip.seoul.malin:fontProviderCerts}</code></td><td>The sets of hashes for the certificates the provider should be signed with.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy org.changeip.seoul.malin:fontProviderFetchStrategy}</code></td><td>The strategy to be used when fetching font data from a font provider in XML layouts.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout org.changeip.seoul.malin:fontProviderFetchTimeout}</code></td><td>The length of the timeout during fetching.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderPackage org.changeip.seoul.malin:fontProviderPackage}</code></td><td>The package for the Font Provider to be used for the request.</td></tr> * <tr><td><code>{@link #FontFamily_fontProviderQuery org.changeip.seoul.malin:fontProviderQuery}</code></td><td>The query to be sent over to the provider.</td></tr> * </table> * @see #FontFamily_fontProviderAuthority * @see #FontFamily_fontProviderCerts * @see #FontFamily_fontProviderFetchStrategy * @see #FontFamily_fontProviderFetchTimeout * @see #FontFamily_fontProviderPackage * @see #FontFamily_fontProviderQuery */ public static final int[] FontFamily={ 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020081 }; /** * <p> * @attr description * The authority of the Font Provider to be used for the request. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority=0; /** * <p> * @attr description * The sets of hashes for the certificates the provider should be signed with. This is * used to verify the identity of the provider, and is only required if the provider is not * part of the system image. This value may point to one list or a list of lists, where each * individual list represents one collection of signature hashes. Refer to your font provider's * documentation for these values. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:fontProviderCerts */ public static final int FontFamily_fontProviderCerts=1; /** * <p> * @attr description * The strategy to be used when fetching font data from a font provider in XML layouts. * This attribute is ignored when the resource is loaded from code, as it is equivalent to the * choice of API between {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and * {@link * androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)} * (async). * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>async</td><td>1</td><td>The async font fetch works as follows. * First, check the local cache, then if the requeted font is not cached, trigger a * request the font and continue with layout inflation. Once the font fetch succeeds, the * target text view will be refreshed with the downloaded font data. The * fontProviderFetchTimeout will be ignored if async loading is specified.</td></tr> * <tr><td>blocking</td><td>0</td><td>The blocking font fetch works as follows. * First, check the local cache, then if the requested font is not cached, request the * font from the provider and wait until it is finished. You can change the length of * the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the * default typeface will be used instead.</td></tr> * </table> * * @attr name org.changeip.seoul.malin:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy=2; /** * <p> * @attr description * The length of the timeout during fetching. * * <p>May be an integer value, such as "<code>100</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>forever</td><td>ffffffff</td><td>A special value for the timeout. In this case, the blocking font fetching will not * timeout and wait until a reply is received from the font provider.</td></tr> * </table> * * @attr name org.changeip.seoul.malin:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout=3; /** * <p> * @attr description * The package for the Font Provider to be used for the request. This is used to verify * the identity of the provider. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:fontProviderPackage */ public static final int FontFamily_fontProviderPackage=4; /** * <p> * @attr description * The query to be sent over to the provider. Refer to your font provider's documentation * on the format of this string. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:fontProviderQuery */ public static final int FontFamily_fontProviderQuery=5; /** * Attributes that can be used with a FontFamilyFont. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}</code></td><td></td></tr> * <tr><td><code>{@link #FontFamilyFont_font org.changeip.seoul.malin:font}</code></td><td>The reference to the font file to be used.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontStyle org.changeip.seoul.malin:fontStyle}</code></td><td>The style of the given font file.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontVariationSettings org.changeip.seoul.malin:fontVariationSettings}</code></td><td>The variation settings to be applied to the font.</td></tr> * <tr><td><code>{@link #FontFamilyFont_fontWeight org.changeip.seoul.malin:fontWeight}</code></td><td>The weight of the given font file.</td></tr> * <tr><td><code>{@link #FontFamilyFont_ttcIndex org.changeip.seoul.malin:ttcIndex}</code></td><td>The index of the font in the tcc font file.</td></tr> * </table> * @see #FontFamilyFont_android_font * @see #FontFamilyFont_android_fontWeight * @see #FontFamilyFont_android_fontStyle * @see #FontFamilyFont_android_ttcIndex * @see #FontFamilyFont_android_fontVariationSettings * @see #FontFamilyFont_font * @see #FontFamilyFont_fontStyle * @see #FontFamilyFont_fontVariationSettings * @see #FontFamilyFont_fontWeight * @see #FontFamilyFont_ttcIndex */ public static final int[] FontFamilyFont={ 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f02007a, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f02013c }; /** * <p>This symbol is the offset where the {@link android.R.attr#font} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:font */ public static final int FontFamilyFont_android_font=0; /** * <p>This symbol is the offset where the {@link android.R.attr#fontWeight} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:fontWeight */ public static final int FontFamilyFont_android_fontWeight=1; /** * <p> * @attr description * References to the framework attrs * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:fontStyle */ public static final int FontFamilyFont_android_fontStyle=2; /** * <p>This symbol is the offset where the {@link android.R.attr#ttcIndex} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:ttcIndex */ public static final int FontFamilyFont_android_ttcIndex=3; /** * <p>This symbol is the offset where the {@link android.R.attr#fontVariationSettings} * attribute's value can be found in the {@link #FontFamilyFont} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:fontVariationSettings */ public static final int FontFamilyFont_android_fontVariationSettings=4; /** * <p> * @attr description * The reference to the font file to be used. This should be a file in the res/font folder * and should therefore have an R reference value. E.g. @font/myfont * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:font */ public static final int FontFamilyFont_font=5; /** * <p> * @attr description * The style of the given font file. This will be used when the font is being loaded into * the font stack and will override any style information in the font's header tables. If * unspecified, the value in the font's header tables will be used. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>italic</td><td>1</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:fontStyle */ public static final int FontFamilyFont_fontStyle=6; /** * <p> * @attr description * The variation settings to be applied to the font. The string should be in the following * format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be * used, or the font used does not support variation settings, this attribute needs not be * specified. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:fontVariationSettings */ public static final int FontFamilyFont_fontVariationSettings=7; /** * <p> * @attr description * The weight of the given font file. This will be used when the font is being loaded into * the font stack and will override any weight information in the font's header tables. Must * be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most * common values are 400 for regular weight and 700 for bold weight. If unspecified, the value * in the font's header tables will be used. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:fontWeight */ public static final int FontFamilyFont_fontWeight=8; /** * <p> * @attr description * The index of the font in the tcc font file. If the font file referenced is not in the * tcc format, this attribute needs not be specified. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name org.changeip.seoul.malin:ttcIndex */ public static final int FontFamilyFont_ttcIndex=9; /** * Attributes that can be used with a GradientColor. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #GradientColor_android_startColor android:startColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endColor android:endColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_type android:type}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerX android:centerX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerY android:centerY}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_gradientRadius android:gradientRadius}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_tileMode android:tileMode}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_centerColor android:centerColor}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_startX android:startX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_startY android:startY}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endX android:endX}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColor_android_endY android:endY}</code></td><td></td></tr> * </table> * @see #GradientColor_android_startColor * @see #GradientColor_android_endColor * @see #GradientColor_android_type * @see #GradientColor_android_centerX * @see #GradientColor_android_centerY * @see #GradientColor_android_gradientRadius * @see #GradientColor_android_tileMode * @see #GradientColor_android_centerColor * @see #GradientColor_android_startX * @see #GradientColor_android_startY * @see #GradientColor_android_endX * @see #GradientColor_android_endY */ public static final int[] GradientColor={ 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }; /** * <p> * @attr description * Start color of the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:startColor */ public static final int GradientColor_android_startColor=0; /** * <p> * @attr description * End color of the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:endColor */ public static final int GradientColor_android_endColor=1; /** * <p> * @attr description * Type of gradient. The default type is linear. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>linear</td><td>0</td><td></td></tr> * <tr><td>radial</td><td>1</td><td></td></tr> * <tr><td>sweep</td><td>2</td><td></td></tr> * </table> * * @attr name android:type */ public static final int GradientColor_android_type=2; /** * <p> * @attr description * X coordinate of the center of the gradient within the path. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:centerX */ public static final int GradientColor_android_centerX=3; /** * <p> * @attr description * Y coordinate of the center of the gradient within the path. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:centerY */ public static final int GradientColor_android_centerY=4; /** * <p> * @attr description * Radius of the gradient, used only with radial gradient. * * <p>May be a floating point value, such as "<code>1.2</code>". * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>May be a fractional value, which is a floating point number appended with * either % or %p, such as "<code>14.5%</code>". * The % suffix always means a percentage of the base size; * the optional %p suffix provides a size relative to some parent container. * * @attr name android:gradientRadius */ public static final int GradientColor_android_gradientRadius=5; /** * <p> * @attr description * Defines the tile mode of the gradient. SweepGradient doesn't support tiling. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>clamp</td><td>0</td><td></td></tr> * <tr><td>disabled</td><td>ffffffff</td><td></td></tr> * <tr><td>mirror</td><td>2</td><td></td></tr> * <tr><td>repeat</td><td>1</td><td></td></tr> * </table> * * @attr name android:tileMode */ public static final int GradientColor_android_tileMode=6; /** * <p> * @attr description * Optional center color. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:centerColor */ public static final int GradientColor_android_centerColor=7; /** * <p> * @attr description * X coordinate of the start point origin of the gradient. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:startX */ public static final int GradientColor_android_startX=8; /** * <p> * @attr description * Y coordinate of the start point of the gradient within the shape. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:startY */ public static final int GradientColor_android_startY=9; /** * <p> * @attr description * X coordinate of the end point origin of the gradient. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:endX */ public static final int GradientColor_android_endX=10; /** * <p> * @attr description * Y coordinate of the end point of the gradient within the shape. * Defined in same coordinates as the path itself * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:endY */ public static final int GradientColor_android_endY=11; /** * Attributes that can be used with a GradientColorItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #GradientColorItem_android_color android:color}</code></td><td></td></tr> * <tr><td><code>{@link #GradientColorItem_android_offset android:offset}</code></td><td></td></tr> * </table> * @see #GradientColorItem_android_color * @see #GradientColorItem_android_offset */ public static final int[] GradientColorItem={ 0x010101a5, 0x01010514 }; /** * <p> * @attr description * The current color for the offset inside the gradient. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:color */ public static final int GradientColorItem_android_color=0; /** * <p> * @attr description * The offset (or ratio) of this current color item inside the gradient. * The value is only meaningful when it is between 0 and 1. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:offset */ public static final int GradientColorItem_android_offset=1; /** * Attributes that can be used with a LinearConstraintLayout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #LinearConstraintLayout_android_orientation android:orientation}</code></td><td></td></tr> * </table> * @see #LinearConstraintLayout_android_orientation */ public static final int[] LinearConstraintLayout={ 0x010100c4 }; /** * <p>This symbol is the offset where the {@link android.R.attr#orientation} * attribute's value can be found in the {@link #LinearConstraintLayout} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int LinearConstraintLayout_android_orientation=0; /** * Attributes that can be used with a LinearLayoutCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_divider org.changeip.seoul.malin:divider}</code></td><td>Specifies the drawable used for item dividers.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_dividerPadding org.changeip.seoul.malin:dividerPadding}</code></td><td>Size of padding on either end of a divider.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild org.changeip.seoul.malin:measureWithLargestChild}</code></td><td>When set to true, all children with a weight will be considered having * the minimum size of the largest child.</td></tr> * <tr><td><code>{@link #LinearLayoutCompat_showDividers org.changeip.seoul.malin:showDividers}</code></td><td>Setting for which dividers to show.</td></tr> * </table> * @see #LinearLayoutCompat_android_gravity * @see #LinearLayoutCompat_android_orientation * @see #LinearLayoutCompat_android_baselineAligned * @see #LinearLayoutCompat_android_baselineAlignedChildIndex * @see #LinearLayoutCompat_android_weightSum * @see #LinearLayoutCompat_divider * @see #LinearLayoutCompat_dividerPadding * @see #LinearLayoutCompat_measureWithLargestChild * @see #LinearLayoutCompat_showDividers */ public static final int[] LinearLayoutCompat={ 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f02006b, 0x7f02006d, 0x7f0200de, 0x7f0200ff }; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * attribute's value can be found in the {@link #LinearLayoutCompat} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity=0; /** * <p> * @attr description * Should the layout be a column or a row? Use "horizontal" * for a row, "vertical" for a column. The default is * horizontal. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>horizontal</td><td>0</td><td></td></tr> * <tr><td>vertical</td><td>1</td><td></td></tr> * </table> * * @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation=1; /** * <p> * @attr description * When set to false, prevents the layout from aligning its children's * baselines. This attribute is particularly useful when the children * use different values for gravity. The default value is true. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned=2; /** * <p> * @attr description * When a linear layout is part of another layout that is baseline * aligned, it can specify which of its children to baseline align to * (that is, which child TextView). * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; /** * <p> * @attr description * Defines the maximum weight sum. If unspecified, the sum is computed * by adding the layout_weight of all of the children. This can be * used for instance to give a single child 50% of the total available * space by giving it a layout_weight of 0.5 and setting the weightSum * to 1.0. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum=4; /** * <p> * @attr description * Drawable to use as a vertical divider between buttons. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:divider */ public static final int LinearLayoutCompat_divider=5; /** * <p> * @attr description * Size of padding on either end of a divider. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding=6; /** * <p> * @attr description * When set to true, all children with a weight will be considered having * the minimum size of the largest child. If false, all children are * measured normally. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild=7; /** * <p> * @attr description * Setting for which dividers to show. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>beginning</td><td>1</td><td></td></tr> * <tr><td>end</td><td>4</td><td></td></tr> * <tr><td>middle</td><td>2</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:showDividers */ public static final int LinearLayoutCompat_showDividers=8; /** * Attributes that can be used with a LinearLayoutCompat_Layout. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> * <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> * </table> * @see #LinearLayoutCompat_Layout_android_layout_gravity * @see #LinearLayoutCompat_Layout_android_layout_width * @see #LinearLayoutCompat_Layout_android_layout_height * @see #LinearLayoutCompat_Layout_android_layout_weight */ public static final int[] LinearLayoutCompat_Layout={ 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_width} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width=1; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_height} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height=2; /** * <p>This symbol is the offset where the {@link android.R.attr#layout_weight} * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight=3; /** * Attributes that can be used with a ListPopupWindow. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> * <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> * </table> * @see #ListPopupWindow_android_dropDownHorizontalOffset * @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow={ 0x010102ac, 0x010102ad }; /** * <p> * @attr description * Amount of pixels by which the drop down should be offset horizontally. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset=0; /** * <p> * @attr description * Amount of pixels by which the drop down should be offset vertically. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset=1; /** * Attributes that can be used with a MenuGroup. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> * </table> * @see #MenuGroup_android_enabled * @see #MenuGroup_android_id * @see #MenuGroup_android_visible * @see #MenuGroup_android_menuCategory * @see #MenuGroup_android_orderInCategory * @see #MenuGroup_android_checkableBehavior */ public static final int[] MenuGroup={ 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** * <p> * @attr description * Whether the items are enabled. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:enabled */ public static final int MenuGroup_android_enabled=0; /** * <p> * @attr description * The ID of the group. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int MenuGroup_android_id=1; /** * <p> * @attr description * Whether the items are shown/visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int MenuGroup_android_visible=2; /** * <p> * @attr description * The category applied to all items within this group. * (This will be or'ed with the orderInCategory attribute.) * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory=3; /** * <p> * @attr description * The order within the category applied to all items within this group. * (This will be or'ed with the category attribute.) * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory=4; /** * <p> * @attr description * Whether the items are capable of displaying a check mark. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>all</td><td>1</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>single</td><td>2</td><td></td></tr> * </table> * * @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior=5; /** * Attributes that can be used with a MenuItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> * <tr><td><code>{@link #MenuItem_actionLayout org.changeip.seoul.malin:actionLayout}</code></td><td>An optional layout to be used as an action view.</td></tr> * <tr><td><code>{@link #MenuItem_actionProviderClass org.changeip.seoul.malin:actionProviderClass}</code></td><td>The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item.</td></tr> * <tr><td><code>{@link #MenuItem_actionViewClass org.changeip.seoul.malin:actionViewClass}</code></td><td>The name of an optional View class to instantiate and use as an * action view.</td></tr> * <tr><td><code>{@link #MenuItem_alphabeticModifiers org.changeip.seoul.malin:alphabeticModifiers}</code></td><td>The alphabetic modifier key.</td></tr> * <tr><td><code>{@link #MenuItem_contentDescription org.changeip.seoul.malin:contentDescription}</code></td><td>The content description associated with the item.</td></tr> * <tr><td><code>{@link #MenuItem_iconTint org.changeip.seoul.malin:iconTint}</code></td><td>Tint to apply to the icon.</td></tr> * <tr><td><code>{@link #MenuItem_iconTintMode org.changeip.seoul.malin:iconTintMode}</code></td><td>Blending mode used to apply the icon tint.</td></tr> * <tr><td><code>{@link #MenuItem_numericModifiers org.changeip.seoul.malin:numericModifiers}</code></td><td>The numeric modifier key.</td></tr> * <tr><td><code>{@link #MenuItem_showAsAction org.changeip.seoul.malin:showAsAction}</code></td><td>How this item should display in the Action Bar, if present.</td></tr> * <tr><td><code>{@link #MenuItem_tooltipText org.changeip.seoul.malin:tooltipText}</code></td><td>The tooltip text associated with the item.</td></tr> * </table> * @see #MenuItem_android_icon * @see #MenuItem_android_enabled * @see #MenuItem_android_id * @see #MenuItem_android_checked * @see #MenuItem_android_visible * @see #MenuItem_android_menuCategory * @see #MenuItem_android_orderInCategory * @see #MenuItem_android_title * @see #MenuItem_android_titleCondensed * @see #MenuItem_android_alphabeticShortcut * @see #MenuItem_android_numericShortcut * @see #MenuItem_android_checkable * @see #MenuItem_android_onClick * @see #MenuItem_actionLayout * @see #MenuItem_actionProviderClass * @see #MenuItem_actionViewClass * @see #MenuItem_alphabeticModifiers * @see #MenuItem_contentDescription * @see #MenuItem_iconTint * @see #MenuItem_iconTintMode * @see #MenuItem_numericModifiers * @see #MenuItem_showAsAction * @see #MenuItem_tooltipText */ public static final int[] MenuItem={ 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f02005c, 0x7f02008c, 0x7f02008d, 0x7f0200e3, 0x7f0200fe, 0x7f020138 }; /** * <p> * @attr description * The icon associated with this item. This icon will not always be shown, so * the title should be sufficient in describing this item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:icon */ public static final int MenuItem_android_icon=0; /** * <p> * @attr description * Whether the item is enabled. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:enabled */ public static final int MenuItem_android_enabled=1; /** * <p> * @attr description * The ID of the item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int MenuItem_android_id=2; /** * <p> * @attr description * Whether the item is checked. Note that you must first have enabled checking with * the checkable attribute or else the check mark will not appear. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checked */ public static final int MenuItem_android_checked=3; /** * <p> * @attr description * Whether the item is shown/visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int MenuItem_android_visible=4; /** * <p> * @attr description * The category applied to the item. * (This will be or'ed with the orderInCategory attribute.) * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>alternative</td><td>40000</td><td></td></tr> * <tr><td>container</td><td>10000</td><td></td></tr> * <tr><td>secondary</td><td>30000</td><td></td></tr> * <tr><td>system</td><td>20000</td><td></td></tr> * </table> * * @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory=5; /** * <p> * @attr description * The order within the category applied to the item. * (This will be or'ed with the category attribute.) * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory=6; /** * <p> * @attr description * The title associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:title */ public static final int MenuItem_android_title=7; /** * <p> * @attr description * The condensed title associated with the item. This is used in situations where the * normal title may be too long to be displayed. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed=8; /** * <p> * @attr description * The alphabetic shortcut key. This is the shortcut when using a keyboard * with alphabetic keys. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut=9; /** * <p> * @attr description * The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) * keyboard. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut=10; /** * <p> * @attr description * Whether the item is capable of displaying a check mark. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:checkable */ public static final int MenuItem_android_checkable=11; /** * <p> * @attr description * Name of a method on the Context used to inflate the menu that will be * called when the item is clicked. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:onClick */ public static final int MenuItem_android_onClick=12; /** * <p> * @attr description * An optional layout to be used as an action view. * See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:actionLayout */ public static final int MenuItem_actionLayout=13; /** * <p> * @attr description * The name of an optional ActionProvider class to instantiate an action view * and perform operations such as default action for that menu item. * See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} * for more info. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:actionProviderClass */ public static final int MenuItem_actionProviderClass=14; /** * <p> * @attr description * The name of an optional View class to instantiate and use as an * action view. See {@link android.view.MenuItem#setActionView(android.view.View)} * for more info. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:actionViewClass */ public static final int MenuItem_actionViewClass=15; /** * <p> * @attr description * The alphabetic modifier key. This is the modifier when using a keyboard * with alphabetic keys. The values should be kept in sync with KeyEvent * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:alphabeticModifiers */ public static final int MenuItem_alphabeticModifiers=16; /** * <p> * @attr description * The content description associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:contentDescription */ public static final int MenuItem_contentDescription=17; /** * <p> * @attr description * Tint to apply to the icon. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:iconTint */ public static final int MenuItem_iconTint=18; /** * <p> * @attr description * Blending mode used to apply the icon tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the icon’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The icon’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name org.changeip.seoul.malin:iconTintMode */ public static final int MenuItem_iconTintMode=19; /** * <p> * @attr description * The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key) * keyboard. The values should be kept in sync with KeyEvent * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>ALT</td><td>2</td><td></td></tr> * <tr><td>CTRL</td><td>1000</td><td></td></tr> * <tr><td>FUNCTION</td><td>8</td><td></td></tr> * <tr><td>META</td><td>10000</td><td></td></tr> * <tr><td>SHIFT</td><td>1</td><td></td></tr> * <tr><td>SYM</td><td>4</td><td></td></tr> * </table> * * @attr name org.changeip.seoul.malin:numericModifiers */ public static final int MenuItem_numericModifiers=20; /** * <p> * @attr description * How this item should display in the Action Bar, if present. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>always</td><td>2</td><td>Always show this item in an actionbar, even if it would override * the system's limits of how much stuff to put there. This may make * your action bar look bad on some screens. In most cases you should * use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".</td></tr> * <tr><td>collapseActionView</td><td>8</td><td>This item's action view collapses to a normal menu * item. When expanded, the action view takes over a * larger segment of its container.</td></tr> * <tr><td>ifRoom</td><td>1</td><td>Show this item in an action bar if there is room for it as determined * by the system. Favor this option over "always" where possible. * Mutually exclusive with "never" and "always".</td></tr> * <tr><td>never</td><td>0</td><td>Never show this item in an action bar, show it in the overflow menu instead. * Mutually exclusive with "ifRoom" and "always".</td></tr> * <tr><td>withText</td><td>4</td><td>When this item is shown as an action in the action bar, show a text * label with it even if it has an icon representation.</td></tr> * </table> * * @attr name org.changeip.seoul.malin:showAsAction */ public static final int MenuItem_showAsAction=21; /** * <p> * @attr description * The tooltip text associated with the item. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:tooltipText */ public static final int MenuItem_tooltipText=22; /** * Attributes that can be used with a MenuView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> * <tr><td><code>{@link #MenuView_preserveIconSpacing org.changeip.seoul.malin:preserveIconSpacing}</code></td><td>Whether space should be reserved in layout when an icon is missing.</td></tr> * <tr><td><code>{@link #MenuView_subMenuArrow org.changeip.seoul.malin:subMenuArrow}</code></td><td>Drawable for the arrow icon indicating a particular item is a submenu.</td></tr> * </table> * @see #MenuView_android_windowAnimationStyle * @see #MenuView_android_itemTextAppearance * @see #MenuView_android_horizontalDivider * @see #MenuView_android_verticalDivider * @see #MenuView_android_headerBackground * @see #MenuView_android_itemBackground * @see #MenuView_android_itemIconDisabledAlpha * @see #MenuView_preserveIconSpacing * @see #MenuView_subMenuArrow */ public static final int[] MenuView={ 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0200ef, 0x7f02010a }; /** * <p> * @attr description * Default animations for the menu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle=0; /** * <p> * @attr description * Default appearance of menu item text. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance=1; /** * <p> * @attr description * Default horizontal divider between rows of menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider=2; /** * <p> * @attr description * Default vertical divider between menu items. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider=3; /** * <p> * @attr description * Default background for the menu header. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:headerBackground */ public static final int MenuView_android_headerBackground=4; /** * <p> * @attr description * Default background for each menu item. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:itemBackground */ public static final int MenuView_android_itemBackground=5; /** * <p> * @attr description * Default disabled icon alpha for each menu item that shows an icon. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha=6; /** * <p> * @attr description * Whether space should be reserved in layout when an icon is missing. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing=7; /** * <p> * @attr description * Drawable for the arrow icon indicating a particular item is a submenu. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:subMenuArrow */ public static final int MenuView_subMenuArrow=8; /** * Attributes that can be used with a PopupWindow. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> * <tr><td><code>{@link #PopupWindow_overlapAnchor org.changeip.seoul.malin:overlapAnchor}</code></td><td>Whether the popup window should overlap its anchor view.</td></tr> * </table> * @see #PopupWindow_android_popupBackground * @see #PopupWindow_android_popupAnimationStyle * @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow={ 0x01010176, 0x010102c9, 0x7f0200e4 }; /** * <p>This symbol is the offset where the {@link android.R.attr#popupBackground} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground=0; /** * <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} * attribute's value can be found in the {@link #PopupWindow} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle=1; /** * <p> * @attr description * Whether the popup window should overlap its anchor view. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin: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 org.changeip.seoul.malin:state_above_anchor}</code></td><td>State identifier indicating the popup will be above the anchor.</td></tr> * </table> * @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState={ 0x7f020108 }; /** * <p> * @attr description * State identifier indicating the popup will be above the anchor. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin: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 org.changeip.seoul.malin:paddingBottomNoButtons}</code></td><td>Bottom padding to use when no buttons are present.</td></tr> * <tr><td><code>{@link #RecycleListView_paddingTopNoTitle org.changeip.seoul.malin:paddingTopNoTitle}</code></td><td>Top padding to use when no title is present.</td></tr> * </table> * @see #RecycleListView_paddingBottomNoButtons * @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView={ 0x7f0200e5, 0x7f0200e8 }; /** * <p> * @attr description * Bottom padding to use when no buttons are present. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons=0; /** * <p> * @attr description * Top padding to use when no title is present. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:paddingTopNoTitle */ public static final int RecycleListView_paddingTopNoTitle=1; /** * Attributes that can be used with a SearchView. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> * <tr><td><code>{@link #SearchView_closeIcon org.changeip.seoul.malin:closeIcon}</code></td><td>Close button icon</td></tr> * <tr><td><code>{@link #SearchView_commitIcon org.changeip.seoul.malin:commitIcon}</code></td><td>Commit icon shown in the query suggestion row</td></tr> * <tr><td><code>{@link #SearchView_defaultQueryHint org.changeip.seoul.malin:defaultQueryHint}</code></td><td>Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint.</td></tr> * <tr><td><code>{@link #SearchView_goIcon org.changeip.seoul.malin:goIcon}</code></td><td>Go button icon</td></tr> * <tr><td><code>{@link #SearchView_iconifiedByDefault org.changeip.seoul.malin:iconifiedByDefault}</code></td><td>The default state of the SearchView.</td></tr> * <tr><td><code>{@link #SearchView_layout org.changeip.seoul.malin:layout}</code></td><td>The layout to use for the search view.</td></tr> * <tr><td><code>{@link #SearchView_queryBackground org.changeip.seoul.malin:queryBackground}</code></td><td>Background for the section containing the search query</td></tr> * <tr><td><code>{@link #SearchView_queryHint org.changeip.seoul.malin:queryHint}</code></td><td>An optional user-defined query hint string to be displayed in the empty query field.</td></tr> * <tr><td><code>{@link #SearchView_searchHintIcon org.changeip.seoul.malin:searchHintIcon}</code></td><td>Search icon displayed as a text field hint</td></tr> * <tr><td><code>{@link #SearchView_searchIcon org.changeip.seoul.malin:searchIcon}</code></td><td>Search icon</td></tr> * <tr><td><code>{@link #SearchView_submitBackground org.changeip.seoul.malin:submitBackground}</code></td><td>Background for the section containing the action (e.g.</td></tr> * <tr><td><code>{@link #SearchView_suggestionRowLayout org.changeip.seoul.malin:suggestionRowLayout}</code></td><td>Layout for query suggestion rows</td></tr> * <tr><td><code>{@link #SearchView_voiceIcon org.changeip.seoul.malin:voiceIcon}</code></td><td>Voice button icon</td></tr> * </table> * @see #SearchView_android_focusable * @see #SearchView_android_maxWidth * @see #SearchView_android_inputType * @see #SearchView_android_imeOptions * @see #SearchView_closeIcon * @see #SearchView_commitIcon * @see #SearchView_defaultQueryHint * @see #SearchView_goIcon * @see #SearchView_iconifiedByDefault * @see #SearchView_layout * @see #SearchView_queryBackground * @see #SearchView_queryHint * @see #SearchView_searchHintIcon * @see #SearchView_searchIcon * @see #SearchView_submitBackground * @see #SearchView_suggestionRowLayout * @see #SearchView_voiceIcon */ public static final int[] SearchView={ 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f020049, 0x7f020058, 0x7f020066, 0x7f020086, 0x7f02008e, 0x7f020096, 0x7f0200f2, 0x7f0200f3, 0x7f0200f8, 0x7f0200f9, 0x7f02010b, 0x7f020110, 0x7f02013e }; /** * <p>This symbol is the offset where the {@link android.R.attr#focusable} * attribute's value can be found in the {@link #SearchView} array. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>10</td><td></td></tr> * </table> * * @attr name android:focusable */ public static final int SearchView_android_focusable=0; /** * <p> * @attr description * An optional maximum width of the SearchView. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:maxWidth */ public static final int SearchView_android_maxWidth=1; /** * <p> * @attr description * The input type to set on the query text field. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>date</td><td>14</td><td></td></tr> * <tr><td>datetime</td><td>4</td><td></td></tr> * <tr><td>none</td><td>0</td><td></td></tr> * <tr><td>number</td><td>2</td><td></td></tr> * <tr><td>numberDecimal</td><td>2002</td><td></td></tr> * <tr><td>numberPassword</td><td>12</td><td></td></tr> * <tr><td>numberSigned</td><td>1002</td><td></td></tr> * <tr><td>phone</td><td>3</td><td></td></tr> * <tr><td>text</td><td>1</td><td></td></tr> * <tr><td>textAutoComplete</td><td>10001</td><td></td></tr> * <tr><td>textAutoCorrect</td><td>8001</td><td></td></tr> * <tr><td>textCapCharacters</td><td>1001</td><td></td></tr> * <tr><td>textCapSentences</td><td>4001</td><td></td></tr> * <tr><td>textCapWords</td><td>2001</td><td></td></tr> * <tr><td>textEmailAddress</td><td>21</td><td></td></tr> * <tr><td>textEmailSubject</td><td>31</td><td></td></tr> * <tr><td>textFilter</td><td>b1</td><td></td></tr> * <tr><td>textImeMultiLine</td><td>40001</td><td></td></tr> * <tr><td>textLongMessage</td><td>51</td><td></td></tr> * <tr><td>textMultiLine</td><td>20001</td><td></td></tr> * <tr><td>textNoSuggestions</td><td>80001</td><td></td></tr> * <tr><td>textPassword</td><td>81</td><td></td></tr> * <tr><td>textPersonName</td><td>61</td><td></td></tr> * <tr><td>textPhonetic</td><td>c1</td><td></td></tr> * <tr><td>textPostalAddress</td><td>71</td><td></td></tr> * <tr><td>textShortMessage</td><td>41</td><td></td></tr> * <tr><td>textUri</td><td>11</td><td></td></tr> * <tr><td>textVisiblePassword</td><td>91</td><td></td></tr> * <tr><td>textWebEditText</td><td>a1</td><td></td></tr> * <tr><td>textWebEmailAddress</td><td>d1</td><td></td></tr> * <tr><td>textWebPassword</td><td>e1</td><td></td></tr> * <tr><td>time</td><td>24</td><td></td></tr> * </table> * * @attr name android:inputType */ public static final int SearchView_android_inputType=2; /** * <p> * @attr description * The IME options to set on the query text field. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>actionDone</td><td>6</td><td></td></tr> * <tr><td>actionGo</td><td>2</td><td></td></tr> * <tr><td>actionNext</td><td>5</td><td></td></tr> * <tr><td>actionNone</td><td>1</td><td></td></tr> * <tr><td>actionPrevious</td><td>7</td><td></td></tr> * <tr><td>actionSearch</td><td>3</td><td></td></tr> * <tr><td>actionSend</td><td>4</td><td></td></tr> * <tr><td>actionUnspecified</td><td>0</td><td></td></tr> * <tr><td>flagForceAscii</td><td>80000000</td><td></td></tr> * <tr><td>flagNavigateNext</td><td>8000000</td><td></td></tr> * <tr><td>flagNavigatePrevious</td><td>4000000</td><td></td></tr> * <tr><td>flagNoAccessoryAction</td><td>20000000</td><td></td></tr> * <tr><td>flagNoEnterAction</td><td>40000000</td><td></td></tr> * <tr><td>flagNoExtractUi</td><td>10000000</td><td></td></tr> * <tr><td>flagNoFullscreen</td><td>2000000</td><td></td></tr> * <tr><td>flagNoPersonalizedLearning</td><td>1000000</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:imeOptions */ public static final int SearchView_android_imeOptions=3; /** * <p> * @attr description * Close button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:closeIcon */ public static final int SearchView_closeIcon=4; /** * <p> * @attr description * Commit icon shown in the query suggestion row * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:commitIcon */ public static final int SearchView_commitIcon=5; /** * <p> * @attr description * Default query hint used when {@code queryHint} is undefined and * the search view's {@code SearchableInfo} does not provide a hint. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:defaultQueryHint */ public static final int SearchView_defaultQueryHint=6; /** * <p> * @attr description * Go button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:goIcon */ public static final int SearchView_goIcon=7; /** * <p> * @attr description * The default state of the SearchView. If true, it will be iconified when not in * use and expanded when clicked. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault=8; /** * <p> * @attr description * The layout to use for the search view. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:layout */ public static final int SearchView_layout=9; /** * <p> * @attr description * Background for the section containing the search query * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:queryBackground */ public static final int SearchView_queryBackground=10; /** * <p> * @attr description * An optional user-defined query hint string to be displayed in the empty query field. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:queryHint */ public static final int SearchView_queryHint=11; /** * <p> * @attr description * Search icon displayed as a text field hint * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:searchHintIcon */ public static final int SearchView_searchHintIcon=12; /** * <p> * @attr description * Search icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:searchIcon */ public static final int SearchView_searchIcon=13; /** * <p> * @attr description * Background for the section containing the action (e.g. voice search) * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:submitBackground */ public static final int SearchView_submitBackground=14; /** * <p> * @attr description * Layout for query suggestion rows * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout=15; /** * <p> * @attr description * Voice button icon * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:voiceIcon */ public static final int SearchView_voiceIcon=16; /** * Attributes that can be used with a Spinner. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> * <tr><td><code>{@link #Spinner_popupTheme org.changeip.seoul.malin:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * </table> * @see #Spinner_android_entries * @see #Spinner_android_popupBackground * @see #Spinner_android_prompt * @see #Spinner_android_dropDownWidth * @see #Spinner_popupTheme */ public static final int[] Spinner={ 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0200ed }; /** * <p> * @attr description * Reference to an array resource that will populate the Spinner. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:entries */ public static final int Spinner_android_entries=0; /** * <p> * @attr description * Background drawable to use for the dropdown in spinnerMode="dropdown". * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:popupBackground */ public static final int Spinner_android_popupBackground=1; /** * <p> * @attr description * The prompt to display when the spinner's dialog is shown. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:prompt */ public static final int Spinner_android_prompt=2; /** * <p> * @attr description * Width of the dropdown in spinnerMode="dropdown". * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>match_parent</td><td>ffffffff</td><td></td></tr> * <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr> * </table> * * @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth=3; /** * <p> * @attr description * Theme to use for the drop-down or dialog popup window. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:popupTheme */ public static final int Spinner_popupTheme=4; /** * Attributes that can be used with a StateListDrawable. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #StateListDrawable_android_dither android:dither}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_visible android:visible}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_variablePadding android:variablePadding}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_constantSize android:constantSize}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr> * <tr><td><code>{@link #StateListDrawable_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr> * </table> * @see #StateListDrawable_android_dither * @see #StateListDrawable_android_visible * @see #StateListDrawable_android_variablePadding * @see #StateListDrawable_android_constantSize * @see #StateListDrawable_android_enterFadeDuration * @see #StateListDrawable_android_exitFadeDuration */ public static final int[] StateListDrawable={ 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }; /** * <p> * @attr description * Enables or disables dithering of the bitmap if the bitmap does not have the * same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with * an RGB 565 screen). * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:dither */ public static final int StateListDrawable_android_dither=0; /** * <p> * @attr description * Indicates whether the drawable should be initially visible. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:visible */ public static final int StateListDrawable_android_visible=1; /** * <p> * @attr description * If true, allows the drawable's padding to change based on the * current state that is selected. If false, the padding will * stay the same (based on the maximum padding of all the states). * Enabling this feature requires that the owner of the drawable * deal with performing layout when the state changes, which is * often not supported. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:variablePadding */ public static final int StateListDrawable_android_variablePadding=2; /** * <p> * @attr description * If true, the drawable's reported internal size will remain * constant as the state changes; the size is the maximum of all * of the states. If false, the size will vary based on the * current state. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name android:constantSize */ public static final int StateListDrawable_android_constantSize=3; /** * <p> * @attr description * Amount of time (in milliseconds) to fade in a new state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:enterFadeDuration */ public static final int StateListDrawable_android_enterFadeDuration=4; /** * <p> * @attr description * Amount of time (in milliseconds) to fade out an old state drawable. * * <p>May be an integer value, such as "<code>100</code>". * * @attr name android:exitFadeDuration */ public static final int StateListDrawable_android_exitFadeDuration=5; /** * Attributes that can be used with a StateListDrawableItem. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #StateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr> * </table> * @see #StateListDrawableItem_android_drawable */ public static final int[] StateListDrawableItem={ 0x01010199 }; /** * <p> * @attr description * Reference to a drawable resource to use for the state. If not * given, the drawable must be defined by the first child tag. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:drawable */ public static final int StateListDrawableItem_android_drawable=0; /** * Attributes that can be used with a SwitchCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> * <tr><td><code>{@link #SwitchCompat_showText org.changeip.seoul.malin:showText}</code></td><td>Whether to draw on/off text.</td></tr> * <tr><td><code>{@link #SwitchCompat_splitTrack org.changeip.seoul.malin:splitTrack}</code></td><td>Whether to split the track and leave a gap for the thumb drawable.</td></tr> * <tr><td><code>{@link #SwitchCompat_switchMinWidth org.changeip.seoul.malin:switchMinWidth}</code></td><td>Minimum width for the switch component</td></tr> * <tr><td><code>{@link #SwitchCompat_switchPadding org.changeip.seoul.malin:switchPadding}</code></td><td>Minimum space between the switch and caption text</td></tr> * <tr><td><code>{@link #SwitchCompat_switchTextAppearance org.changeip.seoul.malin:switchTextAppearance}</code></td><td>TextAppearance style for text displayed on the switch thumb.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTextPadding org.changeip.seoul.malin:thumbTextPadding}</code></td><td>Amount of padding on either side of text within the switch thumb.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTint org.changeip.seoul.malin:thumbTint}</code></td><td>Tint to apply to the thumb drawable.</td></tr> * <tr><td><code>{@link #SwitchCompat_thumbTintMode org.changeip.seoul.malin:thumbTintMode}</code></td><td>Blending mode used to apply the thumb tint.</td></tr> * <tr><td><code>{@link #SwitchCompat_track org.changeip.seoul.malin:track}</code></td><td>Drawable to use as the "track" that the switch thumb slides within.</td></tr> * <tr><td><code>{@link #SwitchCompat_trackTint org.changeip.seoul.malin:trackTint}</code></td><td>Tint to apply to the track.</td></tr> * <tr><td><code>{@link #SwitchCompat_trackTintMode org.changeip.seoul.malin:trackTintMode}</code></td><td>Blending mode used to apply the track tint.</td></tr> * </table> * @see #SwitchCompat_android_textOn * @see #SwitchCompat_android_textOff * @see #SwitchCompat_android_thumb * @see #SwitchCompat_showText * @see #SwitchCompat_splitTrack * @see #SwitchCompat_switchMinWidth * @see #SwitchCompat_switchPadding * @see #SwitchCompat_switchTextAppearance * @see #SwitchCompat_thumbTextPadding * @see #SwitchCompat_thumbTint * @see #SwitchCompat_thumbTintMode * @see #SwitchCompat_track * @see #SwitchCompat_trackTint * @see #SwitchCompat_trackTintMode */ public static final int[] SwitchCompat={ 0x01010124, 0x01010125, 0x01010142, 0x7f020100, 0x7f020106, 0x7f020111, 0x7f020112, 0x7f020114, 0x7f020122, 0x7f020123, 0x7f020124, 0x7f020139, 0x7f02013a, 0x7f02013b }; /** * <p> * @attr description * Text to use when the switch is in the checked/"on" state. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:textOn */ public static final int SwitchCompat_android_textOn=0; /** * <p> * @attr description * Text to use when the switch is in the unchecked/"off" state. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:textOff */ public static final int SwitchCompat_android_textOff=1; /** * <p> * @attr description * Drawable to use as the "thumb" that switches back and forth. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:thumb */ public static final int SwitchCompat_android_thumb=2; /** * <p> * @attr description * Whether to draw on/off text. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:showText */ public static final int SwitchCompat_showText=3; /** * <p> * @attr description * Whether to split the track and leave a gap for the thumb drawable. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:splitTrack */ public static final int SwitchCompat_splitTrack=4; /** * <p> * @attr description * Minimum width for the switch component * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:switchMinWidth */ public static final int SwitchCompat_switchMinWidth=5; /** * <p> * @attr description * Minimum space between the switch and caption text * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:switchPadding */ public static final int SwitchCompat_switchPadding=6; /** * <p> * @attr description * TextAppearance style for text displayed on the switch thumb. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance=7; /** * <p> * @attr description * Amount of padding on either side of text within the switch thumb. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding=8; /** * <p> * @attr description * Tint to apply to the thumb drawable. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:thumbTint */ public static final int SwitchCompat_thumbTint=9; /** * <p> * @attr description * Blending mode used to apply the thumb tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name org.changeip.seoul.malin:thumbTintMode */ public static final int SwitchCompat_thumbTintMode=10; /** * <p> * @attr description * Drawable to use as the "track" that the switch thumb slides within. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:track */ public static final int SwitchCompat_track=11; /** * <p> * @attr description * Tint to apply to the track. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:trackTint */ public static final int SwitchCompat_trackTint=12; /** * <p> * @attr description * Blending mode used to apply the track tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name org.changeip.seoul.malin:trackTintMode */ public static final int SwitchCompat_trackTintMode=13; /** * Attributes that can be used with a TextAppearance. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr> * <tr><td><code>{@link #TextAppearance_fontFamily org.changeip.seoul.malin:fontFamily}</code></td><td>The attribute for the font family.</td></tr> * <tr><td><code>{@link #TextAppearance_textAllCaps org.changeip.seoul.malin:textAllCaps}</code></td><td>Present the text in ALL CAPS.</td></tr> * </table> * @see #TextAppearance_android_textSize * @see #TextAppearance_android_typeface * @see #TextAppearance_android_textStyle * @see #TextAppearance_android_textColor * @see #TextAppearance_android_textColorHint * @see #TextAppearance_android_textColorLink * @see #TextAppearance_android_shadowColor * @see #TextAppearance_android_shadowDx * @see #TextAppearance_android_shadowDy * @see #TextAppearance_android_shadowRadius * @see #TextAppearance_android_fontFamily * @see #TextAppearance_fontFamily * @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance={ 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f02007b, 0x7f020115 }; /** * <p>This symbol is the offset where the {@link android.R.attr#textSize} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:textSize */ public static final int TextAppearance_android_textSize=0; /** * <p>This symbol is the offset where the {@link android.R.attr#typeface} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>monospace</td><td>3</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * <tr><td>sans</td><td>1</td><td></td></tr> * <tr><td>serif</td><td>2</td><td></td></tr> * </table> * * @attr name android:typeface */ public static final int TextAppearance_android_typeface=1; /** * <p>This symbol is the offset where the {@link android.R.attr#textStyle} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bold</td><td>1</td><td></td></tr> * <tr><td>italic</td><td>2</td><td></td></tr> * <tr><td>normal</td><td>0</td><td></td></tr> * </table> * * @attr name android:textStyle */ public static final int TextAppearance_android_textStyle=2; /** * <p>This symbol is the offset where the {@link android.R.attr#textColor} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColor */ public static final int TextAppearance_android_textColor=3; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorHint} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColorHint */ public static final int TextAppearance_android_textColorHint=4; /** * <p>This symbol is the offset where the {@link android.R.attr#textColorLink} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:textColorLink */ public static final int TextAppearance_android_textColorLink=5; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowColor} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor=6; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowDx} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx=7; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowDy} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy=8; /** * <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a floating point value, such as "<code>1.2</code>". * * @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius=9; /** * <p>This symbol is the offset where the {@link android.R.attr#fontFamily} * attribute's value can be found in the {@link #TextAppearance} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name android:fontFamily */ public static final int TextAppearance_android_fontFamily=10; /** * <p> * @attr description * The attribute for the font family. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:fontFamily */ public static final int TextAppearance_fontFamily=11; /** * <p> * @attr description * Present the text in ALL CAPS. This may use a small-caps form when available. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * * @attr name org.changeip.seoul.malin:textAllCaps */ public static final int TextAppearance_textAllCaps=12; /** * 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 org.changeip.seoul.malin:buttonGravity}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_collapseContentDescription org.changeip.seoul.malin:collapseContentDescription}</code></td><td>Text to set as the content description for the collapse button.</td></tr> * <tr><td><code>{@link #Toolbar_collapseIcon org.changeip.seoul.malin:collapseIcon}</code></td><td>Icon drawable to use for the collapse button.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEnd org.changeip.seoul.malin:contentInsetEnd}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetEndWithActions org.changeip.seoul.malin:contentInsetEndWithActions}</code></td><td>Minimum inset for content views within a bar when actions from a menu * are present.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetLeft org.changeip.seoul.malin:contentInsetLeft}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetRight org.changeip.seoul.malin:contentInsetRight}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStart org.changeip.seoul.malin:contentInsetStart}</code></td><td>Minimum inset for content views within a bar.</td></tr> * <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation org.changeip.seoul.malin:contentInsetStartWithNavigation}</code></td><td>Minimum inset for content views within a bar when a navigation button * is present, such as the Up button.</td></tr> * <tr><td><code>{@link #Toolbar_logo org.changeip.seoul.malin:logo}</code></td><td>Specifies the drawable used for the application logo.</td></tr> * <tr><td><code>{@link #Toolbar_logoDescription org.changeip.seoul.malin:logoDescription}</code></td><td>A content description string to describe the appearance of the * associated logo image.</td></tr> * <tr><td><code>{@link #Toolbar_maxButtonHeight org.changeip.seoul.malin:maxButtonHeight}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_navigationContentDescription org.changeip.seoul.malin:navigationContentDescription}</code></td><td>Text to set as the content description for the navigation button * located at the start of the toolbar.</td></tr> * <tr><td><code>{@link #Toolbar_navigationIcon org.changeip.seoul.malin:navigationIcon}</code></td><td>Icon drawable to use for the navigation button located at * the start of the toolbar.</td></tr> * <tr><td><code>{@link #Toolbar_popupTheme org.changeip.seoul.malin:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups * shown by widgets in the action bar.</td></tr> * <tr><td><code>{@link #Toolbar_subtitle org.changeip.seoul.malin:subtitle}</code></td><td>Specifies subtitle text used for navigationMode="normal"</td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextAppearance org.changeip.seoul.malin:subtitleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_subtitleTextColor org.changeip.seoul.malin:subtitleTextColor}</code></td><td>A color to apply to the subtitle string.</td></tr> * <tr><td><code>{@link #Toolbar_title org.changeip.seoul.malin:title}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleMargin org.changeip.seoul.malin:titleMargin}</code></td><td>Specifies extra space on the left, start, right and end sides * of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginBottom org.changeip.seoul.malin:titleMarginBottom}</code></td><td>Specifies extra space on the bottom side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginEnd org.changeip.seoul.malin:titleMarginEnd}</code></td><td>Specifies extra space on the end side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginStart org.changeip.seoul.malin:titleMarginStart}</code></td><td>Specifies extra space on the start side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMarginTop org.changeip.seoul.malin:titleMarginTop}</code></td><td>Specifies extra space on the top side of the toolbar's title.</td></tr> * <tr><td><code>{@link #Toolbar_titleMargins org.changeip.seoul.malin:titleMargins}</code></td><td>{@deprecated Use titleMargin}</td></tr> * <tr><td><code>{@link #Toolbar_titleTextAppearance org.changeip.seoul.malin:titleTextAppearance}</code></td><td></td></tr> * <tr><td><code>{@link #Toolbar_titleTextColor org.changeip.seoul.malin:titleTextColor}</code></td><td>A color to apply to the title string.</td></tr> * </table> * @see #Toolbar_android_gravity * @see #Toolbar_android_minHeight * @see #Toolbar_buttonGravity * @see #Toolbar_collapseContentDescription * @see #Toolbar_collapseIcon * @see #Toolbar_contentInsetEnd * @see #Toolbar_contentInsetEndWithActions * @see #Toolbar_contentInsetLeft * @see #Toolbar_contentInsetRight * @see #Toolbar_contentInsetStart * @see #Toolbar_contentInsetStartWithNavigation * @see #Toolbar_logo * @see #Toolbar_logoDescription * @see #Toolbar_maxButtonHeight * @see #Toolbar_navigationContentDescription * @see #Toolbar_navigationIcon * @see #Toolbar_popupTheme * @see #Toolbar_subtitle * @see #Toolbar_subtitleTextAppearance * @see #Toolbar_subtitleTextColor * @see #Toolbar_title * @see #Toolbar_titleMargin * @see #Toolbar_titleMarginBottom * @see #Toolbar_titleMarginEnd * @see #Toolbar_titleMarginStart * @see #Toolbar_titleMarginTop * @see #Toolbar_titleMargins * @see #Toolbar_titleTextAppearance * @see #Toolbar_titleTextColor */ @Deprecated public static final int[] Toolbar={ 0x010100af, 0x01010140, 0x7f02003f, 0x7f02004b, 0x7f02004c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f020062, 0x7f0200db, 0x7f0200dc, 0x7f0200dd, 0x7f0200e0, 0x7f0200e1, 0x7f0200ed, 0x7f02010c, 0x7f02010d, 0x7f02010e, 0x7f02012a, 0x7f02012b, 0x7f02012c, 0x7f02012d, 0x7f02012e, 0x7f02012f, 0x7f020130, 0x7f020131, 0x7f020132 }; /** * <p>This symbol is the offset where the {@link android.R.attr#gravity} * attribute's value can be found in the {@link #Toolbar} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td></td></tr> * <tr><td>center</td><td>11</td><td></td></tr> * <tr><td>center_horizontal</td><td>1</td><td></td></tr> * <tr><td>center_vertical</td><td>10</td><td></td></tr> * <tr><td>clip_horizontal</td><td>8</td><td></td></tr> * <tr><td>clip_vertical</td><td>80</td><td></td></tr> * <tr><td>end</td><td>800005</td><td></td></tr> * <tr><td>fill</td><td>77</td><td></td></tr> * <tr><td>fill_horizontal</td><td>7</td><td></td></tr> * <tr><td>fill_vertical</td><td>70</td><td></td></tr> * <tr><td>left</td><td>3</td><td></td></tr> * <tr><td>right</td><td>5</td><td></td></tr> * <tr><td>start</td><td>800003</td><td></td></tr> * <tr><td>top</td><td>30</td><td></td></tr> * </table> * * @attr name android:gravity */ public static final int Toolbar_android_gravity=0; /** * <p>This symbol is the offset where the {@link android.R.attr#minHeight} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name android:minHeight */ public static final int Toolbar_android_minHeight=1; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#buttonGravity} * attribute's value can be found in the {@link #Toolbar} array. * * <p>Must be one or more (separated by '|') of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr> * <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr> * </table> * * @attr name org.changeip.seoul.malin:buttonGravity */ public static final int Toolbar_buttonGravity=2; /** * <p> * @attr description * Text to set as the content description for the collapse button. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:collapseContentDescription */ public static final int Toolbar_collapseContentDescription=3; /** * <p> * @attr description * Icon drawable to use for the collapse button. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:collapseIcon */ public static final int Toolbar_collapseIcon=4; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetEnd */ public static final int Toolbar_contentInsetEnd=5; /** * <p> * @attr description * Minimum inset for content views within a bar when actions from a menu * are present. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions=6; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetLeft */ public static final int Toolbar_contentInsetLeft=7; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetRight */ public static final int Toolbar_contentInsetRight=8; /** * <p> * @attr description * Minimum inset for content views within a bar. Navigation buttons and * menu views are excepted. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetStart */ public static final int Toolbar_contentInsetStart=9; /** * <p> * @attr description * Minimum inset for content views within a bar when a navigation button * is present, such as the Up button. Only valid for some themes and configurations. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation=10; /** * <p> * @attr description * Drawable to set as the logo that appears at the starting side of * the Toolbar, just after the navigation button. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:logo */ public static final int Toolbar_logo=11; /** * <p> * @attr description * A content description string to describe the appearance of the * associated logo image. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:logoDescription */ public static final int Toolbar_logoDescription=12; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#maxButtonHeight} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:maxButtonHeight */ public static final int Toolbar_maxButtonHeight=13; /** * <p> * @attr description * Text to set as the content description for the navigation button * located at the start of the toolbar. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:navigationContentDescription */ public static final int Toolbar_navigationContentDescription=14; /** * <p> * @attr description * Icon drawable to use for the navigation button located at * the start of the toolbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:navigationIcon */ public static final int Toolbar_navigationIcon=15; /** * <p> * @attr description * Reference to a theme that should be used to inflate popups * shown by widgets in the toolbar. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:popupTheme */ public static final int Toolbar_popupTheme=16; /** * <p> * @attr description * Specifies subtitle text used for navigationMode="normal" * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:subtitle */ public static final int Toolbar_subtitle=17; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#subtitleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance=18; /** * <p> * @attr description * A color to apply to the subtitle string. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:subtitleTextColor */ public static final int Toolbar_subtitleTextColor=19; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#title} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a string value, using '\\;' to escape characters such as * '\\n' or '\\uxxxx' for a unicode character; * * @attr name org.changeip.seoul.malin:title */ public static final int Toolbar_title=20; /** * <p> * @attr description * Specifies extra space on the left, start, right and end sides * of the toolbar's title. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:titleMargin */ public static final int Toolbar_titleMargin=21; /** * <p> * @attr description * Specifies extra space on the bottom side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:titleMarginBottom */ public static final int Toolbar_titleMarginBottom=22; /** * <p> * @attr description * Specifies extra space on the end side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:titleMarginEnd */ public static final int Toolbar_titleMarginEnd=23; /** * <p> * @attr description * Specifies extra space on the start side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:titleMarginStart */ public static final int Toolbar_titleMarginStart=24; /** * <p> * @attr description * Specifies extra space on the top side of the toolbar's title. * If both this attribute and titleMargin are specified, then this * attribute takes precedence. Margin values should be positive. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:titleMarginTop */ public static final int Toolbar_titleMarginTop=25; /** * <p> * @attr description * {@deprecated Use titleMargin} * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:titleMargins */ @Deprecated public static final int Toolbar_titleMargins=26; /** * <p>This symbol is the offset where the {@link org.changeip.seoul.malin.R.attr#titleTextAppearance} * attribute's value can be found in the {@link #Toolbar} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin:titleTextAppearance */ public static final int Toolbar_titleTextAppearance=27; /** * <p> * @attr description * A color to apply to the title string. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:titleTextColor */ public static final int Toolbar_titleTextColor=28; /** * Attributes that can be used with a View. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> * <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> * <tr><td><code>{@link #View_paddingEnd org.changeip.seoul.malin:paddingEnd}</code></td><td>Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.</td></tr> * <tr><td><code>{@link #View_paddingStart org.changeip.seoul.malin:paddingStart}</code></td><td>Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.</td></tr> * <tr><td><code>{@link #View_theme org.changeip.seoul.malin:theme}</code></td><td>Deprecated.</td></tr> * </table> * @see #View_android_theme * @see #View_android_focusable * @see #View_paddingEnd * @see #View_paddingStart * @see #View_theme */ public static final int[] View={ 0x01010000, 0x010100da, 0x7f0200e6, 0x7f0200e7, 0x7f020120 }; /** * <p> * @attr description * Specifies a theme override for a view. When a theme override is set, the * view will be inflated using a {@link android.content.Context} themed with * the specified resource. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:theme */ public static final int View_android_theme=0; /** * <p> * @attr description * Boolean that controls whether a view can take focus. By default the user can not * move focus to a view; by setting this attribute to true the view is * allowed to take focus. This value does not impact the behavior of * directly calling {@link android.view.View#requestFocus}, which will * always request focus regardless of this view. It only impacts where * focus navigation will try to move focus. * * <p>May be a boolean value, such as "<code>true</code>" or * "<code>false</code>". * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>auto</td><td>10</td><td></td></tr> * </table> * * @attr name android:focusable */ public static final int View_android_focusable=1; /** * <p> * @attr description * Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:paddingEnd */ public static final int View_paddingEnd=2; /** * <p> * @attr description * Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. * * <p>May be a dimension value, which is a floating point number appended with a * unit such as "<code>14.5sp</code>". * Available units are: px (pixels), dp (density-independent pixels), * sp (scaled pixels based on preferred font size), in (inches), and * mm (millimeters). * * @attr name org.changeip.seoul.malin:paddingStart */ public static final int View_paddingStart=3; /** * <p> * @attr description * Deprecated. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name org.changeip.seoul.malin: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 org.changeip.seoul.malin:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr> * <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode org.changeip.seoul.malin:backgroundTintMode}</code></td><td>Blending mode used to apply the background tint.</td></tr> * </table> * @see #ViewBackgroundHelper_android_background * @see #ViewBackgroundHelper_backgroundTint * @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper={ 0x010100d4, 0x7f020034, 0x7f020035 }; /** * <p>This symbol is the offset where the {@link android.R.attr#background} * attribute's value can be found in the {@link #ViewBackgroundHelper} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name android:background */ public static final int ViewBackgroundHelper_android_background=0; /** * <p> * @attr description * Tint to apply to the background. * * <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", * "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or * "<code>#<i>aarrggbb</i></code>". * * @attr name org.changeip.seoul.malin:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint=1; /** * <p> * @attr description * Blending mode used to apply the background tint. * * <p>Must be one of the following constant values.</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Constant</th><th>Value</th><th>Description</th></tr> * <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the * result to valid color values. Saturate(S + D)</td></tr> * <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of * the tint. [Sa * Da, Sc * Dc]</td></tr> * <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr> * <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha * channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr> * <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s * color channels are thrown out. [Sa * Da, Sc * Da]</td></tr> * <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable. * [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr> * </table> * * @attr name org.changeip.seoul.malin:backgroundTintMode */ public static final int ViewBackgroundHelper_backgroundTintMode=2; /** * Attributes that can be used with a ViewStubCompat. * <p>Includes the following attributes:</p> * <table> * <colgroup align="left" /> * <colgroup align="left" /> * <tr><th>Attribute</th><th>Description</th></tr> * <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr> * <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr> * <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> * </table> * @see #ViewStubCompat_android_id * @see #ViewStubCompat_android_layout * @see #ViewStubCompat_android_inflatedId */ public static final int[] ViewStubCompat={ 0x010100d0, 0x010100f2, 0x010100f3 }; /** * <p>This symbol is the offset where the {@link android.R.attr#id} * attribute's value can be found in the {@link #ViewStubCompat} array. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:id */ public static final int ViewStubCompat_android_id=0; /** * <p> * @attr description * Supply an identifier for the layout resource to inflate when the ViewStub * becomes visible or when forced to do so. The layout resource must be a * valid reference to a layout. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:layout */ public static final int ViewStubCompat_android_layout=1; /** * <p> * @attr description * Overrides the id of the inflated View with this value. * * <p>May be a reference to another resource, in the form * "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme * attribute in the form * "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>". * * @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId=2; } }
[ "rev.bang@gmail.com" ]
rev.bang@gmail.com
77f92d0ec67146352a6162eca37d9760b4e2cf29
5407dbe691c629fbd60064d23f72adec9bdfbdb1
/app/src/main/gen/com/example/prasetyo/moviedb/Manifest.java
148e1ee266439dccd2b9f991ba8b1e394be2a41b
[]
no_license
dtprsty/dicoding-MovieDb
f2d41a175bfd277c0ad0f467892a6bc14d03f070
d0bdbed02a72ab9ad129fc43733abef75ba5dc6a
refs/heads/master
2020-03-27T23:05:39.516957
2018-12-15T06:38:58
2018-12-15T06:38:58
147,289,815
0
0
null
null
null
null
UTF-8
Java
false
false
198
java
/*___Generated_by_IDEA___*/ package com.example.prasetyo.moviedb; /* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */ public final class Manifest { }
[ "dtprsty@gmail.com" ]
dtprsty@gmail.com
82c11ec7675b14879eac6b4e1df0836c975843c5
834fa8ceb988a6e0e198d2da90fa5e23632202e6
/src/Chapter12/Test21/Father.java
b4e1ad050cbe83ae017fb42347978108c140a03d
[]
no_license
EamonYin/Thinking-in-Java-Exercise
70a1f72cea8f7aa090268e31c8ec3515d25ccddc
a2c89c969b867e713cefd90bf2098097b2df5fdc
refs/heads/master
2022-12-28T13:58:40.580967
2020-10-07T00:19:51
2020-10-07T00:19:51
null
0
0
null
null
null
null
UTF-8
Java
false
false
233
java
package Chapter12.Test21; /** * @author:YiMing * @create:2020/8/13,20:03 * @version:1.0 */ public class Father { public Father() throws FatherException { throw new FatherException("this is fatherException"); } }
[ "l" ]
l
20b977c6f95e4e85373766d91d4f87fa56982e50
5e80ff98ebbdcaa4e1e692f6344a9dee3d4df5aa
/src/main/java/com/laptrinhjavaweb/dto/MyUser.java
448a9d7dce09f1b13f432c93190d732ad8dc207e
[]
no_license
NVCToan/springboot-mysql-herokuserver
0c9bf3c4f590d8e43d148ce2d4484d51fefc01dd
ef251862b77aa6a05d0de7f06c821559359f262c
refs/heads/master
2023-05-31T21:43:25.749698
2021-07-08T16:26:02
2021-07-08T16:26:02
384,184,641
0
0
null
null
null
null
UTF-8
Java
false
false
804
java
package com.laptrinhjavaweb.dto; import java.util.Collection; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.userdetails.User; //Lop de sustom lai lop user da duoc viet san public class MyUser extends User{ public MyUser(String username, String password, boolean enabled, boolean accountNonExpired, boolean credentialsNonExpired, boolean accountNonLocked, Collection<? extends GrantedAuthority> authorities) { super(username, password, enabled, accountNonExpired, credentialsNonExpired, accountNonLocked, authorities); // TODO Auto-generated constructor stub } private String fullName; public void setFullName(String fullName) { this.fullName = fullName; } public String getFullName() { return this.fullName; } }
[ "toann7700@gmail.com" ]
toann7700@gmail.com
14dff726d0ae10d8a033ace54534b87fd97bb033
80addf939aac0e118067574d9358dbfcdb794ac6
/TMS/firstlesson (7)/firstlesson/src/by/tms/test/C.java
6feed9b1b14b03b699a5df49780a8f45c56fff5b
[]
no_license
GH-Slav/myJava
80526cf0f56303b978fcc2f2559dc0210172feb9
3f9e04b1be8f856e5d8b23e7f8eac105186f5f4c
refs/heads/master
2021-05-18T11:34:03.138190
2020-03-30T06:52:27
2020-03-30T06:52:27
251,228,167
0
0
null
null
null
null
UTF-8
Java
false
false
195
java
package by.tms.test; public class C extends B { public static int a = 12; public void run(String a){ } // public static void abc(){ // System.out.println("C"); // } }
[ "59572751+GH-Slav@users.noreply.github.com" ]
59572751+GH-Slav@users.noreply.github.com
c1442352c64931eef5eac5c825fd400d418594f3
98f3528d8fe947e4c26004d7ae8df6cb71923304
/PDF.co Web API/DOC To PDF API/Java/Convert DOC To PDF From URL/src/com/company/Main.java
dc5792f17bcfb8b31932ce84153a8605b0b41311
[ "Apache-2.0" ]
permissive
fairhopeweb/ByteScout-SDK-SourceCode
881724ce5a162f84ccaef0b54bb4a1498ef122a5
36a4f67b1fa45b609d75da99485635f09327586a
refs/heads/master
2023-07-17T23:22:45.643466
2021-09-06T14:56:44
2021-09-06T14:56:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,883
java
//*******************************************************************************************// // // // Download Free Evaluation Version From: https://bytescout.com/download/web-installer // // // // Also available as Web API! Get Your Free API Key: https://app.pdf.co/signup // // // // Copyright © 2017-2020 ByteScout, Inc. All rights reserved. // // https://www.bytescout.com // // https://pdf.co // // // //*******************************************************************************************// package com.company; import com.google.gson.JsonObject; import com.google.gson.JsonParser; import okhttp3.*; import java.io.*; import java.net.*; import java.nio.file.Path; import java.nio.file.Paths; public class Main { // The authentication key (API Key). // Get your own by registering at https://app.pdf.co/documentation/api final static String API_KEY = "***********************************"; // Direct URL of source DOC or DOCX file. // You can also upload your own file into PDF.co and use it as url. Check "Upload File" samples for code snippets: https://github.com/bytescout/pdf-co-api-samples/tree/master/File%20Upload/ final static String SourceFileUrl = "https://bytescout-com.s3.amazonaws.com/files/demo-files/cloud-api/doc-to-pdf/sample.docx"; // Destination PDF file name final static Path DestinationFile = Paths.get(".\\result.pdf"); public static void main(String[] args) throws IOException { // Create HTTP client instance OkHttpClient webClient = new OkHttpClient(); // Prepare URL for `DOC To PDF` API call String query = "https://api.pdf.co/v1/pdf/convert/from/doc"; // Make correctly escaped (encoded) URL URL url = null; try { url = new URI(null, query, null).toURL(); } catch (URISyntaxException e) { e.printStackTrace(); } // Create JSON payload String jsonPayload = String.format("{\"name\": \"%s\", \"url\": \"%s\"}", DestinationFile.getFileName(), SourceFileUrl); // Prepare request body RequestBody body = RequestBody.create(MediaType.parse("application/json"), jsonPayload); // Prepare request Request request = new Request.Builder() .url(url) .addHeader("x-api-key", API_KEY) // (!) Set API Key .addHeader("Content-Type", "application/json") .post(body) .build(); // Execute request Response response = webClient.newCall(request).execute(); if (response.code() == 200) { // Parse JSON response JsonObject json = new JsonParser().parse(response.body().string()).getAsJsonObject(); boolean error = json.get("error").getAsBoolean(); if (!error) { // Get URL of generated PDF file String resultFileUrl = json.get("url").getAsString(); // Download PDF file downloadFile(webClient, resultFileUrl, DestinationFile.toFile()); System.out.printf("Generated PDF file saved as \"%s\" file.", DestinationFile.toString()); } else { // Display service reported error System.out.println(json.get("message").getAsString()); } } else { // Display request error System.out.println(response.code() + " " + response.message()); } } public static void downloadFile(OkHttpClient webClient, String url, File destinationFile) throws IOException { // Prepare request Request request = new Request.Builder() .url(url) .build(); // Execute request Response response = webClient.newCall(request).execute(); byte[] fileBytes = response.body().bytes(); // Save downloaded bytes to file OutputStream output = new FileOutputStream(destinationFile); output.write(fileBytes); output.flush(); output.close(); response.close(); } }
[ "estarkov@gmail.com" ]
estarkov@gmail.com
24d81b00c8cc5cce4391224a10b4cfa31d97979e
24ec364619186fa616122f6c581080ce9dd3d745
/src/edisyn/edisyn/synth/waldorfmicrowavext/WaldorfMicrowaveXT.java
8039e5d0ce68683ca10a0062d30be97c6a002f46
[ "Apache-2.0" ]
permissive
danielappelt/edisyn-beatstep
5cee4d838a1b47804c488b61e2fcb4ce30df2cc2
0dbc017871ad81c947ec531359c68fcc9c74f5aa
refs/heads/master
2020-05-05T04:32:56.472230
2019-06-16T19:21:13
2019-06-16T19:21:13
179,715,974
2
0
null
null
null
null
UTF-8
Java
false
false
89,968
java
/*** Copyright 2017 by Sean Luke Licensed under the Apache License version 2.0 */ package edisyn.synth.waldorfmicrowavext; import edisyn.*; import edisyn.gui.*; import java.awt.*; import java.awt.geom.*; import javax.swing.border.*; import javax.swing.*; import java.awt.event.*; import java.util.*; import java.io.*; import javax.sound.midi.*; /** A patch editor for the Waldorf Microwave XT. Does not deal with Multi mode, global parameters, modifying wavetables, or uploading samples. Only Single mode patches. @author Sean Luke */ public class WaldorfMicrowaveXT extends Synth { /// Various collections of parameter names for pop-up menus static final String[] BANKS = new String[] { "A", "B" }; static final String[] FM_SOURCES = new String[] { "Off", "Osc1", "Osc2", "Osc3", "Noise", "LFO 1", "LFO 2", "LFO 3", "Filter Env", "Amp Env", "Env 3", "Env 4" }; static final String[] MOD_SOURCES = new String[/*32*/] {"Off", "LFO 1", "LFO1*MW", "LFO1*Press.", "LFO 2", "Filter Env", "Amp Env", "Wave Env", "Free Env", "Key Follow", "Keytrack", "Velocity", "Rel. Velo", "Pressure", "Poly Press", "Pitch Bend", "Mod Wheel", "Sustain", "Foot Ctrl", "Breath Ctrl", "Control W", "Control X", "Control Y", "Control Z", "Ctrl. Delay", "Modifier 1", "Modifier 2", "Modifier 3", "Modifier 4", "MIDI Clock", "Minimum", "Maximum" }; static final String[] MOD_DESTINATIONS = new String[/*36*/] { "Pitch", "O1 Pitch", "O2 Pitch", "Wave 1 Pos", "Wave 2 Pos", "Mix Wave 1", "Mix Wave 2", "Mix Ringmod", "Mix Noise", "F1 Cutoff", "F1 Reson.", "F2 Cutoff", "Volume", "Panning", "FE Attack", "FE Decay", "FE Sustain", "FE Release", "AE Attack", "AE Decay", "AE Sustain", "AE Release", "WE Times", "WE Levels", "FE Times", "FE Levels", "LFO1 Rate", "LFO1 Level", "LFO2 Rate", "LFO2 Level", "M1 Amount", "M2 Amount", "M3 Amount", "M4 Amount", "FM Amount", "F1 Extra" }; static final String[] MODIFIER_OPERATORS = new String[/*16*/] { "+", "-", "*", "/", "XOR", "OR", "AND", "S&H", "Ramp", "Switch", "Abs", "Min", "Max", "Lag", "Filter", "Diff"}; static final String[] FILTER_1_TYPES = new String[/*10*/] { "24dB LP", "12dB LP", "24dB BP", "12dB BP", "12dB HP", "Sin -> 12dB LP", "12dB LP -> Wave", "Dual 12dB LP/BP", "12dB FM LP", "S&H -> 12dB LP", "24dB Notch", "12dB Notch", "Band Stop" }; static final String[] PLAY_PARAMETERS = new String[/*83*/] { "Osc 1 Octave", "Osc 1 Semitone", "Osc 1 Detune", "Osc 1 Pitchbend", "Osc 1 Keytrack", "Osc 2 Octave", "Osc 2 Semitone", "Osc 2 Detune", "Osc 2 Pitchbend", "Osc 2 Keytrack", "Wavetable", "Wave 1 Startwave", "Wave 1 Phase", "Wave 1 Env Amount", "Wave 1 Velocity", "Wave 1 Keytrack", "Wave 2 Startwave", "Wave 2 Phase", "Wave 2 Env Amount", "Wave 2 Velocity", "Wave 2 Keytrack", "Mix Wave 1", "Mix Wave 2", "Mix Ringmod", "Mix Noise", "Aliasing", "Quantize", "Clipping", "Filter 1 Cutoff", "Filter 1 Resonance", "Filter 1 Type", "Filter 1 Keytrack", "Filter 1 Env Emount", "Filter 1 Velocity", "Filter 2 Cutoff", "Filter 2 Type", "Filter 2 Keytrack", "Sound Volume", "Amp Env Velocity", "Amp Keytrack", "Chorus", "Panning", "Pan Keytrack", "Glide on/off", "Glide Type", "Arp On/Off/Hold", "Arp Tempo", "Arp Clock", "Arp Range", "Arp Pattern", "Arp Direction", "Arp Note Order", "Arp Velocity", "Allocation", "Assignment", "Filter Env Attack", "Filter Env Decay", "Filter Env Sustain", "Filter Env Release", "Amp Env Attack", "Amp Env Decay", "Amp Env Sustain", "Amp Env Release", "LFO1 Rate", "LFO1 Shape", "LFO1 Delay", "LFO1 Sync", "LFO1 Symmetry", "LFO1 Humanize", "LFO2 Rate", "LFO2 Shape", "LFO2 Delay", "LFO2 Sync", "LFO2 Symmetry", "LFO2 Humanize", "LFO2 Phase", "Osc 1 FM Amount", "Filter 1 Special", "Glide Time", "Control W", "Control X", "Control Y", "Control Z" }; static final String[] TRIGGERS = new String[] { "Normal", "Single", "Retrigger" }; static final String[] LFO_SHAPES = new String[] { "Sin", "Tri", "Sqr", "Saw", "Rand", "S&H" }; static final String[] LFO_SYNC = new String[] { "Off", "On", "Clock" }; static final String[] LFO_SPEEDS = new String[] { "128", "96", "64", "48", "36", "32", "24", "18", "16", "12", "9", "8", "6", "4", "3", "2", "1", "1/2 .", "1/2 T", "1/2", "1/4 .", "1/4 T", "1/4", "1/8 .", "1/8 T", "1/8", "1/16 .", "1/16 T", "1/16", "1/32 .", "1/32", "1/64" }; static final String[] LFO_PHASES = new String[] {"Free", "3", "6", "8", "11", "14", "17", "20", "23", "25", "28", "31", "34", "37", "39", "42", "45", "48", "51", "53", "56", "59", "62", "65", "68", "70", "73", "76", "79", "82", "84", "87", "90", "93", "96", "98", "101", "104", "107", "110", "113", "115", "118", "121", "124", "127", "129", "132", "135", "138", "141", "143", "146", "149", "152", "155", "158", "160", "163", "166", "169", "172", "174", "177", "180", "183", "186", "188", "191", "194", "197", "200", "203", "205", "208", "211", "214", "217", "219", "222", "225", "228", "231", "233", "236", "239", "242", "245", "248", "250", "253", "256", "259", "262", "264", "267", "270", "273", "276", "278", "281", "284", "287", "290", "293", "295", "298", "301", "304", "307", "309", "312", "315", "318", "321", "323", "326", "329", "332", "335", "338", "340", "343", "346", "349", "352", "354", "357"}; static final String[] CLIPPING = new String[] { "Saturate", "Overflow" }; static final String[] FILTER_2_TYPES = new String[] { "6dB LP", "6dB HP" }; static final String[] EFFECT_TYPES = new String[] { "Off", "Chorus", "Flanger 1", "Flanger 2", "AutoWahLP", "AutoWahBP", "Overdrive", "Amp. Mod", "Delay [XT/Xtk]", "Pan Delay [XT/Xtk]", "Mod Delay [XT/Xtk]" }; static final String[] OSCILLATOR_GLIDE_TYPES = new String[] { "Portamento", "Glissando", "Fingered P", "Fingered G" }; static final String[] OSCILLATOR_GLIDE_MODES = new String[] { "Exponential", "Linear" }; static final String[] ARPEGGIATOR_ACTIVE = new String[] { "Off", "On", "Hold" }; static final String[] ARPEGGIATOR_DIRECTION = new String[] { "Up", "Down", "Alternating", "Random" }; // is it Alternating? static final String[] ARPEGGIATOR_ORDER = new String[] { "By Note", "By Note Reversed", "As Played", "As Played Reversed" }; static final String[] ARPEGGIATOR_VELOCITY = new String[] { "Root Note", "Last Note" }; static final String[] ASSIGNMENT = new String[] { "Normal", "Dual", "Unisono" }; static final String[] OSCILLATOR_OCTAVES = new String[] { "128'", "64'", "32'", "16'", "8'", "4'", "2'", "1'", "1/2'" }; static final String[] AMPLIFIER_TYPES = new String[] { "Direct", "Combo", "Medium", "Stack" }; static final String[] WAVES = new String[] { "Resonant", "Resonant2", "MalletSyn", "Sqr-Sweep", "Bellish", "Pul-Sweep", "Saw-Sweep", "MellowSaw", "Feedback", "Add Harm", "Reso 3 HP", "Wind Syn", "HighHarm", "Clipper", "OrganSyn", "SquareSaw", "Format1", "Polated", "Transient", "ElectricP", "Robotic", "StrongHrm", "PercOrgan", "ClipSweep", "ResoHarms", "2 Echoes", "Formant2", "FmntVocal", "MicroSync", "MicroPWM", "Glassy", "SquareHP", "SawSync1", "SawSync2", "SawSync3", "PulSync1", "PulSync2", "PulSync3", "SinSync1", "SinSync2", "SinSync3", "PWM Pulse", "PWM Saw", "Fuzz Wave", "Distorted", "HeavyFuzz", "Fuzz Sync", "K+Strong1", "K+Strong2", "K+Strong3", "1-2-3-4-5", "19/twenty", "Wavetrip1", "Wavetrip2", "Wavetrip3", "Wavetrip4", "MaleVoice", "Low Piano", "ResoSweep", "Xmas Bell", "FM Piano", "Fat Organ", "Vibes", "Chorus 2", "True PWM" }; // how to modify this? Search for "notation" in manual static final String[] RATE = new String[] { "1/96", "1/48", "1/32", "1/16 T", "1/32 .", "1/16", "1/8T", "1/16 .", "1/8", "1/4 T", "1/8 .", "1/4", "1/2 T", "1/4 .", "1/2", "1/1 T", "1/2 .", "1", "1.5", "2", "2.5", "3", "3.5", "4", "5", "6", "7", "8", "9", "10", "12", "14", "16", "18", "20", "24", "28", "32", "36", "40", "48", "56", "64" }; static final String[] ARP_CLOCK = new String[] { "1/1", "1/2 .", "1/2 T", "1/2", "1/4 .", "1/4 T", "1/4", "1/8 .", "1/8 T", "1/8", "1/16 .", "1/16 T", "1/16", "1/32 .", "1/32 T", "1/32"}; static final int[][] ARP_PATTERNS = new int[][] { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, { 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1 }, { 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1 }, { 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1 }, { 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0 }, { 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1 }, { 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0 }, { 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1 }, { 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0 }, { 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0 }, { 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0 }, { 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0 }, { 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0 }, { 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1 }, { 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1 }, { 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0 } }; public WaldorfMicrowaveXT() { for(int i = 0; i < allParameters.length; i++) { allParametersToIndex.put(allParameters[i], Integer.valueOf(i)); } /// SOUND PANEL JComponent soundPanel = new SynthPanel(this); VBox vbox = new VBox(); HBox hbox = new HBox(HBox.LEFT_CONSUMES); hbox.addLast(addNameGlobal(Style.COLOR_GLOBAL())); hbox.add(addWavetable(Style.COLOR_A())); vbox.add(hbox); hbox = new HBox(); VBox vbox2 = new VBox(); vbox2.add(addOscillator(1, Style.COLOR_A())); vbox2.add(addOscillator(2, Style.COLOR_A())); vbox2.add(addAmplifier(Style.COLOR_C())); hbox.add(vbox2); vbox2 = new VBox(); vbox2.add(addWave(1, Style.COLOR_A())); vbox2.add(addWave(2, Style.COLOR_A())); vbox2.add(addMixer(Style.COLOR_C())); hbox.addLast(vbox2); vbox.add(hbox); hbox = new HBox(); hbox.add(addFilter1(Style.COLOR_B())); hbox.addLast(addFilter2(Style.COLOR_B())); vbox.add(hbox); soundPanel.add(vbox, BorderLayout.CENTER); addTab("Oscillators and Filters", soundPanel); // ENVELOPE PANEL JComponent envelopePanel = new SynthPanel(this); vbox = new VBox(); hbox = new HBox(); hbox.add(addEnvelope(1, Style.COLOR_A())); hbox.addLast(addEnvelope(2, Style.COLOR_A())); vbox.add(hbox); vbox.add(addWaveEnvelope(Style.COLOR_A())); vbox.add(addFreeEnvelope(Style.COLOR_A())); hbox = new HBox(); hbox.add(addEnvelopeDisplay(1,Style.COLOR_B())); hbox.add(addEnvelopeDisplay(2,Style.COLOR_B())); hbox.add(addWaveEnvelopeDisplay(Style.COLOR_B())); hbox.addLast(addFreeEnvelopeDisplay(Style.COLOR_B())); vbox.add(hbox); envelopePanel.add(vbox, BorderLayout.CENTER); addTab("Envelopes", envelopePanel); // MODULATION PANEL JComponent modulationPanel = new SynthPanel(this); vbox = new VBox(); vbox.add(addModulation(Style.COLOR_A())); vbox.add(addModifiers(Style.COLOR_B())); modulationPanel.add(vbox, BorderLayout.CENTER); addTab("Modulation", modulationPanel); // OTHER PANEL JComponent otherPanel = new SynthPanel(this); vbox = new VBox(); hbox = new HBox(); hbox.add(addLFO(1, Style.COLOR_A())); hbox.addLast(addLFO(2, Style.COLOR_A())); vbox.add(hbox); vbox.add(addArpeggiation(Style.COLOR_B())); hbox = new HBox(); hbox.add(addAllocation(Style.COLOR_C())); hbox.add(addQuality(Style.COLOR_C())); hbox.addLast(addGlide(Style.COLOR_C())); vbox.add(hbox); vbox.add(addPlayParameters(Style.COLOR_C())); vbox.add(addEffect(Style.COLOR_C())); otherPanel.add(vbox, BorderLayout.CENTER); addTab("Other", otherPanel); model.set("name", "Init Sound V1.1 "); model.set("number", 0); model.set("bank", 0); // make sure this never can be mutated model.set("soundformatversion", 1); // always model.setStatus("soundformatversion", Model.STATUS_IMMUTABLE); loadDefaults(); } public void windowBecameFront() { updateMode(); } public void updateMode() { boolean send = getSendMIDI(); setSendMIDI(true); byte DEV = (byte)(getID()); // we'll send a mode dump to change the mode to Single tryToSendSysex(new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x17, 0x00, (byte)0xF7 }); setSendMIDI(send); } public String getDefaultResourceFileName() { return "WaldorfMicrowaveXT.init"; } public String getHTMLResourceFileName() { return "WaldorfMicrowaveXT.html"; } public boolean gatherPatchInfo(String title, Model change, boolean writing) { JComboBox bank = new JComboBox(BANKS); bank.setEditable(false); bank.setMaximumRowCount(32); bank.setSelectedIndex(model.get("bank")); JTextField number = new JTextField("" + (model.get("number") + 1), 3); while(true) { boolean result = showMultiOption(this, new String[] { "Bank", "Patch Number"}, new JComponent[] { bank, number }, title, "Enter the Bank and Patch Number"); if (result == false) return false; int n; try { n = Integer.parseInt(number.getText()); } catch (NumberFormatException e) { showSimpleError(title, "The Patch Number must be an integer 1 ... 128"); continue; } if (n < 1 || n > 128) { showSimpleError(title, "The Patch Number must be an integer 1 ... 128"); continue; } change.set("bank", bank.getSelectedIndex()); change.set("number", n - 1); return true; } } /** Add the global patch category (name, id, number, etc.) */ public JComponent addNameGlobal(Color color) { Category globalCategory = new Category(this, "Waldorf Microwave II/XT/XTk", color); globalCategory.makeUnresettable(); JComponent comp; String[] params; HBox hbox = new HBox(); VBox vbox = new VBox(); HBox hbox2 = new HBox(); comp = new PatchDisplay(this, 4); hbox2.add(comp); vbox.add(hbox2); hbox.add(vbox); comp = new StringComponent("Patch Name", this, "name", 16, "Name must be up to 16 ASCII characters.") { public String replace(String val) { return revisePatchName(val); } public void update(String key, Model model) { super.update(key, model); updateTitle(); } }; hbox.add(comp); globalCategory.add(hbox, BorderLayout.WEST); return globalCategory; } /** Add the Global Oscillator category */ public JComponent addWavetable(Color color) { Category category = new Category(this, "Waves", color); JComponent comp; String[] params; HBox hbox = new HBox(); VBox vbox = new VBox(); String[] params1 = WAVES; params = new String[128]; System.arraycopy(params1, 0, params, 0, 65); for(int i = 65; i < 96; i++) params[i] = "Reserved " + (i - 65 + 66); for(int i = 96; i < 128; i++) params[i] = "User " + (i - 96 + 1); comp = new Chooser("Wavetable", this, "wavetable", params); // only standard wavetables are permitted to be mutated model.setValidMax("wavetable", 64); vbox.add(comp); hbox.add(vbox); category.add(hbox, BorderLayout.WEST); return category; } /** Add the Quality category */ public JComponent addQuality(Color color) { Category category = new Category(this, "Quality", color); JComponent comp; String[] params; HBox hbox = new HBox(); VBox vbox = new VBox(); params = CLIPPING; comp = new Chooser("Clipping", this, "clipping", params); vbox.add(comp); comp = new CheckBox("Accurate", this, "accuracy"); vbox.add(comp); hbox.add(vbox); comp = new LabelledDial("Aliasing", this, "aliasing", color, 0, 5) { public String map(int val) { if (val == 0) return "Off"; else return ("" + (val)); } }; model.setMetricMin( "aliasing", 1); hbox.add(comp); comp = new LabelledDial("Time", this, "timequant", color, 0, 5) { public String map(int val) { if (val == 0) return "Off"; else return ("" + (val)); } }; model.setMetricMin( "timequant", 1); ((LabelledDial)comp).addAdditionalLabel("Quantization"); hbox.add(comp); category.add(hbox, BorderLayout.WEST); return category; } /** Add the Mixer category */ public JComponent addMixer(Color color) { Category category = new Category(this, "Mixer", color); JComponent comp; String[] params; HBox hbox = new HBox(); // VBox vbox = new VBox(); comp = new LabelledDial("Wave 1", this, "mixwave1", color, 0, 127); hbox.add(comp); comp = new LabelledDial("Wave 2", this, "mixwave2", color, 0, 127); hbox.add(comp); comp = new LabelledDial("Ring Mod", this, "mixringmod", color, 0, 127); hbox.add(comp); comp = new LabelledDial("Noise", this, "mixnoise", color, 0, 127); hbox.add(comp); comp = new LabelledDial("External", this, "mixexternal", color, 0, 127); ((LabelledDial)comp).addAdditionalLabel(" [XT/XTk] "); hbox.add(comp); category.add(hbox, BorderLayout.WEST); return category; } public String pitchKeytrack(int val) { if (val < 38) { return "" + ((val * 5) - 100); } else if (val > 58) { return "" + ((val - 59) * 5 + 115); } else // 38 .. 58 { return "" + ((val - 48) + 100); } } /** Add an Oscillator category */ public JComponent addOscillator(int osc, Color color) { Category category = new Category(this, "Oscillator " + osc, color); category.makePasteable("osc" + osc); JComponent comp; String[] params; HBox hbox = new HBox(); comp = new LabelledDial("Octave", this, "osc" + osc + "octave", color, 0, 8, 4) { public boolean isSymmetric() { return true; } }; hbox.add(comp); comp = new LabelledDial("Semitone", this, "osc" + osc + "semitone", color, 52, 76, 64); hbox.add(comp); comp = new LabelledDial("Detune", this, "osc" + osc + "detune", color, 0, 127, 64); hbox.add(comp); // Keytrack goes by 5 from -100 ... 90, then by 1 to 110, then by 5 to 200 comp = new LabelledDial("Keytrack", this, "osc" + osc + "keytrack", color, 0, 76) { public String map(int val) { return pitchKeytrack(val); } public double getStartAngle() { return 260; } public int getDefaultValue() { return 48; } // +100 }; hbox.add(comp); comp = new LabelledDial("Pitch Bend", this, "osc" + osc + "bendrange", color, 0, 122) { public String map(int val) { if (val == 121) return "Harm"; else if (val == 122) return "Global"; else return ("" + val); } }; model.setMetricMax("osc" + osc + "bendrange", 120); ((LabelledDial)comp).addAdditionalLabel("Range"); hbox.add(comp); if (osc==1) { comp = new LabelledDial("FM", this, "osc" + osc + "fmamount", color, 0, 127); ((LabelledDial)comp).addAdditionalLabel("Amount"); hbox.add(comp); } if (osc==2) { VBox vbox = new VBox(); // The Sync checkbox on OS X seems to collapse to slightly less than it's supposed to // even though preferred size is also minimum size. Not sure what's causing this bug; // but the Link box is extended with a single space below in order to stretch things out // so the Sync box doesn't get packed as tight. comp = new CheckBox("Sync", this, "osc" + osc + "sync"); vbox.add(comp); comp = new CheckBox("Link ", this, "osc" + osc + "link"); vbox.add(comp); hbox.add(vbox); } category.add(hbox, BorderLayout.CENTER); return category; } // Note: this keytrack works for values which keytrack -200...197, // but the osc keytracks are different and have to be handled on their own specially String keytrack(int val) { // there are 8 positive (and 8 negative) jumps of 4 rather than 3, // every 25. Yuck :-( //9 ->13 //34 ->38 //59 ->63 //84 ->88 //109->113 //134->138 //159->163 //184->188 val -= 64; double jump = 0; if (val > 3) { jump = (double)((val - 3) / 8.0); if (jump != (int)jump) // will fail for NaN of course jump = (int)jump + 1; } else if (val < -3) { jump = (double)((val + 3) / 8.0); if (jump != (int)jump) jump = (int)jump - 1; } return "" + ((val * 3) + (int)jump); } /** Add an Oscillator category */ public JComponent addWave(int wave, Color color) { Category category = new Category(this, "Wave " + wave, color); category.makePasteable("wave" + wave); JComponent comp; String[] params; HBox hbox = new HBox(); comp = new LabelledDial("Start Wave", this, "wave" + wave + "startwave", color, 0, 63) { public String map(int val) { if (val < 61) { return "" + val; } else if (val == 61) { return "Tri"; } else if (val == 62) { return "Square"; } else // if (val == 63) { return "Saw"; } } }; model.setMetricMax( "wave" + wave + "startwave", 60); hbox.add(comp); comp = new LabelledDial("Start Phase", this, "wave" + wave + "startphase", color, 0, 127) { public String map(int val) { if (val == 0) { return "Free"; } else { return "" + ((val * 2) + 1); } } }; model.setMetricMin( "wave" + wave + "startphase", 1); hbox.add(comp); comp = new LabelledDial("Envelope", this, "wave" + wave + "envamount", color, 0, 127, 64); ((LabelledDial)comp).addAdditionalLabel("Amount"); hbox.add(comp); comp = new LabelledDial("Envelope", this, "wave" + wave + "envvelocity", color, 0, 127, 64); ((LabelledDial)comp).addAdditionalLabel("Velocity"); hbox.add(comp); comp = new LabelledDial("Keytrack", this, "wave" + wave + "keytrack", color, 0, 127) { public String map(int val) { return keytrack(val); } public boolean isSymmetric() { return true; } }; ((LabelledDial)comp).addAdditionalLabel("Amount"); hbox.add(comp); VBox vbox = new VBox(); comp = new CheckBox("Limit", this, "wave" + wave + "limit"); vbox.add(comp); if (wave==2) { comp = new CheckBox("Link", this, "wave2link"); vbox.add(comp); } hbox.add(vbox); category.add(hbox, BorderLayout.CENTER); return category; } /** Add a Filter1 category */ public JComponent addFilter1(Color color) { Category category = new Category(this, "Filter 1", color); JComponent comp; String[] params; final HBox hbox = new HBox(); VBox vbox = new VBox(); final JComponent[] extras = new JComponent[13]; extras[6] = new LabelledDial("Wave", this, "filter1special", color, 0, 127); extras[7] = new LabelledDial("BP Offset", this, "filter1special", color, 0, 127, 64); extras[8] = new LabelledDial("Osc2 FM", this, "filter1special", color, 0, 127); extras[9] = new LabelledDial("S&H Rate", this, "filter1special", color, 0, 127); extras[12] = new LabelledDial("Bandwidth", this, "filter1special", color, 0, 127); JComponent strut = Strut.makeStrut(extras[7].getPreferredSize().width, extras[7].getPreferredSize().height); extras[11] = strut; extras[10] = strut; extras[5] = strut; extras[4] = strut; extras[3] = strut; extras[2] = strut; extras[1] = strut; extras[0] = strut; hbox.addLast(extras[0]); params = FILTER_1_TYPES; comp = new Chooser("Type", this, "filter1type", params) { public void update(String key, Model model) { super.update(key, model); hbox.removeLast(); hbox.addLast(extras[model.get(key)]); hbox.revalidate(); hbox.repaint(); } }; vbox.add(comp); hbox.add(vbox); comp = new LabelledDial("Cutoff", this, "filter1cutoff", color, 0, 127); hbox.add(comp); comp = new LabelledDial("Resonance", this, "filter1resonance", color, 0, 127); hbox.add(comp); comp = new LabelledDial("Keytrack", this, "filter1keytrack", color, 0, 127) { public String map(int val) { return keytrack(val); } public boolean isSymmetric() { return true; } }; hbox.add(comp); comp = new LabelledDial("Envelope", this, "filter1envamount", color, 0, 127, 64); ((LabelledDial)comp).addAdditionalLabel("Amount"); hbox.add(comp); comp = new LabelledDial("Envelope", this, "filter1envvelocity", color, 0, 127, 64); ((LabelledDial)comp).addAdditionalLabel("Velocity"); hbox.add(comp); category.add(hbox, BorderLayout.WEST); return category; } /** Add a Filter2 category */ public JComponent addFilter2(Color color) { Category category = new Category(this, "Filter 2", color); JComponent comp; String[] params; HBox hbox = new HBox(); VBox vbox = new VBox(); params = FILTER_2_TYPES; comp = new Chooser("Type", this, "filter2type", params); vbox.add(comp); hbox.add(vbox); comp = new LabelledDial("Cutoff", this, "filter2cutoff", color, 0, 127); hbox.add(comp); comp = new LabelledDial("Keytrack", this, "filter2keytrack", color, 0, 127) { public String map(int val) { return keytrack(val); } public boolean isSymmetric() { return true; } }; hbox.add(comp); category.add(hbox, BorderLayout.WEST); return category; } /** Add Play Parameter category */ public JComponent addPlayParameters(Color color) { Category category = new Category(this, "Play Parameters", color); category.makeDistributable("playparam"); JComponent comp; String[] params = PLAY_PARAMETERS; HBox hbox = new HBox(); // VBox vbox = new VBox(); for(int i = 1; i < 5; i++) { comp = new Chooser("Play Parameter " + i, this, "playparam" + i, params); hbox.add(comp); } category.add(hbox, BorderLayout.WEST); return category; } /** Add Amplifier and Pan category */ public JComponent addAmplifier(Color color) { Category category = new Category(this, "Amplifier and Pan", color); JComponent comp; String[] params; HBox hbox = new HBox(); VBox vbox = new VBox(); comp = new LabelledDial("Volume", this, "amplifiervolume", color, 0, 127); hbox.add(comp); comp = new LabelledDial("Envelope", this, "amplifierenvvelocity", color, 0, 127, 64); ((LabelledDial)comp).addAdditionalLabel("Velocity"); hbox.add(comp); comp = new LabelledDial("Volume", this, "amplifierkeytrack", color, 0, 127) { public String map(int val) { return keytrack(val); } public boolean isSymmetric() { return true; } }; ((LabelledDial)comp).addAdditionalLabel("Keytrack"); hbox.add(comp); comp = new LabelledDial("Panning", this, "pan", color, 0, 127, 64) { public String map(int val) { if ((val - 64) < 0) return "L " + Math.abs(val - 64); else if ((val - 64) > 0) return "R " + (val - 64); else return "--"; } }; hbox.add(comp); comp = new LabelledDial("Panning", this, "pankeytrack", color, 0, 127) { public String map(int val) { return keytrack(val); } public boolean isSymmetric() { return true; } }; ((LabelledDial)comp).addAdditionalLabel("Keytrack"); hbox.add(comp); comp = new CheckBox("Chorus", this, "chorus"); // irritating font metric bugs bite again ((CheckBox)comp).addToWidth(1); vbox.add(comp); hbox.add(vbox); category.add(hbox, BorderLayout.WEST); return category; } /** Add Glid Category */ public JComponent addGlide(Color color) { Category category = new Category(this, "Glide", color); JComponent comp; String[] params; HBox hbox = new HBox(); // VBox vbox = new VBox(); VBox vbox = new VBox(); params = OSCILLATOR_GLIDE_TYPES; comp = new Chooser("Type", this, "glidetype", params); vbox.add(comp); HBox hbox2 = new HBox(); comp = new CheckBox("Active", this, "glide"); hbox2.add(comp); comp = new CheckBox("Linear", this, "glidemode"); hbox2.add(comp); vbox.add(hbox2); hbox.add(vbox); comp = new LabelledDial("Time", this, "glidetime", color, 0, 127); hbox.add(comp); category.add(hbox, BorderLayout.WEST); return category; } /** Add an LFO category */ public JComponent addLFO(final int lfo, Color color) { Category category = new Category(this, "LFO " + lfo, color); category.makePasteable("lfo" + lfo); JComponent comp; String[] params; HBox hbox = new HBox(); // VBox vbox = new VBox(); VBox vbox = new VBox(); params = LFO_SHAPES; comp = new Chooser("Shape", this, "lfo" + lfo + "shape", params); vbox.add(comp); params = LFO_SYNC; comp = new Chooser("Sync", this, "lfo" + lfo + "sync", params); vbox.add(comp); hbox.add(vbox); comp = new LabelledDial("Speed", this, "lfo" + lfo + "rate", color, 0, 127) { public String map(int val) { // we display this in two different ways depending on whether we're clocked or not if (model.get("lfo" + lfo + "sync") < 2) // 3 is "clocked" return "" + val; else { val /= 4; // we map to 0...31 String[] vals = LFO_SPEEDS; return vals[val]; } } }; model.register("lfo" + lfo + "sync", (LabelledDial)comp); // so we get updated if clocked changes hbox.add(comp); comp = new LabelledDial("Delay", this, "lfo" + lfo + "delay", color, 0, 127) { public String map(int val) { if (val == 0) return "Off"; else if (val == 1) return "Retrig."; else return "" + (val - 1); } }; model.setMetricMin( "lfo" + lfo + "delay", 2); hbox.add(comp); comp = new LabelledDial("Symmetry", this, "lfo" + lfo + "symmetry", color, 0, 127, 64); hbox.add(comp); comp = new LabelledDial("Humanize", this, "lfo" + lfo + "humanize", color, 0, 127); hbox.add(comp); if (lfo == 2) { comp = new LabelledDial("Phase", this, "lfo" + lfo + "phase", color, 0, 127) { public String map(int val) { // This phase is complex. Normally we go by 3. // We start at 3, then at 6 we jump to 8. // Why this is different from phase calculation elsewhere I have no idea // Then at 23 we jump to 25. // Note 23 is 17 from 6 // Then at 37 we jump to 39. // Note 37 is 14 from 23 // Then at 51 we jump to 53 // Note 51 is 14 from 37 // Then at 68 we jump to 70. // Note 68 is 17 from 51 // Then at 82 we jump to 84. // Note 82 is 14 from 68 // For this reason I've just hard-coded the strings return LFO_PHASES[val]; } }; model.setMetricMin( "lfo" + lfo + "phase", 1); hbox.add(comp); } category.add(hbox, BorderLayout.WEST); return category; } /** Add a "standard" envelope category */ public JComponent addEnvelope(final int env, Color color) { Category category = new Category(this, env == 1 ? "Filter Envelope" : "Amplifier Envelope", color); category.makePasteable("envelope" + env); JComponent comp; String[] params; HBox hbox = new HBox(); // VBox vbox = new VBox(); VBox vbox = new VBox(); params = TRIGGERS; comp = new Chooser("Trigger", this, "envelope" + env + "trigger", params); vbox.add(comp); hbox.add(vbox); comp = new LabelledDial("Attack", this, "envelope" + env + "attack", color, 0, 127); hbox.add(comp); comp = new LabelledDial("Decay", this, "envelope" + env + "decay", color, 0, 127); hbox.add(comp); comp = new LabelledDial("Sustain", this, "envelope" + env + "sustain", color, 0, 127); hbox.add(comp); comp = new LabelledDial("Release", this, "envelope" + env + "release", color, 0, 127); hbox.add(comp); category.add(hbox, BorderLayout.CENTER); return category; } /** Add wave envelope category */ public JComponent addWaveEnvelope(Color color) { Category category = new Category(this, "Wave Envelope", color); category.makeDistributable("waveenv"); JComponent comp; String[] params; HBox hbox = new HBox(); // VBox vbox = new VBox(); VBox vbox = new VBox(); params = TRIGGERS; comp = new Chooser("Trigger", this, "waveenvtrigger", params); vbox.add(comp); comp = new CheckBox("Key On Loop", this, "waveenvkeyon"); vbox.add(comp); comp = new CheckBox("Key Off Loop", this, "waveenvkeyoff"); vbox.add(comp); hbox.add(vbox); vbox = new VBox(); comp = new LabelledDial("Key On", this, "waveenvkeyonstart", color, 0, 7, -1); ((LabelledDial)comp).addAdditionalLabel("Loop Start"); vbox.add(comp); comp = new LabelledDial("Key On", this, "waveenvkeyonend", color, 0, 7, -1); ((LabelledDial)comp).addAdditionalLabel(" Loop End "); // additional space because OS X cuts off the "d" ((LabelledDial)comp).addAdditionalLabel("(Sustain Pos)"); // additional space because OS X cuts off the "d" vbox.add(comp); hbox.add(vbox); vbox = new VBox(); comp = new LabelledDial("Key Off", this, "waveenvkeyoffstart", color, 0, 7, -1); ((LabelledDial)comp).addAdditionalLabel("Loop Start"); vbox.add(comp); comp = new LabelledDial("Key Off", this, "waveenvkeyoffend", color, 0, 7, -1); ((LabelledDial)comp).addAdditionalLabel(" Loop End "); // additional space because OS X cuts off the "d" ((LabelledDial)comp).addAdditionalLabel(" (End Pos) "); // additional space because OS X cuts off the "d" vbox.add(comp); hbox.add(vbox); for(int i = 1; i < 9; i++) { vbox = new VBox(); comp = new LabelledDial("Time " + i, this, "waveenvtime" + i, color, 0, 127); ((LabelledDial)comp).addAdditionalLabel(" "); vbox.add(comp); comp = new LabelledDial("Level " + i, this, "waveenvlevel" + i, color, 0, 127); vbox.add(comp); hbox.add(vbox); } category.add(hbox, BorderLayout.CENTER); return category; } /** Add free envelope category */ public JComponent addFreeEnvelope(Color color) { Category category = new Category(this, "Free Envelope", color); category.makeDistributable("freeenv"); JComponent comp; String[] params; HBox hbox = new HBox(); // VBox vbox = new VBox(); VBox vbox = new VBox(); params = TRIGGERS; comp = new Chooser("Trigger", this, "freeenvtrigger", params); vbox.add(comp); hbox.add(vbox); for(int i = 1; i < 4; i++) { //vbox = new VBox(); comp = new LabelledDial("Time " + i, this, "freeenvtime" + i, color, 0, 127); ((LabelledDial)comp).addAdditionalLabel(" "); hbox.add(comp); comp = new LabelledDial("Level " + i, this, "freeenvlevel" + i, color, 0, 127, 64); if (i==3) ((LabelledDial)comp).addAdditionalLabel("(Sustain)"); hbox.add(comp); //hbox.add(vbox); } //vbox = new VBox(); comp = new LabelledDial("Release", this, "freeenvtime4", color, 0, 127); ((LabelledDial)comp).addAdditionalLabel("Time"); hbox.add(comp); comp = new LabelledDial("Release", this, "freeenvlevel4", color, 0, 127, 64); ((LabelledDial)comp).addAdditionalLabel("Level"); hbox.add(comp); //hbox.add(vbox); category.add(hbox, BorderLayout.CENTER); return category; } /** Add "standard" envelope display */ public JComponent addEnvelopeDisplay(final int env, Color color) { Category category = new Category(this, env == 1 ? "Filter" : "Amplifier", color); JComponent comp; String[] params; HBox hbox = new HBox(); // VBox vbox = new VBox(); comp = new EnvelopeDisplay(this, Style.ENVELOPE_COLOR(), new String[] { null, "envelope" + env + "attack", "envelope" + env + "decay", null, "envelope" + env + "release" }, new String[] { null, null, "envelope" + env + "sustain", "envelope" + env + "sustain", null }, new double[] { 0, 0.25/127.0, 0.25 / 127.0, 0.25, 0.25/127.0}, new double[] { 0, 1.0, 1.0 / 127.0, 1.0/127.0, 0 }); hbox.addLast(comp); category.add(hbox, BorderLayout.CENTER); return category; } /** Add free envelope display */ public JComponent addFreeEnvelopeDisplay(Color color) { Category category = new Category(this, "Free", color); JComponent comp; String[] params; HBox hbox = new HBox(); // VBox vbox = new VBox(); EnvelopeDisplay disp = new EnvelopeDisplay(this, Style.ENVELOPE_COLOR(), new String[] { null, "freeenvtime1", "freeenvtime2", "freeenvtime3", null, "freeenvtime4"}, //, null }, new String[] { null, "freeenvlevel1", "freeenvlevel2", "freeenvlevel3", "freeenvlevel3", "freeenvlevel4"}, //, null }, new double[] { 0, 0.2/127.0, 0.2 / 127.0, 0.2/127.0, 0.2, 0.2/127.0}, //, 0}, new double[] { 64.0/127.0, 1.0/127.0, 1.0/127.0, 1.0/127.0, 1.0/127.0, 1.0/127.0} //, 64.0/127.0 } ); disp.setAxis(64.0 / 127.0); comp = disp; hbox.addLast(comp); category.add(hbox, BorderLayout.CENTER); return category; } /** Add wave envelope display */ public JComponent addWaveEnvelopeDisplay(Color color) { Category category = new Category(this, "Wave", color); JComponent comp; String[] params; HBox hbox = new HBox(); // VBox vbox = new VBox(); EnvelopeDisplay disp = new EnvelopeDisplay(this, Style.ENVELOPE_COLOR(), new String[] { null, "waveenvtime1", "waveenvtime2", "waveenvtime3", "waveenvtime4", "waveenvtime5", "waveenvtime6", "waveenvtime7", "waveenvtime8", null }, new String[] { null, "waveenvlevel1", "waveenvlevel2", "waveenvlevel3", "waveenvlevel4", "waveenvlevel5", "waveenvlevel6", "waveenvlevel7", "waveenvlevel8", null }, new double[] { 0, 0.25/127.0/2.0, 0.25 / 127.0/2.0, 0.25/127.0/2.0, 0.25/127.0/2.0, 0.25/127.0/2.0, 0.25 / 127.0/2.0, 0.25/127.0/2.0, 0.25/127.0/2.0, 0}, new double[] { 0, 1.0/127.0, 1.0/127.0, 1.0/127.0, 1.0/127.0, 1.0/127.0, 1.0/127.0, 1.0/127.0, 1.0/127.0, 0 }) { public int postProcessLoopOrStageKey(String key, int val) { // they'll all be off by 1 return val + 1; } }; disp.setPreferredWidth(disp.getPreferredWidth() * 2); disp.setLoopKeys(0, "waveenvkeyonstart", "waveenvkeyonend"); disp.setLoopKeys(1, "waveenvkeyoffstart", "waveenvkeyoffend"); disp.setSustainStageKey("waveenvkeyonend"); disp.setFinalStageKey("waveenvkeyoffend"); comp = disp; hbox.addLast(comp); category.add(hbox, BorderLayout.CENTER); return category; } /** Add allocation/assignment category */ public JComponent addAllocation(Color color) { Category category = new Category(this, "Allocation", color); JComponent comp; String[] params; HBox hbox = new HBox(); // VBox vbox = new VBox(); VBox vbox = new VBox(); params = ASSIGNMENT; comp = new Chooser("Assignment", this, "assignment", params); vbox.add(comp); comp = new CheckBox("Mono", this, "allocation"); vbox.add(comp); hbox.add(vbox); comp = new LabelledDial("Detune", this, "detune", color, 0, 127); hbox.add(comp); comp = new LabelledDial("De-pan", this, "de-pan", color, 0, 127); hbox.add(comp); category.add(hbox, BorderLayout.WEST); return category; } /** Add the Modulation category */ public JComponent addModulation(Color color) { Category category = new Category(this, "Modulation", color); category.makeDistributable("modulation"); JComponent comp; String[] params; VBox main = new VBox(); HBox hbox; VBox vbox; for(int row = 1; row < 17; row+= 4) { hbox = new HBox(); boolean first = true; for(int i = row; i < row + 4; i++) { vbox = new VBox(); // add some space if (!first) // not the first one { hbox.add(Strut.makeHorizontalStrut(10)); } params = MOD_SOURCES; comp = new Chooser("" + i + " Source", this, "modulation" + i + "source", params); vbox.add(comp); params = MOD_DESTINATIONS; comp = new Chooser("" + i + " Destination", this, "modulation" + i + "destination", params); vbox.add(comp); hbox.add(vbox); comp = new LabelledDial("" + i + " Level", this, "modulation" + i + "amount", color, 0, 127, 64); // it's Level, not Amount, so we save some horizontal space hbox.add(comp); first = false; } // add some space if (row > 1) // not the first one { main.add(Strut.makeVerticalStrut(10)); } main.add(hbox); } category.add(main, BorderLayout.WEST); return category; } /** Add the Modifiers category */ public JComponent addModifiers(Color color) { Category category = new Category(this, "Modifiers", color); category.makeDistributable("modifier"); JComponent comp; String[] params; HBox hbox = new HBox(); VBox vbox = new VBox(); VBox vbox2 = new VBox(); params = MOD_SOURCES; comp = new Chooser("Delay Source", this, "modifierdelaysource", params); vbox2.add(comp); comp = new LabelledDial("Delay Time", this, "modifierdelaytime", color, 0, 127); ((LabelledDial)comp).addAdditionalLabel(" "); vbox2.add(comp); hbox.add(vbox2); for(int i = 1; i < 5; i++) { vbox2 = new VBox(); params = MOD_SOURCES; comp = new Chooser("" + i + " Source #1", this, "modifier" + i + "source1", params); vbox2.add(comp); // gotta change the first one to "constant" from "off" if we're in Source B params = new String[MOD_SOURCES.length]; System.arraycopy(MOD_SOURCES, 0, params, 0, MOD_SOURCES.length); params[0] = "Constant"; comp = new Chooser("" + i + " Source #2", this, "modifier" + i + "source2", params); vbox2.add(comp); params = MODIFIER_OPERATORS; comp = new Chooser("" + i + " Type", this, "modifier" + i + "type", params); vbox2.add(comp); hbox.add(vbox2); if (i == 1 || i == 3) { vbox2 = new VBox(); HBox hbox2 = new HBox(); comp = new LabelledDial("" + i + " Param", this, "modifier" + i + "param", color, 0, 127); //((LabelledDial)comp).addAdditionalLabel(" "); hbox2.add(comp); hbox2.add(Strut.makeHorizontalStrut(20)); vbox2.add(hbox2); vbox2.add(Strut.makeVerticalStrut(5)); hbox2 = new HBox(); hbox2.add(Strut.makeHorizontalStrut(20)); comp = new LabelledDial("" + (i + 1) + " Param", this, "modifier" + (i + 1) + "param", color, 0, 127); hbox2.add(comp); vbox2.add(hbox2); hbox.add(vbox2); } if (i == 2) { hbox.add(Strut.makeHorizontalStrut(20)); } } vbox.add(hbox); category.add(vbox, BorderLayout.WEST); return category; } /** Add the Modifiers category */ public JComponent addArpeggiation(Color color) { Category category = new Category(this, "Arpeggiation", color); final CheckBox[] arpeggiation = new CheckBox[16]; JComponent comp; String[] params; HBox hbox = new HBox(); VBox big = new VBox(); VBox vbox = new VBox(); params = ARPEGGIATOR_ACTIVE; comp = new Chooser("Active", this, "arp", params); vbox.add(comp); params = ARPEGGIATOR_DIRECTION; comp = new Chooser("Direction", this, "arpdirection", params); vbox.add(comp); hbox.add(vbox); vbox = new VBox(); params = ARPEGGIATOR_ORDER; comp = new Chooser("Note Order", this, "arpnoteorder", params); vbox.add(comp); params = ARPEGGIATOR_VELOCITY; comp = new Chooser("Velocity", this, "arpvelocity", params); vbox.add(comp); hbox.add(vbox); comp = new LabelledDial("Tempo", this, "arptempo", color, 1, 127) { public String map(int val) { if (val == 1) return "Extern"; else { return "" + (50 + (val - 2) * 2); } } public int getDefaultValue() { return 37; } // 120 BPM }; model.setMetricMin( "arptempo", 2); hbox.add(comp); comp = new LabelledDial("Clock", this, "arpclock", color, 0, 15) { public String map(int val) { return ARP_CLOCK[val]; } }; hbox.add(comp); comp = new LabelledDial("Range", this, "arprange", color, 1, 10); hbox.add(comp); comp = new LabelledDial("Pattern", this, "arppattern", color, 0, 16) { public String map(int val) { if (val == 0) return "Off"; else if (val == 1) return "User"; else return "" + (val - 1); } }; model.setMetricMin( "arppattern", 2); hbox.add(comp); comp = new LabelledDial("User Length", this, "arpuserlength", color, 0, 15, -1); hbox.add(comp); VBox vbox2 = new VBox(); comp = new CheckBox("Reset on Start", this, "arpreset"); vbox2.add(comp); hbox.add(vbox2); Updatable updateArp = new Updatable() { public void update(String key, Model model) { int pattern = model.get("arppattern"); if (pattern == 1) { int len = model.get("arpuserlength") + 1; for(int i = 0; i < len; i++) { arpeggiation[i].setEnabled(true); } for(int i = len; i < 16; i++) { arpeggiation[i].setEnabled(false); } for(int i = 0; i < 16; i++) { arpeggiation[i].setBorder(Style.CHECKBOX_NON_HIGHLIGHTED_BORDER()); } } else { for(int i = 0; i < 16; i++) { arpeggiation[i].setEnabled(false); } if (pattern > 1) pattern--; for(int i = 0; i < 16; i++) { arpeggiation[i].setBorder(ARP_PATTERNS[pattern][i] == 0 ? Style.CHECKBOX_NON_HIGHLIGHTED_BORDER() : Style.CHECKBOX_HIGHLIGHTED_BORDER()); } } } }; model.register("arpuserlength", updateArp); model.register("arppattern", updateArp); big.add(hbox); hbox = new HBox(); hbox.add(Strut.makeHorizontalStrut(Style.CATEGORY_INSET_DISTANCE())); hbox.add(new TextLabel("Pattern: ")); for(int pattern = 0; pattern < 16; pattern++) { arpeggiation[pattern] = new CheckBox("", this, "arpuser" + (pattern + 1)); arpeggiation[pattern].setBorder(Style.CHECKBOX_HIGHLIGHTED_BORDER()); arpeggiation[pattern].setEnabled(false); // because we start with arppattern not set to User hbox.add(arpeggiation[pattern]); if (pattern % 4 == 3) { hbox.add(Strut.makeHorizontalStrut(20)); } } big.add(hbox); category.add(big, BorderLayout.WEST); return category; } // Holds the current effects parameters HBox parameters; // The various JComponents for different effect parameters JComponent[/*effect type*/][/*parameters*/] parametersByEffect = new JComponent[11][3]; // Various effect types public static final int BYPASS = 0; public static final int CHORUS = 1; public static final int FLANGER_1 = 2; public static final int FLANGER_2 = 3; public static final int AUTO_WAH_LP = 4; public static final int AUTO_WAH_BP = 5; public static final int OVERDRIVE = 6; public static final int AMP_MOD = 7; public static final int DELAY = 8; public static final int PAN_DELAY = 9; public static final int MOD_DELAY = 10; /** Discards existing parameter widgets and loads new ones according to the effect type on the given effect number. */ void setupEffect(int type) { if (type < 10) { if (parameters == null) return; // not ready yet parameters.removeAll(); for(int i = 0; i < parametersByEffect[type].length; i++) { parameters.add(parametersByEffect[type][i]); } } parameters.revalidate(); repaint(); } /** Adds an Effect category. */ public JComponent addEffect(Color color) { // The first thing we have to do is build all the effect parameters for all the effect types // and associate them with each effect type. This is a lot of tedious work. JComponent comp; String[] params; // bypass has no parameters parametersByEffect[BYPASS] = new JComponent[0]; // parameter 0 comp = new LabelledDial("Speed", this, "effectparam1", color, 0, 127); parametersByEffect[CHORUS][0] = comp; parametersByEffect[FLANGER_1][0] = comp; parametersByEffect[FLANGER_2][0] = comp; parametersByEffect[AMP_MOD][0] = comp; comp = new LabelledDial("Sense", this, "effectparam1", color, 0, 127); parametersByEffect[AUTO_WAH_LP][0] = comp; parametersByEffect[AUTO_WAH_BP][0] = comp; comp = new LabelledDial("Drive", this, "effectparam1", color, 0, 127); parametersByEffect[OVERDRIVE][0] = comp; comp = new LabelledDial("Time", this, "effectparam1", color, 0, 127); parametersByEffect[DELAY][0] = comp; parametersByEffect[PAN_DELAY][0] = comp; parametersByEffect[MOD_DELAY][0] = comp; // parameter 1 comp = new LabelledDial("Depth", this, "effectparam2", color, 0, 127); parametersByEffect[CHORUS][1] = comp; parametersByEffect[FLANGER_1][1] = comp; comp = new LabelledDial("Feedback", this, "effectparam2", color, 0, 127); parametersByEffect[FLANGER_2][1] = comp; parametersByEffect[DELAY][1] = comp; parametersByEffect[PAN_DELAY][1] = comp; comp = new LabelledDial("Cutoff", this, "effectparam2", color, 0, 127); parametersByEffect[AUTO_WAH_LP][1] = comp; parametersByEffect[AUTO_WAH_BP][1] = comp; comp = new LabelledDial("Gain", this, "effectparam2", color, 0, 127); parametersByEffect[OVERDRIVE][1] = comp; comp = new LabelledDial("Spread", this, "effectparam2", color, 0, 127); parametersByEffect[AMP_MOD][1] = comp; comp = new LabelledDial("Speed", this, "effectparam2", color, 0, 127); parametersByEffect[MOD_DELAY][1] = comp; // parameter 2 // 64 so it's centered comp = new LabelledDial("Mix", this, "effectparam3", color, 0, 127, 64) { public String map(int val) { return "" + (127 - val) + ":" + val; } }; parametersByEffect[CHORUS][2] = comp; parametersByEffect[FLANGER_1][2] = comp; parametersByEffect[FLANGER_2][2] = comp; parametersByEffect[AMP_MOD][2] = comp; parametersByEffect[DELAY][2] = comp; parametersByEffect[PAN_DELAY][2] = comp; comp = new LabelledDial("Resonance", this, "effectparam3", color, 0, 127); parametersByEffect[AUTO_WAH_LP][2] = comp; parametersByEffect[AUTO_WAH_BP][2] = comp; comp = new LabelledDial("Amp Type", this, "effectparam3", color, 0, 127) { public String map(int val) { if (val >= 24) return "Stack"; else if (val >= 16) return "Medium"; else if (val >= 8) return "Combo"; else return "Direct"; } }; parametersByEffect[OVERDRIVE][2] = comp; comp = new LabelledDial("Depth", this, "effectparam3", color, 0, 127); parametersByEffect[MOD_DELAY][2] = comp; // Now we can set up the category as usual. Category category = new Category(this, "Effects", color); HBox main = new HBox(); VBox vbox = new VBox(); params = EFFECT_TYPES; comp = new Chooser("Type", this, "effecttype", params) { public void update(String key, Model model) { super.update(key, model); setupEffect(getState()); } }; vbox.add(comp); main.add(vbox); parameters = new HBox(); main.add(parameters); category.add(main, BorderLayout.WEST); setupEffect(BYPASS); return category; } /** Map of parameter -> index in the allParameters array. */ HashMap allParametersToIndex = new HashMap(); /** List of all Waldorf parameters in order. "-" is a reserved (unused and thus unnamed) parameter. */ /// * indicates parameters which must be handled specially due to packing /// that Waldorf decided to do. :-( final static String[] allParameters = new String[/*256*/] { "soundformatversion", // always 1 ** "osc1octave", "osc1semitone", "osc1detune", "-", "osc1bendrange", "osc1keytrack", "osc1fmamount", "-", "-", "-", "-", "osc2octave", "osc2semitone", "osc2detune", "-", "osc2sync", "osc2bendrange", "osc2keytrack", "osc2link", "-", "-", "-", "-", "-", "wavetable", "wave1startwave", "wave1startphase", "wave1envamount", "wave1envvelocity", "wave1keytrack", "wave1limit", "-", "-", "-", "-", "wave2startwave", "wave2startphase", "wave2envamount", "wave2envvelocity", "wave2keytrack", "wave2limit", "wave2link", "-", "-", "-", "-", "mixwave1", "mixwave2", "mixringmod", "mixnoise", "mixexternal", // xt only "-", "aliasing", "timequant", "clipping", "-", "accuracy", "playparam1", "playparam2", "playparam3", "playparam4", "filter1cutoff", "filter1resonance", "filter1type", "filter1keytrack", "filter1envamount", "filter1envvelocity", "-", "-", "filter1special", "-", "-", "filter2cutoff", "filter2type", "filter2keytrack", "effecttype", "amplifiervolume", "-", "amplifierenvvelocity", "amplifierkeytrack", "effectparam1", "chorus", "effectparam2", "pan", "pankeytrack", "effectparam3", "glide", "glidetype", "glidemode", "glidetime", "-", "arp", "arptempo", "arpclock", "arprange", "arppattern", "arpdirection", "arpnoteorder", "arpvelocity", "arpreset", "arpuserlength", "arpuser1", //... "arpuser4" //* "arpuser5", //... "arpuser8" //* "arpuser9", //... "arpuser12" //* "arpuser13", //... "arpuser16" //* "-", "-", "allocation", "assignment", "detune", "-", "de-pan", "envelope1attack", "envelope1decay", "envelope1sustain", "envelope1release", "envelope1trigger", "-", "envelope2attack", "envelope2decay", "envelope2sustain", "envelope2release", "envelope2trigger", "-", "waveenvtime1", "waveenvlevel1", "waveenvtime2", "waveenvlevel2", "waveenvtime3", "waveenvlevel3", "waveenvtime4", "waveenvlevel4", "waveenvtime5", "waveenvlevel5", "waveenvtime6", "waveenvlevel6", "waveenvtime7", "waveenvlevel7", "waveenvtime8", "waveenvlevel8", "waveenvtrigger", "waveenvkeyon", "waveenvkeyonstart", "waveenvkeyonend", "waveenvkeyoff", "waveenvkeyoffstart", "waveenvkeyoffend", "-", "freeenvtime1", "freeenvlevel1", "freeenvtime2", "freeenvlevel2", "freeenvtime3", "freeenvlevel3", "freeenvtime4", "freeenvlevel4", "freeenvtrigger", "-", "lfo1rate", "lfo1shape", "lfo1delay", "lfo1sync", // * "lfo1symmetry", "lfo1humanize", "-", "lfo2rate", "lfo2shape", "lfo2delay", "lfo2sync", // * "lfo2symmetry", "lfo2humanize", "lfo2phase", "-", "modifierdelaysource", "modifierdelaytime", "modifier1source1", "modifier1source2", "modifier1type", "modifier1param", "modifier2source1", "modifier2source2", "modifier2type", "modifier2param", "modifier3source1", "modifier3source2", "modifier3type", "modifier3param", "modifier4source1", "modifier4source2", "modifier4type", "modifier4param", "modulation1source", "modulation1amount", "modulation1destination", "modulation2source", "modulation2amount", "modulation2destination", "modulation3source", "modulation3amount", "modulation3destination", "modulation4source", "modulation4amount", "modulation4destination", "modulation5source", "modulation5amount", "modulation5destination", "modulation6source", "modulation6amount", "modulation6destination", "modulation7source", "modulation7amount", "modulation7destination", "modulation8source", "modulation8amount", "modulation8destination", "modulation9source", "modulation9amount", "modulation9destination", "modulation10source", "modulation10amount", "modulation10destination", "modulation11source", "modulation11amount", "modulation11destination", "modulation12source", "modulation12amount", "modulation12destination", "modulation13source", "modulation13amount", "modulation13destination", "modulation14source", "modulation14amount", "modulation14destination", "modulation15source", "modulation15amount", "modulation15destination", "modulation16source", "modulation16amount", "modulation16destination", "name", // * "name", // * "name", // * "name", // * "name", // * "name", // * "name", // * "name", // * "name", // * "name", // * "name", // * "name", // * "name", // * "name", // * "name", // * "name", // * }; public Object[] emitAll(String key) { if (key.equals("bank")) return new Object[0]; // this is not emittable if (key.equals("number")) return new Object[0]; // this is not emittable byte DEV = (byte)(getID()); if (key.equals("effecttype")) { int index = ((Integer)(allParametersToIndex.get(key))).intValue(); byte HH = (byte)((index >>> 7) & 127); byte PP = (byte)(index & 127); byte XX = (byte)model.get(key); // handle XT effects specially if (XX == 8) // delay XX = 32; else if (XX == 9) // pan delay XX = 33; else if (XX == 10) // mod delay XX = 34; byte[] data = new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x20, 0x00, HH, PP, XX, (byte)0xF7 }; return new Object[] { data }; } else if (key.equals("osc1octave") || key.equals("osc2octave")) { int index = ((Integer)(allParametersToIndex.get(key))).intValue(); byte HH = (byte)((index >>> 7) & 127); byte PP = (byte)(index & 127); byte XX = (byte)(16 + model.get(key) * 12); byte[] data = new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x20, 0x00, HH, PP, XX, (byte)0xF7 }; return new Object[] { data }; } else if (key.equals("lfo1sync") || key.equals("lfo2sync")) { int index = ((Integer)(allParametersToIndex.get(key))).intValue(); byte HH = (byte)((index >>> 7) & 127); byte PP = (byte)(index & 127); byte XX = (byte)model.get(key); if (XX == 2) XX = 3; // because it's of/on/on/Clock, I dunno why byte[] data = new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x20, 0x00, HH, PP, XX, (byte)0xF7 }; return new Object[] { data }; } else if (key.equals("arpuser1") || key.equals("arpuser2") || key.equals("arpuser3") || key.equals("arpuser4")) { int index = 102; int arp1 = model.get("arpuser1"); int arp2 = model.get("arpuser2"); int arp3 = model.get("arpuser3"); int arp4 = model.get("arpuser4"); int total = (arp1 << 3) | (arp2 << 2) | (arp3 << 1) | (arp4); /// Do I have these backwards? byte HH = (byte)((index >>> 7) & 127); byte PP = (byte)(index & 127); byte XX = (byte)(total); byte[] data = new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x20, 0x00, HH, PP, XX, (byte)0xF7 }; return new Object[] { data }; } else if (key.equals("arpuser5") || key.equals("arpuser6") || key.equals("arpuser7") || key.equals("arpuser8")) { int index = 103; int arp1 = model.get("arpuser5"); int arp2 = model.get("arpuser6"); int arp3 = model.get("arpuser7"); int arp4 = model.get("arpuser8"); int total = (arp1 << 3) | (arp2 << 2) | (arp3 << 1) | (arp4); /// Do I have these backwards? byte HH = (byte)((index >>> 7) & 127); byte PP = (byte)(index & 127); byte XX = (byte)(total); byte[] data = new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x20, 0x00, HH, PP, XX, (byte)0xF7 }; return new Object[] { data }; } else if (key.equals("arpuser9") || key.equals("arpuser10") || key.equals("arpuser11") || key.equals("arpuser12")) { int index = 104; int arp1 = model.get("arpuser9"); int arp2 = model.get("arpuser10"); int arp3 = model.get("arpuser11"); int arp4 = model.get("arpuser12"); int total = (arp1 << 3) | (arp2 << 2) | (arp3 << 1) | (arp4); /// Do I have these backwards? byte HH = (byte)((index >>> 7) & 127); byte PP = (byte)(index & 127); byte XX = (byte)(total); byte[] data = new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x20, 0x00, HH, PP, XX, (byte)0xF7 }; return new Object[] { data }; } else if (key.equals("arpuser13") || key.equals("arpuser14") || key.equals("arpuser15") || key.equals("arpuser16")) { int index = 105; int arp1 = model.get("arpuser13"); int arp2 = model.get("arpuser14"); int arp3 = model.get("arpuser15"); int arp4 = model.get("arpuser16"); int total = (arp1 << 3) | (arp2 << 2) | (arp3 << 1) | (arp4); /// Do I have these backwards? byte HH = (byte)((index >>> 7) & 127); byte PP = (byte)(index & 127); byte XX = (byte)(total); byte[] data = new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x20, 0x00, HH, PP, XX, (byte)0xF7 }; return new Object[] { data }; } else if (key.equals("name")) { Object[] data = new Object[16]; String name = model.get(key, "Init Sound V1.1 ") + " "; for(int i = 0; i < 16; i++) { int index = i + 240; byte HH = (byte)((index >>> 7) & 127); byte PP = (byte)(index & 127); byte XX = (byte)(name.charAt(i)); byte[] b = new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x20, 0x00, HH, PP, XX, (byte)0xF7 }; data[i] = b; } return data; } else { int index = ((Integer)(allParametersToIndex.get(key))).intValue(); byte HH = (byte)((index >>> 7) & 127); byte PP = (byte)(index & 127); byte XX = (byte)model.get(key); byte[] data = new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x20, 0x00, HH, PP, XX, (byte)0xF7 }; return new Object[] { data }; } } public byte[] emit(Model tempModel, boolean toWorkingMemory, boolean toFile) { if (tempModel == null) tempModel = getModel(); byte DEV = (byte)(getID()); byte BB = (byte) tempModel.get("bank"); byte NN = (byte) tempModel.get("number"); if (toWorkingMemory) { BB = 0x20; NN = 0x0; } byte[] bytes = new byte[256]; for(int i = 0; i < 240; i++) { String key = allParameters[i]; if (key.equals("soundformatversion")) { bytes[i] = 1; // always } if (key.equals("-")) { bytes[i] = 0; } else if (key.equals("effecttype")) { bytes[i] = (byte)model.get(key); // handle XT effects specially if (bytes[i] == 8) // delay bytes[i] = (byte)32; else if (bytes[i] == 9) // pan delay bytes[i] = (byte)33; else if (bytes[i] == 10) // mod delay bytes[i] = (byte)34; } else if (key.equals("osc1octave") || key.equals("osc2octave")) { bytes[i] = (byte)(16 + model.get(key) * 12); } else if (key.equals("lfo1sync") || key.equals("lfo2sync")) { bytes[i] = (byte)(model.get(key)); if (bytes[i] == 2) bytes[i] = 3; // because it's of/on/on/Clock, I dunno why } else if (key.equals("arpuser1")) { int index = 102; int arp1 = model.get("arpuser1"); int arp2 = model.get("arpuser2"); int arp3 = model.get("arpuser3"); int arp4 = model.get("arpuser4"); int total = (arp1 << 3) | (arp2 << 2) | (arp3 << 1) | (arp4); /// Do I have these backwards? bytes[i] = (byte)(total); } else if (key.equals("arpuser5")) { int index = 103; int arp1 = model.get("arpuser5"); int arp2 = model.get("arpuser6"); int arp3 = model.get("arpuser7"); int arp4 = model.get("arpuser8"); int total = (arp1 << 3) | (arp2 << 2) | (arp3 << 1) | (arp4); /// Do I have these backwards? bytes[i] = (byte)(total); } else if (key.equals("arpuser9")) { int index = 104; int arp1 = model.get("arpuser9"); int arp2 = model.get("arpuser10"); int arp3 = model.get("arpuser11"); int arp4 = model.get("arpuser12"); int total = (arp1 << 3) | (arp2 << 2) | (arp3 << 1) | (arp4); /// Do I have these backwards? bytes[i] = (byte)(total); } else if (key.equals("arpuser13")) { int index = 105; int arp1 = model.get("arpuser13"); int arp2 = model.get("arpuser14"); int arp3 = model.get("arpuser15"); int arp4 = model.get("arpuser16"); int total = (arp1 << 3) | (arp2 << 2) | (arp3 << 1) | (arp4); /// Do I have these backwards? bytes[i] = (byte)(total); } else { bytes[i] = (byte)(model.get(key)); } } String name = model.get("name", "Init Sound V1.1 ") + " "; for(int i = 240; i < 256; i++) { bytes[i] = (byte)(name.charAt(i - 240)); } byte[] full = new byte[EXPECTED_SYSEX_LENGTH]; full[0] = (byte)0xF0; full[1] = 0x3E; full[2] = 0x0E; full[3] = DEV; full[4] = 0x10; full[5] = BB; full[6] = NN; System.arraycopy(bytes, 0, full, 7, bytes.length); full[263] = produceChecksum(BB, NN, bytes); full[264] = (byte)0xF7; return full; } /** Generate a Waldorf checksum of the data bytes */ byte produceChecksum(byte bb, byte nn, byte[] bytes) { // From the sysex document: // // "Sum of all databytes truncated to 7 bits. // The addition is done in 8 bit format, the result is // masked to 7 bits (00h to 7Fh). A checksum of 7Fh is // always accepted as valid. // IMPORTANT: the MIDI status-bytes as well as the // ID's are not used for computing the checksum." byte b = 0; for(int i = 0; i < bytes.length; i++) b += bytes[i]; // Section 2.12 says that the checksum includes BB and NN. // But this produces a checksum error on the Microwave XT! // Additionally Section 1 says that the checksum is the // "sum of all databytes", and in its format it's clear that // BB and NN (location info) are NOT databytes. Not including BB // and NN below produces valid dumps. //b += bb; //b += nn; // I *think* signed will work b = (byte)(b & (byte)127); return b; } public int getPauseAfterChangePatch() { // perhaps just a smidgen? return 50; } public void changePatch(Model tempModel) { byte BB = (byte)tempModel.get("bank"); byte NN = (byte)tempModel.get("number"); try { // Bank change is CC 32 tryToSendMIDI(new ShortMessage(ShortMessage.CONTROL_CHANGE, getChannelOut(), 32, BB)); simplePause(getPauseAfterChangePatch()); // Number change is PC tryToSendMIDI(new ShortMessage(ShortMessage.PROGRAM_CHANGE, getChannelOut(), NN, 0)); } catch (Exception e) { e.printStackTrace(); } } public byte[] requestDump(Model tempModel) { if (tempModel == null) tempModel = getModel(); byte DEV = (byte)(getID()); byte BB = (byte)tempModel.get("bank"); byte NN = (byte)tempModel.get("number"); //(BB + NN)&127 is checksum return new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x00, BB, NN, (byte)((BB + NN)&127), (byte)0xF7 }; } public byte[] requestDump(int bank, int number, int id) { byte DEV = (byte)id; byte BB = (byte)bank; byte NN = (byte)number; //(BB + NN)&127 is checksum return new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x00, BB, NN, (byte)((BB + NN)&127), (byte)0xF7 }; } public byte[] requestCurrentDump() { byte DEV = (byte)(getID()); //(0x75 + 0x00)&127 is checksum return new byte[] { (byte)0xF0, 0x3E, 0x0E, DEV, 0x00, 0x20, 0x00, (byte)((0x20 + 0x00)&127), (byte)0xF7 }; } public static boolean recognize(byte[] data) { boolean v = ( data.length == EXPECTED_SYSEX_LENGTH && data[0] == (byte)0xF0 && data[1] == (byte)0x3E && data[2] == (byte)0x0E && data[4] == (byte)0x10); return v; } public static final int EXPECTED_SYSEX_LENGTH = 265; public static final int MAXIMUM_NAME_LENGTH = 16; public String revisePatchName(String name) { name = super.revisePatchName(name); // trim first time if (name.length() > MAXIMUM_NAME_LENGTH) name = name.substring(0, MAXIMUM_NAME_LENGTH); StringBuffer nameb = new StringBuffer(name); for(int i = 0 ; i < nameb.length(); i++) { char c = nameb.charAt(i); if (c < 32 || c > 127) nameb.setCharAt(i, ' '); } name = nameb.toString(); return super.revisePatchName(name); // trim again } /** Verify that all the parameters are within valid values, and tweak them if not. */ public void revise() { // check the easy stuff -- out of range parameters super.revise(); String nm = model.get("name", "Init"); String newnm = revisePatchName(nm); if (!nm.equals(newnm)) model.set("name", newnm); } public void setParameterByIndex(int i, byte b) { String key = allParameters[i]; if (key.equals("effecttype")) { // handle XT effects specially if (b == 32) // delay b = 8; else if (b == 33) // pan delay b = 9; else if (b == 34) // mod delay b = 10; } if (key.equals("-")) { // do nothing } else if (key.equals("osc1octave") || key.equals("osc2octave")) { model.set(key, (b - 16) / 12); } else if (key.equals("lfo1sync") || key.equals("lfo2sync")) { if (b == 3) b = 2; // because it's of/on/on/Clock, I dunno why model.set(key, b); } else if (key.equals("arpuser1")) { model.set("arpuser1", (b >>> 3) & 1); /// Do I have these backwards? model.set("arpuser2", (b >>> 2) & 1); model.set("arpuser3", (b >>> 1) & 1); model.set("arpuser4", (b) & 1); } else if (key.equals("arpuser5")) { model.set("arpuser5", (b >>> 3) & 1); /// Do I have these backwards? model.set("arpuser6", (b >>> 2) & 1); model.set("arpuser7", (b >>> 1) & 1); model.set("arpuser8", (b) & 1); } else if (key.equals("arpuser9")) { model.set("arpuser9", (b >>> 3) & 1); /// Do I have these backwards? model.set("arpuser10", (b >>> 2) & 1); model.set("arpuser11", (b >>> 1) & 1); model.set("arpuser12", (b) & 1); } else if (key.equals("arpuser13")) { model.set("arpuser13", (b >>> 3) & 1); /// Do I have these backwards? model.set("arpuser14", (b >>> 2) & 1); model.set("arpuser15", (b >>> 1) & 1); model.set("arpuser16", (b) & 1); } else if (i >= 240 && i < 240 + 16) // name { try { String name = model.get("name", "Init Sound V1.1 ") + " "; byte[] str = name.getBytes("US-ASCII"); byte[] newstr = new byte[] { 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20 }; System.arraycopy(str, 0, newstr, 0, 16); newstr[i - 240] = b; model.set("name", new String(newstr, "US-ASCII")); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } } else { model.set(key, b); } } public void parseParameter(byte[] data) { int index = -1; byte b = 0; // is it a sysex parameter change? if (data[0] == (byte)0xF0 && data[1] == (byte)0x3E && data[2] == (byte)0x0E && // Microwave // filter by ID? Presently I'm not data[4] == (byte)0x20 && data[5] == 0x00 && // only Sound Mode Edit Bufer data.length == 10) { int hi = (int)(data[6] & 127); int lo = (int)(data[7] & 127); index = (hi << 7) | (lo); b = (byte)(data[8] & 127); setParameterByIndex(index, b); } else { // we'll put CC here later } revise(); } public int parse(byte[] data, boolean fromFile) { boolean retval = true; if (data[5] < 8) // otherwise it's probably just local patch data. Too bad they do this. :-( { model.set("bank", data[5]); model.set("number", data[6]); } else { retval = false; } for(int i = 0; i < 255; i++) { setParameterByIndex(i, data[i + 7]); } revise(); updateMode(); return PARSE_SUCCEEDED; } public static String getSynthName() { return "Waldorf Microwave II/XT/XTk"; } public String getPatchName(Model model) { return model.get("name", "Init Sound V1.1 "); } public byte getID() { try { byte b = (byte)(Byte.parseByte(tuple.id)); if (b >= 0) return b; } catch (NullPointerException e) { } // expected. Happens when tuple's not built yet catch (NumberFormatException e) { e.printStackTrace(); } return 0; } public String reviseID(String id) { try { byte b =(byte)(Byte.parseByte(id)); if (b >= 0) return "" + b; } catch (NumberFormatException e) { } // expected return "" + getID(); } public Model getNextPatchLocation(Model model) { int bank = model.get("bank"); int number = model.get("number"); number++; if (number >= 128) { bank++; number = 0; if (bank >= 2) bank = 0; } Model newModel = buildModel(); newModel.set("bank", bank); newModel.set("number", number); return newModel; } public String getPatchLocationName(Model model) { // getPatchLocationName() is called from sprout() as a test to see if we should enable // batch downloading. If we haven't yet created an .init file, then parameters won't exist // yet and this method will bomb badly. So we return null in this case. if (!model.exists("number")) return null; if (!model.exists("bank")) return null; int number = model.get("number") + 1; return BANKS[model.get("bank")] + (number > 99 ? "" : (number > 9 ? "0" : "00")) + number; } }
[ "daniel.appelt@gmail.com" ]
daniel.appelt@gmail.com
0a1b00df0a63267d4b4e8a808f87fb2918166250
02864ac4a0eafb61ee9dc15ea0ea75f4ab6f0ec8
/src/Colecciones/SetADT.java
b7c62085b9c9f84b451c052ce2a96e8c733bdc5f
[]
no_license
christiangalicia/EstructuraDeDatos2020
d5fd6277c05a20ff930f3d72625a35937c09b94b
fd41bed0a609abf7f6285440da536b24c82a6cc9
refs/heads/master
2023-01-20T03:17:47.883215
2020-11-25T14:26:42
2020-11-25T14:26:42
294,395,124
0
0
null
null
null
null
UTF-8
Java
false
false
806
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 Colecciones; import java.util.Iterator; /** * * @author user */ public interface SetADT<T> { //añane un elmento , ignorando los duplicados public void add(T element); public void addAll(SetADT<T> set); public T removeRandom(); public T remove(T element); public SetADT<T> union (SetADT<T> set); public boolean contains(T target); public boolean equals(SetADT<T> set); public boolean isEmpty(); public int size(); public Iterator<T> iterator(); public String toString(); }
[ "user@LAPTOP-UF5CNHHH" ]
user@LAPTOP-UF5CNHHH
599402d5302023ec587a7f8b47525d3c186e0bf4
e7dbf57542acd33b805784b51d787ce98e55624e
/src/main/java/com/rabbit/demo/rabbit/MsgReceiver.java
3db935b7258fe0a056354f7f07247ce01f0c367c
[]
no_license
154612077/spring-boot-mq
b3aa28d0790c80cca9e1f30fa125011412f49d84
0e207bdc44375142079422b7a174cd66a6bf2eae
refs/heads/master
2020-07-02T03:07:53.473333
2019-09-02T05:39:24
2019-09-02T05:39:24
201,397,082
0
0
null
null
null
null
UTF-8
Java
false
false
666
java
package com.rabbit.demo.rabbit; import com.rabbit.demo.config.RabbitConfig; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.amqp.rabbit.annotation.RabbitHandler; import org.springframework.amqp.rabbit.annotation.RabbitListener; import org.springframework.stereotype.Component; /** * 1个消费者对应一个生产者 */ @Component @RabbitListener(queues = RabbitConfig.QUEUE_A) public class MsgReceiver { private final Logger logger = LoggerFactory.getLogger(this.getClass()); @RabbitHandler public void process(String content) { logger.info("接收处理队列A当中的消息: " + content); } }
[ "xzk@ihotel.cn" ]
xzk@ihotel.cn
726f775f5688f2c157b7861f1d3a11abccf93a5a
2b462598cd9b59a37ca335dabc91361d40cd574c
/app/src/main/java/com/bob/lottery/Manager/TitleManager.java
96940ef7a8230eac847cdcd5c9020d3528d9a459
[]
no_license
piwenjun/Lottery
2ad6facc5b1806898b6640cc0f511a24ec7b9805
595c7afe49a62ad9106ecdf065b89a00eeab3b57
refs/heads/master
2020-04-10T00:17:42.103286
2016-03-05T10:43:23
2016-03-05T10:43:23
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,720
java
package com.bob.lottery.Manager; import android.app.Activity; import android.view.View; import android.widget.ImageView; import android.widget.RelativeLayout; import android.widget.TextView; import com.bob.lottery.R; import com.bob.lottery.util.ConstantValue; import com.bob.lottery.util.GlobalParams; import com.bob.lottery.view.SecondUI; import org.apache.commons.lang3.StringUtils; import org.apache.http.conn.BasicEofSensorWatcher; import java.util.Observable; import java.util.Observer; /** * Created by Administrator on 2016/3/3. */ //管理标题容器 public class TitleManager implements Observer{ //拿到容器 private RelativeLayout commonContainer; private RelativeLayout loginContainer; private RelativeLayout unLoginContainer; private ImageView goback;// 返回 private ImageView help;// 帮助 private ImageView login;// 登录 private TextView titleContent;// 标题内容 private TextView userInfo;// 用户信息 private static TitleManager instance = new TitleManager(); private TitleManager() { } public static TitleManager getInstance() { return instance; } //初始化 public void init(Activity activity){ commonContainer = (RelativeLayout) activity .findViewById(R.id.ii_common_container); unLoginContainer = (RelativeLayout) activity .findViewById(R.id.ii_unlogin_title); loginContainer = (RelativeLayout) activity .findViewById(R.id.ii_login_title); goback = (ImageView) activity.findViewById(R.id.ii_title_goback); help = (ImageView) activity.findViewById(R.id.ii_title_help); login = (ImageView) activity.findViewById(R.id.ii_title_login); titleContent=(TextView)activity.findViewById(R.id.ii_title_content); userInfo=(TextView)activity.findViewById(R.id.ii_top_user_info); setListener(); } //监听 private void setListener() { goback.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { System.out.println("返回键"); } }); help.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { System.out.println("help"); } }); login.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { System.out.println("login"); //SecondUI secondUI = new SecondUI(MiddleManager.getInstance().getContext()); MiddleManager.getInstance().changeUI(SecondUI.class);//changeUI需要修改,不能传递对象,但是明确目标 } }); } private void initTitle(){ commonContainer.setVisibility(View.GONE); loginContainer.setVisibility(View.GONE); unLoginContainer.setVisibility(View.GONE); } //显示和隐藏 //显示通用 public void showCommonTitle(){ initTitle(); commonContainer.setVisibility(View.VISIBLE); } //显示未登录 public void showUnLoginTitle(){ initTitle(); unLoginContainer.setVisibility(View.VISIBLE); } //显示登陆 public void showLoginTitle(){ initTitle(); loginContainer.setVisibility(View.VISIBLE); } public void changeTitle(String title) { titleContent.setText(title); } @Override public void update(Observable observable, Object data) { //不空,是数字 if (data!=null && StringUtils.isNumeric(data.toString())){ int id=Integer.parseInt(data.toString()); switch (id){ case ConstantValue.VIEW_FISRT: showUnLoginTitle(); break; case ConstantValue.VIEW_SECOND: case ConstantValue.VIEW_SSQ: case ConstantValue.VIEW_SHOPPING: case ConstantValue.VIEW_LOGIN: case ConstantValue.VIEW_PREBET: showCommonTitle(); break; case ConstantValue.VIEW_HALL: if (GlobalParams.isLogin){ showLoginTitle(); String info = "用户名:" + GlobalParams.USERNAME + "\r\n" + "余额:" + GlobalParams.MONEY; userInfo.setText(info); }else { showUnLoginTitle(); } break; } } } }
[ "1641809917@qq.com" ]
1641809917@qq.com
aa3b421d3cf4c636b7b104ac7722fd0dbc488e93
80ef2840f5d8c4cccd3028140716ab23afc85a8c
/ydialog/src/main/java/com/tangwy/ydialog/internal/BaseDrawable.java
fa9f6dda0b1fa4b511f24e5f60d3a887a03e0816
[]
no_license
troytang/YDialog
246c8f8649d4750dda454bf67da22a9136cf32cb
cef76fe91700088c3fad2205d4ef9e6265688387
refs/heads/master
2021-01-10T01:58:33.463804
2015-10-16T07:00:24
2015-10-16T07:00:24
44,219,782
1
0
null
null
null
null
UTF-8
Java
false
false
1,817
java
package com.tangwy.ydialog.internal; import android.annotation.TargetApi; import android.content.Context; import android.graphics.ColorFilter; import android.graphics.PixelFormat; import android.graphics.drawable.Animatable; import android.graphics.drawable.Drawable; import android.os.Build; import android.widget.ImageView; /** * Created by Troy Tang on 2015-10-13. */ public abstract class BaseDrawable extends Drawable implements Drawable.Callback, Animatable { public ImageView mParentView; public BaseDrawable(ImageView imageView) { mParentView = imageView; } public Context getContext() { return null != mParentView ? mParentView.getContext() : null; } @Override public boolean isRunning() { return false; } @TargetApi(Build.VERSION_CODES.HONEYCOMB) @Override public void invalidateDrawable(Drawable who) { Callback callback = getCallback(); if (null != callback) { callback.invalidateDrawable(this); } } @TargetApi(Build.VERSION_CODES.HONEYCOMB) @Override public void scheduleDrawable(Drawable who, Runnable what, long when) { Callback callback = getCallback(); if (null != callback) { callback.scheduleDrawable(this, what, when); } } @TargetApi(Build.VERSION_CODES.HONEYCOMB) @Override public void unscheduleDrawable(Drawable who, Runnable what) { Callback callback = getCallback(); if (null != callback) { callback.unscheduleDrawable(this, what); } } @Override public void setAlpha(int alpha) { } @Override public void setColorFilter(ColorFilter colorFilter) { } @Override public int getOpacity() { return PixelFormat.TRANSLUCENT; } }
[ "YTroy" ]
YTroy
b03424896b075cbd22035e03d98409f74295bcea
e556009a379bcc7f0b54012c2ef8054b5c9cb258
/AllTest/src/point21/OnHand.java
c3204963fccfed10dc30aa1e1e9b25bdd093e034
[]
no_license
GawainLee/AnalystImageTarget
32849231ae58ef98f1ce64c55787ceb3c9480a4a
62e0530e8a68418fc2b763ec0e1cddcf460af2c6
refs/heads/master
2020-07-17T05:58:00.203067
2019-09-03T01:21:03
2019-09-03T01:21:03
205,961,897
0
0
null
null
null
null
UTF-8
Java
false
false
2,197
java
package point21; import java.util.ArrayList; public class OnHand { private ArrayList<Card> cardsOnHand; private boolean hasAce = false; private int onHandScoreHasOne = 0; private int onHandScoreNotHasOne = 0; private boolean needBid = true; private ArrayList<Integer>onHandScore; public OnHand() { // TODO Auto-generated constructor stub cardsOnHand = new ArrayList<Card>(); } public void getCard(Card card) { cardsOnHand.add(card); onHandScoreNotHasOne += card.getCardPoint(); if (hasAce) { onHandScoreHasOne +=card.getCardPoint(); } if (card.getCardPoint()==1) { onHandScoreHasOne = onHandScoreNotHasOne + 10; this.hasAce = true; } } public Card takeAwayCard() { if (cardsOnHand.size()>0) { Card cardTemp = cardsOnHand.get(0); onHandScoreNotHasOne -= cardTemp.getCardPoint(); if (cardTemp.getCardPoint()==1) { onHandScoreHasOne = 0; this.hasAce = false; } cardsOnHand.remove(0); return cardTemp; } System.out.println("No card on hand"); return null; } public boolean isHasAce() { return hasAce; } public int getOnHandScoreHasOne() { return onHandScoreHasOne; } public int getOnHandScoreNotHasOne() { return onHandScoreNotHasOne; } public boolean isNeedBid() { return needBid; } public void setNeedBid(boolean needBid) { this.needBid = needBid; } /** * A can be 1 or 11 * on hand is A and X, then can be (1 + X) and (11 + X) * on hand is A and A and X, then can be (1 + 1 + X) and (1 + 11 + X) and (11 + 11 + X) * on hand is n * A and X, then can be (n + X) and (1 * 11 + (n-1) + X) ... (n*11 + X) * @return */ public ArrayList<Integer> getOnHandScore() { this.onHandScore = new ArrayList<Integer>(); int tempNumOfOneCards = 0; int tempNowScore = 0; for (int cardsNum = 0; cardsNum < cardsOnHand.size(); cardsNum++) { if (cardsOnHand.get(cardsNum).getCardPoint()==1) { tempNumOfOneCards++; } else { tempNowScore += cardsOnHand.get(cardsNum).getCardPoint(); } } for (int i = 0; i <= tempNumOfOneCards; i++) { int score = i * 10 + tempNumOfOneCards + tempNowScore; this.onHandScore.add(score); } return this.onHandScore; } }
[ "lzqweasz@126.com" ]
lzqweasz@126.com
553ea1b1aab1fbcceafa241727550fa9f547966d
d30016b079936c0a909958cc52a5d677dd0d586d
/app/src/main/java/brandjunhoe89/chatting/fragment/AccountFragment.java
b51237e8708d51258a2961eb9b43f570ea40b8f6
[]
no_license
ehwnsghl2/Chat
50cc23e337f98605325dbdbb1084fd4a19b15a0b
f67c414a32da052d682901af3e8e24cb601f6f1b
refs/heads/master
2021-05-09T19:38:47.332142
2018-01-03T03:33:29
2018-01-03T03:33:29
118,654,271
0
0
null
null
null
null
UTF-8
Java
false
false
2,420
java
package brandjunhoe89.chatting.fragment; import android.app.AlertDialog; import android.app.Fragment; import android.content.Context; import android.content.DialogInterface; import android.os.Bundle; import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.EditText; import com.google.firebase.auth.FirebaseAuth; import com.google.firebase.database.FirebaseDatabase; import java.util.HashMap; import java.util.Map; import brandjunhoe89.chatting.R; /** * Created by jh on 2017-12-20. */ public class AccountFragment extends Fragment { @Nullable @Override public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_account, container, false); Button button = (Button)view.findViewById(R.id.accountFragment_button_comment); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { showDialog(view.getContext()); } }); return view; } void showDialog(Context context){ AlertDialog.Builder builder = new AlertDialog.Builder(context); LayoutInflater layoutInflater = getActivity().getLayoutInflater(); View view = layoutInflater.inflate(R.layout.dialog_comment, null); final EditText editText = (EditText)view.findViewById(R.id.commentDialog_edittext); builder.setView(view).setPositiveButton("확인", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { //유저 코맨트정보 수정 Map<String, Object> stringObjectMap = new HashMap<>(); String uid = FirebaseAuth.getInstance().getCurrentUser().getUid(); stringObjectMap.put("comment", editText.getText().toString()); FirebaseDatabase.getInstance().getReference().child("users").child(uid).updateChildren(stringObjectMap); } }).setNegativeButton("취소", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { } }); builder.show(); } }
[ "ehwnsghl2@naver.com" ]
ehwnsghl2@naver.com
df11ef7364e309b3ab917e827ec852ec9095f496
0366dec0f36b6a0bca708a343533ac988f74dc59
/src/main/java/com/kimigayo/jvm/classloader/LoaderTest.java
ab0a48250bc2ce82177e4b3a02ffe4781e633d4a
[]
no_license
kimigayo/Java-Basic
468803687d53d2a0a5f463066626e37701577561
3edbe2ce6709602e5cad8ea93cbaef44b1883760
refs/heads/master
2020-04-07T23:00:47.921854
2018-12-25T01:13:05
2018-12-25T01:13:05
124,232,908
0
0
null
null
null
null
UTF-8
Java
false
false
750
java
package com.kimigayo.jvm.classloader; /** * OSGI加载器,每个bundle都使用一个加载器 */ public class LoaderTest { public static void main(String[] args) { System.out.println(LoaderTest.class.getClassLoader()); System.out.println(LoaderTest.class.getClassLoader().getParent()); System.out.println(LoaderTest.class.getClassLoader().getParent().getParent()); String s="aa";//类加载器支持”双亲委托“代理模式(先从最父级的加载器范围内查看是否为加载范围),这也是为了保证java核心库的类型安全 //当然并不是所有的类加载器都是采用双亲委托的机制,如:tomcat的类加载器机制刚好与双亲委托机制相反 } }
[ "1056477503@qq.com" ]
1056477503@qq.com
22e912f7b8ada3c45555e6bb457ba3fcd5c7d82d
0e0dae718251c31cbe9181ccabf01d2b791bc2c2
/SCT2/tags/M_SCT_15/test-plugins/org.yakindu.sct.generator.java.test/src-gen/org/yakindu/sct/generator/java/test/AlwaysOncycleTest.java
25e24ea75d82a1b681cf60a62e9ca61325ea14dc
[]
no_license
huybuidac20593/yakindu
377fb9100d7db6f4bb33a3caa78776c4a4b03773
304fb02b9c166f340f521f5e4c41d970268f28e9
refs/heads/master
2021-05-29T14:46:43.225721
2015-05-28T11:54:07
2015-05-28T11:54:07
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,671
java
/** * Copyright (c) 2012 committers of YAKINDU and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * committers of YAKINDU - initial API and implementation */ package org.yakindu.sct.generator.java.test; import org.junit.After; import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; import org.yakindu.scr.alwaysoncycle.AlwaysOncycleStatemachine; import org.yakindu.scr.alwaysoncycle.AlwaysOncycleStatemachine.State; /** * Unit TestCase for AlwaysOncycle */ @SuppressWarnings("all") public class AlwaysOncycleTest { private AlwaysOncycleStatemachine statemachine; @Before public void setUp() { statemachine = new AlwaysOncycleStatemachine(); statemachine.init(); statemachine.enter(); } @After public void tearDown() { statemachine = null; } @Test public void testalwaysOncycleTest() { assertTrue(statemachine.isStateActive(State.Main_region_StateA)); while (statemachine.getValue() < 5) { statemachine.runCycle(); assertTrue(statemachine.isStateActive(State.Main_region_StateA)); } statemachine.runCycle(); assertTrue(statemachine.isStateActive(State.Main_region_StateB)); while (statemachine.getValue() < 5) { statemachine.runCycle(); assertTrue(statemachine.isStateActive(State.Main_region_StateB)); } statemachine.runCycle(); assertTrue(statemachine.isStateActive(State.Main_region_StateA)); } }
[ "terfloth@itemis.de" ]
terfloth@itemis.de
351cad668c679f6c6f2fbea3972c263c91b419d3
5a6fe4c54d473e6b69148b3de1533a1bbc6c0925
/entity/src/main/java/com/mironov/image/studio/entities/Tournament.java
9c2f5642ab574c1b43c20c23fc6ddd59626dd70c
[]
no_license
deadlypower231/it-academy-Image_studio
ab8f60f2b79501e49643a8d608f7ce5165a6b511
7471679faec7de620a6049c48c26a037ba5bd936
refs/heads/master
2023-05-13T12:39:41.105942
2021-05-26T19:14:25
2021-05-26T19:14:25
358,361,533
0
0
null
null
null
null
UTF-8
Java
false
false
1,451
java
package com.mironov.image.studio.entities; import com.mironov.image.studio.enums.Status; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import lombok.experimental.SuperBuilder; import javax.persistence.*; import java.io.Serializable; import java.util.Date; import java.util.List; @Entity @Table(name = "tournament") @Setter @Getter @NoArgsConstructor @AllArgsConstructor @SuperBuilder public class Tournament extends AEntity<Long> implements Serializable { @Column(name = "name", length = 100) private String name; @Column(name = "date", length = 21) private String date; @Column(name = "address") private String address; @Column(name = "status") private Status status; @OneToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL) @JoinColumn(name = "description_id", referencedColumnName = "id") private Description description; @ManyToMany(fetch = FetchType.LAZY) @JoinTable(name = "tournament_user", joinColumns = @JoinColumn(name = "tournament_id", referencedColumnName = "id"), inverseJoinColumns = @JoinColumn(name = "user_id", referencedColumnName = "id")) private List<User> users; @OneToMany(mappedBy = "tournament", fetch = FetchType.LAZY) private List<Order> order; @OneToMany(mappedBy = "tournament", cascade = CascadeType.ALL, fetch = FetchType.LAZY) private List<Schedule> schedule; }
[ "deadlypower1992@gmail.com" ]
deadlypower1992@gmail.com
ad20ea6ca2dfcb87de482535c8fea3fcaaf495a7
4e530cf6031367764fafcf35ea1c0a4ad35fa903
/selenium/webdriver/Topic_16_Upload_File_II.java
72474b7b45105e0c1e60081f187b6d397a0b2433
[]
no_license
duyquang26103/Selenium-webdriver-testng
13178ad3cf7b58252dad7add9a907ae87f076081
d8a15527bcf57d722cf4246cbba6f90bc8871819
refs/heads/master
2023-08-18T04:38:04.813410
2021-10-04T08:10:24
2021-10-04T08:10:24
402,091,057
0
0
null
null
null
null
UTF-8
Java
false
false
5,038
java
package webdriver; import java.awt.AWTException; import java.awt.Robot; import java.awt.Toolkit; import java.awt.datatransfer.StringSelection; import java.awt.event.KeyEvent; import java.io.File; import java.io.IOException; import java.util.List; import java.util.concurrent.TimeUnit; import org.openqa.selenium.By; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.testng.Assert; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; public class Topic_16_Upload_File_II { WebDriver driver; String projectPath = System.getProperty("user.dir"); JavascriptExecutor js; String filePath = projectPath + File.separator + "image" + File.separator; String thinkPad_1 = "thinkpad_1.jpg"; String thinkPad_2 = "thinkpad_2.jpg"; String thinkPad_3 = "thinkpad_3.jpg"; String t1Path = filePath + thinkPad_1; String t2Path = filePath + thinkPad_2; String t3Path = filePath + thinkPad_3; String chromeOnePath = projectPath + "\\AutoIT\\chromeUploadOneTime.exe"; String firefoxOnePath = projectPath + "\\AutoIT\\firefoxUploadOneTime.exe"; String chromeMultiPath = projectPath + "\\AutoIT\\chromeUploadMultiple.exe"; String firefoxMutilPath = projectPath + "\\AutoIT\\firefoUploadMultiple.exe"; @BeforeClass public void BeforeClass() { System.setProperty("webdriver.chrome.driver", projectPath + "\\browserDrivers\\chromedriver.exe"); driver = new ChromeDriver(); // System.setProperty("webdriver.gecko.driver", projectPath + "\\browserDrivers\\geckodriver.exe"); // driver = new FirefoxDriver(); js = (JavascriptExecutor) driver; driver.manage().timeouts().implicitlyWait(15, TimeUnit.SECONDS); driver.get("https://blueimp.github.io/jQuery-File-Upload/"); } @Test public void TC_01_Upload_AutoIT() throws IOException { driver.findElement(By.cssSelector(".btn-success")).click(); if (driver.toString().contains("firefox")) { Runtime.getRuntime().exec(new String[] { firefoxOnePath, t1Path }); } else if (driver.toString().contains("chrome") || driver.toString().contains("edge")) { Runtime.getRuntime().exec(new String[] { chromeOnePath, t1Path }); } Assert.assertTrue(driver.findElement(By.xpath("//p[text()='" + thinkPad_1 + "']")).isDisplayed()); List<WebElement> itemsStart = driver .findElements(By.cssSelector("table button[class*='btn btn-primary start']")); for (WebElement start : itemsStart) { start.click(); sleepInSecond(2); } Assert.assertTrue(driver.findElement(By.xpath("//a[text()='" + thinkPad_1 + "']")).isDisplayed()); } @Test public void TC_02_Upload_Multi_AutoIT() throws IOException { driver.findElement(By.cssSelector(".btn-success")).click(); if (driver.toString().contains("firefox")) { Runtime.getRuntime().exec(new String[] { firefoxMutilPath, t1Path, t2Path }); } else if (driver.toString().contains("chrome") || driver.toString().contains("edge")) { Runtime.getRuntime().exec(new String[] { chromeMultiPath, t1Path, t2Path }); } Assert.assertTrue(driver.findElement(By.xpath("//p[text()='" + thinkPad_1 + "']")).isDisplayed()); Assert.assertTrue(driver.findElement(By.xpath("//p[text()='" + thinkPad_2 + "']")).isDisplayed()); List<WebElement> itemsStart = driver .findElements(By.cssSelector("table button[class*='btn btn-primary start']")); for (WebElement start : itemsStart) { start.click(); sleepInSecond(2); } Assert.assertTrue(driver.findElement(By.xpath("//a[text()='" + thinkPad_1 + "']")).isDisplayed()); Assert.assertTrue(driver.findElement(By.xpath("//a[text()='" + thinkPad_2 + "']")).isDisplayed()); } @Test public void TC_03_Upload_RoBot() throws AWTException { StringSelection select = new StringSelection(t1Path); Toolkit.getDefaultToolkit().getSystemClipboard().setContents(select, null); driver.findElement(By.cssSelector(".btn-success")).click(); Robot robot = new Robot(); robot.setAutoDelay(1000); robot.keyPress(KeyEvent.VK_CONTROL); robot.keyPress(KeyEvent.VK_V); robot.keyRelease(KeyEvent.VK_CONTROL); robot.keyRelease(KeyEvent.VK_V); robot.keyPress(KeyEvent.VK_ENTER); robot.keyRelease(KeyEvent.VK_ENTER); Assert.assertTrue(driver.findElement(By.xpath("//p[text()='" + thinkPad_1 + "']")).isDisplayed()); driver.findElement(By.cssSelector("table button[class*='btn btn-primary start']")).click(); Assert.assertTrue(driver.findElement(By.xpath("//a[text()='" + thinkPad_1 + "']")).isDisplayed()); } @AfterClass public void AfterClass() { driver.quit(); } public void sleepInSecond(long timeoutInSecond) { try { Thread.sleep(timeoutInSecond * 1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } public WebElement getElement(String locator) { return driver.findElement(By.xpath(locator)); } }
[ "duyquang26103@gmail.com" ]
duyquang26103@gmail.com
6c6c880a080534c0da60c35b8c3f6103193e335f
8f0aecc8b4bfe30ebf966a19cf08b7c8d39bb721
/demo/src/main/java/me/yokeyword/sample/demo_zhihu/ui/fragment/BaseMainFragment.java
8265f0d5556a9fe7e7a4d78f25d6ae20031633ed
[ "Apache-2.0" ]
permissive
Geek365/Fragmentation
329f92b6c8ec101c2ad1d5dc232eacac534ac080
daacdeba2837b21d43ae4e544d32a092d3773340
refs/heads/master
2020-12-25T10:34:52.013384
2016-06-30T03:23:39
2016-06-30T03:23:39
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,929
java
package me.yokeyword.sample.demo_zhihu.ui.fragment; import android.content.Context; import android.support.v7.widget.Toolbar; import android.view.View; import me.yokeyword.fragmentation.anim.FragmentAnimator; import me.yokeyword.sample.R; import me.yokeyword.sample.demo_flow.ui.fragment.BaseFragment; /** * Created by YoKeyword on 16/2/3. */ public class BaseMainFragment extends BaseFragment { protected OnFragmentOpenDrawerListener mOpenDraweListener; protected void initToolbarNav(Toolbar toolbar) { initToolbarNav(toolbar, false); } protected void initToolbarNav(Toolbar toolbar, boolean isHome) { toolbar.setNavigationIcon(R.drawable.ic_menu_white_24dp); toolbar.setNavigationOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (mOpenDraweListener != null) { mOpenDraweListener.onOpenDrawer(); } } }); if(!isHome) { initToolbarMenu(toolbar); } } @Override protected FragmentAnimator onCreateFragmentAnimator() { FragmentAnimator fragmentAnimator = _mActivity.getFragmentAnimator(); fragmentAnimator.setEnter(0); fragmentAnimator.setExit(0); return fragmentAnimator; } @Override public void onAttach(Context context) { super.onAttach(context); if (context instanceof OnFragmentOpenDrawerListener) { mOpenDraweListener = (OnFragmentOpenDrawerListener) context; } else { // throw new RuntimeException(context.toString() // + " must implement OnFragmentOpenDrawerListener"); } } @Override public void onDetach() { super.onDetach(); mOpenDraweListener = null; } public interface OnFragmentOpenDrawerListener { void onOpenDrawer(); } }
[ "328903522@qq.com" ]
328903522@qq.com
2d18514b9e2c9e1bade68011d678226c01418495
a322cb9516f0aa50afc9257605586530ecff9daf
/simmft-core-routing/src/test/java/de/simmft/core/routing/OutboxProcessorRouteBuilderTest.java
73ec0b37dfed31fe91985106fa19ab87783e5601
[]
no_license
prosdl/simmft
cb9f2bd6e1f0abfcf97b6bddf7350fb5d77bc292
9111b4e477941faba29f3d8b4b45c1397d430210
refs/heads/master
2016-09-05T16:22:28.987088
2014-05-08T23:20:45
2014-05-08T23:20:45
null
0
0
null
null
null
null
UTF-8
Java
false
false
921
java
package de.simmft.core.routing; import org.apache.camel.CamelContext; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ActiveProfiles; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "classpath:spring-simmft-core-routing-test.xml" }) @ActiveProfiles("mock") public class OutboxProcessorRouteBuilderTest { @Autowired private CamelContext camelContext; @Autowired private OutboxProcessorRouteBuilder outboxProcessorRouteBuilder; @Test public void testRoute() throws Exception { camelContext.addRoutes(outboxProcessorRouteBuilder); camelContext.start(); Thread.sleep(5000); camelContext.stop(); } }
[ "rosendahl@prosdl.de" ]
rosendahl@prosdl.de