blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
332
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
7
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
557 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
77.7k
fork_events_count
int64
0
48k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
82 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
5.41M
extension
stringclasses
11 values
content
stringlengths
7
5.41M
authors
listlengths
1
1
author
stringlengths
0
161
4cdcfbb74f572cab3ce86e9e50c9b58f847c5919
56704053476bbfe0f98dad35fd5ac2edf5004d86
/app/src/main/java/com/momo/camera2test/UI/CustomGridView.java
24da8260662abe890a25052fc378033137a2fce7
[]
no_license
ru-momo/MyDemoCamera2
f44d38fd1bc90d39f34fd9c0f7b8519364993345
73fe3f2354feffd3d44a1304465776ebca6c08c8
refs/heads/main
2023-02-27T06:08:08.860762
2021-01-26T09:17:30
2021-01-26T09:17:30
333,026,579
0
0
null
null
null
null
UTF-8
Java
false
false
8,782
java
package com.momo.camera2test.UI; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.PorterDuff; import android.graphics.PorterDuffXfermode; import android.graphics.RectF; import android.util.AttributeSet; import android.util.Log; import android.view.View; import androidx.annotation.Nullable; /** * module TW_APP_SnapdragonCamera * author zhaoxuan * date 2018/11/21 * description 自定义View,实现网格的九宫格和黄金比例显示 */ public class CustomGridView extends View { private Paint mPaint; private int mRatioWidth = 0; private int mRatioHeight = 0; private int viewStyle = 0; private int width, height; private int padding; private boolean state; public CustomGridView(Context context) { this(context, null); } public CustomGridView(Context context, @Nullable AttributeSet attrs) { this(context, attrs, 0); } public CustomGridView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); init(); } private void init() { mPaint = new Paint(); mPaint.setAntiAlias(true); } public void setStyle(int viewStyle) { this.viewStyle = viewStyle; } public void setState(boolean state){ this.state = state; invalidate(); } /** * Sets the aspect ratio for this view. The size of the view will be measured based on the ratio * calculated from the parameters. Note that the actual sizes of parameters don't matter, that * is, calling setAspectRatio(2, 3) and setAspectRatio(4, 6) make the same result. * * @param width Relative horizontal size * @param height Relative vertical size */ public void setAspectRatio(int width, int height) { if (width < 0 || height < 0) { throw new IllegalArgumentException("Size cannot be negative."); } mRatioWidth = width; mRatioHeight = height; requestLayout(); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); int width = MeasureSpec.getSize(widthMeasureSpec); int height = MeasureSpec.getSize(heightMeasureSpec); if (0 == mRatioWidth || 0 == mRatioHeight) { setMeasuredDimension(width, height); } else { if (width < height * mRatioWidth / mRatioHeight) { setMeasuredDimension(width, width * mRatioHeight / mRatioWidth); } else { setMeasuredDimension(height * mRatioWidth / mRatioHeight, height); } } } @Override protected void onSizeChanged(int w, int h, int oldw, int oldh) { super.onSizeChanged(w, h, oldw, oldh); width = w; height = h; if (h / 55 * 34 < w) { padding = (w - h / 55 * 34) / 2; } else { padding = (h - w / 34 * 55) / 2; } } @Override protected void onDraw(Canvas canvas) { Log.e("CustomGridView","onDraw"); super.onDraw(canvas); if (state){ Log.e("CustomGridView","state"); if (viewStyle == 1) { mPaint.setColor(Color.WHITE); mPaint.setStrokeWidth(1); for (int i = 0; i < 2; i++) { canvas.drawLine(0, height / 3 * (i + 1), width, height / 3 * (i + 1), mPaint); canvas.drawLine(width / 3 * (i + 1), 0, width / 3 * (i + 1), height, mPaint); } } else if (viewStyle == 2){ mPaint.setColor(Color.parseColor("#50ffffff")); mPaint.setStrokeWidth(1); if (height / 55 * 34 < width) { canvas.drawLine(padding, 0, padding, height, mPaint); canvas.drawLine(padding, 1, width - padding, 1, mPaint); canvas.drawLine(padding, height - 1, width - padding, height - 1, mPaint); canvas.drawLine(width - padding, 0, width - padding, height, mPaint); canvas.drawLine(padding, height / 55 * 13, padding + height / 55 * 13, height / 55 * 13, mPaint); canvas.drawLine(padding, height / 55 * 21, width - padding, height / 55 * 21, mPaint); canvas.drawLine(height / 55 * 8 + padding, height / 55 * 13, height / 55 * 8 + padding, height / 55 * 21, mPaint); canvas.drawLine(padding + height / 55 * 13, 0, padding + height / 55 * 13, height / 55 * 21, mPaint); mPaint.setColor(Color.WHITE); mPaint.setStyle(Paint.Style.STROKE); RectF rectF = new RectF(height / 55 * 8 + padding, height / 55 * 13, height / 55 * 12 + padding, height / 55 * 17); canvas.drawArc(rectF, 180, 90, false, mPaint); rectF = new RectF(height / 55 * 7 + padding, height / 55 * 13, height / 55 * 13 + padding, height / 55 * 19); canvas.drawArc(rectF, -90, 90, false, mPaint); rectF = new RectF(height / 55 * 3 + padding, height / 55 * 11, height / 55 * 13 + padding, height / 55 * 21); canvas.drawArc(rectF, 0, 90, false, mPaint); rectF = new RectF(padding, height / 55 * 5, height / 55 * 16 + padding, height / 55 * 21); canvas.drawArc(rectF, 90, 90, false, mPaint); rectF = new RectF(padding, 0, height / 55 * 26 + padding, height / 55 * 26); canvas.drawArc(rectF, 180, 90, false, mPaint); rectF = new RectF(width - padding - height / 55 * 42, 0, width - padding, height / 55 * 42); canvas.drawArc(rectF, -90, 90, false, mPaint); rectF = new RectF(width - padding - height / 55 * 68, height - height / 55 * 68, width - padding, height); canvas.drawArc(rectF, -2, 92, false, mPaint); } else { canvas.drawLine(1, padding, 1, height - padding, mPaint); canvas.drawLine(0, padding, width, padding, mPaint); canvas.drawLine(width - 1, padding, width - 1, height - padding, mPaint); canvas.drawLine(0, height - padding, width, height - padding, mPaint); canvas.drawLine(0, padding + width / 34 * 13, width / 34 * 13, padding + width / 34 * 13, mPaint); canvas.drawLine(0, padding + width / 34 * 21, width, padding + width / 34 * 21, mPaint); canvas.drawLine(width / 34 * 8, padding + width / 34 * 13, width / 34 * 8, padding + width / 34 * 21, mPaint); canvas.drawLine(width / 34 * 13, padding, width / 34 * 13, padding + width / 34 * 21, mPaint); mPaint.setColor(Color.WHITE); mPaint.setStyle(Paint.Style.STROKE); RectF rectF = new RectF(width / 34 * 8, padding + width / 34 * 13, width / 34 * 12, padding + width / 34 * 17); canvas.drawArc(rectF, 180, 90, false, mPaint); rectF = new RectF(width / 34 * 7, padding + width / 34 * 13, width / 34 * 13, padding + width / 34 * 19); canvas.drawArc(rectF, -90, 90, false, mPaint); rectF = new RectF(width / 34 * 3, padding + width / 34 * 11, width / 34 * 13, padding + width / 34 * 21); canvas.drawArc(rectF, 0, 90, false, mPaint); rectF = new RectF(0, padding + width / 34 * 5, width / 34 * 16, padding + width / 34 * 21); canvas.drawArc(rectF, 90, 90, false, mPaint); rectF = new RectF(0, padding, width / 34 * 26, padding + width / 34 * 26); canvas.drawArc(rectF, 180, 90, false, mPaint); rectF = new RectF(width - width / 34 * 42, padding, width, padding + width / 34 * 42); canvas.drawArc(rectF, -90, 90, false, mPaint); rectF = new RectF(width - width / 34 * 68, height - padding - width / 34 * 68, width, height - padding); canvas.drawArc(rectF, -2, 92, false, mPaint); } } } else { Log.e("CustomGridView","else"); // canvas.drawColor(Color.TRANSPARENT, PorterDuff.Mode.CLEAR); mPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.CLEAR)); canvas.drawPaint(mPaint); mPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC)); setLayerType(LAYER_TYPE_HARDWARE,null); } } }
[ "momo@mo.com" ]
momo@mo.com
d714042178c3b525b343fa86a0c9e9964dd336d1
4f887aabad956fef42f14f1cac1ad4d683b11fd0
/src/main/java/ru/job4j/tracker/ValidateInput.java
526f0ba668257e2b5a8de6413829711a073b1f82
[]
no_license
Dm-prog/job4j_elementary
4d410bfd48a11710e895e2283c86ed5c0cf9576d
7db254c25baf3e0109cd3704e51b1ad61091275f
refs/heads/master
2021-08-28T20:09:07.647311
2021-08-20T14:39:21
2021-08-20T14:39:21
245,547,144
0
0
null
2021-08-16T11:10:17
2020-03-07T01:21:57
Java
UTF-8
Java
false
false
1,251
java
package ru.job4j.tracker; public class ValidateInput implements Input { private final Input input; public ValidateInput(Input input) { this.input = input; } @Override public String askStr(String question) { return input.askStr(question); } @Override public int askInt(String question) { boolean invalid = true; int value = -1; do { try { value = input.askInt(question); invalid = false; } catch (NumberFormatException nfe) { System.out.println("Please enter validate data again."); } } while (invalid); return value; } @Override public int askInt(String question, int max) { boolean invalid = false; int value = -1; do { try { value = input.askInt(question, max); invalid = true; } catch (IllegalStateException moe) { System.out.println("Please select key from menu."); } catch (NumberFormatException nfe) { System.out.println("Please enter validate data again."); } } while (invalid); return value; } }
[ "53370362+Dm-prog@users.noreply.github.com" ]
53370362+Dm-prog@users.noreply.github.com
ea277aafc0197c2986f8f5f23738f20a6a92618d
9c26300c36eae9034e5c4935113739ace8060a44
/app/src/main/java/com/chenghsi/lise/gas/task/HistoryOrderActivity.java
aeee0e0c5beefcd10cce2d055260f6a0919b06e8
[]
no_license
CrossLeaf/gas
57edc1cc5463ce93cbcee298db7d62fea91a1386
3bbde6f01f56fe9e26908fcbec49510a34e70680
refs/heads/main
2021-01-19T15:54:53.329109
2016-01-04T15:28:23
2016-01-04T15:28:23
45,177,643
0
0
null
null
null
null
UTF-8
Java
false
false
1,860
java
/* package com.chenghsi.lise.gas.task; import android.content.Context; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import com.chenghsi.lise.gas.AbstractList; import com.chenghsi.lise.gas.R; public class HistoryOrderActivity extends AbstractList { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); toolbar.setTitle(R.string.title_activity_history_order); } protected void reloadList() { HistoryClientOrdersAdapter apt = new HistoryClientOrdersAdapter(this); listView.setAdapter(apt); } public class HistoryClientOrdersAdapter extends BaseAdapter { private LayoutInflater inflater; public HistoryClientOrdersAdapter(Context context) { this.inflater = LayoutInflater.from(context); } @Override public int getCount() { return 30; } @Override public Object getItem(int arg0) { return null; } @Override public long getItemId(int arg0) { return arg0; } @Override public View getView(int position, View convertView, ViewGroup parent) { View item = inflater.inflate(R.layout.adapter_item_history_order, parent, false); */ /*TextView tv_date = (TextView) item.findViewById(R.id.tv_date); TextView tv_capacity = (TextView) item.findViewById(R.id.tv_capacity); TextView tv_numBottle = (TextView) item.findViewById(R.id.tv_numBottle); tv_date.setText("104/05/05"); tv_capacity.setText("20kg"); tv_numBottle.setText("+10");*//* return item; } } } */
[ "pk2p007@hotmail.com.tw" ]
pk2p007@hotmail.com.tw
609c21902330f3a5ebfc8f634418bd0ebc17474e
09ae36323d3926743f6afc13f0efe9df24b38e7f
/src/LanQiao_9.java
5e7e7f6be848feeab399b6f4ee69b973edf96abb
[]
no_license
jinqiwen/lanqiaoProject_new
8bf28aa90c3b7d85524521bff45a738127a77581
b29bb174bbc169dbccee50f0967f48a922446fab
refs/heads/master
2020-04-02T10:13:17.274957
2018-12-03T14:50:18
2018-12-03T14:50:18
154,329,662
0
0
null
null
null
null
UTF-8
Java
false
false
869
java
import java.math.BigDecimal; import java.math.RoundingMode; import java.util.Scanner; public class LanQiao_9 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int a=sc.nextInt(); int b=sc.nextInt(); int c=sc.nextInt(); if(a+b>c&& a+c>b&& a+c>b){ double perimeter=(double)(a+b+c); double s = (perimeter)/2; double area=Math.sqrt(s*(s-a)*(s-b)*(s-c)); BigDecimal result1=new BigDecimal(area).setScale(2, BigDecimal.ROUND_HALF_UP); BigDecimal result2=new BigDecimal(perimeter).setScale(2,BigDecimal.ROUND_HALF_UP); System.out.println("area = "+result1+"; perimeter = "+result2); }else { System.out.println("These sides do not correspond to a valid triangle"); } /* System.out.println(Math.sqrt(64));*/ } }
[ "15256221809jin" ]
15256221809jin
daad33e787862430ee6c33d6cbce4f316c5263ed
e8675d856f9cf320b8acc7695682f96c34924ff2
/OperatorConversion/LeftParen.java
f06b23adf33a5412bb8b95a3eb7f99797600a036
[]
no_license
laurmar/OperationConversion
6c360483b97c17cda94b54e71620811b5ec182fa
098e91761b75c1ccdc7fd3216783a09a47df2c72
refs/heads/master
2020-07-03T03:43:08.468970
2019-08-11T14:10:52
2019-08-11T14:10:52
201,773,024
0
0
null
null
null
null
UTF-8
Java
false
false
840
java
package proj4; /** * This class is designed to assist in ensuring that the left parenthesis symbol is * handled properly in a postfix notation. * * @author Laura Marlin * @version October 27, 2018 */ public class LeftParen implements Token { private String symbol; /** * This is the template when creating a new Left Paren Object */ public LeftParen(){ symbol= "("; } /** * @return the symbol for left parenthesis */ public String toString() { return symbol; } /** * This pushes the left parenthesis on the stack so that it can processed * @param s the proj4.Stack the token uses, if necessary, when processing itself. * @return An empty string */ public String handle(Stack<Token> s) { s.push(this); return""; } }
[ "noreply@github.com" ]
noreply@github.com
993085e73ff0285c5f6385efdba97dc8c6c15729
34df57e2de363c116a33433ef1f063db846248e5
/app/src/main/java/com/example/andrei/criminalintent/CrimeListFragment.java
7d058cdbb991d9c3bd589133b0a037c3fb06d0db
[]
no_license
aaandreiiii/CriminalIntent
7d714c41d28c4edec3026bf364a7461b7b022458
16c24922a5217a5fa6028aef8f0fa6e6dc976ed8
refs/heads/master
2021-09-01T06:52:28.012818
2017-12-25T13:43:45
2017-12-25T13:43:45
112,520,929
0
0
null
null
null
null
UTF-8
Java
false
false
3,389
java
package com.example.andrei.criminalintent; import android.content.Intent; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.CheckBox; import android.widget.TextView; import java.util.List; public class CrimeListFragment extends Fragment { private RecyclerView mCrimeRecyclerView; private CrimeAdapter mAdapter; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_crime_list, container, false); mCrimeRecyclerView = (RecyclerView) view.findViewById(R.id.crime_recycler_view); mCrimeRecyclerView.setLayoutManager(new LinearLayoutManager(getActivity())); updateUI(); return view; } @Override public void onResume(){ super.onResume(); updateUI(); } private void updateUI() { CrimeLab crimeLab = CrimeLab.get(getActivity()); List<Crime> crimes = crimeLab.getCrimes(); if (mAdapter == null) { mAdapter = new CrimeAdapter(crimes); mCrimeRecyclerView.setAdapter(mAdapter); } else { mAdapter.notifyDataSetChanged(); } } private class CrimeHolder extends RecyclerView.ViewHolder implements View.OnClickListener { private Crime mCrime; private TextView mTitleTextView; private TextView mDateTextView; private CheckBox mSolvedCheckBox; public CrimeHolder(View itemView) { super(itemView); itemView.setOnClickListener(this); mTitleTextView = (TextView) itemView.findViewById(R.id.list_item_crime_title_text_view); mDateTextView = (TextView) itemView.findViewById(R.id.list_item_crime_date_text_view); mSolvedCheckBox = (CheckBox) itemView.findViewById(R.id.list_item_crime_solved_check_box); } public void bindCrime(Crime crime) { mCrime = crime; mTitleTextView.setText(mCrime.getTitle()); mDateTextView.setText(mCrime.getDate().toString()); mSolvedCheckBox.setChecked(mCrime.isSolved()); } @Override public void onClick(View view) { Intent intent = CrimeActivity.newIntent(getActivity(), mCrime.getId()); startActivity(intent); } } private class CrimeAdapter extends RecyclerView.Adapter<CrimeHolder> { private List<Crime> mCrimes; public CrimeAdapter(List<Crime> crimes) { mCrimes = crimes; } @Override public CrimeHolder onCreateViewHolder(ViewGroup parent, int viewType) { LayoutInflater layoutInflater = LayoutInflater.from(getActivity()); View view = layoutInflater.inflate(R.layout.list_item_crime, parent, false); return new CrimeHolder(view); } @Override public void onBindViewHolder(CrimeHolder holder, int position) { Crime crime = mCrimes.get(position); holder.bindCrime(crime); } @Override public int getItemCount() { return mCrimes.size(); } } }
[ "aaandreiiii@gmail.com" ]
aaandreiiii@gmail.com
cd75ba6d44418d37e85bffc14ccc4f64f12095b8
d40b7f47e247fa338c420987d7a67e67e751df79
/network/network-demo/selfmybatis/src/main/java/com/mjj/learning/self/mybatis/session/SqlSession.java
02fa29e763e045dfd18d79259a58a0f2c9963bad
[]
no_license
JJMEI/Learning
849cf944af7f0577c3745c6708a3714c5d40cc70
184b4f6d2f2e64f267154d27b9b8e73969e6301b
refs/heads/master
2022-12-28T14:58:07.193196
2020-12-14T09:12:51
2020-12-14T09:12:51
215,961,973
0
0
null
2022-12-16T11:09:42
2019-10-18T07:06:05
Java
UTF-8
Java
false
false
625
java
package com.mjj.learning.self.mybatis.session; import java.util.List; public interface SqlSession { /** * 查询单条记录 * @param statement * @param parameter * @param <T> * @return */ <T> T selectOne(String statement, Object parameter); /** * * @param statement * @param parameter * @param <E> * @return */ <E> List<E> selectList(String statement, Object parameter); /** * 根据mapper接口获取接口对应的动态代理实现 * @param type * @param <T> * @return */ <T> T getMapper(Class<T> type); }
[ "meijunjie@le.com" ]
meijunjie@le.com
d16e46f2d31eb1f4f0c283a0ad8f10f38052e400
e6553409bc3d4b315756caf49ed5d7696531e286
/Generic/src/main/java/dataProviders/ConfigFileReader.java
9c4a2889ef0c15ae4fed2fc716fd961bacca92e1
[]
no_license
YirguBira/MobileAutomation
5e8cf465c61e3e1405a934de5c068018394e397d
eba3e4c2c83fba11fbcc3b74922f3f6dbd66045a
refs/heads/master
2020-04-18T01:19:55.919130
2019-01-25T03:09:56
2019-01-25T03:09:56
167,115,007
0
0
null
null
null
null
UTF-8
Java
false
false
2,020
java
//package dataProviders; // //import java.io.BufferedReader; //import java.io.FileNotFoundException; //import java.io.FileReader; //import java.io.IOException; //import java.util.Properties; // //public class ConfigFileReader { // private Properties properties; // private final String propertyFilePath= "/Users/eclipse-workspace/CucumbeSeleniumScripts/MobileAutomation/Generic/configs/Configuration.properties"; // // // public ConfigFileReader(){ // BufferedReader reader; // try { // reader = new BufferedReader(new FileReader(propertyFilePath)); // properties = new Properties(); // try { // properties.load(reader); // reader.close(); // } catch (IOException e) { // e.printStackTrace(); // } // } catch (FileNotFoundException e) { // e.printStackTrace(); // throw new RuntimeException("Configuration.properties not found at " + propertyFilePath); // } // } // // public String getDriverPath(){ // String driverPath = properties.getProperty("driverPath"); // if(driverPath!= null) return driverPath; // else throw new RuntimeException("driverPath not specified in the Configuration.properties file."); // } // // public long getImplicitlyWait() { // String implicitlyWait = properties.getProperty("implicitlyWait"); // if(implicitlyWait != null) return Long.parseLong(implicitlyWait); // else throw new RuntimeException("implicitlyWait not specified in the Configuration.properties file."); // } // // public String getApplicationUrl() { // String url = new Properties().getProperty("url"); // if(url != null) return url; // else throw new RuntimeException("url not specified in the Configuration.properties file."); // } // // public String getReportConfigPath(){ // String reportConfigPath = new Properties().getProperty("reportConfigPath"); // if(reportConfigPath!= null) return reportConfigPath; // else throw new RuntimeException("Report Config Path not specified in the Configuration.properties file for the Key:reportConfigPath"); // } //}
[ "yirgunig@gmail.com" ]
yirgunig@gmail.com
1d2ac37fb59cafa38d3daf581abf978e60338c3e
d7378b89b55b6db5596cdce1573e06ac237b8efc
/producer-pulsar/src/main/java/com/xabe/spring/pulsar/producer/domain/entity/CarDO.java
dea1aee5537426c2afac8f64face1c68e0764387
[]
no_license
xabe/SpringBootPulsar
193ed30c5fdf248e6d10f74866b87a6325629974
12de277506261114feb4fdb035661f7d5eff3278
refs/heads/master
2023-06-11T21:28:13.131306
2021-07-08T18:25:28
2021-07-08T18:25:28
384,214,123
1
1
null
null
null
null
UTF-8
Java
false
false
533
java
package com.xabe.spring.pulsar.producer.domain.entity; import lombok.AccessLevel; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.EqualsAndHashCode; import lombok.NoArgsConstructor; import lombok.ToString; import lombok.Value; import lombok.With; @Value @Builder(toBuilder = true) @EqualsAndHashCode @ToString @NoArgsConstructor(force = true, access = AccessLevel.PUBLIC) @AllArgsConstructor public class CarDO implements DO { private String id; private String name; @With private Long sentAt; }
[ "chabirae@ext.zara.com" ]
chabirae@ext.zara.com
6f2aed906653f946e1112a0ce34c738b3f2d72a6
51c4cb670af38a54b915a3271941822128763abb
/bu_org_android/src/org/bu/android/widget/exlist/BuGroupRowView.java
82c8741cd80d461531d2fafbc7ad73f59e3ccc3b
[]
no_license
jxsapp/bu
261e72f153113c0f064c1d2c4e451f5f47d576b4
ae9e8a12a55692c748b245cc695a7a53316ad592
refs/heads/master
2021-01-15T12:19:12.661688
2015-06-13T09:02:17
2015-06-13T09:02:17
25,928,310
4
3
null
null
null
null
UTF-8
Java
false
false
810
java
package org.bu.android.widget.exlist; import org.bu.android.R; import android.content.Context; import android.view.LayoutInflater; import android.widget.LinearLayout; public class BuGroupRowView<G> extends LinearLayout { public BuGroupRowView(Context context) { super(context); init(); } private void init() { LayoutInflater.from(getContext()).inflate(R.layout.bu_exlist_group_row, this); LinearLayout exlist_group_ll = (LinearLayout) findViewById(R.id.exlist_group_ll); init(exlist_group_ll); } public void init(LinearLayout layout) { } public void buliderBuGroupRow(G g, int groupPosition) { } public BuGroupRowView<G> bulider(G g, int groupPosition) { buliderBuGroupRow(g, groupPosition); this.setTag(groupPosition); return this; } }
[ "bestupon@foxmail.com" ]
bestupon@foxmail.com
88efebfa0a7f352bd4dbd245ba31d17aa6a26531
b926f7be857732e49ce2e86f9a6196e7763200c8
/src/com/ramdroid/wizardbuilder/WizardActivity.java
5fe417a00887d2072058d364a24e34fd2c3f72e5
[ "Apache-2.0" ]
permissive
fredgrott/GWSHolmesWatson
93375d85963e87cc1f882efaa03c978ca8894e03
1c235255a79dc8e762f09b6a10dce96ae984c034
refs/heads/master
2021-05-26T17:01:46.133958
2013-04-15T19:23:16
2013-04-15T19:23:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,074
java
package com.ramdroid.wizardbuilder; /** * Copyright 2012-2013 by Ronald Ammann (ramdroid) 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. */ import android.os.Bundle; import android.support.v4.view.ViewPager; import com.actionbarsherlock.R; import com.actionbarsherlock.app.ActionBar; import com.actionbarsherlock.app.SherlockFragmentActivity; import com.actionbarsherlock.view.MenuItem; import com.viewpagerindicator.LinePageIndicator; /** * In this activity a ViewIndicator and a {@link WizardAdapter} is created. * The adapter holds a set of {@link WizardFragment} to allow the user to * swipe between the pages. * * The activity depends on the Android Support Library and ActionBarSherlock. * * Don't launch this activity directly. It will be called from {@link WizardBuilder}. */ public class WizardActivity extends SherlockFragmentActivity { private WizardPageSet pages; private int whatsNewId; private String title; private boolean indicatorBelow; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Bundle data = this.getIntent().getExtras(); if (data != null) { pages = data.getParcelable("pages"); whatsNewId = data.getInt("whatsNewId"); title = data.getString("title"); indicatorBelow = data.getBoolean("indicatorBelow"); } setContentView(indicatorBelow ? R.layout.wb_helpwizard_indicator_below : R.layout.wb_helpwizard_indicator_above); if (title != null && title.length() > 0) { setTitle(title); } // use action bar to jump back to calling activity (used on phones only) ActionBar actionBar = getSupportActionBar(); if (actionBar != null) { actionBar.setDisplayHomeAsUpEnabled(true); } // set the pager with an adapter WizardAdapter adapter = new WizardAdapter(getSupportFragmentManager()); adapter.setValues(pages, whatsNewId); ViewPager pager = (ViewPager)findViewById(R.id.viewpager); pager.setAdapter(adapter); // bind the title indicator to the adapter LinePageIndicator indicator = (LinePageIndicator)findViewById(R.id.indicator); indicator.setViewPager(pager); } public boolean onOptionsItemSelected (MenuItem item) { switch (item.getItemId()) { case android.R.id.home: { finish(); return true; } default: { return super.onOptionsItemSelected(item); } } } }
[ "fred.grott@gmail.com" ]
fred.grott@gmail.com
1b4d51817b3acccbb5a1b4d64a5873d1894477d0
5a94d0d43de2ee4b756d6a09c68ccb69917cb81e
/src/io/github/asiftasleem/findDigits/Solution.java
32cf3384abe5bbd3235227df9496bd414fe7eeff
[]
no_license
asiftasleem/hackerrank
e9c5098ec871999e9a4394f3968a404429dcf96b
ce427efa0f17007bff78b6becf793762b407b73d
refs/heads/master
2020-03-26T01:09:01.330351
2018-09-10T22:44:47
2018-09-10T22:44:47
30,148,926
0
0
null
null
null
null
UTF-8
Java
false
false
1,243
java
/** * */ package io.github.asiftasleem.findDigits; import java.util.ArrayList; import java.util.HashMap; import java.util.Scanner; /** * @author asif * */ public class Solution { /** * */ public Solution() { // TODO Auto-generated constructor stub } /** * @param args */ public static void main(String[] args) { Scanner in = new Scanner(System.in); int s = in.nextInt(); int[] ar = new int[s]; HashMap<Integer, Integer> mapOfDividers = new HashMap<Integer, Integer>(s); for (int i = 0; i < s; i++) { ar[i] = in.nextInt(); Integer[] arreyOfDigits = getDigitsArray(ar[i]); mapOfDividers.put(ar[i], countDivisors(ar[i], arreyOfDigits)); } for(Integer i : ar){ System.out.println(mapOfDividers.get(i)); } } private static int countDivisors(int number, Integer[] digits){ int count=0; for(Integer i : digits){ if(i!=0 && number%i==0){ count++; } } return count; } private static Integer[] getDigitsArray(Integer number){ ArrayList<Integer> list = new ArrayList<Integer>(); while(number>0){ int mod = number%10; number = number/10; list.add(mod); } Integer[] ar = new Integer[list.size()]; return list.toArray(ar); } }
[ "asif@PC4.ATK.org" ]
asif@PC4.ATK.org
c85148056ed6ea2fdcd6003f3a965d976ace6d09
7d6ece8f88dafd67345c3a49564b25e5ed3659d4
/ddmlib/src/android/ddmlib/IStackTraceInfo.java
390b3d36e326056708cc212b6fcd83c1813eda0e
[]
no_license
easternHong/AndroidDdm
7c0e4e537dc4d6ebfd224e0f4184b59c7cc5c0f2
c5708b464bac918df9ffdc65c1ed3e42d5d916c6
refs/heads/master
2020-03-12T10:23:16.037738
2018-04-22T13:51:55
2018-04-22T13:51:55
130,571,884
0
0
null
null
null
null
UTF-8
Java
false
false
900
java
/* * Copyright (C) 2007 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.ddmlib; /** * Classes which implement this interface provide a method that returns a stack trace. */ public interface IStackTraceInfo { /** * Returns the stack trace. This can be <code>null</code>. */ StackTraceElement[] getStackTrace(); }
[ "hhungcen@gmail.com" ]
hhungcen@gmail.com
cef8bf8df0529ad1df4a9eae0d22816cfbcb6955
648f2e7113986fd72d727c1345cb179065fdec05
/JavaSample/src/CH07/car1.java
7f6b1a92e2c2fb3a3cf7b67a4edd3b9894999a6f
[]
no_license
Jacobcollio/javaEX
b9c15032a4e331b67da2af47dc308df28d464500
058e50aae3b0d49af15e2a10a8a17bcc12b56f6b
refs/heads/master
2023-01-07T04:50:33.077979
2020-11-09T01:29:46
2020-11-09T01:29:46
null
0
0
null
null
null
null
UTF-8
Java
false
false
275
java
//package CH07; // //public class Car1 { // // public static void main(String[] args) { // Car myCar = new Car(); // myCar.keyTurnOn(); // myCar.run(); // int speed = myCar.getSpeed(); // System.out.println("현재 속도: "+speed +"km/h"); // // } // //}
[ "Administrator@SC-202003281501" ]
Administrator@SC-202003281501
0b6a41ea96170da973640e1e0fb433ed3828f653
eaee3b987ceef700427489d33cbc2ed482e8957c
/src/main/java/com/flowring/cn/entity/ToDoList.java
b05c6f2440b3fcffd8719a01440ba1c8dcec539c
[]
no_license
Oreo0925/demo1
279a55040412c895c296a514138cbba90dcb92cf
dbf5b70532f14adda8cd0cb52c59334f73a210bf
refs/heads/master
2020-03-24T14:27:06.554674
2018-07-29T14:34:24
2018-07-29T14:34:24
142,769,067
0
0
null
null
null
null
UTF-8
Java
false
false
2,065
java
package com.flowring.cn.entity; import javax.validation.constraints.NotNull; import org.apache.commons.lang3.builder.ReflectionToStringBuilder; public class ToDoList { @NotNull(message = "id is necessary") private int id; @NotNull(message = "ruleId is necessary") private int ruleId; private String ruleConditions; private String ruleStatus; private String startTime; private String finishTime = ""; private boolean finished; private String feedback = ""; public ToDoList() { super(); } public ToDoList(int id, int ruleId, String ruleConditions, String ruleStatus, String startTime, String finishTime, boolean finished, String feedback) { super(); this.id = id; this.ruleId = ruleId; this.ruleConditions = ruleConditions; this.ruleStatus = ruleStatus; this.startTime = startTime; this.finishTime = finishTime; this.finished = finished; this.feedback = feedback; } public int getId() { return id; } public void setId(int id) { this.id = id; } public int getRuleId() { return ruleId; } public void setRuleId(int ruleId) { this.ruleId = ruleId; } public String getRuleConditions() { return ruleConditions; } public void setRuleConditions(String ruleConditions) { this.ruleConditions = ruleConditions; } public String getRuleStatus() { return ruleStatus; } public void setRuleStatus(String ruleStatus) { this.ruleStatus = ruleStatus; } public String getStartTime() { return startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getFinishTime() { return finishTime; } public void setFinishTime(String finishTime) { this.finishTime = finishTime; } public boolean isFinished() { return finished; } public void setFinished(boolean finished) { this.finished = finished; } public String getFeedback() { return feedback; } public void setFeedback(String feedback) { this.feedback = feedback; } @Override public String toString() { return ReflectionToStringBuilder.toString(this); } }
[ "yarouhsu@gmail.com" ]
yarouhsu@gmail.com
49f34a767c67207c2f46acde060c55825680d6ba
ce845baf5b0bb65e4aa26badd0cc319b2b758938
/src/main/java/com/mxz/supermarket/model/Producttype.java
dccdc01da7dde58dec57042817f40403dbead85e
[]
no_license
our-graduation-project/supermarket
941ed6b44fd946819f21b2791887d7585290162a
5ae4f7909271c577fddf7e3b25a70cc06d681b1b
refs/heads/master
2022-07-15T06:18:45.527414
2020-01-19T14:01:37
2020-01-19T14:01:37
232,527,464
0
0
null
2022-06-21T02:36:07
2020-01-08T09:31:17
JavaScript
UTF-8
Java
false
false
794
java
package com.mxz.supermarket.model; public class Producttype { private Integer typeId; private String typeName; public Integer getTypeId() { return typeId; } public void setTypeId(Integer typeId) { this.typeId = typeId; } public String getTypeName() { return typeName; } public void setTypeName(String typeName) { this.typeName = typeName; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(getClass().getSimpleName()); sb.append(" ["); sb.append("Hash = ").append(hashCode()); sb.append(", typeId=").append(typeId); sb.append(", typeName=").append(typeName); sb.append("]"); return sb.toString(); } }
[ "1761432189@qq.com" ]
1761432189@qq.com
6ea300c455e7e25c54f96b31acd154dce301830e
447520f40e82a060368a0802a391697bc00be96f
/apks/comparison_androart/ro.btrl.pay/source/o/ɺ.java
080f9691faff3420e05ba3b2cbd44518544ae5cd
[ "Apache-2.0" ]
permissive
iantal/AndroidPermissions
7f3343a9c29d82dbcd4ecd98b3a50ddf8d179465
d623b732734243590b5f004d167e542e2e2ae249
refs/heads/master
2023-07-19T01:29:26.689186
2019-09-30T19:01:42
2019-09-30T19:01:42
107,239,248
0
0
Apache-2.0
2023-07-16T07:41:38
2017-10-17T08:22:57
null
UTF-8
Java
false
false
217
java
package o; import android.view.MotionEvent; public final class ɺ { public static boolean ˎ(MotionEvent paramMotionEvent, int paramInt) { return (paramMotionEvent.getSource() & paramInt) == paramInt; } }
[ "antal.micky@yahoo.com" ]
antal.micky@yahoo.com
9f8a97af8b17e9d0741efe871989598cf9eeafad
1d1d54c8a5e117d99980349371251b9fc041c207
/src/core/Admin.java
970e367ebe58bc0bb238714a82ee67f00a0977ed
[]
no_license
mtalacio/projeto_engsoftware
903141009f91fbc876bb01b01aa980647ff0efba
9c1f584e12924e98641278669f364077fb060885
refs/heads/master
2020-03-30T14:39:28.270483
2018-12-02T22:24:37
2018-12-02T22:24:37
151,328,937
0
0
null
null
null
null
UTF-8
Java
false
false
640
java
package core; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; @Entity public class Admin extends Database { public Admin() { } public String getLogin() { return login; } public void setLogin(String login) { this.login = login; } public String getSenha() { return senha; } public void setSenha(String senha) { this.senha = senha; } @Id @GeneratedValue private int id; private String login; private String senha; public Admin(String login, String senha) { this.login = login; this.senha = senha; } }
[ "matheustalacio@hotmail.com" ]
matheustalacio@hotmail.com
4a85d364c5a91b4f47b19618b81b6ad46ebcd733
5c3389dd42a59fb0dd54c4dbf3b92298698446e5
/testing/src/test/java/nl/debrabo/java/fundamentals/testing/ch05_dependencies/after_refactor/SalesAnalysisServiceWithHandWrittenStubTest.java
6569914ef7db59eb2393408ca5546d89d80b4a57
[]
no_license
debrabo/java-fundamentals
673b4e8f32e5883616c30fc664050778a7488536
d87364aa0c1399355079c2b3c85f2d2cd0355740
refs/heads/master
2021-05-14T15:28:23.623601
2018-01-02T16:28:18
2018-01-02T16:28:18
115,992,316
0
0
null
null
null
null
UTF-8
Java
false
false
1,339
java
package nl.debrabo.java.fundamentals.testing.ch05_dependencies.after_refactor; import org.junit.Test; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; import static org.junit.Assert.assertEquals; public class SalesAnalysisServiceWithHandWrittenStubTest { private static final List<Sale> exampleSales = Arrays.asList( new Sale("Apples", "Cardiff", 10, 2), new Sale("Oranges", "Cardiff", 3, 5), new Sale("Bananas", "Cardiff", 6, 20), new Sale("Oranges", "London", 5, 7) ); private static final Map<String, Integer> expectedStoreSales = new HashMap<>(); static { expectedStoreSales.put("Cardiff", 155); expectedStoreSales.put("London", 35); } @Test public void shouldAggregateStoreSales() { // given SalesRepository stubRepository = new SalesRepository() { @Override public List<Sale> loadSales() { return exampleSales; } }; SalesAnalysisService analysisService = new SalesAnalysisService(stubRepository); // when Map<String, Integer> storeSales = analysisService.tallyStoreSales(); // then assertEquals("Calculated wrong store sales", expectedStoreSales, storeSales); } }
[ "evanberkel@inovita.nl" ]
evanberkel@inovita.nl
5ee95440b64ca39ec73218939f7918022d4e86f6
5be77ca7fdd83bbda217aee3e041a0752592a70b
/binfa/Main.java
ea21ba69c729df6eaf7a79d971905972da36890b
[]
no_license
petrusjt/pjt_prog2
ed8db667c55d1bf51b4f2850bb7ec1ddbae27bd1
7f0d63f3e7448e2af48b7bab1a1f2bf06e14955f
refs/heads/master
2022-03-17T01:01:38.225840
2019-12-12T12:34:43
2019-12-12T12:34:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
435
java
import java.util.Random; public class Main { public static void main(String[] args) { Random r = new Random(); Binfa b = new Binfa(); for(int i=0; i<100;i++) { if(r.nextInt(2) == 1) { b.add('1'); } else { b.add('0'); } } b.inorder(b.getRoot()); } }
[ "jozsefpetrus99@gmail.com" ]
jozsefpetrus99@gmail.com
9616a7daca7a16c7d4119e63f7a5ccf8618c5461
4a4b58fd560a08b57aa284274ea59b53f51219ed
/LogCollectorDemo/src/main/java/cn/mylava/dependency/beans/User.java
5f7853423ebe47540769334a0dd7db06e1362c43
[]
no_license
mylava/train
4231f99bf50cc739b2c2d3fdd7a5d937d8801f4f
1357bb9ff937dec51e99a894d8e213d60533b826
refs/heads/master
2021-01-17T18:45:16.499114
2017-07-20T11:02:59
2017-07-20T11:02:59
65,782,417
0
0
null
null
null
null
UTF-8
Java
false
false
1,125
java
package cn.mylava.dependency.beans; import java.io.Serializable; import java.util.Date; /** * Created by lipengfei on 2017/5/26. */ public class User implements Serializable{ private Long id; private String name; private Date birthday; private Long registrationTime; public User() { } public User(Long id, String name, Date birthday, Long registrationTime) { this.id = id; this.name = name; this.birthday = birthday; this.registrationTime = registrationTime; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Date getBirthday() { return birthday; } public void setBirthday(Date birthday) { this.birthday = birthday; } public Long getRegistrationTime() { return registrationTime; } public void setRegistrationTime(Long registrationTime) { this.registrationTime = registrationTime; } }
[ "mylava@sina.com" ]
mylava@sina.com
0e1c001d9d3345e9ec4d7ffe6397a66dff1a9e85
d7c5121237c705b5847e374974b39f47fae13e10
/airspan.netspan/src/main/java/Netspan/NBI_18_0/Server/ArrayOfNMSServerIPAddress.java
b03b38ae294858382fabfd5aecd99b62aeb3f7d1
[]
no_license
AirspanNetworks/SWITModules
8ae768e0b864fa57dcb17168d015f6585d4455aa
7089a4b6456621a3abd601cc4592d4b52a948b57
refs/heads/master
2022-11-24T11:20:29.041478
2020-08-09T07:20:03
2020-08-09T07:20:03
184,545,627
1
0
null
2022-11-16T12:35:12
2019-05-02T08:21:55
Java
UTF-8
Java
false
false
2,181
java
package Netspan.NBI_18_0.Server; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for ArrayOfNMSServerIPAddress complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType name="ArrayOfNMSServerIPAddress"&gt; * &lt;complexContent&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; * &lt;sequence&gt; * &lt;element name="NMSServerIPAddress" type="{http://Airspan.Netspan.WebServices}NMSServerIPAddress" maxOccurs="unbounded" minOccurs="0"/&gt; * &lt;/sequence&gt; * &lt;/restriction&gt; * &lt;/complexContent&gt; * &lt;/complexType&gt; * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArrayOfNMSServerIPAddress", propOrder = { "nmsServerIPAddress" }) public class ArrayOfNMSServerIPAddress { @XmlElement(name = "NMSServerIPAddress", nillable = true) protected List<NMSServerIPAddress> nmsServerIPAddress; /** * Gets the value of the nmsServerIPAddress property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the nmsServerIPAddress property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNMSServerIPAddress().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link NMSServerIPAddress } * * */ public List<NMSServerIPAddress> getNMSServerIPAddress() { if (nmsServerIPAddress == null) { nmsServerIPAddress = new ArrayList<NMSServerIPAddress>(); } return this.nmsServerIPAddress; } }
[ "ggrunwald@airspan.com" ]
ggrunwald@airspan.com
0fb6a43b19cfb07aa94d35c718fcc5f95e7ec5af
437772d9690345c16a6a3de7bac5f71816c16ce5
/KaixaEletronics/src/kaixaeletronics/KaixaEletronics.java
e0cb1e9cefc6a5ea598a7a255a61e64c5f993a8c
[]
no_license
VictorsAlves/primeiro-semestre
7f06c26cd67c1ae84fa52b2b58ec0253c5d42d92
7562e521ca19fd8c5ae7fb0f7eb6009b508a7d9e
refs/heads/master
2020-05-09T16:31:33.288599
2019-04-14T07:20:01
2019-04-14T07:20:01
181,273,822
0
0
null
null
null
null
UTF-8
Java
false
false
13,824
java
package kaixaeletronics; import java.util.Scanner; public class KaixaEletronics { /*--------------------------------------------------[] /* Centro Universitario Senac - 2 Semestre 2015 /* Nome: Rafael Costa Bezerra /* Nome: Victor de Souza Alves /*--------------------------------------------------[] */ public static void main(String[] args) { Scanner sc = new Scanner(System.in); //Notas int notaCem; int notaCinquenta; int notaVinte; int notaDez; int notaCinco; int notaUm; int saldoTotal; // Iniciando Variaveis temporarias int tempNotaCem = 0; int tempNotaCinquenta = 0; int tempNotaVinte = 0; int tempNotaDez = 0; int tempNotaCinco = 0; int tempNotaUm = 0; int valorOperacao = 0; //Entrada quantidade de cada nota //Valida se o numero digitado e negativo //Valida Nota 100 do { System.out.println("Entre com a quantidade inicial de notas de 100:"); notaCem = sc.nextInt(); if (notaCem < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (notaCem < 0); //Valida Nota 50 do { System.out.println("Entre com a quantidade inicial de notas de 50:"); notaCinquenta = sc.nextInt(); if (notaCinquenta < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (notaCinquenta < 0); //Valida Nota 20 do { System.out.println("Entre com a quantidade inicial de notas de 20:"); notaVinte = sc.nextInt(); if (notaVinte < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (notaVinte < 0); //Valida Nota 10 do { System.out.println("Entre com a quantidade inicial de notas de 10:"); notaDez = sc.nextInt(); if (notaDez < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (notaDez < 0); //Valida Nota 5 do { System.out.println("Entre com a quantidade inicial de notas de 5:"); notaCinco = sc.nextInt(); if (notaCinco < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (notaCinco < 0); //Valida Nota 1 do { System.out.println("Entre com a quantidade inicial de notas de 1:"); notaUm = sc.nextInt(); if (notaUm < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (notaUm < 0); //Calculando saldo total saldoTotal = (notaCem*100) + (notaCinquenta*50) + (notaVinte*20) + (notaDez*10) + (notaCinco*5) + (notaUm*1); //Mostra ao usuario quantidade de notas System.out.println("Situacao atual " + notaCem + " " + notaCinquenta + " " + notaVinte + " " + notaDez + " " + notaCinco + " " + notaUm); //Mostra ao usuario o saldo total System.out.println("Saldo Total: M$ " + saldoTotal); //Menu do caixa int operacao; do { //Solicita a operacao System.out.println("Operacao: (1)Saque; (2)Deposito; (3)Sair"); operacao = sc.nextInt(); switch(operacao){ //Operacao saque case 1: int valorSaque = 0; //Valida se o valor do saque nao e negativo do { System.out.println("Valor do saque (M$):"); valorSaque = sc.nextInt(); if (valorSaque < 0) { System.out.println("Valor do saque invalido"); } } while (valorSaque < 0); //Popula as variaveis temporarias tempNotaCem = notaCem; tempNotaCinquenta = notaCinquenta; tempNotaVinte = notaVinte; tempNotaDez = notaDez; tempNotaCinco = notaCinco; tempNotaUm = notaUm; valorOperacao = valorSaque; //Utiliza todas notas possiveis para realizar a operacao //Notas de 100 while (valorOperacao >= 100) { //Verifica se a operacao se o saque ja foi realizado if (tempNotaCem == 0) { break; } //Saco mais uma nota else { valorOperacao = valorOperacao - 100; tempNotaCem--; } } //Notas de 50 while (valorOperacao >= 50) { //Verifica se a operacao se o saque ja foi realizado if (tempNotaCinquenta == 0) { break; } //Saco mais uma nota else { valorOperacao = valorOperacao - 50; tempNotaCinquenta--; } } //Notas de 20 while (valorOperacao >= 20) { //Verifica se a operacao se o saque ja foi realizado if (tempNotaVinte == 0) { break; } //Saco mais uma nota else { valorOperacao = valorOperacao - 20; tempNotaVinte--; } } //Notas de 10 while (valorOperacao >= 10) { //Verifica se a operacao se o saque ja foi realizado if (tempNotaDez == 0) { break; } //Saco mais uma nota else { valorOperacao = valorOperacao - 10; tempNotaDez--; } } //Notas de 5 while (valorOperacao >= 5) { //Verifica se a operacao se o saque ja foi realizado if (tempNotaCinco == 0) { break; } //Saco mais uma nota else { valorOperacao = valorOperacao - 5; tempNotaCinco--; } } //Notas de 1 while (valorOperacao >= 1) { //Verifica se a operacao se o saque ja foi realizado if (tempNotaUm == 0) { break; } //Saco mais uma nota else { valorOperacao = valorOperacao - 1; tempNotaUm--; } } //Se o saque foi concluido if (valorOperacao == 0) { //Atualiza o quantidade de notas notaCem = tempNotaCem; notaCinquenta = tempNotaCinquenta; notaVinte = tempNotaVinte; notaDez = tempNotaDez; notaCinco = tempNotaCinco; notaUm = tempNotaUm; //Atualiza o saldo total saldoTotal = saldoTotal - valorSaque; } //Se o saque nao for concluido else if (valorOperacao > 0) { System.out.println("NAO HA DINHEIRO SUFICIENTE PARA SAQUE"); } //Imprime na tela System.out.println("\nSituacao atual " + notaCem + " " + notaCinquenta + " " + notaVinte + " " + notaDez + " " + notaCinco + " " + notaUm); System.out.println("Saldo Total: M$ " + saldoTotal); //Zerando variaveis temperarias tempNotaCem = 0; tempNotaCinquenta = 0; tempNotaVinte = 0; tempNotaDez = 0; tempNotaCinco = 0; tempNotaUm = 0; valorOperacao = 0; break; //Operacao deposito case 2: //Valida Nota 100 do { System.out.println("Entre com a quantidade de notas de 100:"); tempNotaCem = sc.nextInt(); if (tempNotaCem < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (tempNotaCem < 0); //Valida novaNota 50 do { System.out.println("Entre com a quantidade de novaNotas de 50:"); tempNotaCinquenta += sc.nextInt(); if (tempNotaCinquenta < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (tempNotaCinquenta < 0); //Valida novaNota 20 do { System.out.println("Entre com a quantidade de novaNotas de 20:"); tempNotaVinte += sc.nextInt(); if (tempNotaVinte < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (tempNotaVinte < 0); //Valida novaNota 10 do { System.out.println("Entre com a quantidade de novaNotas de 10:"); tempNotaDez += sc.nextInt(); if (tempNotaDez < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (tempNotaDez < 0); //Valida novaNota 5 do { System.out.println("Entre com a quantidade de novaNotas de 5:"); tempNotaCinco += sc.nextInt(); if (tempNotaCinco < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (tempNotaCinco < 0); //Valida novaNota 1 do { System.out.println("Entre com a quantidade de novaNotas de 1:"); tempNotaUm += sc.nextInt(); if (tempNotaUm < 0) { System.out.println("Numero invalido, digite novamente:"); } } while (tempNotaUm < 0); //Atualza o valor do saldo total valorOperacao = (tempNotaCem * 100) + (tempNotaCinquenta * 50) + (tempNotaVinte * 20) + (tempNotaDez * 10) + (tempNotaCinco * 5) + (tempNotaUm * 1); saldoTotal = saldoTotal + valorOperacao; //Imprime o valor do saque System.out.println("Total depositado: M$" + valorOperacao); //Atualiza o quantidade de notas notaCem = tempNotaCem + notaCem; notaCinquenta = tempNotaCinquenta + notaCinquenta; notaVinte = notaVinte + tempNotaVinte; notaDez = notaDez + tempNotaDez; notaCinco = notaCinco + tempNotaCinco; notaUm = notaUm + tempNotaUm; //Imprime na tela System.out.println("Situacao atual " + notaCem + " " + notaCinquenta + " " + notaVinte + " " + notaDez + " " + notaCinco + " " + notaUm); System.out.println("Saldo Total: " + saldoTotal); //Zerando variaveis temperarias tempNotaCem = 0; tempNotaCinquenta = 0; tempNotaVinte = 0; tempNotaDez = 0; tempNotaCinco = 0; tempNotaUm = 0; valorOperacao = 0; break; //Operacao sair case 3: break; //Caso usuario digite uma opcao nao esperada default: System.out.println("Opcao invalida!"); } } while (operacao !=3); } }
[ "wolfdevelloper@gmail.com" ]
wolfdevelloper@gmail.com
f51712e6bac09a5beb8bf9c7c154e2f7e867a81d
69a4f2d51ebeea36c4d8192e25cfb5f3f77bef5e
/methods/Method_1008985.java
44ab82245ad6bc7d0f363b47732725236b22d9e7
[]
no_license
P79N6A/icse_20_user_study
5b9c42c6384502fdc9588430899f257761f1f506
8a3676bc96059ea2c4f6d209016f5088a5628f3c
refs/heads/master
2020-06-24T08:25:22.606717
2019-07-25T15:31:16
2019-07-25T15:31:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
626
java
/** * <p>Writes a property set to a document in a POI filesystem directory.</p> * @param dir The directory in the POI filesystem to write the document to. * @param name The document's name. If there is already a document with thesame name in the directory the latter will be overwritten. * @throws WritingNotSupportedException * @throws IOException */ public void write(final DirectoryEntry dir,final String name) throws WritingNotSupportedException, IOException { try { final Entry e=dir.getEntry(name); e.delete(); } catch ( FileNotFoundException ex) { } dir.createDocument(name,toInputStream()); }
[ "sonnguyen@utdallas.edu" ]
sonnguyen@utdallas.edu
b93598b7569e476b7ec8d4fcc8c3bae61f3ca23a
d392f67a53886cf9af16b588dcfe3c9b40b3802e
/bukkit/libs/toollib/src/main/java/dialight/toollib/ToolLib.java
ce902ed97c0e8a00ff38c972cd36c33b865cae96
[ "MIT" ]
permissive
DiaLight/EventHelper
02f5d96fa95034ebd3197665b448d8b919240226
329de0bfe90d1530dff8b180b65d81bdcde8fe9e
refs/heads/master
2020-04-25T00:44:16.077406
2019-12-10T21:30:36
2019-12-10T21:30:36
172,387,527
2
3
MIT
2019-03-14T20:34:36
2019-02-24T20:38:55
Kotlin
UTF-8
Java
false
false
2,413
java
package dialight.toollib; import dialight.eventhelper.EventHelper; import dialight.eventhelper.project.Project; import dialight.eventhelper.project.ProjectApi; import dialight.observable.collection.ObservableCollection; import dialight.observable.map.ObservableMapWrapper; import org.bukkit.entity.Player; import org.bukkit.event.HandlerList; import org.bukkit.plugin.PluginManager; import org.bukkit.plugin.java.JavaPlugin; import org.jetbrains.annotations.Nullable; import java.util.HashMap; import java.util.Map; public class ToolLib extends Project { private final ObservableMapWrapper<String, Tool> toolregistry = new ObservableMapWrapper<>(); private final ObservableCollection<Tool> immutableObservable = toolregistry.asImmutableCollectionObaervable(Tool::getId); private final Map<Class<?>, Tool> classToolMap = new HashMap<>(); @Nullable public Tool getTool(String id) { return toolregistry.get(id); } @Nullable public <T extends Tool> T getTool(Class<T> clazz) { return (T) classToolMap.get(clazz); } public void register(Tool tool) { String id = tool.getId(); if(toolregistry.putIfAbsent(id, tool) != null) { throw new IllegalArgumentException("Tool with id " + id + " already registered"); } Class<? extends Tool> clazz = tool.getClass(); if(classToolMap.putIfAbsent(clazz, tool) != null) { throw new IllegalArgumentException("Tool with class " + clazz.getSimpleName() + " already registered"); } } public ToolLib(JavaPlugin plugin) { super(plugin); } private final ToolListener toolListener = new ToolListener(this); @Override public void enable(EventHelper eh) { PluginManager pm = getPlugin().getServer().getPluginManager(); pm.registerEvents(toolListener, getPlugin()); getPlugin().getCommand("tool").setExecutor(new ToolCommand()); } @Override public void disable() { HandlerList.unregisterAll(toolListener); } @Override public ProjectApi getApi() { return new ToolLibApi(this); } public boolean hasAccess(Player player) { // return player.isOp(); return true; } public ObservableCollection<Tool> getImmutableObservable() { return immutableObservable; } }
[ "light_01@rambler.ru" ]
light_01@rambler.ru
ebc5121d0369614d45e09bc2e51aea2ce7c0c04f
7d3034cad0b26c9ac6b625722eff606c5881a771
/app/src/main/java/com/jkproject/practise/newapplication/Entity/NewsData.java
71e5ce829db3c9be045d29e58bb77a6c6d2fb3d7
[]
no_license
noremake/Application
51041d05b4a60c4454fe901639dad292b0088945
ca35466f0d22ff7563c6755b94e3d664289a0e61
refs/heads/master
2020-12-02T22:07:38.036337
2018-03-04T10:32:36
2018-03-04T10:32:36
96,086,392
2
0
null
null
null
null
UTF-8
Java
false
false
809
java
package com.jkproject.practise.newapplication.Entity; /* * 项目名: NewApplication * 包名: com.jkproject.practise.newapplication.Entity * 文件名: NewsData * 创建者: JK * 创建时间: 2017/5/18 20:59 * 描述: TODO */ public class NewsData { private String title; private String resource; private String newsUrl; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getResource() { return resource; } public void setResource(String resource) { this.resource = resource; } public String getNewsUrl() { return newsUrl; } public void setNewsUrl(String newsUrl) { this.newsUrl = newsUrl; } }
[ "jk0love@163.com" ]
jk0love@163.com
4e973feaa5f55fa4bf32ff1e3b17d8c876cec102
baa915ee97b98263bff132bdc218432ff03125ac
/DBMS/src/HDBMS/PhrmProfController.java
99cc7665f0840caacf744ab1d46c5321acc0f23f
[]
no_license
anasmoni/Database-Project
9b24dc65e4e09b2c6c439cca9f189a0450407a65
67b17eb359f5ed8e978bfef8298c852baaeb906e
refs/heads/master
2020-09-16T19:52:55.663166
2019-11-27T09:03:01
2019-11-27T09:03:01
223,873,522
0
0
null
null
null
null
UTF-8
Java
false
false
8,646
java
package HDBMS; import javafx.event.ActionEvent; import javafx.fxml.FXML; import javafx.scene.control.Button; import javafx.scene.control.TextField; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; public class PhrmProfController { private Main main; @FXML private Button view; @FXML private Button edit; @FXML private Button pback; @FXML private Button signout; @FXML private TextField eid; @FXML private TextField name; @FXML private TextField address; @FXML private TextField phone; @FXML private TextField age; @FXML private TextField jdate; @FXML private TextField degree; @FXML private TextField dept; @FXML private TextField email; @FXML private TextField sal; @FXML private TextField username; @FXML private TextField pass; boolean check(String TABLE , String VAL , String COL){ boolean ret=true; String sql = "SELECT COUNT(*) FROM " + TABLE + " WHERE " + COL +"='"+ VAL +"'"; try { Connection con = new DBMSConnection().getConnection(); PreparedStatement pst = con.prepareStatement(sql); ResultSet rs = pst.executeQuery(); if(rs.next()){ if(rs.getString(1).equals("0")==false)ret = false; } pst.close(); con.close(); } catch (SQLException e) { e.printStackTrace(); } return ret; } @FXML void viewAction(ActionEvent event) { String sql = "SELECT E.EID , E.NAME, E.ADDRESS, E.PHONE, E.AGE , E.JOIN_DATE, E.EMAIL,E.SALARY, E.DEGREE , E.DEPT ,\n" + "L.USERNAME , L.PASSWORD FROM EMPLOYEE E JOIN LOGIN L ON L.EID=E.EID WHERE L.USERNAME ='"+ ShowUI.UserName + "' AND L.PASSWORD='" + ShowUI.PassWord +"'"; try { Connection con = new DBMSConnection().getConnection(); PreparedStatement pst = con.prepareStatement(sql); ResultSet rs = pst.executeQuery(); if(rs.next()){ eid.setText(rs.getString(1)); name.setText(rs.getString(2)); address.setText(rs.getString(3)); phone.setText(rs.getString(4)); age.setText(rs.getString(5)); jdate.setText(rs.getString(6)); email.setText(rs.getString(7)); sal.setText(rs.getString(8)); degree.setText(rs.getString(9)); dept.setText(rs.getString(10)); username.setText(rs.getString(11)); pass.setText(rs.getString(12)); } pst.close(); con.close(); } catch (SQLException e) { e.printStackTrace(); } } @FXML void editAction(ActionEvent event) { String sql ,EID, NAME, PHONE, EMAIL, ADDRESS ; sql = EID = NAME = PHONE = EMAIL = ADDRESS = "$"; sql = "SELECT E.NAME,E.PHONE, E.EMAIL, E.ADDRESS , E.EID FROM EMPLOYEE E JOIN LOGIN L ON L.EID=E.EID WHERE L.USERNAME ='"+ ShowUI.UserName + "' AND L.PASSWORD='" + ShowUI.PassWord +"'"; try { Connection con = new DBMSConnection().getConnection(); PreparedStatement pst = con.prepareStatement(sql); ResultSet rs = pst.executeQuery(); if(rs.next()){ NAME = rs.getString(1); PHONE = rs.getString(2); EMAIL = rs.getString(3); ADDRESS = rs.getString(4); EID = rs.getString(5); } pst.close(); con.close(); } catch (SQLException e) { e.printStackTrace(); } boolean yup=false; if(name.getText().equals(NAME)==false){ sql = "UPDATE EMPLOYEE SET NAME = '" + name.getText() + "'"; yup=true; } if(phone.getText().equals(PHONE)==false){ if(phone.getText().length()<6){ ShowUI.ShowPop("Phone No must contains at least 6 digits ","Oops!!"); return; } if(yup==false){ sql = "UPDATE EMPLOYEE SET PHONE = '" + phone.getText() + "'"; } else{ sql += ",PHONE = '" + phone.getText() + "'"; } yup=true; } if(address.getText().equals(ADDRESS)==false){ if(yup==false){ sql = "UPDATE EMPLOYEE SET ADDRESS = '" + address.getText() + "'"; } else{ sql += ",ADDRESS = '" + address.getText() + "'"; } yup=true; } if(email.getText().equals(EMAIL)==false){ String e = email.getText(); if(e.length()<=15 || e.substring(e.length()-10 , e.length()).equals("@gmail.com") == false ){ ShowUI.ShowPop("Please Enter A Valid Email...","Oops!!"); return; } if(check("EMPLOYEE", e, "EMAIL" )==false){ ShowUI.ShowPop("Email already exist...","Oops!!"); return; } if(yup==false){ sql = "UPDATE EMPLOYEE SET EMAIL = '" + e + "'"; } else{ sql += ",EMAIL = '" + e + "'"; } yup=true; } if(yup){ sql += " WHERE EID = " + EID; try { Connection con = new DBMSConnection().getConnection(); PreparedStatement pst = con.prepareStatement(sql); ResultSet rs = pst.executeQuery(); pst.close(); con.close(); } catch (SQLException e) { e.printStackTrace(); } } boolean yey=false; if(username.getText().equals(ShowUI.UserName)==false && username.getText().isEmpty()==false){ String u = username.getText(); if(u.length()<8){ ShowUI.ShowPop("User Name must contains at least 8 charecters ","Oops!!"); return; } if(check("LOGIN",u, "USERNAME" )==false){ ShowUI.ShowPop("UserName already exist...","Oops!!"); return; } sql = "UPDATE LOGIN SET USERNAME = '" + u + "'"; ShowUI.UserName = u; yey=true; } if(pass.getText().equals(ShowUI.PassWord)==false && pass.getText().isEmpty()==false){ String p = pass.getText(); if(p.length()<8){ ShowUI.ShowPop("PassWord must contains at least 8 charecters ","Oops!!"); return; } if(check("LOGIN",p, "PASSWORD" )==false){ ShowUI.ShowPop("Please Enter a Unique PassWord...","Oops!!"); return; } if(yey){ sql += ", PASSWORD = '" + pass.getText() + "'"; } else{ sql = "UPDATE LOGIN SET PASSWORD = '" + pass.getText() + "'"; } ShowUI.PassWord = pass.getText(); yey=true; } if(yey){ sql += " WHERE EID = " + EID ; try { Connection con = new DBMSConnection().getConnection(); PreparedStatement pst = con.prepareStatement(sql); ResultSet rs = pst.executeQuery(); pst.close(); con.close(); } catch (SQLException e) { e.printStackTrace(); } } if(yup || yey){ ShowUI.ShowPop("Succesfully Updated.....","WAH!!"); } } @FXML void pbackAction(ActionEvent event) { reset(); ShowUI.stage.setScene(ShowUI.PhrmHome); } @FXML void signoutAction(ActionEvent event) { reset(); ShowUI.stage.setScene(ShowUI.scene1); } void reset(){ eid.setText(""); name.setText(""); address.setText(""); phone.setText(""); age.setText(""); jdate.setText(""); sal.setText(""); username.setText(""); pass.setText(""); email.setText(""); dept.setText(""); degree.setText(""); } void setMain(Main main) { this.main = main; } }
[ "monimisimao@gmail.com" ]
monimisimao@gmail.com
fd4568a57eead6ed2d657c1fa9647234fa32e67f
fe1f2c68a0540195b227ebee1621819766ac073b
/OVO_jdgui/myobfuscated/nh.java
3a8ecc69faa1761bc6d166d8b20eb0545c52908d
[]
no_license
Sulley01/KPI_4
41d1fd816a3c0b2ab42cff54a4d83c1d536e19d3
04ed45324f255746869510f0b201120bbe4785e3
refs/heads/master
2020-03-09T05:03:37.279585
2018-04-18T16:52:10
2018-04-18T16:52:10
128,602,787
2
1
null
null
null
null
UTF-8
Java
false
false
2,257
java
package myobfuscated; import android.graphics.Canvas; import android.support.v7.widget.RecyclerView; import android.view.View; final class nh { static final class a extends nh.b { public final void a(Canvas paramCanvas, RecyclerView paramRecyclerView, View paramView, float paramFloat1, float paramFloat2, int paramInt, boolean paramBoolean) { float f3; float f1; int i; if ((paramBoolean) && (paramView.getTag(jt.b.item_touch_helper_previous_elevation) == null)) { f3 = hq.m(paramView); int j = paramRecyclerView.getChildCount(); f1 = 0.0F; i = 0; if (i < j) { View localView = paramRecyclerView.getChildAt(i); if (localView == paramView) { break label118; } float f2 = hq.m(localView); if (f2 <= f1) { break label118; } f1 = f2; } } label118: for (;;) { i += 1; break; hq.a(paramView, 1.0F + f1); paramView.setTag(jt.b.item_touch_helper_previous_elevation, Float.valueOf(f3)); super.a(paramCanvas, paramRecyclerView, paramView, paramFloat1, paramFloat2, paramInt, paramBoolean); return; } } public final void a(View paramView) { Object localObject = paramView.getTag(jt.b.item_touch_helper_previous_elevation); if ((localObject != null) && ((localObject instanceof Float))) { hq.a(paramView, ((Float)localObject).floatValue()); } paramView.setTag(jt.b.item_touch_helper_previous_elevation, null); super.a(paramView); } } static class b implements ng { public void a(Canvas paramCanvas, RecyclerView paramRecyclerView, View paramView, float paramFloat1, float paramFloat2, int paramInt, boolean paramBoolean) { paramView.setTranslationX(paramFloat1); paramView.setTranslationY(paramFloat2); } public void a(View paramView) { paramView.setTranslationX(0.0F); paramView.setTranslationY(0.0F); } } } /* Location: C:\dex2jar-2.0\classes-dex2jar.jar!\myobfuscated\nh.class * Java compiler version: 6 (50.0) * JD-Core Version: 0.7.1 */
[ "sullivan.alvin@ymail.com" ]
sullivan.alvin@ymail.com
f21bc169643bac3946717e6465c67202c86903c4
14755b80b5860af4d46c16b851e84ccf9d12506e
/java/joa-im/src-gen/com/wilutions/mslib/uccollaborationlib/ConferenceRegionalAccessInformationCollection.java
192d62a3c9bc9874515d178984e6ca83aeea6045
[ "MIT" ]
permissive
wolfgangimig/joa
cdabaf1386dcc40c53a0279659666e7a83af3d89
a74bbab92eab2e3a7e525728ed318537c2b6a42a
refs/heads/master
2022-04-30T09:24:25.177264
2022-04-24T09:03:42
2022-04-24T09:03:42
26,138,099
12
14
null
null
null
null
UTF-8
Java
false
false
1,744
java
/* ** GENEREATED FILE - DO NOT MODIFY ** */ package com.wilutions.mslib.uccollaborationlib; import com.wilutions.com.*; /** * ConferenceRegionalAccessInformationCollection. * ConferenceRegionalAccessInformationCollection Class */ @CoClass(guid="{F080136D-D09A-42DE-B9E4-2E926D1A430F}") public class ConferenceRegionalAccessInformationCollection extends Dispatch implements IConferenceRegionalAccessInformationCollection { static boolean __typelib__loaded = __TypeLib.load(); @DeclDISPID(-4) public Object get_NewEnum() throws ComException { final Object obj = this._dispatchCall(-4,"_NewEnum", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Object)obj; } @DeclDISPID(1610743809) public Integer getCount() throws ComException { final Object obj = this._dispatchCall(1610743809,"Count", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Integer)obj; } @DeclDISPID(0) public IConferenceRegionalAccessInformation getItem(final Integer _index) throws ComException { assert(_index != null); final Object obj = this._dispatchCall(0,"Item", DISPATCH_PROPERTYGET,null,_index); if (obj == null) return null; return Dispatch.as(obj, com.wilutions.mslib.uccollaborationlib.impl.IConferenceRegionalAccessInformationImpl.class); } public ConferenceRegionalAccessInformationCollection() throws ComException { super("{F080136D-D09A-42DE-B9E4-2E926D1A430F}", "{A0984F01-5D2C-4302-87A0-69BE7B015143}"); } protected ConferenceRegionalAccessInformationCollection(long ndisp) { super(ndisp); } public String toString() { return "[ConferenceRegionalAccessInformationCollection" + super.toString() + "]"; } }
[ "wolfgang.imig@googlemail.com" ]
wolfgang.imig@googlemail.com
49c3e78baf06c883961c401f7ed50d6dce2ff3a7
672e4a99e8ba52f3f8e283f6a6f681fc148c768e
/MyApplication/app/src/test/java/com/zachlittle/android/aca/widgetexploration/ExampleUnitTest.java
368406f7eec524dc60315f20405144f339c29562
[]
no_license
zlittj/littlezachaca
e216d6d4886db2b60285d68d02631080b32999e0
80c6fc2b1118456d705760c3b2f9fea5586e1a6a
refs/heads/master
2020-04-17T11:56:44.123173
2016-09-23T02:19:05
2016-09-23T02:19:05
66,386,107
0
0
null
2016-09-28T02:53:23
2016-08-23T16:56:24
Java
UTF-8
Java
false
false
337
java
package com.zachlittle.android.aca.widgetexploration; 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); } }
[ "jzachlittle@gmail.com" ]
jzachlittle@gmail.com
38d48282a8a21bfc0466cbbdce88bcbd09c6546b
2e2cca78907e563dea75043541c393d9a90b882f
/src/main/java/com/fg/system/modules/admin/job/entity/JobLog.java
313aa9a6e96edf79a0a99090b02184a33d52aec8
[]
no_license
javafgs/fg_basic_system
26bc218c6470385eaab11d6b2601145d753efc40
8d5594c73457d82ae2c45bac2c8927e33c0e2173
refs/heads/main
2023-01-19T14:47:05.892564
2020-11-23T08:25:43
2020-11-23T08:25:43
315,242,763
0
0
null
null
null
null
UTF-8
Java
false
false
3,404
java
package com.fg.system.modules.admin.job.entity; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableField; import java.io.Serializable; import java.util.Date; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; /** * <p> * t_job_log 实体类 * </p> * * @author wfg * @since 2020-10-20 */ @TableName("t_job_log") @ApiModel(value="JobLog对象", description="") public class JobLog implements Serializable { private static final long serialVersionUID=1L; @ApiModelProperty(value = "任务日志id",required = true) @TableId(value = "LOG_ID", type = IdType.AUTO) private Long logId; @ApiModelProperty(value = "任务id",required = true) @TableField("JOB_ID") private Long jobId; @ApiModelProperty(value = "spring bean名称",required = true) @TableField("BEAN_NAME") private String beanName; @ApiModelProperty(value = "方法名",required = true) @TableField("METHOD_NAME") private String methodName; @ApiModelProperty(value = "参数") @TableField("PARAMS") private String params; @ApiModelProperty(value = "任务状态 0:成功 1:失败",required = true) @TableField("STATUS") private String status; @ApiModelProperty(value = "失败信息") @TableField("ERROR") private String error; @ApiModelProperty(value = "耗时(单位:毫秒)") @TableField("TIMES") private Long times; @ApiModelProperty(value = "创建时间",required = true) @TableField("CREATE_TIME") private Date createTime; public Long getLogId() { return logId; } public void setLogId(Long logId) { this.logId = logId; } public Long getJobId() { return jobId; } public void setJobId(Long jobId) { this.jobId = jobId; } public String getBeanName() { return beanName; } public void setBeanName(String beanName) { this.beanName = beanName; } public String getMethodName() { return methodName; } public void setMethodName(String methodName) { this.methodName = methodName; } public String getParams() { return params; } public void setParams(String params) { this.params = params; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public String getError() { return error; } public void setError(String error) { this.error = error; } public Long getTimes() { return times; } public void setTimes(Long times) { this.times = times; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } @Override public String toString() { return "JobLog{" + "logId=" + logId + ", jobId=" + jobId + ", beanName=" + beanName + ", methodName=" + methodName + ", params=" + params + ", status=" + status + ", error=" + error + ", times=" + times + ", createTime=" + createTime + "}"; } }
[ "229480613@qq.com" ]
229480613@qq.com
0940a3f9723ef7ad73b6212fe880507de186206b
0f8bb34e9750088988be5a03c0e21ca4849e967e
/src/utility/Konstanten.java
dc37b200f4e04c8f1f6066b481bca990f8582feb
[]
no_license
EikeDiekmann/test
60d25e2c541aad2409617419dd7dc8694cbc2153
328f87f700ad594032e943c7dae9256c1c7cdd5b
refs/heads/master
2021-01-01T05:44:30.488067
2016-04-28T12:33:44
2016-04-28T12:33:44
57,300,081
0
0
null
null
null
null
UTF-8
Java
false
false
1,619
java
package utility; /** * Konstanten * @author Anton Huber, Dennis Koerner, Eike Diekmann * */ public interface Konstanten { public double EPS = 0.0000001; //Maximale Anzahl an Koordianten pro Vertex public final static int ANZAHL_VERTEX_KOORDS = 3; //Maximale Anzahl an Vertices pro Facet (Dreieck) public final static int ANZAHL_VERTEX = 3; public final static int ANZAHL_EDGE_TRIANGLE = 3; public final static String APPPLICATION_START_HINWEIS= "Um ein 3D Objekt anzuzeigen, muss vorher eine STL Datei geladen " + "werden\n über Datei -> Öffnen kann eine Datei ausgewählt " + "und geladen werden!"; //DATEI einlesen public final static String FILE_READING = "Datei wird geladen. Dies kann" + " einige Sekunden bis Minuten dauern!"; public final static String FILE_READING_ERROR = "Beim einlesen der Datei ist" + " ein Fehler aufgetreten!"; public final int ROTATION = 0; public final int TRANSLATION = 1; public final int X_ACHSE = 0; public final int Y_ACHSE = 1; public final int Z_ACHSE = 2; public final String FILE_EXTENSION_DESCRIPTION = "STL-Dateien (*.stl)"; public final String FILE_EXTENSION = "*.stl"; public final boolean DEBUG = false; public final static String DATEIPFAD = "C:\\Users\\Eike\\Documents\\NetBeansProjects\\" + "STLVerwaltung\\stl\\bottle.stl"; public final String FXML_ROOT_PATH = "../view/rootPane.fxml"; }
[ "Eike@Eike-Notebook" ]
Eike@Eike-Notebook
efd83696c83bd1af2f67ea822e407f7dc15d9c7e
3ce1dc60988b4452c3602c43a173df6aa660647e
/humpback/src/main/java/org/thorn/humpback/frame/action/OpenDialogAction.java
ff5b6a212dd36a49987247ab7ebf712065396d58
[]
no_license
cytvictor/thorn-birds-project
d9d89b7956b28a846031eb759a1ffc38a2c43d6c
538fea0188dbc30cd3b077c6a68d0b8aaf51ee7a
refs/heads/master
2021-01-20T23:27:12.844460
2015-05-30T13:57:22
2015-05-30T13:57:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,371
java
package org.thorn.humpback.frame.action; import org.apache.commons.lang.StringUtils; import org.thorn.humpback.codebuilder.view.DBConfigDialog; import org.thorn.humpback.frame.service.Context; import org.thorn.humpback.localpass.view.AccountDialog; import org.thorn.humpback.localpass.view.ModifyPwdDialog; import org.thorn.humpback.localpass.view.NotesFolderSettingDialog; import java.awt.*; import java.awt.event.ActionEvent; /** * @Author: yfchenyun * @Since: 13-9-16 上午9:44 * @Version: 1.0 */ public class OpenDialogAction extends AbsAction { public OpenDialogAction() { super(Context.MAIN_FRAME); } public OpenDialogAction(Component parentComp) { super(parentComp); } @Override public void action(ActionEvent e) throws Exception { String command = e.getActionCommand(); if(StringUtils.equals(command, AccountDialog.class.getName())) { new AccountDialog(); } else if(StringUtils.equals(command, NotesFolderSettingDialog.class.getName())) { new NotesFolderSettingDialog(); } else if(StringUtils.equals(command, ModifyPwdDialog.class.getName())) { new ModifyPwdDialog(); } else if(StringUtils.equals(command, DBConfigDialog.class.getName())) { new DBConfigDialog(); } } }
[ "chenyun.chris@gmail.com" ]
chenyun.chris@gmail.com
3b0c0db5092a371ec9337802f9db0028d9d8b183
9f25cdd9b47fcb19b68b03a8ae8c44619581d852
/day03/src/com/igeek/Demo17.java
6705a9e2dbc1ff39f7ccc99ae41d5300b3752571
[]
no_license
CHENGSISHUO/wxthxy
ea831e6eab975e32d916994463532796864c94ae
3845c61e5da36df29b7153505b9097044a562100
refs/heads/master
2020-07-24T03:57:42.805259
2019-09-11T09:20:22
2019-09-11T09:20:22
null
0
0
null
null
null
null
GB18030
Java
false
false
840
java
package com.igeek; import java.util.Scanner; /** * @author zx * @version 1.0 * @description: * * 举例:键盘录入”abc” * 输出结果:”cba” * * 分析: * A:键盘录入一个字符串 * B:写方法实现字符串的反转 * a:把字符串倒着遍历,得到的每一个字符拼接成字符串。 * b:把字符串转换为字符数组,然后对字符数组进行反转,最后在把字符数组转换为字符串 * C:调用方法 * D:输出结果 */ public class Demo17 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("请输入字符串数据:"); String str = scanner.nextLine(); char[] chs = str.toCharArray(); String s = ""; for (int i = chs.length-1; i >=0; i--) { s+=chs[i]; } System.out.println(s); } }
[ "875494325@qq.com" ]
875494325@qq.com
f1cc7076fa518ae6a9975ea2b4f21c7d8d7aa1a7
9c324892232b563915817091116729d9d64053fa
/src/main/java/ru/butakov/teseratelegrambot/bot/WebHookTeseraBot.java
d5b4ab3988b80d49252df4f67121e9298d7cacb1
[]
no_license
mello1984/tesera-telegram-bot
e5bd7bd3697ee111a339ddc4fa6645252c7b2d1a
cebc6f8a22b3cdd848cb04bbd371c5f8a6d07f45
refs/heads/master
2023-05-08T21:06:00.275573
2021-06-04T20:34:03
2021-06-04T20:34:03
358,488,021
0
1
null
null
null
null
UTF-8
Java
false
false
675
java
package ru.butakov.teseratelegrambot.bot; import lombok.AccessLevel; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.experimental.FieldDefaults; import org.telegram.telegrambots.bots.TelegramWebhookBot; import org.telegram.telegrambots.meta.api.methods.BotApiMethod; import org.telegram.telegrambots.meta.api.objects.Update; @Getter @AllArgsConstructor @FieldDefaults(level = AccessLevel.PRIVATE, makeFinal = true) public class WebHookTeseraBot extends TelegramWebhookBot { String botToken; String botUsername; String botPath; @Override public BotApiMethod<?> onWebhookUpdateReceived(Update update) { return null; } }
[ "abutakov84@gmail.com" ]
abutakov84@gmail.com
4140982ab1ef679023c56eea6a65a908aaeed901
917359ba4aaf43092a99977f9e1630974804fa8b
/src/main/java/com/jimmie/test/fastjson/ReturnItemInfo.java
0314d427c334a4766a6bfac3bcaa5f5bb59a0e9d
[]
no_license
jimmie0204/test20170220
9084c2ea0fd120265129a2dfc5ea340d77346e88
1c3afd09a7d073076d356c3ab31e7ab8cdc7a2e4
refs/heads/master
2022-12-26T19:34:25.476448
2020-10-12T03:53:00
2020-10-12T03:53:00
82,544,643
1
0
null
2022-12-16T05:44:11
2017-02-20T10:16:16
Java
UTF-8
Java
false
false
1,118
java
package com.jimmie.test.fastjson; public class ReturnItemInfo { /**原料ID**/ private Integer material_id; /**单位**/ private String unit; /**数量**/ private Integer quantity; /**生产日期**/ private String manufacturing_date; public ReturnItemInfo(){ } public ReturnItemInfo(Integer material_id, String unit, Integer quantity, String manufacturing_date) { super(); this.material_id = material_id; this.unit = unit; this.quantity = quantity; this.manufacturing_date = manufacturing_date; } public Integer getMaterial_id() { return material_id; } public void setMaterial_id(Integer material_id) { this.material_id = material_id; } public String getUnit() { return unit; } public void setUnit(String unit) { this.unit = unit; } public Integer getQuantity() { return quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } public String getManufacturing_date() { return manufacturing_date; } public void setManufacturing_date(String manufacturing_date) { this.manufacturing_date = manufacturing_date; } }
[ "liyp@missfresh.cn" ]
liyp@missfresh.cn
b5edae847a92fdeaba9902ebb5225be9752627ff
ede3e046ba475f53a38b4cc3edc7ffa6a16f61a4
/src/main/java/algorithm/leetcode/Algorithms/_601_700/_641_DesignCircularDeque/DesignCircularDeque.java
8076071047b30df77631bccc69c38bc63efca36a
[]
no_license
arnabs542/demo
bb926031c02bfd5582b0351efd97476dae95362f
a611c14843d3f0dd40d6193c62ec2a7ac28ea754
refs/heads/master
2022-12-29T20:26:31.329805
2019-06-24T07:58:20
2019-06-24T07:58:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,400
java
package algorithm.leetcode.Algorithms._601_700._641_DesignCircularDeque; /** * Created by jialei.zou on 2019/2/18 . ref: https://leetcode.com/problems/design-circular-deque/ Design your implementation of the circular double-ended queue (deque). Your implementation should support following operations: MyCircularDeque(k): Constructor, set the size of the deque to be k. insertFront(): Adds an item at the front of Deque. Return true if the operation is successful. insertLast(): Adds an item at the rear of Deque. Return true if the operation is successful. deleteFront(): Deletes an item from the front of Deque. Return true if the operation is successful. deleteLast(): Deletes an item from the rear of Deque. Return true if the operation is successful. getFront(): Gets the front item from the Deque. If the deque is empty, return -1. getRear(): Gets the last item from Deque. If the deque is empty, return -1. isEmpty(): Checks whether Deque is empty or not. isFull(): Checks whether Deque is full or not. Example: MyCircularDeque circularDeque = new MycircularDeque(3); // set the size to be 3 circularDeque.insertLast(1); // return true circularDeque.insertLast(2); // return true circularDeque.insertFront(3); // return true circularDeque.insertFront(4); // return false, the queue is full circularDeque.getRear(); // return 2 circularDeque.isFull(); // return true circularDeque.deleteLast(); // return true circularDeque.insertFront(4); // return true circularDeque.getFront(); // return 4 Note: All values will be in the range of [0, 1000]. The number of operations will be in the range of [1, 1000]. Please do not use the built-in Deque library. 如果可以用现有的类,可以用list实现,但题目应该不是这个意思 可以用数组或链表实现,考虑的问题是 1. 要不要考虑线程安全 计划写一个线程不安全的,写一个线程安全的 后面没写线程安全的,该问题的关注点不再这里 看下RefDesignCircularDeque: 非常巧妙的设置,将数组的定义形成了环(可以理解为两个圆形成的环) */ public class DesignCircularDeque { private int curSize = 0; private int maxSize; private Node front; private Node last; /** Initialize your data structure here. Set the size of the deque to be k. */ public DesignCircularDeque(int k) { maxSize = k; } /** Adds an item at the front of Deque. Return true if the operation is successful. */ public boolean insertFront(int value) { if(front == null){ curSize = 1; front = new Node(value); last = front; return true; }else { if(curSize == maxSize){ return false; }else { Node node = new Node(value); front.next = node; node.pre = front; front = node; curSize++; return true; } } } /** Adds an item at the rear of Deque. Return true if the operation is successful. */ public boolean insertLast(int value) { if(last == null){ curSize = 1; last = new Node(value); front = last; return true; }else { if(curSize == maxSize){ return false; }else { Node node = new Node(value); node.next = last; last.pre = node; last = node; curSize++; return true; } } } /** Deletes an item from the front of Deque. Return true if the operation is successful. */ public boolean deleteFront() { if(curSize<1){ return false; }else { if(curSize == 1){ curSize = 0; front = null; last = null; return true; }else { curSize--; front=front.pre; front.next = null; return true; } } } /** Deletes an item from the rear of Deque. Return true if the operation is successful. */ public boolean deleteLast() { if(curSize<1){ return false; }else { if(curSize == 1){ curSize = 0; front = null; last = null; return true; }else { curSize--; last=last.next; last.pre = null; return true; } } } /** Get the front item from the deque. */ public int getFront() { if(curSize == 0){ return -1; }else { return front.val; } } /** Get the last item from the deque. */ public int getRear() { if(curSize == 0){ return -1; }else { return last.val; } } /** Checks whether the circular deque is empty or not. */ public boolean isEmpty() { return curSize == 0; } /** Checks whether the circular deque is full or not. */ public boolean isFull() { return curSize == maxSize; } private class Node{ private int val; Node(int val){ this.val = val; } private Node next; private Node pre; } public static void main(String[] args) { DesignCircularDeque obj = new DesignCircularDeque(3); boolean param_1 = obj.insertFront(1); boolean param_2 = obj.insertLast(2); System.out.println(obj.isFull()); System.out.println(obj.isEmpty()); System.out.println(obj.getFront()); System.out.println(obj.getRear()); boolean param_3 = obj.deleteFront(); boolean param_4 = obj.deleteLast(); int param_5 = obj.getFront(); int param_6 = obj.getRear(); boolean param_7 = obj.isEmpty(); boolean param_8 = obj.isFull(); System.out.println(param_1); System.out.println(param_2); System.out.println(param_3); System.out.println(param_4); System.out.println(param_5); System.out.println(param_6); System.out.println(param_7); System.out.println(param_8); } }
[ "570035853@qq.com" ]
570035853@qq.com
46083ceea581d2b6f67e96e004fa131d46cf8b05
8a3a10804fab8ffcc05b0805f7c914bb9bb2a3ab
/src/main/java/ru/eltex/app/lab7/controllers/MyController.java
9267802df05ea5c99e1a7fd832f9d340ac7996d1
[]
no_license
MikHail854/JavaLab8
810ca081c1104aafc0a2b5429efaab275da04fb3
ee349eb1354e23ca7ae075e611a08866502209e7
refs/heads/master
2020-07-21T18:58:00.837246
2019-09-07T10:27:56
2019-09-07T10:27:56
206,949,665
0
0
null
null
null
null
UTF-8
Java
false
false
2,459
java
package ru.eltex.app.lab7.controllers; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import ru.eltex.app.lab1.Phone; import ru.eltex.app.lab1.Products; import ru.eltex.app.lab2.Order; import ru.eltex.app.lab2.Orders; import ru.eltex.app.lab2.ShoppingCart; import ru.eltex.app.lab5.ManagerOrderJSON; import ru.eltex.app.lab5.OrderDeserializer; import ru.eltex.app.lab5.OrdersDeserializer; import ru.eltex.app.lab5.ProductDeserializer; import ru.eltex.app.lab8.repositories.OrderRepository; import ru.eltex.app.lab8.services.OrderService; import ru.eltex.app.lab8.services.ProductsService; @RestController public class MyController { private static final Logger logger = Logger.getLogger(MyController.class); private final Gson gson = new GsonBuilder().registerTypeAdapter(Order.class, new OrderDeserializer()) .registerTypeAdapter(Orders.class, new OrdersDeserializer()) .registerTypeAdapter(Products.class, new ProductDeserializer()).setPrettyPrinting().create(); /*private Orders<?> orders; @Autowired public MyController(Orders<?> orders) { this.orders = orders; }*/ @Autowired private OrderService orderService; @Autowired private ProductsService productsService; @GetMapping(params = "command=readall") public Object readall() { logger.info("readall"); // return orderService.readAll(); return gson.toJson(orderService.readAll()); } @GetMapping(params = "command=readById") public String readById(String order_id) { logger.info("readById"); return gson.toJson(orderService.readById(order_id)); } @GetMapping(params = "command=addToCard") public String addToCard(String card_id) { logger.info("addToCard"); Products phone = new Phone(); productsService.addToCard(phone); return phone.getId().toString(); } @GetMapping(params = "command=delById") public String delById(String order_id) { logger.info("delById"); Order order = orderService.readById(order_id); if (order == null) { throw new NullPointerException(); } orderService.delete(order); return "0"; } }
[ "vip.moneta95@mail.ru" ]
vip.moneta95@mail.ru
ac7d7d9e0dfb54ade296fd9e76be5228ddd6ccf1
2a8fb3a8768b26ddf3794824e2ea1a41c9f6ac1f
/app/src/main/java/com/example/zero/androidskeleton/concurrent/TimerThreadExecutor.java
698784a1cca9024dc298620d99a9f9a99e0229ca
[]
no_license
LexHsu/BlueLock
746a8f66021a82c5c68a41a6f07abe500e006f1f
326909d50319ddeee5fc3c53d18ecdd0e8a7868a
refs/heads/master
2020-12-29T00:25:18.446301
2016-05-18T16:39:19
2016-05-18T16:39:19
58,656,292
0
0
null
2016-05-12T16:00:11
2016-05-12T16:00:11
null
UTF-8
Java
false
false
2,458
java
package com.example.zero.androidskeleton.concurrent; import java.util.Timer; import java.util.TimerTask; import java.util.concurrent.*; import java.util.concurrent.atomic.AtomicBoolean; /** * Created by zero on 5/10/16. */ public class TimerThreadExecutor extends ThreadExecutor { private class Notifier<T> implements ResultListener<T> { private final ResultListener<T> mListener; private final AtomicBoolean mNotified = new AtomicBoolean(false); Notifier(ResultListener<T> l) { mListener = l; } @Override public void onResult(int code, T result) { if (mNotified.compareAndSet(false, true)) { if (mListener != null) { mListener.onResult(code, result); } } } } private final Timer mTimer; /** * * @param poolSize thread number for this pool * @param keepAliveTime alive time in millisecond * @param timer timer */ public TimerThreadExecutor(int poolSize, long keepAliveTime, Timer timer) { super(poolSize, keepAliveTime); mTimer = timer; } public TimerThreadExecutor(int poolSize, long keepAliveTime) { this(poolSize, keepAliveTime, new Timer("thread-executor-timer")); } public <T> Future<T> submit(final Callable<T> task, final ResultListener<T> listener, final long timeout) { final Notifier<T> notifier = new Notifier<>(listener); final Future<T> future = submit(new Callable<T>() { @Override public T call() throws Exception { int code = ResultListener.OK; T result = null; try { result = task.call(); return result; } catch (Exception e) { code = ResultListener.ERR; } finally { if (listener != null) { listener.onResult(code, result); } } return null; } }); if (timeout >= 0) { mTimer.schedule(new TimerTask() { @Override public void run() { future.cancel(true); notifier.onResult(ResultListener.TIMEOUT, null); } }, timeout); } return future; } }
[ "zhaoyi.zero@gmail.com" ]
zhaoyi.zero@gmail.com
010e5c5dd386705058ef8f66099a242b1fa0f56d
ed57dbb18242577330fe0b5b3f504944240c71ac
/KeyboardType/KeyboardType.Android/obj/Debug/MonoAndroid81/android/src/com/companyname/keyboardtype/R.java
9209894fc7bd70e8b49747a95f46e6ba39c3c485
[]
no_license
omersezer/KeyboardReturnTypes
efdea43807181ddc4b625b01c089cdcc9ab4c28f
28a87d1f72f36a54a7d802a96bb712df089fd85c
refs/heads/master
2020-03-28T08:33:00.344648
2018-09-08T22:01:48
2018-09-08T22:01:48
147,972,789
0
0
null
null
null
null
UTF-8
Java
false
false
690,580
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.companyname.keyboardtype; public final class R { public static final class anim { public static final int abc_fade_in=0x7f050000; public static final int abc_fade_out=0x7f050001; public static final int abc_grow_fade_in_from_bottom=0x7f050002; public static final int abc_popup_enter=0x7f050003; public static final int abc_popup_exit=0x7f050004; public static final int abc_shrink_fade_out_from_bottom=0x7f050005; public static final int abc_slide_in_bottom=0x7f050006; public static final int abc_slide_in_top=0x7f050007; public static final int abc_slide_out_bottom=0x7f050008; public static final int abc_slide_out_top=0x7f050009; public static final int design_bottom_sheet_slide_in=0x7f05000a; public static final int design_bottom_sheet_slide_out=0x7f05000b; public static final int design_snackbar_in=0x7f05000c; public static final int design_snackbar_out=0x7f05000d; public static final int tooltip_enter=0x7f05000e; public static final int tooltip_exit=0x7f05000f; } public static final class animator { public static final int design_appbar_state_list_animator=0x7f060000; } public static final class attr { /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarDivider=0x7f01006b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarItemBackground=0x7f01006c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarPopupTheme=0x7f010065; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> */ public static final int actionBarSize=0x7f01006a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarSplitStyle=0x7f010067; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarStyle=0x7f010066; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabBarStyle=0x7f010061; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabStyle=0x7f010060; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabTextStyle=0x7f010062; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTheme=0x7f010068; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarWidgetTheme=0x7f010069; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionButtonStyle=0x7f010086; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionDropDownStyle=0x7f010082; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionLayout=0x7f0100dd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionMenuTextAppearance=0x7f01006d; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int actionMenuTextColor=0x7f01006e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeBackground=0x7f010071; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseButtonStyle=0x7f010070; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCloseDrawable=0x7f010073; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCopyDrawable=0x7f010075; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeCutDrawable=0x7f010074; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeFindDrawable=0x7f010079; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePasteDrawable=0x7f010076; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePopupWindowStyle=0x7f01007b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSelectAllDrawable=0x7f010077; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeShareDrawable=0x7f010078; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSplitBackground=0x7f010072; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeStyle=0x7f01006f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeWebSearchDrawable=0x7f01007a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowButtonStyle=0x7f010063; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionOverflowMenuStyle=0x7f010064; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionProviderClass=0x7f0100df; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int actionViewClass=0x7f0100de; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int activityChooserViewStyle=0x7f01008e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogButtonGroupStyle=0x7f0100b3; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alertDialogCenterButtons=0x7f0100b4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogStyle=0x7f0100b2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int alertDialogTheme=0x7f0100b5; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int allowStacking=0x7f0100cb; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int alpha=0x7f0100cc; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> */ public static final int alphabeticModifiers=0x7f0100da; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowHeadLength=0x7f0100d3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int arrowShaftLength=0x7f0100d4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=0x7f0100ba; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int autoSizeMaxTextSize=0x7f010054; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int autoSizeMinTextSize=0x7f010053; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoSizePresetSizes=0x7f010052; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int autoSizeStepGranularity=0x7f010051; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>uniform</code></td><td>1</td><td></td></tr> </table> */ public static final int autoSizeTextType=0x7f010050; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int background=0x7f01002e; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundSplit=0x7f010030; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int backgroundStacked=0x7f01002f; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int backgroundTint=0x7f010116; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int backgroundTintMode=0x7f010117; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int barLength=0x7f0100d5; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_autoHide=0x7f010141; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_hideable=0x7f01011e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_overlapTop=0x7f01014a; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> </table> */ public static final int behavior_peekHeight=0x7f01011d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_skipCollapsed=0x7f01011f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int borderWidth=0x7f01013f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int borderlessButtonStyle=0x7f01008b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomSheetDialogTheme=0x7f010139; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int bottomSheetStyle=0x7f01013a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarButtonStyle=0x7f010088; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=0x7f0100b8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNeutralButtonStyle=0x7f0100b9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarPositiveButtonStyle=0x7f0100b7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarStyle=0x7f010087; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> */ public static final int buttonGravity=0x7f01010b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonPanelSideLayout=0x7f010043; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyle=0x7f0100bb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonStyleSmall=0x7f0100bc; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int buttonTint=0x7f0100cd; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int buttonTintMode=0x7f0100ce; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardBackgroundColor=0x7f010017; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardCornerRadius=0x7f010018; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardElevation=0x7f010019; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardMaxElevation=0x7f01001a; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardPreventCornerOverlap=0x7f01001c; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int cardUseCompatPadding=0x7f01001b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkboxStyle=0x7f0100bd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f0100be; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeIcon=0x7f0100ee; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int closeItemLayout=0x7f010040; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int collapseContentDescription=0x7f01010d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapseIcon=0x7f01010c; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int collapsedTitleGravity=0x7f01012c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int collapsedTitleTextAppearance=0x7f010126; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int color=0x7f0100cf; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorAccent=0x7f0100aa; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorBackgroundFloating=0x7f0100b1; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorButtonNormal=0x7f0100ae; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlActivated=0x7f0100ac; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlHighlight=0x7f0100ad; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorControlNormal=0x7f0100ab; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int colorError=0x7f0100ca; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimary=0x7f0100a8; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimaryDark=0x7f0100a9; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorSwitchThumbNormal=0x7f0100af; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int commitIcon=0x7f0100f3; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentDescription=0x7f0100e0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEnd=0x7f010039; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEndWithActions=0x7f01003d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetLeft=0x7f01003a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetRight=0x7f01003b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStart=0x7f010038; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetStartWithNavigation=0x7f01003c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPadding=0x7f01001d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingBottom=0x7f010021; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingLeft=0x7f01001e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingRight=0x7f01001f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentPaddingTop=0x7f010020; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentScrim=0x7f010127; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int controlBackground=0x7f0100b0; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int counterEnabled=0x7f010160; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int counterMaxLength=0x7f010161; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int counterOverflowTextAppearance=0x7f010163; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int counterTextAppearance=0x7f010162; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int customNavigationLayout=0x7f010031; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int defaultQueryHint=0x7f0100ed; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dialogPreferredPadding=0x7f010080; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dialogTheme=0x7f01007f; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> */ public static final int displayOptions=0x7f010027; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int divider=0x7f01002d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerHorizontal=0x7f01008d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dividerPadding=0x7f0100d9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerVertical=0x7f01008c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int drawableSize=0x7f0100d1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int drawerArrowStyle=0x7f010022; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dropDownListViewStyle=0x7f01009f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int dropdownListPreferredItemHeight=0x7f010083; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextBackground=0x7f010094; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int editTextColor=0x7f010093; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextStyle=0x7f0100bf; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int elevation=0x7f01003e; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int errorEnabled=0x7f01015e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int errorTextAppearance=0x7f01015f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandActivityOverflowButtonDrawable=0x7f010042; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expanded=0x7f010118; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int expandedTitleGravity=0x7f01012d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMargin=0x7f010120; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginBottom=0x7f010124; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginEnd=0x7f010123; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginStart=0x7f010121; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int expandedTitleMarginTop=0x7f010122; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int expandedTitleTextAppearance=0x7f010125; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int externalRouteEnabledDrawable=0x7f010015; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> */ public static final int fabSize=0x7f01013d; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fastScrollEnabled=0x7f010004; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollHorizontalThumbDrawable=0x7f010007; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollHorizontalTrackDrawable=0x7f010008; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollVerticalThumbDrawable=0x7f010005; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollVerticalTrackDrawable=0x7f010006; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int font=0x7f010171; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontFamily=0x7f010055; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontProviderAuthority=0x7f01016a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fontProviderCerts=0x7f01016d; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>blocking</code></td><td>0</td><td></td></tr> <tr><td><code>async</code></td><td>1</td><td></td></tr> </table> */ public static final int fontProviderFetchStrategy=0x7f01016e; /** <p>May be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>forever</code></td><td>-1</td><td></td></tr> </table> */ public static final int fontProviderFetchTimeout=0x7f01016f; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontProviderPackage=0x7f01016b; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontProviderQuery=0x7f01016c; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>italic</code></td><td>1</td><td></td></tr> </table> */ public static final int fontStyle=0x7f010170; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int fontWeight=0x7f010172; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int foregroundInsidePadding=0x7f010142; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int gapBetweenBars=0x7f0100d2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=0x7f0100ef; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int headerLayout=0x7f010148; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int height=0x7f010023; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hideOnContentScroll=0x7f010037; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hintAnimationEnabled=0x7f010164; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int hintEnabled=0x7f01015d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int hintTextAppearance=0x7f01015c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeAsUpIndicator=0x7f010085; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeLayout=0x7f010032; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int icon=0x7f01002b; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconTint=0x7f0100e2; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int iconTintMode=0x7f0100e3; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int iconifiedByDefault=0x7f0100eb; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int imageButtonStyle=0x7f010095; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f010034; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int initialActivityCount=0x7f010041; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int insetForeground=0x7f010149; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int isLightTheme=0x7f010024; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int itemBackground=0x7f010146; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemIconTint=0x7f010144; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemPadding=0x7f010036; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int itemTextAppearance=0x7f010147; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int itemTextColor=0x7f010145; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int keylines=0x7f010131; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout=0x7f0100ea; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layoutManager=0x7f010000; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_anchor=0x7f010134; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int layout_anchorGravity=0x7f010136; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_behavior=0x7f010133; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> */ public static final int layout_collapseMode=0x7f01012f; /** <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_collapseParallaxMultiplier=0x7f010130; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> */ public static final int layout_dodgeInsetEdges=0x7f010138; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> */ public static final int layout_insetEdge=0x7f010137; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_keyline=0x7f010135; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> */ public static final int layout_scrollFlags=0x7f01011b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_scrollInterpolator=0x7f01011c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f0100a7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listDividerAlertDialog=0x7f010081; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listItemLayout=0x7f010047; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listLayout=0x7f010044; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f0100c7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listPopupWindowStyle=0x7f0100a0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeight=0x7f01009a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightLarge=0x7f01009c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightSmall=0x7f01009b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingLeft=0x7f01009d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemPaddingRight=0x7f01009e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int logo=0x7f01002c; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int logoDescription=0x7f010110; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxActionInlineWidth=0x7f01014b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxButtonHeight=0x7f01010a; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int measureWithLargestChild=0x7f0100d7; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteAudioTrackDrawable=0x7f010009; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteButtonStyle=0x7f01000a; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int mediaRouteButtonTint=0x7f010016; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteCloseDrawable=0x7f01000b; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteControlPanelThemeOverlay=0x7f01000c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteDefaultIconDrawable=0x7f01000d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRoutePauseDrawable=0x7f01000e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRoutePlayDrawable=0x7f01000f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteSpeakerGroupIconDrawable=0x7f010010; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteSpeakerIconDrawable=0x7f010011; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteStopDrawable=0x7f010012; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteTheme=0x7f010013; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int mediaRouteTvIconDrawable=0x7f010014; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int menu=0x7f010143; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f010045; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int navigationContentDescription=0x7f01010f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int navigationIcon=0x7f01010e; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> */ public static final int navigationMode=0x7f010026; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> */ public static final int numericModifiers=0x7f0100db; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int overlapAnchor=0x7f0100e6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingBottomNoButtons=0x7f0100e8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingEnd=0x7f010114; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingStart=0x7f010113; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int paddingTopNoTitle=0x7f0100e9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelBackground=0x7f0100a4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f0100a6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int panelMenuListWidth=0x7f0100a5; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int passwordToggleContentDescription=0x7f010167; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int passwordToggleDrawable=0x7f010166; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int passwordToggleEnabled=0x7f010165; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int passwordToggleTint=0x7f010168; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int passwordToggleTintMode=0x7f010169; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupMenuStyle=0x7f010091; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupTheme=0x7f01003f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupWindowStyle=0x7f010092; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int preserveIconSpacing=0x7f0100e4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int pressedTranslationZ=0x7f01013e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int progressBarPadding=0x7f010035; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int progressBarStyle=0x7f010033; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int queryBackground=0x7f0100f5; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int queryHint=0x7f0100ec; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int radioButtonStyle=0x7f0100c0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyle=0x7f0100c1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleIndicator=0x7f0100c2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f0100c3; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int reverseLayout=0x7f010002; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int rippleColor=0x7f01013c; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int scrimAnimationDuration=0x7f01012b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int scrimVisibleHeightTrigger=0x7f01012a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchHintIcon=0x7f0100f1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchIcon=0x7f0100f0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int searchViewStyle=0x7f010099; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int seekBarStyle=0x7f0100c4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackground=0x7f010089; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackgroundBorderless=0x7f01008a; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> */ public static final int showAsAction=0x7f0100dc; /** <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> */ public static final int showDividers=0x7f0100d8; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int showText=0x7f010101; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int showTitle=0x7f010048; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f010046; /** <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spanCount=0x7f010001; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int spinBars=0x7f0100d0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=0x7f010084; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerStyle=0x7f0100c5; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int splitTrack=0x7f010100; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int srcCompat=0x7f010049; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int stackFromEnd=0x7f010003; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_above_anchor=0x7f0100e7; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_collapsed=0x7f010119; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_collapsible=0x7f01011a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int statusBarBackground=0x7f010132; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int statusBarScrim=0x7f010128; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subMenuArrow=0x7f0100e5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int submitBackground=0x7f0100f6; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitle=0x7f010028; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextAppearance=0x7f010103; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int subtitleTextColor=0x7f010112; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int subtitleTextStyle=0x7f01002a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int suggestionRowLayout=0x7f0100f4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchMinWidth=0x7f0100fe; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int switchPadding=0x7f0100ff; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchStyle=0x7f0100c6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=0x7f0100fd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabBackground=0x7f01014f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabContentStart=0x7f01014e; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> */ public static final int tabGravity=0x7f010151; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabIndicatorColor=0x7f01014c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabIndicatorHeight=0x7f01014d; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMaxWidth=0x7f010153; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMinWidth=0x7f010152; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> */ public static final int tabMode=0x7f010150; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPadding=0x7f01015b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingBottom=0x7f01015a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingEnd=0x7f010159; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingStart=0x7f010157; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabPaddingTop=0x7f010158; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabSelectedTextColor=0x7f010156; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabTextAppearance=0x7f010154; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabTextColor=0x7f010155; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". */ public static final int textAllCaps=0x7f01004f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=0x7f01007c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItem=0x7f0100a1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSecondary=0x7f0100a2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f0100a3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=0x7f01007e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultSubtitle=0x7f010097; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSearchResultTitle=0x7f010096; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f01007d; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorAlertDialogListItem=0x7f0100b6; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorError=0x7f01013b; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int textColorSearchUrl=0x7f010098; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int theme=0x7f010115; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thickness=0x7f0100d6; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTextPadding=0x7f0100fc; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int thumbTint=0x7f0100f7; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int thumbTintMode=0x7f0100f8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tickMark=0x7f01004c; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tickMarkTint=0x7f01004d; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int tickMarkTintMode=0x7f01004e; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tint=0x7f01004a; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int tintMode=0x7f01004b; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int title=0x7f010025; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleEnabled=0x7f01012e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargin=0x7f010104; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginBottom=0x7f010108; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginEnd=0x7f010106; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginStart=0x7f010105; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMarginTop=0x7f010107; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleMargins=0x7f010109; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextAppearance=0x7f010102; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int titleTextColor=0x7f010111; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int titleTextStyle=0x7f010029; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarId=0x7f010129; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarNavigationButtonStyle=0x7f010090; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int toolbarStyle=0x7f01008f; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". */ public static final int tooltipForegroundColor=0x7f0100c9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tooltipFrameBackground=0x7f0100c8; /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tooltipText=0x7f0100e1; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int track=0x7f0100f9; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int trackTint=0x7f0100fa; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> */ public static final int trackTintMode=0x7f0100fb; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int useCompatPadding=0x7f010140; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int voiceIcon=0x7f0100f2; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBar=0x7f010056; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionBarOverlay=0x7f010058; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowActionModeOverlay=0x7f010059; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMajor=0x7f01005d; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedHeightMinor=0x7f01005b; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMajor=0x7f01005a; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowFixedWidthMinor=0x7f01005c; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMajor=0x7f01005e; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowMinWidthMinor=0x7f01005f; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int windowNoTitle=0x7f010057; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f0e0000; public static final int abc_allow_stacked_button_bar=0x7f0e0001; public static final int abc_config_actionMenuItemAllCaps=0x7f0e0002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f0e0003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0e0004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0d004f; public static final int abc_background_cache_hint_selector_material_light=0x7f0d0050; public static final int abc_btn_colored_borderless_text_material=0x7f0d0051; public static final int abc_btn_colored_text_material=0x7f0d0052; public static final int abc_color_highlight_material=0x7f0d0053; public static final int abc_hint_foreground_material_dark=0x7f0d0054; public static final int abc_hint_foreground_material_light=0x7f0d0055; public static final int abc_input_method_navigation_guard=0x7f0d0004; public static final int abc_primary_text_disable_only_material_dark=0x7f0d0056; public static final int abc_primary_text_disable_only_material_light=0x7f0d0057; public static final int abc_primary_text_material_dark=0x7f0d0058; public static final int abc_primary_text_material_light=0x7f0d0059; public static final int abc_search_url_text=0x7f0d005a; public static final int abc_search_url_text_normal=0x7f0d0005; public static final int abc_search_url_text_pressed=0x7f0d0006; public static final int abc_search_url_text_selected=0x7f0d0007; public static final int abc_secondary_text_material_dark=0x7f0d005b; public static final int abc_secondary_text_material_light=0x7f0d005c; public static final int abc_tint_btn_checkable=0x7f0d005d; public static final int abc_tint_default=0x7f0d005e; public static final int abc_tint_edittext=0x7f0d005f; public static final int abc_tint_seek_thumb=0x7f0d0060; public static final int abc_tint_spinner=0x7f0d0061; public static final int abc_tint_switch_track=0x7f0d0062; public static final int accent_material_dark=0x7f0d0008; public static final int accent_material_light=0x7f0d0009; public static final int background_floating_material_dark=0x7f0d000a; public static final int background_floating_material_light=0x7f0d000b; public static final int background_material_dark=0x7f0d000c; public static final int background_material_light=0x7f0d000d; public static final int bright_foreground_disabled_material_dark=0x7f0d000e; public static final int bright_foreground_disabled_material_light=0x7f0d000f; public static final int bright_foreground_inverse_material_dark=0x7f0d0010; public static final int bright_foreground_inverse_material_light=0x7f0d0011; public static final int bright_foreground_material_dark=0x7f0d0012; public static final int bright_foreground_material_light=0x7f0d0013; public static final int button_material_dark=0x7f0d0014; public static final int button_material_light=0x7f0d0015; public static final int cardview_dark_background=0x7f0d0000; public static final int cardview_light_background=0x7f0d0001; public static final int cardview_shadow_end_color=0x7f0d0002; public static final int cardview_shadow_start_color=0x7f0d0003; public static final int colorAccent=0x7f0d004e; public static final int colorPrimary=0x7f0d004c; public static final int colorPrimaryDark=0x7f0d004d; public static final int design_bottom_navigation_shadow_color=0x7f0d0040; public static final int design_error=0x7f0d0063; public static final int design_fab_shadow_end_color=0x7f0d0041; public static final int design_fab_shadow_mid_color=0x7f0d0042; public static final int design_fab_shadow_start_color=0x7f0d0043; public static final int design_fab_stroke_end_inner_color=0x7f0d0044; public static final int design_fab_stroke_end_outer_color=0x7f0d0045; public static final int design_fab_stroke_top_inner_color=0x7f0d0046; public static final int design_fab_stroke_top_outer_color=0x7f0d0047; public static final int design_snackbar_background_color=0x7f0d0048; public static final int design_tint_password_toggle=0x7f0d0064; public static final int dim_foreground_disabled_material_dark=0x7f0d0016; public static final int dim_foreground_disabled_material_light=0x7f0d0017; public static final int dim_foreground_material_dark=0x7f0d0018; public static final int dim_foreground_material_light=0x7f0d0019; public static final int error_color_material=0x7f0d001a; public static final int foreground_material_dark=0x7f0d001b; public static final int foreground_material_light=0x7f0d001c; public static final int highlighted_text_material_dark=0x7f0d001d; public static final int highlighted_text_material_light=0x7f0d001e; public static final int launcher_background=0x7f0d004b; public static final int material_blue_grey_800=0x7f0d001f; public static final int material_blue_grey_900=0x7f0d0020; public static final int material_blue_grey_950=0x7f0d0021; public static final int material_deep_teal_200=0x7f0d0022; public static final int material_deep_teal_500=0x7f0d0023; public static final int material_grey_100=0x7f0d0024; public static final int material_grey_300=0x7f0d0025; public static final int material_grey_50=0x7f0d0026; public static final int material_grey_600=0x7f0d0027; public static final int material_grey_800=0x7f0d0028; public static final int material_grey_850=0x7f0d0029; public static final int material_grey_900=0x7f0d002a; public static final int notification_action_color_filter=0x7f0d0049; public static final int notification_icon_bg_color=0x7f0d004a; public static final int notification_material_background_media_default_color=0x7f0d003f; public static final int primary_dark_material_dark=0x7f0d002b; public static final int primary_dark_material_light=0x7f0d002c; public static final int primary_material_dark=0x7f0d002d; public static final int primary_material_light=0x7f0d002e; public static final int primary_text_default_material_dark=0x7f0d002f; public static final int primary_text_default_material_light=0x7f0d0030; public static final int primary_text_disabled_material_dark=0x7f0d0031; public static final int primary_text_disabled_material_light=0x7f0d0032; public static final int ripple_material_dark=0x7f0d0033; public static final int ripple_material_light=0x7f0d0034; public static final int secondary_text_default_material_dark=0x7f0d0035; public static final int secondary_text_default_material_light=0x7f0d0036; public static final int secondary_text_disabled_material_dark=0x7f0d0037; public static final int secondary_text_disabled_material_light=0x7f0d0038; public static final int switch_thumb_disabled_material_dark=0x7f0d0039; public static final int switch_thumb_disabled_material_light=0x7f0d003a; public static final int switch_thumb_material_dark=0x7f0d0065; public static final int switch_thumb_material_light=0x7f0d0066; public static final int switch_thumb_normal_material_dark=0x7f0d003b; public static final int switch_thumb_normal_material_light=0x7f0d003c; public static final int tooltip_background_dark=0x7f0d003d; public static final int tooltip_background_light=0x7f0d003e; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f08001b; public static final int abc_action_bar_content_inset_with_nav=0x7f08001c; public static final int abc_action_bar_default_height_material=0x7f080010; public static final int abc_action_bar_default_padding_end_material=0x7f08001d; public static final int abc_action_bar_default_padding_start_material=0x7f08001e; public static final int abc_action_bar_elevation_material=0x7f080020; public static final int abc_action_bar_icon_vertical_padding_material=0x7f080021; public static final int abc_action_bar_overflow_padding_end_material=0x7f080022; public static final int abc_action_bar_overflow_padding_start_material=0x7f080023; public static final int abc_action_bar_progress_bar_size=0x7f080011; public static final int abc_action_bar_stacked_max_height=0x7f080024; public static final int abc_action_bar_stacked_tab_max_width=0x7f080025; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f080026; public static final int abc_action_bar_subtitle_top_margin_material=0x7f080027; public static final int abc_action_button_min_height_material=0x7f080028; public static final int abc_action_button_min_width_material=0x7f080029; public static final int abc_action_button_min_width_overflow_material=0x7f08002a; public static final int abc_alert_dialog_button_bar_height=0x7f08000f; public static final int abc_button_inset_horizontal_material=0x7f08002b; public static final int abc_button_inset_vertical_material=0x7f08002c; public static final int abc_button_padding_horizontal_material=0x7f08002d; public static final int abc_button_padding_vertical_material=0x7f08002e; public static final int abc_cascading_menus_min_smallest_width=0x7f08002f; public static final int abc_config_prefDialogWidth=0x7f080014; public static final int abc_control_corner_material=0x7f080030; public static final int abc_control_inset_material=0x7f080031; public static final int abc_control_padding_material=0x7f080032; public static final int abc_dialog_fixed_height_major=0x7f080015; public static final int abc_dialog_fixed_height_minor=0x7f080016; public static final int abc_dialog_fixed_width_major=0x7f080017; public static final int abc_dialog_fixed_width_minor=0x7f080018; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f080033; public static final int abc_dialog_list_padding_top_no_title=0x7f080034; public static final int abc_dialog_min_width_major=0x7f080019; public static final int abc_dialog_min_width_minor=0x7f08001a; public static final int abc_dialog_padding_material=0x7f080035; public static final int abc_dialog_padding_top_material=0x7f080036; public static final int abc_dialog_title_divider_material=0x7f080037; public static final int abc_disabled_alpha_material_dark=0x7f080038; public static final int abc_disabled_alpha_material_light=0x7f080039; public static final int abc_dropdownitem_icon_width=0x7f08003a; public static final int abc_dropdownitem_text_padding_left=0x7f08003b; public static final int abc_dropdownitem_text_padding_right=0x7f08003c; public static final int abc_edit_text_inset_bottom_material=0x7f08003d; public static final int abc_edit_text_inset_horizontal_material=0x7f08003e; public static final int abc_edit_text_inset_top_material=0x7f08003f; public static final int abc_floating_window_z=0x7f080040; public static final int abc_list_item_padding_horizontal_material=0x7f080041; public static final int abc_panel_menu_list_width=0x7f080042; public static final int abc_progress_bar_height_material=0x7f080043; public static final int abc_search_view_preferred_height=0x7f080044; public static final int abc_search_view_preferred_width=0x7f080045; public static final int abc_seekbar_track_background_height_material=0x7f080046; public static final int abc_seekbar_track_progress_height_material=0x7f080047; public static final int abc_select_dialog_padding_start_material=0x7f080048; public static final int abc_switch_padding=0x7f08001f; public static final int abc_text_size_body_1_material=0x7f080049; public static final int abc_text_size_body_2_material=0x7f08004a; public static final int abc_text_size_button_material=0x7f08004b; public static final int abc_text_size_caption_material=0x7f08004c; public static final int abc_text_size_display_1_material=0x7f08004d; public static final int abc_text_size_display_2_material=0x7f08004e; public static final int abc_text_size_display_3_material=0x7f08004f; public static final int abc_text_size_display_4_material=0x7f080050; public static final int abc_text_size_headline_material=0x7f080051; public static final int abc_text_size_large_material=0x7f080052; public static final int abc_text_size_medium_material=0x7f080053; public static final int abc_text_size_menu_header_material=0x7f080054; public static final int abc_text_size_menu_material=0x7f080055; public static final int abc_text_size_small_material=0x7f080056; public static final int abc_text_size_subhead_material=0x7f080057; public static final int abc_text_size_subtitle_material_toolbar=0x7f080012; public static final int abc_text_size_title_material=0x7f080058; public static final int abc_text_size_title_material_toolbar=0x7f080013; public static final int cardview_compat_inset_shadow=0x7f08000c; public static final int cardview_default_elevation=0x7f08000d; public static final int cardview_default_radius=0x7f08000e; public static final int compat_button_inset_horizontal_material=0x7f080094; public static final int compat_button_inset_vertical_material=0x7f080095; public static final int compat_button_padding_horizontal_material=0x7f080096; public static final int compat_button_padding_vertical_material=0x7f080097; public static final int compat_control_corner_material=0x7f080098; public static final int design_appbar_elevation=0x7f080072; public static final int design_bottom_navigation_active_item_max_width=0x7f080073; public static final int design_bottom_navigation_active_text_size=0x7f080074; public static final int design_bottom_navigation_elevation=0x7f080075; public static final int design_bottom_navigation_height=0x7f080076; public static final int design_bottom_navigation_item_max_width=0x7f080077; public static final int design_bottom_navigation_item_min_width=0x7f080078; public static final int design_bottom_navigation_margin=0x7f080079; public static final int design_bottom_navigation_shadow_height=0x7f08007a; public static final int design_bottom_navigation_text_size=0x7f08007b; public static final int design_bottom_sheet_modal_elevation=0x7f08007c; public static final int design_bottom_sheet_peek_height_min=0x7f08007d; public static final int design_fab_border_width=0x7f08007e; public static final int design_fab_elevation=0x7f08007f; public static final int design_fab_image_size=0x7f080080; public static final int design_fab_size_mini=0x7f080081; public static final int design_fab_size_normal=0x7f080082; public static final int design_fab_translation_z_pressed=0x7f080083; public static final int design_navigation_elevation=0x7f080084; public static final int design_navigation_icon_padding=0x7f080085; public static final int design_navigation_icon_size=0x7f080086; public static final int design_navigation_max_width=0x7f08006a; public static final int design_navigation_padding_bottom=0x7f080087; public static final int design_navigation_separator_vertical_padding=0x7f080088; public static final int design_snackbar_action_inline_max_width=0x7f08006b; public static final int design_snackbar_background_corner_radius=0x7f08006c; public static final int design_snackbar_elevation=0x7f080089; public static final int design_snackbar_extra_spacing_horizontal=0x7f08006d; public static final int design_snackbar_max_width=0x7f08006e; public static final int design_snackbar_min_width=0x7f08006f; public static final int design_snackbar_padding_horizontal=0x7f08008a; public static final int design_snackbar_padding_vertical=0x7f08008b; public static final int design_snackbar_padding_vertical_2lines=0x7f080070; public static final int design_snackbar_text_size=0x7f08008c; public static final int design_tab_max_width=0x7f08008d; public static final int design_tab_scrollable_min_width=0x7f080071; public static final int design_tab_text_size=0x7f08008e; public static final int design_tab_text_size_2line=0x7f08008f; public static final int disabled_alpha_material_dark=0x7f080059; public static final int disabled_alpha_material_light=0x7f08005a; public static final int fastscroll_default_thickness=0x7f080000; public static final int fastscroll_margin=0x7f080001; public static final int fastscroll_minimum_range=0x7f080002; public static final int highlight_alpha_material_colored=0x7f08005b; public static final int highlight_alpha_material_dark=0x7f08005c; public static final int highlight_alpha_material_light=0x7f08005d; public static final int hint_alpha_material_dark=0x7f08005e; public static final int hint_alpha_material_light=0x7f08005f; public static final int hint_pressed_alpha_material_dark=0x7f080060; public static final int hint_pressed_alpha_material_light=0x7f080061; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080003; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f080004; public static final int item_touch_helper_swipe_escape_velocity=0x7f080005; public static final int mr_controller_volume_group_list_item_height=0x7f080006; public static final int mr_controller_volume_group_list_item_icon_size=0x7f080007; public static final int mr_controller_volume_group_list_max_height=0x7f080008; public static final int mr_controller_volume_group_list_padding_top=0x7f08000b; public static final int mr_dialog_fixed_width_major=0x7f080009; public static final int mr_dialog_fixed_width_minor=0x7f08000a; public static final int notification_action_icon_size=0x7f080099; public static final int notification_action_text_size=0x7f08009a; public static final int notification_big_circle_margin=0x7f08009b; public static final int notification_content_margin_start=0x7f080091; public static final int notification_large_icon_height=0x7f08009c; public static final int notification_large_icon_width=0x7f08009d; public static final int notification_main_column_padding_top=0x7f080092; public static final int notification_media_narrow_margin=0x7f080093; public static final int notification_right_icon_size=0x7f08009e; public static final int notification_right_side_padding_top=0x7f080090; public static final int notification_small_icon_background_padding=0x7f08009f; public static final int notification_small_icon_size_as_large=0x7f0800a0; public static final int notification_subtext_size=0x7f0800a1; public static final int notification_top_pad=0x7f0800a2; public static final int notification_top_pad_large_text=0x7f0800a3; public static final int tooltip_corner_radius=0x7f080062; public static final int tooltip_horizontal_padding=0x7f080063; public static final int tooltip_margin=0x7f080064; public static final int tooltip_precise_anchor_extra_offset=0x7f080065; public static final int tooltip_precise_anchor_threshold=0x7f080066; public static final int tooltip_vertical_padding=0x7f080067; public static final int tooltip_y_offset_non_touch=0x7f080068; public static final int tooltip_y_offset_touch=0x7f080069; } public static final class drawable { public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; public static final int abc_action_bar_item_background_material=0x7f020001; public static final int abc_btn_borderless_material=0x7f020002; public static final int abc_btn_check_material=0x7f020003; public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; public static final int abc_btn_colored_material=0x7f020006; public static final int abc_btn_default_mtrl_shape=0x7f020007; public static final int abc_btn_radio_material=0x7f020008; public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000b; public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000c; public static final int abc_cab_background_internal_bg=0x7f02000d; public static final int abc_cab_background_top_material=0x7f02000e; public static final int abc_cab_background_top_mtrl_alpha=0x7f02000f; public static final int abc_control_background_material=0x7f020010; public static final int abc_dialog_material_background=0x7f020011; public static final int abc_edit_text_material=0x7f020012; public static final int abc_ic_ab_back_material=0x7f020013; public static final int abc_ic_arrow_drop_right_black_24dp=0x7f020014; public static final int abc_ic_clear_material=0x7f020015; public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020016; public static final int abc_ic_go_search_api_material=0x7f020017; public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018; public static final int abc_ic_menu_cut_mtrl_alpha=0x7f020019; public static final int abc_ic_menu_overflow_material=0x7f02001a; public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b; public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c; public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001d; public static final int abc_ic_search_api_material=0x7f02001e; public static final int abc_ic_star_black_16dp=0x7f02001f; public static final int abc_ic_star_black_36dp=0x7f020020; public static final int abc_ic_star_black_48dp=0x7f020021; public static final int abc_ic_star_half_black_16dp=0x7f020022; public static final int abc_ic_star_half_black_36dp=0x7f020023; public static final int abc_ic_star_half_black_48dp=0x7f020024; public static final int abc_ic_voice_search_api_material=0x7f020025; public static final int abc_item_background_holo_dark=0x7f020026; public static final int abc_item_background_holo_light=0x7f020027; public static final int abc_list_divider_mtrl_alpha=0x7f020028; public static final int abc_list_focused_holo=0x7f020029; public static final int abc_list_longpressed_holo=0x7f02002a; public static final int abc_list_pressed_holo_dark=0x7f02002b; public static final int abc_list_pressed_holo_light=0x7f02002c; public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; public static final int abc_list_selector_disabled_holo_light=0x7f020030; public static final int abc_list_selector_holo_dark=0x7f020031; public static final int abc_list_selector_holo_light=0x7f020032; public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; public static final int abc_popup_background_mtrl_mult=0x7f020034; public static final int abc_ratingbar_indicator_material=0x7f020035; public static final int abc_ratingbar_material=0x7f020036; public static final int abc_ratingbar_small_material=0x7f020037; public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; public static final int abc_seekbar_thumb_material=0x7f02003d; public static final int abc_seekbar_tick_mark_material=0x7f02003e; public static final int abc_seekbar_track_material=0x7f02003f; public static final int abc_spinner_mtrl_am_alpha=0x7f020040; public static final int abc_spinner_textfield_background_material=0x7f020041; public static final int abc_switch_thumb_material=0x7f020042; public static final int abc_switch_track_mtrl_alpha=0x7f020043; public static final int abc_tab_indicator_material=0x7f020044; public static final int abc_tab_indicator_mtrl_alpha=0x7f020045; public static final int abc_text_cursor_material=0x7f020046; public static final int abc_text_select_handle_left_mtrl_dark=0x7f020047; public static final int abc_text_select_handle_left_mtrl_light=0x7f020048; public static final int abc_text_select_handle_middle_mtrl_dark=0x7f020049; public static final int abc_text_select_handle_middle_mtrl_light=0x7f02004a; public static final int abc_text_select_handle_right_mtrl_dark=0x7f02004b; public static final int abc_text_select_handle_right_mtrl_light=0x7f02004c; public static final int abc_textfield_activated_mtrl_alpha=0x7f02004d; public static final int abc_textfield_default_mtrl_alpha=0x7f02004e; public static final int abc_textfield_search_activated_mtrl_alpha=0x7f02004f; public static final int abc_textfield_search_default_mtrl_alpha=0x7f020050; public static final int abc_textfield_search_material=0x7f020051; public static final int abc_vector_test=0x7f020052; public static final int avd_hide_password=0x7f020053; public static final int avd_hide_password_1=0x7f02012f; public static final int avd_hide_password_2=0x7f020130; public static final int avd_hide_password_3=0x7f020131; public static final int avd_show_password=0x7f020054; public static final int avd_show_password_1=0x7f020132; public static final int avd_show_password_2=0x7f020133; public static final int avd_show_password_3=0x7f020134; public static final int design_bottom_navigation_item_background=0x7f020055; public static final int design_fab_background=0x7f020056; public static final int design_ic_visibility=0x7f020057; public static final int design_ic_visibility_off=0x7f020058; public static final int design_password_eye=0x7f020059; public static final int design_snackbar_background=0x7f02005a; public static final int ic_audiotrack_dark=0x7f02005b; public static final int ic_audiotrack_light=0x7f02005c; public static final int ic_dialog_close_dark=0x7f02005d; public static final int ic_dialog_close_light=0x7f02005e; public static final int ic_group_collapse_00=0x7f02005f; public static final int ic_group_collapse_01=0x7f020060; public static final int ic_group_collapse_02=0x7f020061; public static final int ic_group_collapse_03=0x7f020062; public static final int ic_group_collapse_04=0x7f020063; public static final int ic_group_collapse_05=0x7f020064; public static final int ic_group_collapse_06=0x7f020065; public static final int ic_group_collapse_07=0x7f020066; public static final int ic_group_collapse_08=0x7f020067; public static final int ic_group_collapse_09=0x7f020068; public static final int ic_group_collapse_10=0x7f020069; public static final int ic_group_collapse_11=0x7f02006a; public static final int ic_group_collapse_12=0x7f02006b; public static final int ic_group_collapse_13=0x7f02006c; public static final int ic_group_collapse_14=0x7f02006d; public static final int ic_group_collapse_15=0x7f02006e; public static final int ic_group_expand_00=0x7f02006f; public static final int ic_group_expand_01=0x7f020070; public static final int ic_group_expand_02=0x7f020071; public static final int ic_group_expand_03=0x7f020072; public static final int ic_group_expand_04=0x7f020073; public static final int ic_group_expand_05=0x7f020074; public static final int ic_group_expand_06=0x7f020075; public static final int ic_group_expand_07=0x7f020076; public static final int ic_group_expand_08=0x7f020077; public static final int ic_group_expand_09=0x7f020078; public static final int ic_group_expand_10=0x7f020079; public static final int ic_group_expand_11=0x7f02007a; public static final int ic_group_expand_12=0x7f02007b; public static final int ic_group_expand_13=0x7f02007c; public static final int ic_group_expand_14=0x7f02007d; public static final int ic_group_expand_15=0x7f02007e; public static final int ic_media_pause_dark=0x7f02007f; public static final int ic_media_pause_light=0x7f020080; public static final int ic_media_play_dark=0x7f020081; public static final int ic_media_play_light=0x7f020082; public static final int ic_media_stop_dark=0x7f020083; public static final int ic_media_stop_light=0x7f020084; public static final int ic_mr_button_connected_00_dark=0x7f020085; public static final int ic_mr_button_connected_00_light=0x7f020086; public static final int ic_mr_button_connected_01_dark=0x7f020087; public static final int ic_mr_button_connected_01_light=0x7f020088; public static final int ic_mr_button_connected_02_dark=0x7f020089; public static final int ic_mr_button_connected_02_light=0x7f02008a; public static final int ic_mr_button_connected_03_dark=0x7f02008b; public static final int ic_mr_button_connected_03_light=0x7f02008c; public static final int ic_mr_button_connected_04_dark=0x7f02008d; public static final int ic_mr_button_connected_04_light=0x7f02008e; public static final int ic_mr_button_connected_05_dark=0x7f02008f; public static final int ic_mr_button_connected_05_light=0x7f020090; public static final int ic_mr_button_connected_06_dark=0x7f020091; public static final int ic_mr_button_connected_06_light=0x7f020092; public static final int ic_mr_button_connected_07_dark=0x7f020093; public static final int ic_mr_button_connected_07_light=0x7f020094; public static final int ic_mr_button_connected_08_dark=0x7f020095; public static final int ic_mr_button_connected_08_light=0x7f020096; public static final int ic_mr_button_connected_09_dark=0x7f020097; public static final int ic_mr_button_connected_09_light=0x7f020098; public static final int ic_mr_button_connected_10_dark=0x7f020099; public static final int ic_mr_button_connected_10_light=0x7f02009a; public static final int ic_mr_button_connected_11_dark=0x7f02009b; public static final int ic_mr_button_connected_11_light=0x7f02009c; public static final int ic_mr_button_connected_12_dark=0x7f02009d; public static final int ic_mr_button_connected_12_light=0x7f02009e; public static final int ic_mr_button_connected_13_dark=0x7f02009f; public static final int ic_mr_button_connected_13_light=0x7f0200a0; public static final int ic_mr_button_connected_14_dark=0x7f0200a1; public static final int ic_mr_button_connected_14_light=0x7f0200a2; public static final int ic_mr_button_connected_15_dark=0x7f0200a3; public static final int ic_mr_button_connected_15_light=0x7f0200a4; public static final int ic_mr_button_connected_16_dark=0x7f0200a5; public static final int ic_mr_button_connected_16_light=0x7f0200a6; public static final int ic_mr_button_connected_17_dark=0x7f0200a7; public static final int ic_mr_button_connected_17_light=0x7f0200a8; public static final int ic_mr_button_connected_18_dark=0x7f0200a9; public static final int ic_mr_button_connected_18_light=0x7f0200aa; public static final int ic_mr_button_connected_19_dark=0x7f0200ab; public static final int ic_mr_button_connected_19_light=0x7f0200ac; public static final int ic_mr_button_connected_20_dark=0x7f0200ad; public static final int ic_mr_button_connected_20_light=0x7f0200ae; public static final int ic_mr_button_connected_21_dark=0x7f0200af; public static final int ic_mr_button_connected_21_light=0x7f0200b0; public static final int ic_mr_button_connected_22_dark=0x7f0200b1; public static final int ic_mr_button_connected_22_light=0x7f0200b2; public static final int ic_mr_button_connected_23_dark=0x7f0200b3; public static final int ic_mr_button_connected_23_light=0x7f0200b4; public static final int ic_mr_button_connected_24_dark=0x7f0200b5; public static final int ic_mr_button_connected_24_light=0x7f0200b6; public static final int ic_mr_button_connected_25_dark=0x7f0200b7; public static final int ic_mr_button_connected_25_light=0x7f0200b8; public static final int ic_mr_button_connected_26_dark=0x7f0200b9; public static final int ic_mr_button_connected_26_light=0x7f0200ba; public static final int ic_mr_button_connected_27_dark=0x7f0200bb; public static final int ic_mr_button_connected_27_light=0x7f0200bc; public static final int ic_mr_button_connected_28_dark=0x7f0200bd; public static final int ic_mr_button_connected_28_light=0x7f0200be; public static final int ic_mr_button_connected_29_dark=0x7f0200bf; public static final int ic_mr_button_connected_29_light=0x7f0200c0; public static final int ic_mr_button_connected_30_dark=0x7f0200c1; public static final int ic_mr_button_connected_30_light=0x7f0200c2; public static final int ic_mr_button_connecting_00_dark=0x7f0200c3; public static final int ic_mr_button_connecting_00_light=0x7f0200c4; public static final int ic_mr_button_connecting_01_dark=0x7f0200c5; public static final int ic_mr_button_connecting_01_light=0x7f0200c6; public static final int ic_mr_button_connecting_02_dark=0x7f0200c7; public static final int ic_mr_button_connecting_02_light=0x7f0200c8; public static final int ic_mr_button_connecting_03_dark=0x7f0200c9; public static final int ic_mr_button_connecting_03_light=0x7f0200ca; public static final int ic_mr_button_connecting_04_dark=0x7f0200cb; public static final int ic_mr_button_connecting_04_light=0x7f0200cc; public static final int ic_mr_button_connecting_05_dark=0x7f0200cd; public static final int ic_mr_button_connecting_05_light=0x7f0200ce; public static final int ic_mr_button_connecting_06_dark=0x7f0200cf; public static final int ic_mr_button_connecting_06_light=0x7f0200d0; public static final int ic_mr_button_connecting_07_dark=0x7f0200d1; public static final int ic_mr_button_connecting_07_light=0x7f0200d2; public static final int ic_mr_button_connecting_08_dark=0x7f0200d3; public static final int ic_mr_button_connecting_08_light=0x7f0200d4; public static final int ic_mr_button_connecting_09_dark=0x7f0200d5; public static final int ic_mr_button_connecting_09_light=0x7f0200d6; public static final int ic_mr_button_connecting_10_dark=0x7f0200d7; public static final int ic_mr_button_connecting_10_light=0x7f0200d8; public static final int ic_mr_button_connecting_11_dark=0x7f0200d9; public static final int ic_mr_button_connecting_11_light=0x7f0200da; public static final int ic_mr_button_connecting_12_dark=0x7f0200db; public static final int ic_mr_button_connecting_12_light=0x7f0200dc; public static final int ic_mr_button_connecting_13_dark=0x7f0200dd; public static final int ic_mr_button_connecting_13_light=0x7f0200de; public static final int ic_mr_button_connecting_14_dark=0x7f0200df; public static final int ic_mr_button_connecting_14_light=0x7f0200e0; public static final int ic_mr_button_connecting_15_dark=0x7f0200e1; public static final int ic_mr_button_connecting_15_light=0x7f0200e2; public static final int ic_mr_button_connecting_16_dark=0x7f0200e3; public static final int ic_mr_button_connecting_16_light=0x7f0200e4; public static final int ic_mr_button_connecting_17_dark=0x7f0200e5; public static final int ic_mr_button_connecting_17_light=0x7f0200e6; public static final int ic_mr_button_connecting_18_dark=0x7f0200e7; public static final int ic_mr_button_connecting_18_light=0x7f0200e8; public static final int ic_mr_button_connecting_19_dark=0x7f0200e9; public static final int ic_mr_button_connecting_19_light=0x7f0200ea; public static final int ic_mr_button_connecting_20_dark=0x7f0200eb; public static final int ic_mr_button_connecting_20_light=0x7f0200ec; public static final int ic_mr_button_connecting_21_dark=0x7f0200ed; public static final int ic_mr_button_connecting_21_light=0x7f0200ee; public static final int ic_mr_button_connecting_22_dark=0x7f0200ef; public static final int ic_mr_button_connecting_22_light=0x7f0200f0; public static final int ic_mr_button_connecting_23_dark=0x7f0200f1; public static final int ic_mr_button_connecting_23_light=0x7f0200f2; public static final int ic_mr_button_connecting_24_dark=0x7f0200f3; public static final int ic_mr_button_connecting_24_light=0x7f0200f4; public static final int ic_mr_button_connecting_25_dark=0x7f0200f5; public static final int ic_mr_button_connecting_25_light=0x7f0200f6; public static final int ic_mr_button_connecting_26_dark=0x7f0200f7; public static final int ic_mr_button_connecting_26_light=0x7f0200f8; public static final int ic_mr_button_connecting_27_dark=0x7f0200f9; public static final int ic_mr_button_connecting_27_light=0x7f0200fa; public static final int ic_mr_button_connecting_28_dark=0x7f0200fb; public static final int ic_mr_button_connecting_28_light=0x7f0200fc; public static final int ic_mr_button_connecting_29_dark=0x7f0200fd; public static final int ic_mr_button_connecting_29_light=0x7f0200fe; public static final int ic_mr_button_connecting_30_dark=0x7f0200ff; public static final int ic_mr_button_connecting_30_light=0x7f020100; public static final int ic_mr_button_disabled_dark=0x7f020101; public static final int ic_mr_button_disabled_light=0x7f020102; public static final int ic_mr_button_disconnected_dark=0x7f020103; public static final int ic_mr_button_disconnected_light=0x7f020104; public static final int ic_mr_button_grey=0x7f020105; public static final int ic_vol_type_speaker_dark=0x7f020106; public static final int ic_vol_type_speaker_group_dark=0x7f020107; public static final int ic_vol_type_speaker_group_light=0x7f020108; public static final int ic_vol_type_speaker_light=0x7f020109; public static final int ic_vol_type_tv_dark=0x7f02010a; public static final int ic_vol_type_tv_light=0x7f02010b; public static final int mr_button_connected_dark=0x7f02010c; public static final int mr_button_connected_light=0x7f02010d; public static final int mr_button_connecting_dark=0x7f02010e; public static final int mr_button_connecting_light=0x7f02010f; public static final int mr_button_dark=0x7f020110; public static final int mr_button_light=0x7f020111; public static final int mr_dialog_close_dark=0x7f020112; public static final int mr_dialog_close_light=0x7f020113; public static final int mr_dialog_material_background_dark=0x7f020114; public static final int mr_dialog_material_background_light=0x7f020115; public static final int mr_group_collapse=0x7f020116; public static final int mr_group_expand=0x7f020117; public static final int mr_media_pause_dark=0x7f020118; public static final int mr_media_pause_light=0x7f020119; public static final int mr_media_play_dark=0x7f02011a; public static final int mr_media_play_light=0x7f02011b; public static final int mr_media_stop_dark=0x7f02011c; public static final int mr_media_stop_light=0x7f02011d; public static final int mr_vol_type_audiotrack_dark=0x7f02011e; public static final int mr_vol_type_audiotrack_light=0x7f02011f; public static final int navigation_empty_icon=0x7f020120; public static final int notification_action_background=0x7f020121; public static final int notification_bg=0x7f020122; public static final int notification_bg_low=0x7f020123; public static final int notification_bg_low_normal=0x7f020124; public static final int notification_bg_low_pressed=0x7f020125; public static final int notification_bg_normal=0x7f020126; public static final int notification_bg_normal_pressed=0x7f020127; public static final int notification_icon_background=0x7f020128; public static final int notification_template_icon_bg=0x7f02012d; public static final int notification_template_icon_low_bg=0x7f02012e; public static final int notification_tile_bg=0x7f020129; public static final int notify_panel_notification_icon_bg=0x7f02012a; public static final int tooltip_frame_dark=0x7f02012b; public static final int tooltip_frame_light=0x7f02012c; } public static final class id { public static final int ALT=0x7f090032; public static final int CTRL=0x7f090033; public static final int FUNCTION=0x7f090034; public static final int META=0x7f090035; public static final int SHIFT=0x7f090036; public static final int SYM=0x7f090037; public static final int action0=0x7f0900b6; public static final int action_bar=0x7f09007c; public static final int action_bar_activity_content=0x7f090001; public static final int action_bar_container=0x7f09007b; public static final int action_bar_root=0x7f090077; public static final int action_bar_spinner=0x7f090002; public static final int action_bar_subtitle=0x7f09005b; public static final int action_bar_title=0x7f09005a; public static final int action_container=0x7f0900b3; public static final int action_context_bar=0x7f09007d; public static final int action_divider=0x7f0900ba; public static final int action_image=0x7f0900b4; public static final int action_menu_divider=0x7f090003; public static final int action_menu_presenter=0x7f090004; public static final int action_mode_bar=0x7f090079; public static final int action_mode_bar_stub=0x7f090078; public static final int action_mode_close_button=0x7f09005c; public static final int action_text=0x7f0900b5; public static final int actions=0x7f0900c3; public static final int activity_chooser_view_content=0x7f09005d; public static final int add=0x7f090027; public static final int alertTitle=0x7f090070; public static final int all=0x7f090052; public static final int always=0x7f090038; public static final int async=0x7f090056; public static final int auto=0x7f090044; public static final int beginning=0x7f09002f; public static final int blocking=0x7f090057; public static final int bottom=0x7f09003d; public static final int buttonPanel=0x7f090063; public static final int cancel_action=0x7f0900b7; public static final int center=0x7f090045; public static final int center_horizontal=0x7f090046; public static final int center_vertical=0x7f090047; public static final int checkbox=0x7f090073; public static final int chronometer=0x7f0900bf; public static final int clip_horizontal=0x7f09004e; public static final int clip_vertical=0x7f09004f; public static final int collapseActionView=0x7f090039; public static final int container=0x7f09008d; public static final int contentPanel=0x7f090066; public static final int coordinator=0x7f09008e; public static final int custom=0x7f09006d; public static final int customPanel=0x7f09006c; public static final int decor_content_parent=0x7f09007a; public static final int default_activity_button=0x7f090060; public static final int design_bottom_sheet=0x7f090090; public static final int design_menu_item_action_area=0x7f090097; public static final int design_menu_item_action_area_stub=0x7f090096; public static final int design_menu_item_text=0x7f090095; public static final int design_navigation_view=0x7f090094; public static final int disableHome=0x7f090020; public static final int edit_query=0x7f09007e; public static final int end=0x7f090030; public static final int end_padder=0x7f0900c5; public static final int enterAlways=0x7f09003f; public static final int enterAlwaysCollapsed=0x7f090040; public static final int exitUntilCollapsed=0x7f090041; public static final int expand_activities_button=0x7f09005e; public static final int expanded_menu=0x7f090072; public static final int fill=0x7f090050; public static final int fill_horizontal=0x7f090051; public static final int fill_vertical=0x7f090048; public static final int fixed=0x7f090054; public static final int forever=0x7f090058; public static final int ghost_view=0x7f09000a; public static final int home=0x7f090005; public static final int homeAsUp=0x7f090021; public static final int icon=0x7f090062; public static final int icon_group=0x7f0900c4; public static final int ifRoom=0x7f09003a; public static final int image=0x7f09005f; public static final int info=0x7f0900c0; public static final int italic=0x7f090059; public static final int item_touch_helper_previous_elevation=0x7f090000; public static final int largeLabel=0x7f09008c; public static final int left=0x7f090049; public static final int line1=0x7f090017; public static final int line3=0x7f090018; public static final int listMode=0x7f09001d; public static final int list_item=0x7f090061; public static final int masked=0x7f0900ca; public static final int media_actions=0x7f0900b9; public static final int message=0x7f0900c8; public static final int middle=0x7f090031; public static final int mini=0x7f090053; public static final int mr_art=0x7f0900a5; public static final int mr_chooser_list=0x7f09009a; public static final int mr_chooser_route_desc=0x7f09009d; public static final int mr_chooser_route_icon=0x7f09009b; public static final int mr_chooser_route_name=0x7f09009c; public static final int mr_chooser_title=0x7f090099; public static final int mr_close=0x7f0900a2; public static final int mr_control_divider=0x7f0900a8; public static final int mr_control_playback_ctrl=0x7f0900ae; public static final int mr_control_subtitle=0x7f0900b1; public static final int mr_control_title=0x7f0900b0; public static final int mr_control_title_container=0x7f0900af; public static final int mr_custom_control=0x7f0900a3; public static final int mr_default_control=0x7f0900a4; public static final int mr_dialog_area=0x7f09009f; public static final int mr_expandable_area=0x7f09009e; public static final int mr_group_expand_collapse=0x7f0900b2; public static final int mr_media_main_control=0x7f0900a6; public static final int mr_name=0x7f0900a1; public static final int mr_playback_control=0x7f0900a7; public static final int mr_title_bar=0x7f0900a0; public static final int mr_volume_control=0x7f0900a9; public static final int mr_volume_group_list=0x7f0900aa; public static final int mr_volume_item_icon=0x7f0900ac; public static final int mr_volume_slider=0x7f0900ad; public static final int multiply=0x7f090028; public static final int navigation_header_container=0x7f090093; public static final int never=0x7f09003b; public static final int none=0x7f090022; public static final int normal=0x7f09001e; public static final int notification_background=0x7f0900c2; public static final int notification_main_column=0x7f0900bc; public static final int notification_main_column_container=0x7f0900bb; public static final int parallax=0x7f09004c; public static final int parentPanel=0x7f090065; public static final int parent_matrix=0x7f09000b; public static final int pin=0x7f09004d; public static final int progress_circular=0x7f090006; public static final int progress_horizontal=0x7f090007; public static final int radio=0x7f090075; public static final int right=0x7f09004a; public static final int right_icon=0x7f0900c1; public static final int right_side=0x7f0900bd; public static final int save_image_matrix=0x7f09000c; public static final int save_non_transition_alpha=0x7f09000d; public static final int save_scale_type=0x7f09000e; public static final int screen=0x7f090029; public static final int scroll=0x7f090042; public static final int scrollIndicatorDown=0x7f09006b; public static final int scrollIndicatorUp=0x7f090067; public static final int scrollView=0x7f090068; public static final int scrollable=0x7f090055; public static final int search_badge=0x7f090080; public static final int search_bar=0x7f09007f; public static final int search_button=0x7f090081; public static final int search_close_btn=0x7f090086; public static final int search_edit_frame=0x7f090082; public static final int search_go_btn=0x7f090088; public static final int search_mag_icon=0x7f090083; public static final int search_plate=0x7f090084; public static final int search_src_text=0x7f090085; public static final int search_voice_btn=0x7f090089; public static final int select_dialog_listview=0x7f09008a; public static final int shortcut=0x7f090074; public static final int showCustom=0x7f090023; public static final int showHome=0x7f090024; public static final int showTitle=0x7f090025; public static final int sliding_tabs=0x7f0900c6; public static final int smallLabel=0x7f09008b; public static final int snackbar_action=0x7f090092; public static final int snackbar_text=0x7f090091; public static final int snap=0x7f090043; public static final int spacer=0x7f090064; public static final int split_action_bar=0x7f090008; public static final int src_atop=0x7f09002a; public static final int src_in=0x7f09002b; public static final int src_over=0x7f09002c; public static final int start=0x7f09004b; public static final int status_bar_latest_event_content=0x7f0900b8; public static final int submenuarrow=0x7f090076; public static final int submit_area=0x7f090087; public static final int tabMode=0x7f09001f; public static final int tag_transition_group=0x7f090019; public static final int text=0x7f09001a; public static final int text2=0x7f09001b; public static final int textSpacerNoButtons=0x7f09006a; public static final int textSpacerNoTitle=0x7f090069; public static final int text_input_password_toggle=0x7f090098; public static final int textinput_counter=0x7f090014; public static final int textinput_error=0x7f090015; public static final int time=0x7f0900be; public static final int title=0x7f09001c; public static final int titleDividerNoCustom=0x7f090071; public static final int title_template=0x7f09006f; public static final int toolbar=0x7f0900c7; public static final int top=0x7f09003e; public static final int topPanel=0x7f09006e; public static final int touch_outside=0x7f09008f; public static final int transition_current_scene=0x7f09000f; public static final int transition_layout_save=0x7f090010; public static final int transition_position=0x7f090011; public static final int transition_scene_layoutid_cache=0x7f090012; public static final int transition_transform=0x7f090013; public static final int uniform=0x7f09002d; public static final int up=0x7f090009; public static final int useLogo=0x7f090026; public static final int view_offset_helper=0x7f090016; public static final int visible=0x7f0900c9; public static final int volume_item_container=0x7f0900ab; public static final int withText=0x7f09003c; public static final int wrap_content=0x7f09002e; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0b0003; public static final int abc_config_activityShortDur=0x7f0b0004; public static final int app_bar_elevation_anim_duration=0x7f0b0008; public static final int bottom_sheet_slide_duration=0x7f0b0009; public static final int cancel_button_image_alpha=0x7f0b0005; public static final int config_tooltipAnimTime=0x7f0b0006; public static final int design_snackbar_text_max_lines=0x7f0b0007; public static final int hide_password_duration=0x7f0b000a; public static final int mr_controller_volume_group_list_animation_duration_ms=0x7f0b0000; public static final int mr_controller_volume_group_list_fade_in_duration_ms=0x7f0b0001; public static final int mr_controller_volume_group_list_fade_out_duration_ms=0x7f0b0002; public static final int show_password_duration=0x7f0b000b; public static final int status_bar_notification_info_maxnum=0x7f0b000c; } public static final class interpolator { public static final int mr_fast_out_slow_in=0x7f070000; public static final int mr_linear_out_slow_in=0x7f070001; } public static final class layout { public static final int abc_action_bar_title_item=0x7f040000; public static final int abc_action_bar_up_container=0x7f040001; public static final int abc_action_menu_item_layout=0x7f040002; public static final int abc_action_menu_layout=0x7f040003; public static final int abc_action_mode_bar=0x7f040004; public static final int abc_action_mode_close_item_material=0x7f040005; public static final int abc_activity_chooser_view=0x7f040006; public static final int abc_activity_chooser_view_list_item=0x7f040007; public static final int abc_alert_dialog_button_bar_material=0x7f040008; public static final int abc_alert_dialog_material=0x7f040009; public static final int abc_alert_dialog_title_material=0x7f04000a; public static final int abc_dialog_title_material=0x7f04000b; public static final int abc_expanded_menu_layout=0x7f04000c; public static final int abc_list_menu_item_checkbox=0x7f04000d; public static final int abc_list_menu_item_icon=0x7f04000e; public static final int abc_list_menu_item_layout=0x7f04000f; public static final int abc_list_menu_item_radio=0x7f040010; public static final int abc_popup_menu_header_item_layout=0x7f040011; public static final int abc_popup_menu_item_layout=0x7f040012; public static final int abc_screen_content_include=0x7f040013; public static final int abc_screen_simple=0x7f040014; public static final int abc_screen_simple_overlay_action_mode=0x7f040015; public static final int abc_screen_toolbar=0x7f040016; public static final int abc_search_dropdown_item_icons_2line=0x7f040017; public static final int abc_search_view=0x7f040018; public static final int abc_select_dialog_material=0x7f040019; public static final int design_bottom_navigation_item=0x7f04001a; public static final int design_bottom_sheet_dialog=0x7f04001b; public static final int design_layout_snackbar=0x7f04001c; public static final int design_layout_snackbar_include=0x7f04001d; public static final int design_layout_tab_icon=0x7f04001e; public static final int design_layout_tab_text=0x7f04001f; public static final int design_menu_item_action_area=0x7f040020; public static final int design_navigation_item=0x7f040021; public static final int design_navigation_item_header=0x7f040022; public static final int design_navigation_item_separator=0x7f040023; public static final int design_navigation_item_subheader=0x7f040024; public static final int design_navigation_menu=0x7f040025; public static final int design_navigation_menu_item=0x7f040026; public static final int design_text_input_password_icon=0x7f040027; public static final int mr_chooser_dialog=0x7f040028; public static final int mr_chooser_list_item=0x7f040029; public static final int mr_controller_material_dialog_b=0x7f04002a; public static final int mr_controller_volume_item=0x7f04002b; public static final int mr_playback_control=0x7f04002c; public static final int mr_volume_control=0x7f04002d; public static final int notification_action=0x7f04002e; public static final int notification_action_tombstone=0x7f04002f; public static final int notification_media_action=0x7f040030; public static final int notification_media_cancel_action=0x7f040031; public static final int notification_template_big_media=0x7f040032; public static final int notification_template_big_media_custom=0x7f040033; public static final int notification_template_big_media_narrow=0x7f040034; public static final int notification_template_big_media_narrow_custom=0x7f040035; public static final int notification_template_custom_big=0x7f040036; public static final int notification_template_icon_group=0x7f040037; public static final int notification_template_lines_media=0x7f040038; public static final int notification_template_media=0x7f040039; public static final int notification_template_media_custom=0x7f04003a; public static final int notification_template_part_chronometer=0x7f04003b; public static final int notification_template_part_time=0x7f04003c; public static final int select_dialog_item_material=0x7f04003d; public static final int select_dialog_multichoice_material=0x7f04003e; public static final int select_dialog_singlechoice_material=0x7f04003f; public static final int support_simple_spinner_dropdown_item=0x7f040040; public static final int tabbar=0x7f040041; public static final int toolbar=0x7f040042; public static final int tooltip=0x7f040043; } public static final class mipmap { public static final int icon=0x7f030000; public static final int icon_round=0x7f030001; public static final int launcher_foreground=0x7f030002; } public static final class string { public static final int abc_action_bar_home_description=0x7f0a0015; public static final int abc_action_bar_up_description=0x7f0a0016; public static final int abc_action_menu_overflow_description=0x7f0a0017; public static final int abc_action_mode_done=0x7f0a0018; public static final int abc_activity_chooser_view_see_all=0x7f0a0019; public static final int abc_activitychooserview_choose_application=0x7f0a001a; public static final int abc_capital_off=0x7f0a001b; public static final int abc_capital_on=0x7f0a001c; public static final int abc_font_family_body_1_material=0x7f0a0027; public static final int abc_font_family_body_2_material=0x7f0a0028; public static final int abc_font_family_button_material=0x7f0a0029; public static final int abc_font_family_caption_material=0x7f0a002a; public static final int abc_font_family_display_1_material=0x7f0a002b; public static final int abc_font_family_display_2_material=0x7f0a002c; public static final int abc_font_family_display_3_material=0x7f0a002d; public static final int abc_font_family_display_4_material=0x7f0a002e; public static final int abc_font_family_headline_material=0x7f0a002f; public static final int abc_font_family_menu_material=0x7f0a0030; public static final int abc_font_family_subhead_material=0x7f0a0031; public static final int abc_font_family_title_material=0x7f0a0032; public static final int abc_search_hint=0x7f0a001d; public static final int abc_searchview_description_clear=0x7f0a001e; public static final int abc_searchview_description_query=0x7f0a001f; public static final int abc_searchview_description_search=0x7f0a0020; public static final int abc_searchview_description_submit=0x7f0a0021; public static final int abc_searchview_description_voice=0x7f0a0022; public static final int abc_shareactionprovider_share_with=0x7f0a0023; public static final int abc_shareactionprovider_share_with_application=0x7f0a0024; public static final int abc_toolbar_collapse_description=0x7f0a0025; public static final int appbar_scrolling_view_behavior=0x7f0a0033; public static final int bottom_sheet_behavior=0x7f0a0034; public static final int character_counter_pattern=0x7f0a0035; public static final int mr_button_content_description=0x7f0a0000; public static final int mr_cast_button_connected=0x7f0a0001; public static final int mr_cast_button_connecting=0x7f0a0002; public static final int mr_cast_button_disconnected=0x7f0a0003; public static final int mr_chooser_searching=0x7f0a0004; public static final int mr_chooser_title=0x7f0a0005; public static final int mr_controller_album_art=0x7f0a0006; public static final int mr_controller_casting_screen=0x7f0a0007; public static final int mr_controller_close_description=0x7f0a0008; public static final int mr_controller_collapse_group=0x7f0a0009; public static final int mr_controller_disconnect=0x7f0a000a; public static final int mr_controller_expand_group=0x7f0a000b; public static final int mr_controller_no_info_available=0x7f0a000c; public static final int mr_controller_no_media_selected=0x7f0a000d; public static final int mr_controller_pause=0x7f0a000e; public static final int mr_controller_play=0x7f0a000f; public static final int mr_controller_stop=0x7f0a0010; public static final int mr_controller_stop_casting=0x7f0a0011; public static final int mr_controller_volume_slider=0x7f0a0012; public static final int mr_system_route_name=0x7f0a0013; public static final int mr_user_route_category_name=0x7f0a0014; public static final int password_toggle_content_description=0x7f0a0036; public static final int path_password_eye=0x7f0a0037; public static final int path_password_eye_mask_strike_through=0x7f0a0038; public static final int path_password_eye_mask_visible=0x7f0a0039; public static final int path_password_strike_through=0x7f0a003a; public static final int search_menu_title=0x7f0a0026; public static final int status_bar_notification_info_overflow=0x7f0a003b; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0c00a4; public static final int AlertDialog_AppCompat_Light=0x7f0c00a5; public static final int Animation_AppCompat_Dialog=0x7f0c00a6; public static final int Animation_AppCompat_DropDownUp=0x7f0c00a7; public static final int Animation_AppCompat_Tooltip=0x7f0c00a8; public static final int Animation_Design_BottomSheetDialog=0x7f0c016e; public static final int AppCompatDialogStyle=0x7f0c0191; public static final int Base_AlertDialog_AppCompat=0x7f0c00a9; public static final int Base_AlertDialog_AppCompat_Light=0x7f0c00aa; public static final int Base_Animation_AppCompat_Dialog=0x7f0c00ab; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0c00ac; public static final int Base_Animation_AppCompat_Tooltip=0x7f0c00ad; public static final int Base_CardView=0x7f0c000c; public static final int Base_DialogWindowTitle_AppCompat=0x7f0c00ae; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0c00af; public static final int Base_TextAppearance_AppCompat=0x7f0c0048; public static final int Base_TextAppearance_AppCompat_Body1=0x7f0c0049; public static final int Base_TextAppearance_AppCompat_Body2=0x7f0c004a; public static final int Base_TextAppearance_AppCompat_Button=0x7f0c0036; public static final int Base_TextAppearance_AppCompat_Caption=0x7f0c004b; public static final int Base_TextAppearance_AppCompat_Display1=0x7f0c004c; public static final int Base_TextAppearance_AppCompat_Display2=0x7f0c004d; public static final int Base_TextAppearance_AppCompat_Display3=0x7f0c004e; public static final int Base_TextAppearance_AppCompat_Display4=0x7f0c004f; public static final int Base_TextAppearance_AppCompat_Headline=0x7f0c0050; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0c001a; public static final int Base_TextAppearance_AppCompat_Large=0x7f0c0051; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0c001b; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c0052; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c0053; public static final int Base_TextAppearance_AppCompat_Medium=0x7f0c0054; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0c001c; public static final int Base_TextAppearance_AppCompat_Menu=0x7f0c0055; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0c00b0; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c0056; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0c0057; public static final int Base_TextAppearance_AppCompat_Small=0x7f0c0058; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0c001d; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0c0059; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0c001e; public static final int Base_TextAppearance_AppCompat_Title=0x7f0c005a; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0c001f; public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0c00b1; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c0095; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c005b; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c005c; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c005d; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c005e; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c005f; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c0060; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0c0061; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c009c; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c009d; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c0096; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00b2; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0062; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0063; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0064; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0c0065; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0066; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c00b3; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0067; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0068; public static final int Base_Theme_AppCompat=0x7f0c0069; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0c00b4; public static final int Base_Theme_AppCompat_Dialog=0x7f0c0020; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0c0021; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0c00b5; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0c0022; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0c0010; public static final int Base_Theme_AppCompat_Light=0x7f0c006a; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0c00b6; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0c0023; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0c0024; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0c00b7; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0025; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0011; public static final int Base_ThemeOverlay_AppCompat=0x7f0c00b8; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0c00b9; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0c00ba; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c00bb; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0c0026; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0027; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0c00bc; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0c0028; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0c0029; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0c002a; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0c0032; public static final int Base_V12_Widget_AppCompat_EditText=0x7f0c0033; public static final int Base_V14_Widget_Design_AppBarLayout=0x7f0c016f; public static final int Base_V21_Theme_AppCompat=0x7f0c006b; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0c006c; public static final int Base_V21_Theme_AppCompat_Light=0x7f0c006d; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0c006e; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0c006f; public static final int Base_V21_Widget_Design_AppBarLayout=0x7f0c016b; public static final int Base_V22_Theme_AppCompat=0x7f0c0093; public static final int Base_V22_Theme_AppCompat_Light=0x7f0c0094; public static final int Base_V23_Theme_AppCompat=0x7f0c0097; public static final int Base_V23_Theme_AppCompat_Light=0x7f0c0098; public static final int Base_V26_Theme_AppCompat=0x7f0c00a0; public static final int Base_V26_Theme_AppCompat_Light=0x7f0c00a1; public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0c00a2; public static final int Base_V26_Widget_Design_AppBarLayout=0x7f0c016d; public static final int Base_V7_Theme_AppCompat=0x7f0c00bd; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0c00be; public static final int Base_V7_Theme_AppCompat_Light=0x7f0c00bf; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0c00c0; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0c00c1; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0c00c2; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0c00c3; public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0c00c4; public static final int Base_Widget_AppCompat_ActionBar=0x7f0c00c5; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0c00c6; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0c00c7; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0c0070; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0c0071; public static final int Base_Widget_AppCompat_ActionButton=0x7f0c0072; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0c0073; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0c0074; public static final int Base_Widget_AppCompat_ActionMode=0x7f0c00c8; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0c00c9; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0c0034; public static final int Base_Widget_AppCompat_Button=0x7f0c0075; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0c0076; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0c0077; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c00ca; public static final int Base_Widget_AppCompat_Button_Colored=0x7f0c0099; 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=0x7f0c00cb; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0c007a; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0c007b; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0c00cc; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0c000f; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0c00cd; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0c007c; public static final int Base_Widget_AppCompat_EditText=0x7f0c0035; public static final int Base_Widget_AppCompat_ImageButton=0x7f0c007d; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0c00ce; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0c00cf; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c00d0; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0c007e; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c007f; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0080; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0c0081; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c0082; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0c00d1; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0c0083; public static final int Base_Widget_AppCompat_ListView=0x7f0c0084; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0c0085; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0c0086; public static final int Base_Widget_AppCompat_PopupMenu=0x7f0c0087; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0c0088; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0c00d2; public static final int Base_Widget_AppCompat_ProgressBar=0x7f0c002b; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0c002c; public static final int Base_Widget_AppCompat_RatingBar=0x7f0c0089; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0c009a; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0c009b; public static final int Base_Widget_AppCompat_SearchView=0x7f0c00d3; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0c00d4; public static final int Base_Widget_AppCompat_SeekBar=0x7f0c008a; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0c00d5; public static final int Base_Widget_AppCompat_Spinner=0x7f0c008b; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0c0012; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0c008c; public static final int Base_Widget_AppCompat_Toolbar=0x7f0c00a3; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c008d; public static final int Base_Widget_Design_AppBarLayout=0x7f0c016c; public static final int Base_Widget_Design_TabLayout=0x7f0c0170; public static final int CardView=0x7f0c000b; public static final int CardView_Dark=0x7f0c000d; public static final int CardView_Light=0x7f0c000e; public static final int MainTheme=0x7f0c018f; /** Base theme applied no matter what API */ public static final int MainTheme_Base=0x7f0c0190; public static final int Platform_AppCompat=0x7f0c002d; public static final int Platform_AppCompat_Light=0x7f0c002e; public static final int Platform_ThemeOverlay_AppCompat=0x7f0c008e; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0c008f; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0c0090; public static final int Platform_V11_AppCompat=0x7f0c002f; public static final int Platform_V11_AppCompat_Light=0x7f0c0030; public static final int Platform_V14_AppCompat=0x7f0c0037; public static final int Platform_V14_AppCompat_Light=0x7f0c0038; public static final int Platform_V21_AppCompat=0x7f0c0091; public static final int Platform_V21_AppCompat_Light=0x7f0c0092; public static final int Platform_V25_AppCompat=0x7f0c009e; public static final int Platform_V25_AppCompat_Light=0x7f0c009f; public static final int Platform_Widget_AppCompat_Spinner=0x7f0c0031; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0c003a; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0c003b; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0c003c; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0c003d; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0c003e; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0c003f; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0c0040; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0c0041; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0c0042; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0c0043; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0c0044; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0c0045; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0c0046; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0c0047; public static final int TextAppearance_AppCompat=0x7f0c00d6; public static final int TextAppearance_AppCompat_Body1=0x7f0c00d7; public static final int TextAppearance_AppCompat_Body2=0x7f0c00d8; public static final int TextAppearance_AppCompat_Button=0x7f0c00d9; public static final int TextAppearance_AppCompat_Caption=0x7f0c00da; public static final int TextAppearance_AppCompat_Display1=0x7f0c00db; public static final int TextAppearance_AppCompat_Display2=0x7f0c00dc; public static final int TextAppearance_AppCompat_Display3=0x7f0c00dd; public static final int TextAppearance_AppCompat_Display4=0x7f0c00de; public static final int TextAppearance_AppCompat_Headline=0x7f0c00df; public static final int TextAppearance_AppCompat_Inverse=0x7f0c00e0; public static final int TextAppearance_AppCompat_Large=0x7f0c00e1; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0c00e2; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0c00e3; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0c00e4; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c00e5; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c00e6; public static final int TextAppearance_AppCompat_Medium=0x7f0c00e7; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0c00e8; public static final int TextAppearance_AppCompat_Menu=0x7f0c00e9; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c00ea; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0c00eb; public static final int TextAppearance_AppCompat_Small=0x7f0c00ec; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0c00ed; public static final int TextAppearance_AppCompat_Subhead=0x7f0c00ee; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0c00ef; public static final int TextAppearance_AppCompat_Title=0x7f0c00f0; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0c00f1; public static final int TextAppearance_AppCompat_Tooltip=0x7f0c0039; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c00f2; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c00f3; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c00f4; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c00f5; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c00f6; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c00f7; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0c00f8; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c00f9; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0c00fa; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0c00fb; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c00fc; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c00fd; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c00fe; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00ff; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0100; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0101; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0102; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0c0103; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0104; public static final int TextAppearance_Compat_Notification=0x7f0c0188; public static final int TextAppearance_Compat_Notification_Info=0x7f0c0189; public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0c0165; public static final int TextAppearance_Compat_Notification_Line2=0x7f0c018e; public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0c0169; public static final int TextAppearance_Compat_Notification_Media=0x7f0c0166; public static final int TextAppearance_Compat_Notification_Time=0x7f0c018a; public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0c0167; public static final int TextAppearance_Compat_Notification_Title=0x7f0c018b; public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0c0168; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0c0171; public static final int TextAppearance_Design_Counter=0x7f0c0172; public static final int TextAppearance_Design_Counter_Overflow=0x7f0c0173; public static final int TextAppearance_Design_Error=0x7f0c0174; public static final int TextAppearance_Design_Hint=0x7f0c0175; public static final int TextAppearance_Design_Snackbar_Message=0x7f0c0176; public static final int TextAppearance_Design_Tab=0x7f0c0177; public static final int TextAppearance_MediaRouter_PrimaryText=0x7f0c0000; public static final int TextAppearance_MediaRouter_SecondaryText=0x7f0c0001; public static final int TextAppearance_MediaRouter_Title=0x7f0c0002; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c0105; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0106; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0107; public static final int Theme_AppCompat=0x7f0c0108; public static final int Theme_AppCompat_CompactMenu=0x7f0c0109; public static final int Theme_AppCompat_DayNight=0x7f0c0013; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0c0014; public static final int Theme_AppCompat_DayNight_Dialog=0x7f0c0015; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0c0016; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0c0017; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0c0018; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0c0019; public static final int Theme_AppCompat_Dialog=0x7f0c010a; public static final int Theme_AppCompat_Dialog_Alert=0x7f0c010b; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0c010c; public static final int Theme_AppCompat_DialogWhenLarge=0x7f0c010d; public static final int Theme_AppCompat_Light=0x7f0c010e; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0c010f; public static final int Theme_AppCompat_Light_Dialog=0x7f0c0110; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0c0111; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0112; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0113; public static final int Theme_AppCompat_Light_NoActionBar=0x7f0c0114; public static final int Theme_AppCompat_NoActionBar=0x7f0c0115; public static final int Theme_Design=0x7f0c0178; public static final int Theme_Design_BottomSheetDialog=0x7f0c0179; public static final int Theme_Design_Light=0x7f0c017a; public static final int Theme_Design_Light_BottomSheetDialog=0x7f0c017b; public static final int Theme_Design_Light_NoActionBar=0x7f0c017c; public static final int Theme_Design_NoActionBar=0x7f0c017d; public static final int Theme_MediaRouter=0x7f0c0003; public static final int Theme_MediaRouter_Light=0x7f0c0004; public static final int Theme_MediaRouter_Light_DarkControlPanel=0x7f0c0005; public static final int Theme_MediaRouter_LightControlPanel=0x7f0c0006; public static final int ThemeOverlay_AppCompat=0x7f0c0116; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0c0117; public static final int ThemeOverlay_AppCompat_Dark=0x7f0c0118; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c0119; public static final int ThemeOverlay_AppCompat_Dialog=0x7f0c011a; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c011b; public static final int ThemeOverlay_AppCompat_Light=0x7f0c011c; public static final int ThemeOverlay_MediaRouter_Dark=0x7f0c0007; public static final int ThemeOverlay_MediaRouter_Light=0x7f0c0008; public static final int Widget_AppCompat_ActionBar=0x7f0c011d; public static final int Widget_AppCompat_ActionBar_Solid=0x7f0c011e; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0c011f; public static final int Widget_AppCompat_ActionBar_TabText=0x7f0c0120; public static final int Widget_AppCompat_ActionBar_TabView=0x7f0c0121; public static final int Widget_AppCompat_ActionButton=0x7f0c0122; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0c0123; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0c0124; public static final int Widget_AppCompat_ActionMode=0x7f0c0125; public static final int Widget_AppCompat_ActivityChooserView=0x7f0c0126; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0c0127; public static final int Widget_AppCompat_Button=0x7f0c0128; public static final int Widget_AppCompat_Button_Borderless=0x7f0c0129; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0c012a; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c012b; public static final int Widget_AppCompat_Button_Colored=0x7f0c012c; public static final int Widget_AppCompat_Button_Small=0x7f0c012d; public static final int Widget_AppCompat_ButtonBar=0x7f0c012e; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c012f; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0c0130; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0c0131; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0c0132; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0c0133; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0c0134; public static final int Widget_AppCompat_EditText=0x7f0c0135; public static final int Widget_AppCompat_ImageButton=0x7f0c0136; public static final int Widget_AppCompat_Light_ActionBar=0x7f0c0137; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0138; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0c0139; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c013a; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0c013b; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0c013c; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c013d; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0c013e; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0c013f; public static final int Widget_AppCompat_Light_ActionButton=0x7f0c0140; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0c0141; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0c0142; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0c0143; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0c0144; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0c0145; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0c0146; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0c0147; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0c0148; public static final int Widget_AppCompat_Light_PopupMenu=0x7f0c0149; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c014a; public static final int Widget_AppCompat_Light_SearchView=0x7f0c014b; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0c014c; public static final int Widget_AppCompat_ListMenuView=0x7f0c014d; public static final int Widget_AppCompat_ListPopupWindow=0x7f0c014e; public static final int Widget_AppCompat_ListView=0x7f0c014f; public static final int Widget_AppCompat_ListView_DropDown=0x7f0c0150; public static final int Widget_AppCompat_ListView_Menu=0x7f0c0151; public static final int Widget_AppCompat_PopupMenu=0x7f0c0152; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0c0153; public static final int Widget_AppCompat_PopupWindow=0x7f0c0154; public static final int Widget_AppCompat_ProgressBar=0x7f0c0155; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0156; public static final int Widget_AppCompat_RatingBar=0x7f0c0157; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0c0158; public static final int Widget_AppCompat_RatingBar_Small=0x7f0c0159; public static final int Widget_AppCompat_SearchView=0x7f0c015a; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0c015b; public static final int Widget_AppCompat_SeekBar=0x7f0c015c; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0c015d; public static final int Widget_AppCompat_Spinner=0x7f0c015e; public static final int Widget_AppCompat_Spinner_DropDown=0x7f0c015f; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c0160; public static final int Widget_AppCompat_Spinner_Underlined=0x7f0c0161; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0c0162; public static final int Widget_AppCompat_Toolbar=0x7f0c0163; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c0164; public static final int Widget_Compat_NotificationActionContainer=0x7f0c018c; public static final int Widget_Compat_NotificationActionText=0x7f0c018d; public static final int Widget_Design_AppBarLayout=0x7f0c017e; public static final int Widget_Design_BottomNavigationView=0x7f0c017f; public static final int Widget_Design_BottomSheet_Modal=0x7f0c0180; public static final int Widget_Design_CollapsingToolbar=0x7f0c0181; public static final int Widget_Design_CoordinatorLayout=0x7f0c0182; public static final int Widget_Design_FloatingActionButton=0x7f0c0183; public static final int Widget_Design_NavigationView=0x7f0c0184; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0c0185; public static final int Widget_Design_Snackbar=0x7f0c0186; public static final int Widget_Design_TabLayout=0x7f0c016a; public static final int Widget_Design_TextInputLayout=0x7f0c0187; public static final int Widget_MediaRouter_Light_MediaRouteButton=0x7f0c0009; public static final int Widget_MediaRouter_MediaRouteButton=0x7f0c000a; } public static final class styleable { /** Attributes that can be used with a ActionBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBar_background com.companyname.KeyboardType:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.companyname.KeyboardType:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.companyname.KeyboardType:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.companyname.KeyboardType:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.companyname.KeyboardType:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.companyname.KeyboardType:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.companyname.KeyboardType:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.companyname.KeyboardType:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.companyname.KeyboardType:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.companyname.KeyboardType:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.companyname.KeyboardType:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider com.companyname.KeyboardType:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation com.companyname.KeyboardType:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height com.companyname.KeyboardType:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.companyname.KeyboardType:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.companyname.KeyboardType:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.companyname.KeyboardType:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon com.companyname.KeyboardType:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.companyname.KeyboardType:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.companyname.KeyboardType:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo com.companyname.KeyboardType:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.companyname.KeyboardType:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.companyname.KeyboardType:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.companyname.KeyboardType:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.companyname.KeyboardType:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle com.companyname.KeyboardType:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.companyname.KeyboardType:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title com.companyname.KeyboardType:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.companyname.KeyboardType:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionBar_background @see #ActionBar_backgroundSplit @see #ActionBar_backgroundStacked @see #ActionBar_contentInsetEnd @see #ActionBar_contentInsetEndWithActions @see #ActionBar_contentInsetLeft @see #ActionBar_contentInsetRight @see #ActionBar_contentInsetStart @see #ActionBar_contentInsetStartWithNavigation @see #ActionBar_customNavigationLayout @see #ActionBar_displayOptions @see #ActionBar_divider @see #ActionBar_elevation @see #ActionBar_height @see #ActionBar_hideOnContentScroll @see #ActionBar_homeAsUpIndicator @see #ActionBar_homeLayout @see #ActionBar_icon @see #ActionBar_indeterminateProgressStyle @see #ActionBar_itemPadding @see #ActionBar_logo @see #ActionBar_navigationMode @see #ActionBar_popupTheme @see #ActionBar_progressBarPadding @see #ActionBar_progressBarStyle @see #ActionBar_subtitle @see #ActionBar_subtitleTextStyle @see #ActionBar_title @see #ActionBar_titleTextStyle */ public static final int[] ActionBar = { 0x7f010023, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010085 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#background} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.KeyboardType:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#backgroundStacked} attribute's value can be found in the {@link #ActionBar} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.KeyboardType:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetEnd} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions = 25; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetLeft} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetRight} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetStart} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation = 24; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#customNavigationLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#displayOptions} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr> <tr><td><code>showHome</code></td><td>0x2</td><td></td></tr> <tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr> <tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr> <tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr> <tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#divider} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#elevation} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:elevation */ public static final int ActionBar_elevation = 26; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#height} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#hideOnContentScroll} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 28; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#homeLayout} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#icon} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#indeterminateProgressStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#itemPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#logo} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#navigationMode} attribute's value can be found in the {@link #ActionBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>listMode</code></td><td>1</td><td></td></tr> <tr><td><code>tabMode</code></td><td>2</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#popupTheme} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:popupTheme */ public static final int ActionBar_popupTheme = 27; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#progressBarPadding} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#progressBarStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#subtitle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#title} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:titleTextStyle */ public static final int ActionBar_titleTextStyle = 5; /** Attributes that can be used with a ActionBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> </table> @see #ActionBarLayout_android_layout_gravity */ public static final int[] ActionBarLayout = { 0x010100b3 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #ActionBarLayout} array. @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity = 0; /** Attributes that can be used with a ActionMenuItemView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr> </table> @see #ActionMenuItemView_android_minWidth */ public static final int[] ActionMenuItemView = { 0x0101013f }; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ActionMenuItemView} array. @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth = 0; /** Attributes that can be used with a ActionMenuView. */ public static final int[] ActionMenuView = { }; /** Attributes that can be used with a ActionMode. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActionMode_background com.companyname.KeyboardType:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.companyname.KeyboardType:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.companyname.KeyboardType:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height com.companyname.KeyboardType:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.companyname.KeyboardType:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.companyname.KeyboardType:titleTextStyle}</code></td><td></td></tr> </table> @see #ActionMode_background @see #ActionMode_backgroundSplit @see #ActionMode_closeItemLayout @see #ActionMode_height @see #ActionMode_subtitleTextStyle @see #ActionMode_titleTextStyle */ public static final int[] ActionMode = { 0x7f010023, 0x7f010029, 0x7f01002a, 0x7f01002e, 0x7f010030, 0x7f010040 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#background} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#backgroundSplit} attribute's value can be found in the {@link #ActionMode} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.KeyboardType:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#closeItemLayout} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#height} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#subtitleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#titleTextStyle} attribute's value can be found in the {@link #ActionMode} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:titleTextStyle */ public static final int ActionMode_titleTextStyle = 1; /** Attributes that can be used with a ActivityChooserView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.companyname.KeyboardType:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.companyname.KeyboardType:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f010041, 0x7f010042 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#expandActivityOverflowButtonDrawable} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#initialActivityCount} attribute's value can be found in the {@link #ActivityChooserView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a AlertDialog. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout com.companyname.KeyboardType:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout com.companyname.KeyboardType:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout com.companyname.KeyboardType:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.companyname.KeyboardType:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_showTitle com.companyname.KeyboardType:showTitle}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.companyname.KeyboardType:singleChoiceItemLayout}</code></td><td></td></tr> </table> @see #AlertDialog_android_layout @see #AlertDialog_buttonPanelSideLayout @see #AlertDialog_listItemLayout @see #AlertDialog_listLayout @see #AlertDialog_multiChoiceItemLayout @see #AlertDialog_showTitle @see #AlertDialog_singleChoiceItemLayout */ public static final int[] AlertDialog = { 0x010100f2, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #AlertDialog} array. @attr name android:layout */ public static final int AlertDialog_android_layout = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#buttonPanelSideLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#listItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#listLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#multiChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#showTitle} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:showTitle */ public static final int AlertDialog_showTitle = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#singleChoiceItemLayout} attribute's value can be found in the {@link #AlertDialog} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:singleChoiceItemLayout */ public static final int AlertDialog_singleChoiceItemLayout = 4; /** Attributes that can be used with a AppBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_elevation com.companyname.KeyboardType:elevation}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_expanded com.companyname.KeyboardType:expanded}</code></td><td></td></tr> </table> @see #AppBarLayout_android_background @see #AppBarLayout_android_keyboardNavigationCluster @see #AppBarLayout_android_touchscreenBlocksFocus @see #AppBarLayout_elevation @see #AppBarLayout_expanded */ public static final int[] AppBarLayout = { 0x010100d4, 0x0101048f, 0x01010540, 0x7f01003e, 0x7f010118 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:background */ public static final int AppBarLayout_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:keyboardNavigationCluster */ public static final int AppBarLayout_android_keyboardNavigationCluster = 2; /** <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus} attribute's value can be found in the {@link #AppBarLayout} array. @attr name android:touchscreenBlocksFocus */ public static final int AppBarLayout_android_touchscreenBlocksFocus = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#elevation} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:elevation */ public static final int AppBarLayout_elevation = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#expanded} attribute's value can be found in the {@link #AppBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:expanded */ public static final int AppBarLayout_expanded = 4; /** Attributes that can be used with a AppBarLayoutStates. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsed com.companyname.KeyboardType:state_collapsed}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.companyname.KeyboardType:state_collapsible}</code></td><td></td></tr> </table> @see #AppBarLayoutStates_state_collapsed @see #AppBarLayoutStates_state_collapsible */ public static final int[] AppBarLayoutStates = { 0x7f010119, 0x7f01011a }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#state_collapsed} attribute's value can be found in the {@link #AppBarLayoutStates} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#state_collapsible} attribute's value can be found in the {@link #AppBarLayoutStates} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:state_collapsible */ public static final int AppBarLayoutStates_state_collapsible = 1; /** Attributes that can be used with a AppBarLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags com.companyname.KeyboardType:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.companyname.KeyboardType:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_Layout_layout_scrollFlags @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout = { 0x7f01011b, 0x7f01011c }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layout_scrollFlags} attribute's value can be found in the {@link #AppBarLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scroll</code></td><td>0x1</td><td></td></tr> <tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr> <tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr> <tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr> <tr><td><code>snap</code></td><td>0x10</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layout_scrollInterpolator} attribute's value can be found in the {@link #AppBarLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:layout_scrollInterpolator */ public static final int AppBarLayout_Layout_layout_scrollInterpolator = 1; /** Attributes that can be used with a AppCompatImageView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_srcCompat com.companyname.KeyboardType:srcCompat}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tint com.companyname.KeyboardType:tint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatImageView_tintMode com.companyname.KeyboardType:tintMode}</code></td><td></td></tr> </table> @see #AppCompatImageView_android_src @see #AppCompatImageView_srcCompat @see #AppCompatImageView_tint @see #AppCompatImageView_tintMode */ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010049, 0x7f01004a, 0x7f01004b }; /** <p>This symbol is the offset where the {@link android.R.attr#src} attribute's value can be found in the {@link #AppCompatImageView} array. @attr name android:src */ public static final int AppCompatImageView_android_src = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#srcCompat} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:srcCompat */ public static final int AppCompatImageView_srcCompat = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tint} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tint */ public static final int AppCompatImageView_tint = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tintMode} attribute's value can be found in the {@link #AppCompatImageView} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:tintMode */ public static final int AppCompatImageView_tintMode = 3; /** Attributes that can be used with a AppCompatSeekBar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMark com.companyname.KeyboardType:tickMark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.companyname.KeyboardType:tickMarkTint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.companyname.KeyboardType:tickMarkTintMode}</code></td><td></td></tr> </table> @see #AppCompatSeekBar_android_thumb @see #AppCompatSeekBar_tickMark @see #AppCompatSeekBar_tickMarkTint @see #AppCompatSeekBar_tickMarkTintMode */ public static final int[] AppCompatSeekBar = { 0x01010142, 0x7f01004c, 0x7f01004d, 0x7f01004e }; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #AppCompatSeekBar} array. @attr name android:thumb */ public static final int AppCompatSeekBar_android_thumb = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tickMark} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:tickMark */ public static final int AppCompatSeekBar_tickMark = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tickMarkTint} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tickMarkTintMode} attribute's value can be found in the {@link #AppCompatSeekBar} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:tickMarkTintMode */ public static final int AppCompatSeekBar_tickMarkTintMode = 3; /** Attributes that can be used with a AppCompatTextHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr> </table> @see #AppCompatTextHelper_android_drawableBottom @see #AppCompatTextHelper_android_drawableEnd @see #AppCompatTextHelper_android_drawableLeft @see #AppCompatTextHelper_android_drawableRight @see #AppCompatTextHelper_android_drawableStart @see #AppCompatTextHelper_android_drawableTop @see #AppCompatTextHelper_android_textAppearance */ public static final int[] AppCompatTextHelper = { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }; /** <p>This symbol is the offset where the {@link android.R.attr#drawableBottom} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableBottom */ public static final int AppCompatTextHelper_android_drawableBottom = 2; /** <p>This symbol is the offset where the {@link android.R.attr#drawableEnd} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableEnd */ public static final int AppCompatTextHelper_android_drawableEnd = 6; /** <p>This symbol is the offset where the {@link android.R.attr#drawableLeft} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableLeft */ public static final int AppCompatTextHelper_android_drawableLeft = 3; /** <p>This symbol is the offset where the {@link android.R.attr#drawableRight} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableRight */ public static final int AppCompatTextHelper_android_drawableRight = 4; /** <p>This symbol is the offset where the {@link android.R.attr#drawableStart} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableStart */ public static final int AppCompatTextHelper_android_drawableStart = 5; /** <p>This symbol is the offset where the {@link android.R.attr#drawableTop} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:drawableTop */ public static final int AppCompatTextHelper_android_drawableTop = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextHelper} array. @attr name android:textAppearance */ public static final int AppCompatTextHelper_android_textAppearance = 0; /** Attributes that can be used with a AppCompatTextView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize com.companyname.KeyboardType:autoSizeMaxTextSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize com.companyname.KeyboardType:autoSizeMinTextSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes com.companyname.KeyboardType:autoSizePresetSizes}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity com.companyname.KeyboardType:autoSizeStepGranularity}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_autoSizeTextType com.companyname.KeyboardType:autoSizeTextType}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_fontFamily com.companyname.KeyboardType:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTextView_textAllCaps com.companyname.KeyboardType:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_autoSizeMaxTextSize @see #AppCompatTextView_autoSizeMinTextSize @see #AppCompatTextView_autoSizePresetSizes @see #AppCompatTextView_autoSizeStepGranularity @see #AppCompatTextView_autoSizeTextType @see #AppCompatTextView_fontFamily @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055 }; /** <p>This symbol is the offset where the {@link android.R.attr#textAppearance} attribute's value can be found in the {@link #AppCompatTextView} array. @attr name android:textAppearance */ public static final int AppCompatTextView_android_textAppearance = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#autoSizeMaxTextSize} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:autoSizeMaxTextSize */ public static final int AppCompatTextView_autoSizeMaxTextSize = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#autoSizeMinTextSize} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:autoSizeMinTextSize */ public static final int AppCompatTextView_autoSizeMinTextSize = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#autoSizePresetSizes} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:autoSizePresetSizes */ public static final int AppCompatTextView_autoSizePresetSizes = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#autoSizeStepGranularity} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:autoSizeStepGranularity */ public static final int AppCompatTextView_autoSizeStepGranularity = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#autoSizeTextType} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>uniform</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:autoSizeTextType */ public static final int AppCompatTextView_autoSizeTextType = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fontFamily} attribute's value can be found in the {@link #AppCompatTextView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:fontFamily */ public static final int AppCompatTextView_fontFamily = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textAllCaps} attribute's value can be found in the {@link #AppCompatTextView} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.companyname.KeyboardType:textAllCaps */ public static final int AppCompatTextView_textAllCaps = 1; /** Attributes that can be used with a AppCompatTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #AppCompatTheme_actionBarDivider com.companyname.KeyboardType:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.companyname.KeyboardType:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.companyname.KeyboardType:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize com.companyname.KeyboardType:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.companyname.KeyboardType:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.companyname.KeyboardType:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.KeyboardType:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.companyname.KeyboardType:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.KeyboardType:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.companyname.KeyboardType:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.KeyboardType:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.companyname.KeyboardType:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.companyname.KeyboardType:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.KeyboardType:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.companyname.KeyboardType:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.companyname.KeyboardType:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.KeyboardType:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.KeyboardType:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.KeyboardType:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.companyname.KeyboardType:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.companyname.KeyboardType:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.companyname.KeyboardType:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.KeyboardType:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.KeyboardType:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.companyname.KeyboardType:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.companyname.KeyboardType:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.companyname.KeyboardType:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.KeyboardType:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.KeyboardType:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.KeyboardType:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.companyname.KeyboardType:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.KeyboardType:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.KeyboardType:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.companyname.KeyboardType:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.companyname.KeyboardType:alertDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle com.companyname.KeyboardType:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.companyname.KeyboardType:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.KeyboardType:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.KeyboardType:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.KeyboardType:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.KeyboardType:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.companyname.KeyboardType:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle com.companyname.KeyboardType:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.companyname.KeyboardType:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.companyname.KeyboardType:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.companyname.KeyboardType:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent com.companyname.KeyboardType:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.companyname.KeyboardType:colorBackgroundFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.companyname.KeyboardType:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.companyname.KeyboardType:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.companyname.KeyboardType:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.companyname.KeyboardType:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorError com.companyname.KeyboardType:colorError}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary com.companyname.KeyboardType:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.companyname.KeyboardType:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.KeyboardType:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground com.companyname.KeyboardType:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.companyname.KeyboardType:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme com.companyname.KeyboardType:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.companyname.KeyboardType:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical com.companyname.KeyboardType:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.companyname.KeyboardType:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.KeyboardType:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground com.companyname.KeyboardType:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor com.companyname.KeyboardType:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle com.companyname.KeyboardType:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.companyname.KeyboardType:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.companyname.KeyboardType:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.KeyboardType:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.companyname.KeyboardType:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.companyname.KeyboardType:listMenuViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.companyname.KeyboardType:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.companyname.KeyboardType:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.KeyboardType:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.KeyboardType:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.KeyboardType:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.KeyboardType:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground com.companyname.KeyboardType:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.companyname.KeyboardType:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.companyname.KeyboardType:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.companyname.KeyboardType:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.companyname.KeyboardType:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.companyname.KeyboardType:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.companyname.KeyboardType:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.KeyboardType:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.KeyboardType:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.companyname.KeyboardType:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.companyname.KeyboardType:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.companyname.KeyboardType:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.KeyboardType:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.KeyboardType:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.companyname.KeyboardType:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle com.companyname.KeyboardType:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.KeyboardType:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.companyname.KeyboardType:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary com.companyname.KeyboardType:textAppearanceListItemSecondary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.KeyboardType:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.companyname.KeyboardType:textAppearancePopupMenuHeader}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.KeyboardType:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.KeyboardType:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.KeyboardType:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.KeyboardType:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.companyname.KeyboardType:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.KeyboardType:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.companyname.KeyboardType:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor com.companyname.KeyboardType:tooltipForegroundColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground com.companyname.KeyboardType:tooltipFrameBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar com.companyname.KeyboardType:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.companyname.KeyboardType:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.companyname.KeyboardType:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.KeyboardType:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.KeyboardType:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.KeyboardType:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.KeyboardType:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.companyname.KeyboardType:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.companyname.KeyboardType:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.companyname.KeyboardType:windowNoTitle}</code></td><td></td></tr> </table> @see #AppCompatTheme_actionBarDivider @see #AppCompatTheme_actionBarItemBackground @see #AppCompatTheme_actionBarPopupTheme @see #AppCompatTheme_actionBarSize @see #AppCompatTheme_actionBarSplitStyle @see #AppCompatTheme_actionBarStyle @see #AppCompatTheme_actionBarTabBarStyle @see #AppCompatTheme_actionBarTabStyle @see #AppCompatTheme_actionBarTabTextStyle @see #AppCompatTheme_actionBarTheme @see #AppCompatTheme_actionBarWidgetTheme @see #AppCompatTheme_actionButtonStyle @see #AppCompatTheme_actionDropDownStyle @see #AppCompatTheme_actionMenuTextAppearance @see #AppCompatTheme_actionMenuTextColor @see #AppCompatTheme_actionModeBackground @see #AppCompatTheme_actionModeCloseButtonStyle @see #AppCompatTheme_actionModeCloseDrawable @see #AppCompatTheme_actionModeCopyDrawable @see #AppCompatTheme_actionModeCutDrawable @see #AppCompatTheme_actionModeFindDrawable @see #AppCompatTheme_actionModePasteDrawable @see #AppCompatTheme_actionModePopupWindowStyle @see #AppCompatTheme_actionModeSelectAllDrawable @see #AppCompatTheme_actionModeShareDrawable @see #AppCompatTheme_actionModeSplitBackground @see #AppCompatTheme_actionModeStyle @see #AppCompatTheme_actionModeWebSearchDrawable @see #AppCompatTheme_actionOverflowButtonStyle @see #AppCompatTheme_actionOverflowMenuStyle @see #AppCompatTheme_activityChooserViewStyle @see #AppCompatTheme_alertDialogButtonGroupStyle @see #AppCompatTheme_alertDialogCenterButtons @see #AppCompatTheme_alertDialogStyle @see #AppCompatTheme_alertDialogTheme @see #AppCompatTheme_android_windowAnimationStyle @see #AppCompatTheme_android_windowIsFloating @see #AppCompatTheme_autoCompleteTextViewStyle @see #AppCompatTheme_borderlessButtonStyle @see #AppCompatTheme_buttonBarButtonStyle @see #AppCompatTheme_buttonBarNegativeButtonStyle @see #AppCompatTheme_buttonBarNeutralButtonStyle @see #AppCompatTheme_buttonBarPositiveButtonStyle @see #AppCompatTheme_buttonBarStyle @see #AppCompatTheme_buttonStyle @see #AppCompatTheme_buttonStyleSmall @see #AppCompatTheme_checkboxStyle @see #AppCompatTheme_checkedTextViewStyle @see #AppCompatTheme_colorAccent @see #AppCompatTheme_colorBackgroundFloating @see #AppCompatTheme_colorButtonNormal @see #AppCompatTheme_colorControlActivated @see #AppCompatTheme_colorControlHighlight @see #AppCompatTheme_colorControlNormal @see #AppCompatTheme_colorError @see #AppCompatTheme_colorPrimary @see #AppCompatTheme_colorPrimaryDark @see #AppCompatTheme_colorSwitchThumbNormal @see #AppCompatTheme_controlBackground @see #AppCompatTheme_dialogPreferredPadding @see #AppCompatTheme_dialogTheme @see #AppCompatTheme_dividerHorizontal @see #AppCompatTheme_dividerVertical @see #AppCompatTheme_dropDownListViewStyle @see #AppCompatTheme_dropdownListPreferredItemHeight @see #AppCompatTheme_editTextBackground @see #AppCompatTheme_editTextColor @see #AppCompatTheme_editTextStyle @see #AppCompatTheme_homeAsUpIndicator @see #AppCompatTheme_imageButtonStyle @see #AppCompatTheme_listChoiceBackgroundIndicator @see #AppCompatTheme_listDividerAlertDialog @see #AppCompatTheme_listMenuViewStyle @see #AppCompatTheme_listPopupWindowStyle @see #AppCompatTheme_listPreferredItemHeight @see #AppCompatTheme_listPreferredItemHeightLarge @see #AppCompatTheme_listPreferredItemHeightSmall @see #AppCompatTheme_listPreferredItemPaddingLeft @see #AppCompatTheme_listPreferredItemPaddingRight @see #AppCompatTheme_panelBackground @see #AppCompatTheme_panelMenuListTheme @see #AppCompatTheme_panelMenuListWidth @see #AppCompatTheme_popupMenuStyle @see #AppCompatTheme_popupWindowStyle @see #AppCompatTheme_radioButtonStyle @see #AppCompatTheme_ratingBarStyle @see #AppCompatTheme_ratingBarStyleIndicator @see #AppCompatTheme_ratingBarStyleSmall @see #AppCompatTheme_searchViewStyle @see #AppCompatTheme_seekBarStyle @see #AppCompatTheme_selectableItemBackground @see #AppCompatTheme_selectableItemBackgroundBorderless @see #AppCompatTheme_spinnerDropDownItemStyle @see #AppCompatTheme_spinnerStyle @see #AppCompatTheme_switchStyle @see #AppCompatTheme_textAppearanceLargePopupMenu @see #AppCompatTheme_textAppearanceListItem @see #AppCompatTheme_textAppearanceListItemSecondary @see #AppCompatTheme_textAppearanceListItemSmall @see #AppCompatTheme_textAppearancePopupMenuHeader @see #AppCompatTheme_textAppearanceSearchResultSubtitle @see #AppCompatTheme_textAppearanceSearchResultTitle @see #AppCompatTheme_textAppearanceSmallPopupMenu @see #AppCompatTheme_textColorAlertDialogListItem @see #AppCompatTheme_textColorSearchUrl @see #AppCompatTheme_toolbarNavigationButtonStyle @see #AppCompatTheme_toolbarStyle @see #AppCompatTheme_tooltipForegroundColor @see #AppCompatTheme_tooltipFrameBackground @see #AppCompatTheme_windowActionBar @see #AppCompatTheme_windowActionBarOverlay @see #AppCompatTheme_windowActionModeOverlay @see #AppCompatTheme_windowFixedHeightMajor @see #AppCompatTheme_windowFixedHeightMinor @see #AppCompatTheme_windowFixedWidthMajor @see #AppCompatTheme_windowFixedWidthMinor @see #AppCompatTheme_windowMinWidthMajor @see #AppCompatTheme_windowMinWidthMinor @see #AppCompatTheme_windowNoTitle */ public static final int[] AppCompatTheme = { 0x01010057, 0x010100ae, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionBarDivider} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionBarItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionBarPopupTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionBarSize} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>wrap_content</code></td><td>0</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:actionBarSize */ public static final int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionBarSplitStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionBarTabBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionBarTabStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionBarTabTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionBarTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionBarWidgetTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle = 50; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionDropDownStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle = 46; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionMenuTextAppearance} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionMenuTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.KeyboardType:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModeBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModeCloseButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModeCloseDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModeCopyDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModeCutDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModeFindDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModePasteDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModePopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModeSelectAllDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModeShareDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModeSplitBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModeStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionModeWebSearchDrawable} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionOverflowButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionOverflowMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#activityChooserViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle = 58; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#alertDialogButtonGroupStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 95; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#alertDialogCenterButtons} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons = 96; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#alertDialogStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle = 94; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#alertDialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme = 97; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowAnimationStyle */ public static final int AppCompatTheme_android_windowAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating} attribute's value can be found in the {@link #AppCompatTheme} array. @attr name android:windowIsFloating */ public static final int AppCompatTheme_android_windowIsFloating = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#autoCompleteTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle = 102; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#borderlessButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle = 55; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#buttonBarButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle = 52; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#buttonBarNegativeButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 100; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#buttonBarNeutralButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 101; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#buttonBarPositiveButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 99; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#buttonBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle = 51; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#buttonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:buttonStyle */ public static final int AppCompatTheme_buttonStyle = 103; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#buttonStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall = 104; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#checkboxStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle = 105; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#checkedTextViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle = 106; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#colorAccent} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:colorAccent */ public static final int AppCompatTheme_colorAccent = 86; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#colorBackgroundFloating} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating = 93; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#colorButtonNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal = 90; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#colorControlActivated} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated = 88; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#colorControlHighlight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight = 89; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#colorControlNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal = 87; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#colorError} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.KeyboardType:colorError */ public static final int AppCompatTheme_colorError = 118; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#colorPrimary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:colorPrimary */ public static final int AppCompatTheme_colorPrimary = 84; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#colorPrimaryDark} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark = 85; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#colorSwitchThumbNormal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal = 91; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#controlBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:controlBackground */ public static final int AppCompatTheme_controlBackground = 92; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#dialogPreferredPadding} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding = 44; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#dialogTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:dialogTheme */ public static final int AppCompatTheme_dialogTheme = 43; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#dividerHorizontal} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal = 57; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#dividerVertical} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:dividerVertical */ public static final int AppCompatTheme_dividerVertical = 56; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#dropDownListViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle = 75; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#dropdownListPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#editTextBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:editTextBackground */ public static final int AppCompatTheme_editTextBackground = 64; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#editTextColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.KeyboardType:editTextColor */ public static final int AppCompatTheme_editTextColor = 63; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#editTextStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:editTextStyle */ public static final int AppCompatTheme_editTextStyle = 107; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#homeAsUpIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator = 49; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#imageButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle = 65; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#listChoiceBackgroundIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 83; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#listDividerAlertDialog} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog = 45; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#listMenuViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle = 115; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#listPopupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle = 76; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#listPreferredItemHeight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight = 70; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#listPreferredItemHeightLarge} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#listPreferredItemHeightSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#listPreferredItemPaddingLeft} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#listPreferredItemPaddingRight} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#panelBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:panelBackground */ public static final int AppCompatTheme_panelBackground = 80; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#panelMenuListTheme} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme = 82; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#panelMenuListWidth} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth = 81; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#popupMenuStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle = 61; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#popupWindowStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle = 62; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#radioButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle = 108; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#ratingBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle = 109; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#ratingBarStyleIndicator} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator = 110; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#ratingBarStyleSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall = 111; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#searchViewStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle = 69; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#seekBarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle = 112; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#selectableItemBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground = 53; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#selectableItemBackgroundBorderless} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#spinnerDropDownItemStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#spinnerStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle = 113; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#switchStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:switchStyle */ public static final int AppCompatTheme_switchStyle = 114; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textAppearanceLargePopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textAppearanceListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem = 77; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textAppearanceListItemSecondary} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:textAppearanceListItemSecondary */ public static final int AppCompatTheme_textAppearanceListItemSecondary = 78; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textAppearanceListItemSmall} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall = 79; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textAppearancePopupMenuHeader} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textAppearanceSearchResultSubtitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textAppearanceSearchResultTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textAppearanceSmallPopupMenu} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textColorAlertDialogListItem} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.KeyboardType:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem = 98; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textColorSearchUrl} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.KeyboardType:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl = 68; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#toolbarNavigationButtonStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#toolbarStyle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle = 59; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tooltipForegroundColor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.KeyboardType:tooltipForegroundColor */ public static final int AppCompatTheme_tooltipForegroundColor = 117; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tooltipFrameBackground} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:tooltipFrameBackground */ public static final int AppCompatTheme_tooltipFrameBackground = 116; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#windowActionBar} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:windowActionBar */ public static final int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#windowActionModeOverlay} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#windowFixedHeightMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#windowFixedHeightMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#windowFixedWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#windowFixedWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#windowMinWidthMajor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#windowMinWidthMinor} attribute's value can be found in the {@link #AppCompatTheme} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>". The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to some parent container. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#windowNoTitle} attribute's value can be found in the {@link #AppCompatTheme} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:windowNoTitle */ public static final int AppCompatTheme_windowNoTitle = 3; /** Attributes that can be used with a BottomNavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomNavigationView_elevation com.companyname.KeyboardType:elevation}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemBackground com.companyname.KeyboardType:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemIconTint com.companyname.KeyboardType:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextColor com.companyname.KeyboardType:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_menu com.companyname.KeyboardType:menu}</code></td><td></td></tr> </table> @see #BottomNavigationView_elevation @see #BottomNavigationView_itemBackground @see #BottomNavigationView_itemIconTint @see #BottomNavigationView_itemTextColor @see #BottomNavigationView_menu */ public static final int[] BottomNavigationView = { 0x7f01003e, 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#elevation} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:elevation */ public static final int BottomNavigationView_elevation = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#itemBackground} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:itemBackground */ public static final int BottomNavigationView_itemBackground = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#itemIconTint} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:itemIconTint */ public static final int BottomNavigationView_itemIconTint = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#itemTextColor} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:itemTextColor */ public static final int BottomNavigationView_itemTextColor = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#menu} attribute's value can be found in the {@link #BottomNavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:menu */ public static final int BottomNavigationView_menu = 1; /** Attributes that can be used with a BottomSheetBehavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable com.companyname.KeyboardType:behavior_hideable}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.companyname.KeyboardType:behavior_peekHeight}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.companyname.KeyboardType:behavior_skipCollapsed}</code></td><td></td></tr> </table> @see #BottomSheetBehavior_Layout_behavior_hideable @see #BottomSheetBehavior_Layout_behavior_peekHeight @see #BottomSheetBehavior_Layout_behavior_skipCollapsed */ public static final int[] BottomSheetBehavior_Layout = { 0x7f01011d, 0x7f01011e, 0x7f01011f }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#behavior_hideable} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#behavior_peekHeight} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#behavior_skipCollapsed} attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:behavior_skipCollapsed */ public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2; /** Attributes that can be used with a ButtonBarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ButtonBarLayout_allowStacking com.companyname.KeyboardType:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f0100cb }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#allowStacking} attribute's value can be found in the {@link #ButtonBarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:allowStacking */ public static final int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a CardView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardBackgroundColor com.companyname.KeyboardType:cardBackgroundColor}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardCornerRadius com.companyname.KeyboardType:cardCornerRadius}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardElevation com.companyname.KeyboardType:cardElevation}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardMaxElevation com.companyname.KeyboardType:cardMaxElevation}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardPreventCornerOverlap com.companyname.KeyboardType:cardPreventCornerOverlap}</code></td><td></td></tr> <tr><td><code>{@link #CardView_cardUseCompatPadding com.companyname.KeyboardType:cardUseCompatPadding}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPadding com.companyname.KeyboardType:contentPadding}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingBottom com.companyname.KeyboardType:contentPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingLeft com.companyname.KeyboardType:contentPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingRight com.companyname.KeyboardType:contentPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #CardView_contentPaddingTop com.companyname.KeyboardType:contentPaddingTop}</code></td><td></td></tr> </table> @see #CardView_android_minHeight @see #CardView_android_minWidth @see #CardView_cardBackgroundColor @see #CardView_cardCornerRadius @see #CardView_cardElevation @see #CardView_cardMaxElevation @see #CardView_cardPreventCornerOverlap @see #CardView_cardUseCompatPadding @see #CardView_contentPadding @see #CardView_contentPaddingBottom @see #CardView_contentPaddingLeft @see #CardView_contentPaddingRight @see #CardView_contentPaddingTop */ public static final int[] CardView = { 0x0101013f, 0x01010140, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021 }; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #CardView} array. @attr name android:minHeight */ public static final int CardView_android_minHeight = 1; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #CardView} array. @attr name android:minWidth */ public static final int CardView_android_minWidth = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#cardBackgroundColor} attribute's value can be found in the {@link #CardView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:cardBackgroundColor */ public static final int CardView_cardBackgroundColor = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#cardCornerRadius} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:cardCornerRadius */ public static final int CardView_cardCornerRadius = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#cardElevation} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:cardElevation */ public static final int CardView_cardElevation = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#cardMaxElevation} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:cardMaxElevation */ public static final int CardView_cardMaxElevation = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#cardPreventCornerOverlap} attribute's value can be found in the {@link #CardView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:cardPreventCornerOverlap */ public static final int CardView_cardPreventCornerOverlap = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#cardUseCompatPadding} attribute's value can be found in the {@link #CardView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:cardUseCompatPadding */ public static final int CardView_cardUseCompatPadding = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentPadding} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentPadding */ public static final int CardView_contentPadding = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentPaddingBottom} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentPaddingBottom */ public static final int CardView_contentPaddingBottom = 12; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentPaddingLeft} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentPaddingLeft */ public static final int CardView_contentPaddingLeft = 9; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentPaddingRight} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentPaddingRight */ public static final int CardView_contentPaddingRight = 10; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentPaddingTop} attribute's value can be found in the {@link #CardView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentPaddingTop */ public static final int CardView_contentPaddingTop = 11; /** Attributes that can be used with a CollapsingToolbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.companyname.KeyboardType:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.KeyboardType:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.companyname.KeyboardType:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.KeyboardType:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.KeyboardType:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.KeyboardType:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.KeyboardType:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.KeyboardType:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.KeyboardType:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.KeyboardType:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.companyname.KeyboardType:scrimAnimationDuration}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.companyname.KeyboardType:scrimVisibleHeightTrigger}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.KeyboardType:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title com.companyname.KeyboardType:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.companyname.KeyboardType:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.companyname.KeyboardType:toolbarId}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_collapsedTitleGravity @see #CollapsingToolbarLayout_collapsedTitleTextAppearance @see #CollapsingToolbarLayout_contentScrim @see #CollapsingToolbarLayout_expandedTitleGravity @see #CollapsingToolbarLayout_expandedTitleMargin @see #CollapsingToolbarLayout_expandedTitleMarginBottom @see #CollapsingToolbarLayout_expandedTitleMarginEnd @see #CollapsingToolbarLayout_expandedTitleMarginStart @see #CollapsingToolbarLayout_expandedTitleMarginTop @see #CollapsingToolbarLayout_expandedTitleTextAppearance @see #CollapsingToolbarLayout_scrimAnimationDuration @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger @see #CollapsingToolbarLayout_statusBarScrim @see #CollapsingToolbarLayout_title @see #CollapsingToolbarLayout_titleEnabled @see #CollapsingToolbarLayout_toolbarId */ public static final int[] CollapsingToolbarLayout = { 0x7f010025, 0x7f010120, 0x7f010121, 0x7f010122, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#collapsedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#collapsedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#expandedTitleGravity} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity = 14; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#expandedTitleMargin} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#expandedTitleMarginBottom} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#expandedTitleMarginEnd} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#expandedTitleMarginStart} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#expandedTitleMarginTop} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#expandedTitleTextAppearance} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#scrimAnimationDuration} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#scrimVisibleHeightTrigger} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#statusBarScrim} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#title} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:title */ public static final int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#titleEnabled} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled = 15; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#toolbarId} attribute's value can be found in the {@link #CollapsingToolbarLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:toolbarId */ public static final int CollapsingToolbarLayout_toolbarId = 10; /** Attributes that can be used with a CollapsingToolbarLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode com.companyname.KeyboardType:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.companyname.KeyboardType:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_Layout_layout_collapseMode @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout = { 0x7f01012f, 0x7f010130 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layout_collapseMode} attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>pin</code></td><td>1</td><td></td></tr> <tr><td><code>parallax</code></td><td>2</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layout_collapseParallaxMultiplier} attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:layout_collapseParallaxMultiplier */ public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1; /** Attributes that can be used with a ColorStateListItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ColorStateListItem_alpha com.companyname.KeyboardType:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr> </table> @see #ColorStateListItem_alpha @see #ColorStateListItem_android_alpha @see #ColorStateListItem_android_color */ public static final int[] ColorStateListItem = { 0x010101a5, 0x0101031f, 0x7f0100cc }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. <p>Must be a floating point value, such as "<code>1.2</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:alpha */ public static final int ColorStateListItem_alpha = 2; /** <p>This symbol is the offset where the {@link android.R.attr#alpha} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:alpha */ public static final int ColorStateListItem_android_alpha = 1; /** <p>This symbol is the offset where the {@link android.R.attr#color} attribute's value can be found in the {@link #ColorStateListItem} array. @attr name android:color */ public static final int ColorStateListItem_android_color = 0; /** Attributes that can be used with a CompoundButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTint com.companyname.KeyboardType:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode com.companyname.KeyboardType:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f0100cd, 0x7f0100ce }; /** <p>This symbol is the offset where the {@link android.R.attr#button} attribute's value can be found in the {@link #CompoundButton} array. @attr name android:button */ public static final int CompoundButton_android_button = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#buttonTint} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#buttonTintMode} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a CoordinatorLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_keylines com.companyname.KeyboardType:keylines}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.companyname.KeyboardType:statusBarBackground}</code></td><td></td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f010131, 0x7f010132 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#keylines} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:keylines */ public static final int CoordinatorLayout_keylines = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#statusBarBackground} attribute's value can be found in the {@link #CoordinatorLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:statusBarBackground */ public static final int CoordinatorLayout_statusBarBackground = 1; /** Attributes that can be used with a CoordinatorLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor com.companyname.KeyboardType:layout_anchor}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.companyname.KeyboardType:layout_anchorGravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.companyname.KeyboardType:layout_behavior}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.companyname.KeyboardType:layout_dodgeInsetEdges}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.companyname.KeyboardType:layout_insetEdge}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.companyname.KeyboardType:layout_keyline}</code></td><td></td></tr> </table> @see #CoordinatorLayout_Layout_android_layout_gravity @see #CoordinatorLayout_Layout_layout_anchor @see #CoordinatorLayout_Layout_layout_anchorGravity @see #CoordinatorLayout_Layout_layout_behavior @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges @see #CoordinatorLayout_Layout_layout_insetEdge @see #CoordinatorLayout_Layout_layout_keyline */ public static final int[] CoordinatorLayout_Layout = { 0x010100b3, 0x7f010133, 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. @attr name android:layout_gravity */ public static final int CoordinatorLayout_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layout_anchor} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layout_anchorGravity} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x05</td><td></td></tr> <tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr> <tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr> <tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr> <tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr> <tr><td><code>center</code></td><td>0x11</td><td></td></tr> <tr><td><code>fill</code></td><td>0x77</td><td></td></tr> <tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr> <tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layout_behavior} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layout_dodgeInsetEdges} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> <tr><td><code>all</code></td><td>0x77</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layout_insetEdge} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0x0</td><td></td></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> <tr><td><code>left</code></td><td>0x03</td><td></td></tr> <tr><td><code>right</code></td><td>0x03</td><td></td></tr> <tr><td><code>start</code></td><td>0x00800003</td><td></td></tr> <tr><td><code>end</code></td><td>0x00800005</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layout_keyline} attribute's value can be found in the {@link #CoordinatorLayout_Layout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:layout_keyline */ public static final int CoordinatorLayout_Layout_layout_keyline = 3; /** Attributes that can be used with a DesignTheme. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme com.companyname.KeyboardType:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_bottomSheetStyle com.companyname.KeyboardType:bottomSheetStyle}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_textColorError com.companyname.KeyboardType:textColorError}</code></td><td></td></tr> </table> @see #DesignTheme_bottomSheetDialogTheme @see #DesignTheme_bottomSheetStyle @see #DesignTheme_textColorError */ public static final int[] DesignTheme = { 0x7f010139, 0x7f01013a, 0x7f01013b }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#bottomSheetDialogTheme} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#bottomSheetStyle} attribute's value can be found in the {@link #DesignTheme} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textColorError} attribute's value can be found in the {@link #DesignTheme} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.KeyboardType:textColorError */ public static final int DesignTheme_textColorError = 2; /** Attributes that can be used with a DrawerArrowToggle. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength com.companyname.KeyboardType:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.companyname.KeyboardType:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength com.companyname.KeyboardType:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.companyname.KeyboardType:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.companyname.KeyboardType:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.companyname.KeyboardType:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.companyname.KeyboardType:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.companyname.KeyboardType:thickness}</code></td><td></td></tr> </table> @see #DrawerArrowToggle_arrowHeadLength @see #DrawerArrowToggle_arrowShaftLength @see #DrawerArrowToggle_barLength @see #DrawerArrowToggle_color @see #DrawerArrowToggle_drawableSize @see #DrawerArrowToggle_gapBetweenBars @see #DrawerArrowToggle_spinBars @see #DrawerArrowToggle_thickness */ public static final int[] DrawerArrowToggle = { 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#arrowHeadLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#arrowShaftLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#barLength} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#color} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#drawableSize} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#gapBetweenBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#spinBars} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#thickness} attribute's value can be found in the {@link #DrawerArrowToggle} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:thickness */ public static final int DrawerArrowToggle_thickness = 7; /** Attributes that can be used with a FloatingActionButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTint com.companyname.KeyboardType:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.companyname.KeyboardType:backgroundTintMode}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth com.companyname.KeyboardType:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation com.companyname.KeyboardType:elevation}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize com.companyname.KeyboardType:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.companyname.KeyboardType:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor com.companyname.KeyboardType:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_useCompatPadding com.companyname.KeyboardType:useCompatPadding}</code></td><td></td></tr> </table> @see #FloatingActionButton_backgroundTint @see #FloatingActionButton_backgroundTintMode @see #FloatingActionButton_borderWidth @see #FloatingActionButton_elevation @see #FloatingActionButton_fabSize @see #FloatingActionButton_pressedTranslationZ @see #FloatingActionButton_rippleColor @see #FloatingActionButton_useCompatPadding */ public static final int[] FloatingActionButton = { 0x7f01003e, 0x7f010116, 0x7f010117, 0x7f01013c, 0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#backgroundTint} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:backgroundTint */ public static final int FloatingActionButton_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#backgroundTintMode} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#borderWidth} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:borderWidth */ public static final int FloatingActionButton_borderWidth = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#elevation} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:elevation */ public static final int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fabSize} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>auto</code></td><td>-1</td><td></td></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>mini</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:fabSize */ public static final int FloatingActionButton_fabSize = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#pressedTranslationZ} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#rippleColor} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:rippleColor */ public static final int FloatingActionButton_rippleColor = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#useCompatPadding} attribute's value can be found in the {@link #FloatingActionButton} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding = 7; /** Attributes that can be used with a FloatingActionButton_Behavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide com.companyname.KeyboardType:behavior_autoHide}</code></td><td></td></tr> </table> @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f010141 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#behavior_autoHide} attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:behavior_autoHide */ public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; /** Attributes that can be used with a FontFamily. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FontFamily_fontProviderAuthority com.companyname.KeyboardType:fontProviderAuthority}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderCerts com.companyname.KeyboardType:fontProviderCerts}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy com.companyname.KeyboardType:fontProviderFetchStrategy}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout com.companyname.KeyboardType:fontProviderFetchTimeout}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderPackage com.companyname.KeyboardType:fontProviderPackage}</code></td><td></td></tr> <tr><td><code>{@link #FontFamily_fontProviderQuery com.companyname.KeyboardType:fontProviderQuery}</code></td><td></td></tr> </table> @see #FontFamily_fontProviderAuthority @see #FontFamily_fontProviderCerts @see #FontFamily_fontProviderFetchStrategy @see #FontFamily_fontProviderFetchTimeout @see #FontFamily_fontProviderPackage @see #FontFamily_fontProviderQuery */ public static final int[] FontFamily = { 0x7f01016a, 0x7f01016b, 0x7f01016c, 0x7f01016d, 0x7f01016e, 0x7f01016f }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fontProviderAuthority} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:fontProviderAuthority */ public static final int FontFamily_fontProviderAuthority = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fontProviderCerts} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:fontProviderCerts */ public static final int FontFamily_fontProviderCerts = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fontProviderFetchStrategy} attribute's value can be found in the {@link #FontFamily} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>blocking</code></td><td>0</td><td></td></tr> <tr><td><code>async</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:fontProviderFetchStrategy */ public static final int FontFamily_fontProviderFetchStrategy = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fontProviderFetchTimeout} attribute's value can be found in the {@link #FontFamily} array. <p>May be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. <p>May be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>forever</code></td><td>-1</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:fontProviderFetchTimeout */ public static final int FontFamily_fontProviderFetchTimeout = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fontProviderPackage} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:fontProviderPackage */ public static final int FontFamily_fontProviderPackage = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fontProviderQuery} attribute's value can be found in the {@link #FontFamily} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:fontProviderQuery */ public static final int FontFamily_fontProviderQuery = 2; /** Attributes that can be used with a FontFamilyFont. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_font com.companyname.KeyboardType:font}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_fontStyle com.companyname.KeyboardType:fontStyle}</code></td><td></td></tr> <tr><td><code>{@link #FontFamilyFont_fontWeight com.companyname.KeyboardType:fontWeight}</code></td><td></td></tr> </table> @see #FontFamilyFont_android_font @see #FontFamilyFont_android_fontStyle @see #FontFamilyFont_android_fontWeight @see #FontFamilyFont_font @see #FontFamilyFont_fontStyle @see #FontFamilyFont_fontWeight */ public static final int[] FontFamilyFont = { 0x01010532, 0x01010533, 0x0101053f, 0x7f010170, 0x7f010171, 0x7f010172 }; /** <p>This symbol is the offset where the {@link android.R.attr#font} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:font */ public static final int FontFamilyFont_android_font = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fontStyle} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontStyle */ public static final int FontFamilyFont_android_fontStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#fontWeight} attribute's value can be found in the {@link #FontFamilyFont} array. @attr name android:fontWeight */ public static final int FontFamilyFont_android_fontWeight = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#font} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:font */ public static final int FontFamilyFont_font = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fontStyle} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>normal</code></td><td>0</td><td></td></tr> <tr><td><code>italic</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:fontStyle */ public static final int FontFamilyFont_fontStyle = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fontWeight} attribute's value can be found in the {@link #FontFamilyFont} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:fontWeight */ public static final int FontFamilyFont_fontWeight = 5; /** Attributes that can be used with a ForegroundLinearLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr> <tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding com.companyname.KeyboardType:foregroundInsidePadding}</code></td><td></td></tr> </table> @see #ForegroundLinearLayout_android_foreground @see #ForegroundLinearLayout_android_foregroundGravity @see #ForegroundLinearLayout_foregroundInsidePadding */ public static final int[] ForegroundLinearLayout = { 0x01010109, 0x01010200, 0x7f010142 }; /** <p>This symbol is the offset where the {@link android.R.attr#foreground} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foreground */ public static final int ForegroundLinearLayout_android_foreground = 0; /** <p>This symbol is the offset where the {@link android.R.attr#foregroundGravity} attribute's value can be found in the {@link #ForegroundLinearLayout} array. @attr name android:foregroundGravity */ public static final int ForegroundLinearLayout_android_foregroundGravity = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#foregroundInsidePadding} attribute's value can be found in the {@link #ForegroundLinearLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; /** Attributes that can be used with a LinearLayoutCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_divider com.companyname.KeyboardType:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.companyname.KeyboardType:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.KeyboardType:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.companyname.KeyboardType:showDividers}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_android_baselineAligned @see #LinearLayoutCompat_android_baselineAlignedChildIndex @see #LinearLayoutCompat_android_gravity @see #LinearLayoutCompat_android_orientation @see #LinearLayoutCompat_android_weightSum @see #LinearLayoutCompat_divider @see #LinearLayoutCompat_dividerPadding @see #LinearLayoutCompat_measureWithLargestChild @see #LinearLayoutCompat_showDividers */ public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01002d, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9 }; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAligned} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAligned */ public static final int LinearLayoutCompat_android_baselineAligned = 2; /** <p>This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:baselineAlignedChildIndex */ public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:gravity */ public static final int LinearLayoutCompat_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:orientation */ public static final int LinearLayoutCompat_android_orientation = 1; /** <p>This symbol is the offset where the {@link android.R.attr#weightSum} attribute's value can be found in the {@link #LinearLayoutCompat} array. @attr name android:weightSum */ public static final int LinearLayoutCompat_android_weightSum = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#divider} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#dividerPadding} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#measureWithLargestChild} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#showDividers} attribute's value can be found in the {@link #LinearLayoutCompat} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>0</td><td></td></tr> <tr><td><code>beginning</code></td><td>1</td><td></td></tr> <tr><td><code>middle</code></td><td>2</td><td></td></tr> <tr><td><code>end</code></td><td>4</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:showDividers */ public static final int LinearLayoutCompat_showDividers = 7; /** Attributes that can be used with a LinearLayoutCompat_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr> </table> @see #LinearLayoutCompat_Layout_android_layout_gravity @see #LinearLayoutCompat_Layout_android_layout_height @see #LinearLayoutCompat_Layout_android_layout_weight @see #LinearLayoutCompat_Layout_android_layout_width */ public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; /** <p>This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_gravity */ public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_height */ public static final int LinearLayoutCompat_Layout_android_layout_height = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout_weight} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_weight */ public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; /** <p>This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. @attr name android:layout_width */ public static final int LinearLayoutCompat_Layout_android_layout_width = 1; /** Attributes that can be used with a ListPopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr> <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr> </table> @see #ListPopupWindow_android_dropDownHorizontalOffset @see #ListPopupWindow_android_dropDownVerticalOffset */ public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownHorizontalOffset */ public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} attribute's value can be found in the {@link #ListPopupWindow} array. @attr name android:dropDownVerticalOffset */ public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; /** Attributes that can be used with a MediaRouteButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr> <tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable com.companyname.KeyboardType:externalRouteEnabledDrawable}</code></td><td></td></tr> <tr><td><code>{@link #MediaRouteButton_mediaRouteButtonTint com.companyname.KeyboardType:mediaRouteButtonTint}</code></td><td></td></tr> </table> @see #MediaRouteButton_android_minHeight @see #MediaRouteButton_android_minWidth @see #MediaRouteButton_externalRouteEnabledDrawable @see #MediaRouteButton_mediaRouteButtonTint */ public static final int[] MediaRouteButton = { 0x0101013f, 0x01010140, 0x7f010015, 0x7f010016 }; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #MediaRouteButton} array. @attr name android:minHeight */ public static final int MediaRouteButton_android_minHeight = 1; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #MediaRouteButton} array. @attr name android:minWidth */ public static final int MediaRouteButton_android_minWidth = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#externalRouteEnabledDrawable} attribute's value can be found in the {@link #MediaRouteButton} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:externalRouteEnabledDrawable */ public static final int MediaRouteButton_externalRouteEnabledDrawable = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#mediaRouteButtonTint} attribute's value can be found in the {@link #MediaRouteButton} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:mediaRouteButtonTint */ public static final int MediaRouteButton_mediaRouteButtonTint = 3; /** Attributes that can be used with a MenuGroup. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr> </table> @see #MenuGroup_android_checkableBehavior @see #MenuGroup_android_enabled @see #MenuGroup_android_id @see #MenuGroup_android_menuCategory @see #MenuGroup_android_orderInCategory @see #MenuGroup_android_visible */ public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; /** <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior = 5; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:enabled */ public static final int MenuGroup_android_enabled = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:id */ public static final int MenuGroup_android_id = 1; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory = 4; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuGroup} array. @attr name android:visible */ public static final int MenuGroup_android_visible = 2; /** Attributes that can be used with a MenuItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuItem_actionLayout com.companyname.KeyboardType:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.companyname.KeyboardType:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.companyname.KeyboardType:actionViewClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_alphabeticModifiers com.companyname.KeyboardType:alphabeticModifiers}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_contentDescription com.companyname.KeyboardType:contentDescription}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_iconTint com.companyname.KeyboardType:iconTint}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_iconTintMode com.companyname.KeyboardType:iconTintMode}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_numericModifiers com.companyname.KeyboardType:numericModifiers}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_showAsAction com.companyname.KeyboardType:showAsAction}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_tooltipText com.companyname.KeyboardType:tooltipText}</code></td><td></td></tr> </table> @see #MenuItem_actionLayout @see #MenuItem_actionProviderClass @see #MenuItem_actionViewClass @see #MenuItem_alphabeticModifiers @see #MenuItem_android_alphabeticShortcut @see #MenuItem_android_checkable @see #MenuItem_android_checked @see #MenuItem_android_enabled @see #MenuItem_android_icon @see #MenuItem_android_id @see #MenuItem_android_menuCategory @see #MenuItem_android_numericShortcut @see #MenuItem_android_onClick @see #MenuItem_android_orderInCategory @see #MenuItem_android_title @see #MenuItem_android_titleCondensed @see #MenuItem_android_visible @see #MenuItem_contentDescription @see #MenuItem_iconTint @see #MenuItem_iconTintMode @see #MenuItem_numericModifiers @see #MenuItem_showAsAction @see #MenuItem_tooltipText */ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionLayout} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:actionLayout */ public static final int MenuItem_actionLayout = 16; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionProviderClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:actionProviderClass */ public static final int MenuItem_actionProviderClass = 18; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#actionViewClass} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:actionViewClass */ public static final int MenuItem_actionViewClass = 17; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#alphabeticModifiers} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:alphabeticModifiers */ public static final int MenuItem_alphabeticModifiers = 13; /** <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /** <p>This symbol is the offset where the {@link android.R.attr#checkable} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /** <p>This symbol is the offset where the {@link android.R.attr#checked} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuItem} array. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #MenuItem} array. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuItem} array. @attr name android:id */ public static final int MenuItem_android_id = 2; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /** <p>This symbol is the offset where the {@link android.R.attr#numericShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /** <p>This symbol is the offset where the {@link android.R.attr#onClick} attribute's value can be found in the {@link #MenuItem} array. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory = 6; /** <p>This symbol is the offset where the {@link android.R.attr#title} attribute's value can be found in the {@link #MenuItem} array. @attr name android:title */ public static final int MenuItem_android_title = 7; /** <p>This symbol is the offset where the {@link android.R.attr#titleCondensed} attribute's value can be found in the {@link #MenuItem} array. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuItem} array. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentDescription} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentDescription */ public static final int MenuItem_contentDescription = 19; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#iconTint} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:iconTint */ public static final int MenuItem_iconTint = 21; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#iconTintMode} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:iconTintMode */ public static final int MenuItem_iconTintMode = 22; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#numericModifiers} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>META</code></td><td>0x10000</td><td></td></tr> <tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr> <tr><td><code>ALT</code></td><td>0x02</td><td></td></tr> <tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr> <tr><td><code>SYM</code></td><td>0x4</td><td></td></tr> <tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:numericModifiers */ public static final int MenuItem_numericModifiers = 14; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#showAsAction} attribute's value can be found in the {@link #MenuItem} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>never</code></td><td>0</td><td></td></tr> <tr><td><code>ifRoom</code></td><td>1</td><td></td></tr> <tr><td><code>always</code></td><td>2</td><td></td></tr> <tr><td><code>withText</code></td><td>4</td><td></td></tr> <tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:showAsAction */ public static final int MenuItem_showAsAction = 15; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tooltipText} attribute's value can be found in the {@link #MenuItem} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tooltipText */ public static final int MenuItem_tooltipText = 20; /** Attributes that can be used with a MenuView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_preserveIconSpacing com.companyname.KeyboardType:preserveIconSpacing}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_subMenuArrow com.companyname.KeyboardType:subMenuArrow}</code></td><td></td></tr> </table> @see #MenuView_android_headerBackground @see #MenuView_android_horizontalDivider @see #MenuView_android_itemBackground @see #MenuView_android_itemIconDisabledAlpha @see #MenuView_android_itemTextAppearance @see #MenuView_android_verticalDivider @see #MenuView_android_windowAnimationStyle @see #MenuView_preserveIconSpacing @see #MenuView_subMenuArrow */ public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100e4, 0x7f0100e5 }; /** <p>This symbol is the offset where the {@link android.R.attr#headerBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:headerBackground */ public static final int MenuView_android_headerBackground = 4; /** <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider = 2; /** <p>This symbol is the offset where the {@link android.R.attr#itemBackground} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemBackground */ public static final int MenuView_android_itemBackground = 5; /** <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha = 6; /** <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance} attribute's value can be found in the {@link #MenuView} array. @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance = 1; /** <p>This symbol is the offset where the {@link android.R.attr#verticalDivider} attribute's value can be found in the {@link #MenuView} array. @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider = 3; /** <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} attribute's value can be found in the {@link #MenuView} array. @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#preserveIconSpacing} attribute's value can be found in the {@link #MenuView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#subMenuArrow} attribute's value can be found in the {@link #MenuView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:subMenuArrow */ public static final int MenuView_subMenuArrow = 8; /** Attributes that can be used with a NavigationView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_elevation com.companyname.KeyboardType:elevation}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_headerLayout com.companyname.KeyboardType:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground com.companyname.KeyboardType:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint com.companyname.KeyboardType:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance com.companyname.KeyboardType:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor com.companyname.KeyboardType:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu com.companyname.KeyboardType:menu}</code></td><td></td></tr> </table> @see #NavigationView_android_background @see #NavigationView_android_fitsSystemWindows @see #NavigationView_android_maxWidth @see #NavigationView_elevation @see #NavigationView_headerLayout @see #NavigationView_itemBackground @see #NavigationView_itemIconTint @see #NavigationView_itemTextAppearance @see #NavigationView_itemTextColor @see #NavigationView_menu */ public static final int[] NavigationView = { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01003e, 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, 0x7f010147, 0x7f010148 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #NavigationView} array. @attr name android:background */ public static final int NavigationView_android_background = 0; /** <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} attribute's value can be found in the {@link #NavigationView} array. @attr name android:fitsSystemWindows */ public static final int NavigationView_android_fitsSystemWindows = 1; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #NavigationView} array. @attr name android:maxWidth */ public static final int NavigationView_android_maxWidth = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#elevation} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:elevation */ public static final int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#headerLayout} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:headerLayout */ public static final int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#itemBackground} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:itemBackground */ public static final int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#itemIconTint} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:itemIconTint */ public static final int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#itemTextAppearance} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:itemTextAppearance */ public static final int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#itemTextColor} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:itemTextColor */ public static final int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#menu} attribute's value can be found in the {@link #NavigationView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:menu */ public static final int NavigationView_menu = 4; /** Attributes that can be used with a PopupWindow. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #PopupWindow_overlapAnchor com.companyname.KeyboardType:overlapAnchor}</code></td><td></td></tr> </table> @see #PopupWindow_android_popupAnimationStyle @see #PopupWindow_android_popupBackground @see #PopupWindow_overlapAnchor */ public static final int[] PopupWindow = { 0x01010176, 0x010102c9, 0x7f0100e6 }; /** <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupAnimationStyle */ public static final int PopupWindow_android_popupAnimationStyle = 1; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #PopupWindow} array. @attr name android:popupBackground */ public static final int PopupWindow_android_popupBackground = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#overlapAnchor} attribute's value can be found in the {@link #PopupWindow} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:overlapAnchor */ public static final int PopupWindow_overlapAnchor = 2; /** Attributes that can be used with a PopupWindowBackgroundState. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor com.companyname.KeyboardType:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f0100e7 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#state_above_anchor} attribute's value can be found in the {@link #PopupWindowBackgroundState} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType: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 com.companyname.KeyboardType:paddingBottomNoButtons}</code></td><td></td></tr> <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.companyname.KeyboardType:paddingTopNoTitle}</code></td><td></td></tr> </table> @see #RecycleListView_paddingBottomNoButtons @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView = { 0x7f0100e8, 0x7f0100e9 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#paddingBottomNoButtons} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#paddingTopNoTitle} attribute's value can be found in the {@link #RecycleListView} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:paddingTopNoTitle */ public static final int RecycleListView_paddingTopNoTitle = 1; /** Attributes that can be used with a RecyclerView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollEnabled com.companyname.KeyboardType:fastScrollEnabled}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.companyname.KeyboardType:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.companyname.KeyboardType:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.companyname.KeyboardType:fastScrollVerticalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.companyname.KeyboardType:fastScrollVerticalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager com.companyname.KeyboardType:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout com.companyname.KeyboardType:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount com.companyname.KeyboardType:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd com.companyname.KeyboardType:stackFromEnd}</code></td><td></td></tr> </table> @see #RecyclerView_android_descendantFocusability @see #RecyclerView_android_orientation @see #RecyclerView_fastScrollEnabled @see #RecyclerView_fastScrollHorizontalThumbDrawable @see #RecyclerView_fastScrollHorizontalTrackDrawable @see #RecyclerView_fastScrollVerticalThumbDrawable @see #RecyclerView_fastScrollVerticalTrackDrawable @see #RecyclerView_layoutManager @see #RecyclerView_reverseLayout @see #RecyclerView_spanCount @see #RecyclerView_stackFromEnd */ public static final int[] RecyclerView = { 0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008 }; /** <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:descendantFocusability */ public static final int RecyclerView_android_descendantFocusability = 1; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #RecyclerView} array. @attr name android:orientation */ public static final int RecyclerView_android_orientation = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fastScrollEnabled} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:fastScrollEnabled */ public static final int RecyclerView_fastScrollEnabled = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fastScrollHorizontalThumbDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:fastScrollHorizontalThumbDrawable */ public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fastScrollHorizontalTrackDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:fastScrollHorizontalTrackDrawable */ public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fastScrollVerticalThumbDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:fastScrollVerticalThumbDrawable */ public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fastScrollVerticalTrackDrawable} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:fastScrollVerticalTrackDrawable */ public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layoutManager} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:layoutManager */ public static final int RecyclerView_layoutManager = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#reverseLayout} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:reverseLayout */ public static final int RecyclerView_reverseLayout = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#spanCount} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:spanCount */ public static final int RecyclerView_spanCount = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#stackFromEnd} attribute's value can be found in the {@link #RecyclerView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:stackFromEnd */ public static final int RecyclerView_stackFromEnd = 5; /** Attributes that can be used with a ScrimInsetsFrameLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground com.companyname.KeyboardType:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f010149 }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#insetForeground} attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". @attr name com.companyname.KeyboardType:insetForeground */ public static final int ScrimInsetsFrameLayout_insetForeground = 0; /** Attributes that can be used with a ScrollingViewBehavior_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop com.companyname.KeyboardType:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout = { 0x7f01014a }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#behavior_overlapTop} attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:behavior_overlapTop */ public static final int ScrollingViewBehavior_Layout_behavior_overlapTop = 0; /** Attributes that can be used with a SearchView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_closeIcon com.companyname.KeyboardType:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon com.companyname.KeyboardType:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint com.companyname.KeyboardType:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon com.companyname.KeyboardType:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.companyname.KeyboardType:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout com.companyname.KeyboardType:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground com.companyname.KeyboardType:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint com.companyname.KeyboardType:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon com.companyname.KeyboardType:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon com.companyname.KeyboardType:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground com.companyname.KeyboardType:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.companyname.KeyboardType:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.companyname.KeyboardType:voiceIcon}</code></td><td></td></tr> </table> @see #SearchView_android_focusable @see #SearchView_android_imeOptions @see #SearchView_android_inputType @see #SearchView_android_maxWidth @see #SearchView_closeIcon @see #SearchView_commitIcon @see #SearchView_defaultQueryHint @see #SearchView_goIcon @see #SearchView_iconifiedByDefault @see #SearchView_layout @see #SearchView_queryBackground @see #SearchView_queryHint @see #SearchView_searchHintIcon @see #SearchView_searchIcon @see #SearchView_submitBackground @see #SearchView_suggestionRowLayout @see #SearchView_voiceIcon */ public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #SearchView} array. @attr name android:focusable */ public static final int SearchView_android_focusable = 0; /** <p>This symbol is the offset where the {@link android.R.attr#imeOptions} attribute's value can be found in the {@link #SearchView} array. @attr name android:imeOptions */ public static final int SearchView_android_imeOptions = 3; /** <p>This symbol is the offset where the {@link android.R.attr#inputType} attribute's value can be found in the {@link #SearchView} array. @attr name android:inputType */ public static final int SearchView_android_inputType = 2; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SearchView} array. @attr name android:maxWidth */ public static final int SearchView_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#closeIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#commitIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#defaultQueryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#goIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#iconifiedByDefault} attribute's value can be found in the {@link #SearchView} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#layout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#queryBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#queryHint} attribute's value can be found in the {@link #SearchView} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#searchHintIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#searchIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#submitBackground} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#suggestionRowLayout} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#voiceIcon} attribute's value can be found in the {@link #SearchView} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a SnackbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_elevation com.companyname.KeyboardType:elevation}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.companyname.KeyboardType:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f01003e, 0x7f01014b }; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #SnackbarLayout} array. @attr name android:maxWidth */ public static final int SnackbarLayout_android_maxWidth = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#elevation} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:elevation */ public static final int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#maxActionInlineWidth} attribute's value can be found in the {@link #SnackbarLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:maxActionInlineWidth */ public static final int SnackbarLayout_maxActionInlineWidth = 2; /** Attributes that can be used with a Spinner. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr> <tr><td><code>{@link #Spinner_popupTheme com.companyname.KeyboardType:popupTheme}</code></td><td></td></tr> </table> @see #Spinner_android_dropDownWidth @see #Spinner_android_entries @see #Spinner_android_popupBackground @see #Spinner_android_prompt @see #Spinner_popupTheme */ public static final int[] Spinner = { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01003f }; /** <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth} attribute's value can be found in the {@link #Spinner} array. @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth = 3; /** <p>This symbol is the offset where the {@link android.R.attr#entries} attribute's value can be found in the {@link #Spinner} array. @attr name android:entries */ public static final int Spinner_android_entries = 0; /** <p>This symbol is the offset where the {@link android.R.attr#popupBackground} attribute's value can be found in the {@link #Spinner} array. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 1; /** <p>This symbol is the offset where the {@link android.R.attr#prompt} attribute's value can be found in the {@link #Spinner} array. @attr name android:prompt */ public static final int Spinner_android_prompt = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#popupTheme} attribute's value can be found in the {@link #Spinner} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:popupTheme */ public static final int Spinner_popupTheme = 4; /** Attributes that can be used with a SwitchCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_showText com.companyname.KeyboardType:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.companyname.KeyboardType:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.companyname.KeyboardType:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.companyname.KeyboardType:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.companyname.KeyboardType:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.companyname.KeyboardType:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint com.companyname.KeyboardType:thumbTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode com.companyname.KeyboardType:thumbTintMode}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track com.companyname.KeyboardType:track}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTint com.companyname.KeyboardType:trackTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode com.companyname.KeyboardType:trackTintMode}</code></td><td></td></tr> </table> @see #SwitchCompat_android_textOff @see #SwitchCompat_android_textOn @see #SwitchCompat_android_thumb @see #SwitchCompat_showText @see #SwitchCompat_splitTrack @see #SwitchCompat_switchMinWidth @see #SwitchCompat_switchPadding @see #SwitchCompat_switchTextAppearance @see #SwitchCompat_thumbTextPadding @see #SwitchCompat_thumbTint @see #SwitchCompat_thumbTintMode @see #SwitchCompat_track @see #SwitchCompat_trackTint @see #SwitchCompat_trackTintMode */ public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 }; /** <p>This symbol is the offset where the {@link android.R.attr#textOff} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOff */ public static final int SwitchCompat_android_textOff = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textOn} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:textOn */ public static final int SwitchCompat_android_textOn = 0; /** <p>This symbol is the offset where the {@link android.R.attr#thumb} attribute's value can be found in the {@link #SwitchCompat} array. @attr name android:thumb */ public static final int SwitchCompat_android_thumb = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#showText} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:showText */ public static final int SwitchCompat_showText = 13; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#splitTrack} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:splitTrack */ public static final int SwitchCompat_splitTrack = 12; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#switchMinWidth} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 10; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#switchPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:switchPadding */ public static final int SwitchCompat_switchPadding = 11; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#switchTextAppearance} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 9; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#thumbTextPadding} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#thumbTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:thumbTint */ public static final int SwitchCompat_thumbTint = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#thumbTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:thumbTintMode */ public static final int SwitchCompat_thumbTintMode = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#track} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:track */ public static final int SwitchCompat_track = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#trackTint} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:trackTint */ public static final int SwitchCompat_trackTint = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#trackTintMode} attribute's value can be found in the {@link #SwitchCompat} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:trackTintMode */ public static final int SwitchCompat_trackTintMode = 7; /** Attributes that can be used with a TabItem. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr> <tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr> </table> @see #TabItem_android_icon @see #TabItem_android_layout @see #TabItem_android_text */ public static final int[] TabItem = { 0x01010002, 0x010100f2, 0x0101014f }; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #TabItem} array. @attr name android:icon */ public static final int TabItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #TabItem} array. @attr name android:layout */ public static final int TabItem_android_layout = 1; /** <p>This symbol is the offset where the {@link android.R.attr#text} attribute's value can be found in the {@link #TabItem} array. @attr name android:text */ public static final int TabItem_android_text = 2; /** Attributes that can be used with a TabLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TabLayout_tabBackground com.companyname.KeyboardType:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart com.companyname.KeyboardType:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity com.companyname.KeyboardType:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor com.companyname.KeyboardType:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight com.companyname.KeyboardType:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth com.companyname.KeyboardType:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth com.companyname.KeyboardType:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode com.companyname.KeyboardType:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding com.companyname.KeyboardType:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom com.companyname.KeyboardType:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd com.companyname.KeyboardType:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart com.companyname.KeyboardType:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop com.companyname.KeyboardType:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor com.companyname.KeyboardType:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance com.companyname.KeyboardType:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor com.companyname.KeyboardType:tabTextColor}</code></td><td></td></tr> </table> @see #TabLayout_tabBackground @see #TabLayout_tabContentStart @see #TabLayout_tabGravity @see #TabLayout_tabIndicatorColor @see #TabLayout_tabIndicatorHeight @see #TabLayout_tabMaxWidth @see #TabLayout_tabMinWidth @see #TabLayout_tabMode @see #TabLayout_tabPadding @see #TabLayout_tabPaddingBottom @see #TabLayout_tabPaddingEnd @see #TabLayout_tabPaddingStart @see #TabLayout_tabPaddingTop @see #TabLayout_tabSelectedTextColor @see #TabLayout_tabTextAppearance @see #TabLayout_tabTextColor */ public static final int[] TabLayout = { 0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f, 0x7f010150, 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, 0x7f010155, 0x7f010156, 0x7f010157, 0x7f010158, 0x7f010159, 0x7f01015a, 0x7f01015b }; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabBackground} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:tabBackground */ public static final int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabContentStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabContentStart */ public static final int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabGravity} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>fill</code></td><td>0</td><td></td></tr> <tr><td><code>center</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:tabGravity */ public static final int TabLayout_tabGravity = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabIndicatorColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabIndicatorHeight} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabMaxWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabMaxWidth */ public static final int TabLayout_tabMaxWidth = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabMinWidth} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabMinWidth */ public static final int TabLayout_tabMinWidth = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabMode} attribute's value can be found in the {@link #TabLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>scrollable</code></td><td>0</td><td></td></tr> <tr><td><code>fixed</code></td><td>1</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:tabMode */ public static final int TabLayout_tabMode = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabPadding} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabPadding */ public static final int TabLayout_tabPadding = 15; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabPaddingBottom} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom = 14; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabPaddingEnd} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd = 13; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabPaddingStart} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabPaddingStart */ public static final int TabLayout_tabPaddingStart = 11; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabPaddingTop} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabPaddingTop */ public static final int TabLayout_tabPaddingTop = 12; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabSelectedTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor = 10; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabTextAppearance} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:tabTextAppearance */ public static final int TabLayout_tabTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#tabTextColor} attribute's value can be found in the {@link #TabLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:tabTextColor */ public static final int TabLayout_tabTextColor = 9; /** Attributes that can be used with a TextAppearance. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_fontFamily com.companyname.KeyboardType:fontFamily}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps com.companyname.KeyboardType:textAllCaps}</code></td><td></td></tr> </table> @see #TextAppearance_android_fontFamily @see #TextAppearance_android_shadowColor @see #TextAppearance_android_shadowDx @see #TextAppearance_android_shadowDy @see #TextAppearance_android_shadowRadius @see #TextAppearance_android_textColor @see #TextAppearance_android_textColorHint @see #TextAppearance_android_textColorLink @see #TextAppearance_android_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_fontFamily @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f01004f, 0x7f010055 }; /** <p>This symbol is the offset where the {@link android.R.attr#fontFamily} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:fontFamily */ public static final int TextAppearance_android_fontFamily = 10; /** <p>This symbol is the offset where the {@link android.R.attr#shadowColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowColor */ public static final int TextAppearance_android_shadowColor = 6; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDx} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDx */ public static final int TextAppearance_android_shadowDx = 7; /** <p>This symbol is the offset where the {@link android.R.attr#shadowDy} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowDy */ public static final int TextAppearance_android_shadowDy = 8; /** <p>This symbol is the offset where the {@link android.R.attr#shadowRadius} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:shadowRadius */ public static final int TextAppearance_android_shadowRadius = 9; /** <p>This symbol is the offset where the {@link android.R.attr#textColor} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColor */ public static final int TextAppearance_android_textColor = 3; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorHint */ public static final int TextAppearance_android_textColorHint = 4; /** <p>This symbol is the offset where the {@link android.R.attr#textColorLink} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textColorLink */ public static final int TextAppearance_android_textColorLink = 5; /** <p>This symbol is the offset where the {@link android.R.attr#textSize} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textSize */ public static final int TextAppearance_android_textSize = 0; /** <p>This symbol is the offset where the {@link android.R.attr#textStyle} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:textStyle */ public static final int TextAppearance_android_textStyle = 2; /** <p>This symbol is the offset where the {@link android.R.attr#typeface} attribute's value can be found in the {@link #TextAppearance} array. @attr name android:typeface */ public static final int TextAppearance_android_typeface = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#fontFamily} attribute's value can be found in the {@link #TextAppearance} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:fontFamily */ public static final int TextAppearance_fontFamily = 12; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#textAllCaps} attribute's value can be found in the {@link #TextAppearance} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be a boolean value, either "<code>true</code>" or "<code>false</code>". @attr name com.companyname.KeyboardType:textAllCaps */ public static final int TextAppearance_textAllCaps = 11; /** Attributes that can be used with a TextInputLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterEnabled com.companyname.KeyboardType:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength com.companyname.KeyboardType:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.KeyboardType:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance com.companyname.KeyboardType:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled com.companyname.KeyboardType:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance com.companyname.KeyboardType:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.companyname.KeyboardType:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintEnabled com.companyname.KeyboardType:hintEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance com.companyname.KeyboardType:hintTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.companyname.KeyboardType:passwordToggleContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.companyname.KeyboardType:passwordToggleDrawable}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.companyname.KeyboardType:passwordToggleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTint com.companyname.KeyboardType:passwordToggleTint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.companyname.KeyboardType:passwordToggleTintMode}</code></td><td></td></tr> </table> @see #TextInputLayout_android_hint @see #TextInputLayout_android_textColorHint @see #TextInputLayout_counterEnabled @see #TextInputLayout_counterMaxLength @see #TextInputLayout_counterOverflowTextAppearance @see #TextInputLayout_counterTextAppearance @see #TextInputLayout_errorEnabled @see #TextInputLayout_errorTextAppearance @see #TextInputLayout_hintAnimationEnabled @see #TextInputLayout_hintEnabled @see #TextInputLayout_hintTextAppearance @see #TextInputLayout_passwordToggleContentDescription @see #TextInputLayout_passwordToggleDrawable @see #TextInputLayout_passwordToggleEnabled @see #TextInputLayout_passwordToggleTint @see #TextInputLayout_passwordToggleTintMode */ public static final int[] TextInputLayout = { 0x0101009a, 0x01010150, 0x7f01015c, 0x7f01015d, 0x7f01015e, 0x7f01015f, 0x7f010160, 0x7f010161, 0x7f010162, 0x7f010163, 0x7f010164, 0x7f010165, 0x7f010166, 0x7f010167, 0x7f010168, 0x7f010169 }; /** <p>This symbol is the offset where the {@link android.R.attr#hint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:hint */ public static final int TextInputLayout_android_hint = 1; /** <p>This symbol is the offset where the {@link android.R.attr#textColorHint} attribute's value can be found in the {@link #TextInputLayout} array. @attr name android:textColorHint */ public static final int TextInputLayout_android_textColorHint = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#counterEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:counterEnabled */ public static final int TextInputLayout_counterEnabled = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#counterMaxLength} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be an integer value, such as "<code>100</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:counterMaxLength */ public static final int TextInputLayout_counterMaxLength = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#counterOverflowTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance = 9; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#counterTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#errorEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:errorEnabled */ public static final int TextInputLayout_errorEnabled = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#errorTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#hintAnimationEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled = 10; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#hintEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:hintEnabled */ public static final int TextInputLayout_hintEnabled = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#hintTextAppearance} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#passwordToggleContentDescription} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription = 13; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#passwordToggleDrawable} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable = 12; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#passwordToggleEnabled} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled = 11; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#passwordToggleTint} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint = 14; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#passwordToggleTintMode} attribute's value can be found in the {@link #TextInputLayout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:passwordToggleTintMode */ public static final int TextInputLayout_passwordToggleTintMode = 15; /** Attributes that can be used with a Toolbar. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_buttonGravity com.companyname.KeyboardType:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription com.companyname.KeyboardType:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.companyname.KeyboardType:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.companyname.KeyboardType:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.companyname.KeyboardType:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.companyname.KeyboardType:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.companyname.KeyboardType:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.companyname.KeyboardType:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.companyname.KeyboardType:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo com.companyname.KeyboardType:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription com.companyname.KeyboardType:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.companyname.KeyboardType:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.companyname.KeyboardType:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.companyname.KeyboardType:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.companyname.KeyboardType:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle com.companyname.KeyboardType:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.companyname.KeyboardType:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor com.companyname.KeyboardType:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title com.companyname.KeyboardType:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin com.companyname.KeyboardType:titleMargin}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.companyname.KeyboardType:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.companyname.KeyboardType:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.companyname.KeyboardType:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.companyname.KeyboardType:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.companyname.KeyboardType:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.companyname.KeyboardType:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor com.companyname.KeyboardType:titleTextColor}</code></td><td></td></tr> </table> @see #Toolbar_android_gravity @see #Toolbar_android_minHeight @see #Toolbar_buttonGravity @see #Toolbar_collapseContentDescription @see #Toolbar_collapseIcon @see #Toolbar_contentInsetEnd @see #Toolbar_contentInsetEndWithActions @see #Toolbar_contentInsetLeft @see #Toolbar_contentInsetRight @see #Toolbar_contentInsetStart @see #Toolbar_contentInsetStartWithNavigation @see #Toolbar_logo @see #Toolbar_logoDescription @see #Toolbar_maxButtonHeight @see #Toolbar_navigationContentDescription @see #Toolbar_navigationIcon @see #Toolbar_popupTheme @see #Toolbar_subtitle @see #Toolbar_subtitleTextAppearance @see #Toolbar_subtitleTextColor @see #Toolbar_title @see #Toolbar_titleMargin @see #Toolbar_titleMarginBottom @see #Toolbar_titleMarginEnd @see #Toolbar_titleMarginStart @see #Toolbar_titleMarginTop @see #Toolbar_titleMargins @see #Toolbar_titleTextAppearance @see #Toolbar_titleTextColor */ public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f010025, 0x7f010028, 0x7f01002c, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003f, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112 }; /** <p>This symbol is the offset where the {@link android.R.attr#gravity} attribute's value can be found in the {@link #Toolbar} array. @attr name android:gravity */ public static final int Toolbar_android_gravity = 0; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #Toolbar} array. @attr name android:minHeight */ public static final int Toolbar_android_minHeight = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#buttonGravity} attribute's value can be found in the {@link #Toolbar} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>top</code></td><td>0x30</td><td></td></tr> <tr><td><code>bottom</code></td><td>0x50</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:buttonGravity */ public static final int Toolbar_buttonGravity = 21; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#collapseContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 23; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#collapseIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:collapseIcon */ public static final int Toolbar_collapseIcon = 22; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetEndWithActions} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions = 10; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetLeft} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetRight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#contentInsetStartWithNavigation} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation = 9; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#logo} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#logoDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:logoDescription */ public static final int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#maxButtonHeight} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 20; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#navigationContentDescription} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 25; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#navigationIcon} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:navigationIcon */ public static final int Toolbar_navigationIcon = 24; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#popupTheme} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:popupTheme */ public static final int Toolbar_popupTheme = 11; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#subtitle} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#subtitleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 13; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#subtitleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#title} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#titleMargin} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:titleMargin */ public static final int Toolbar_titleMargin = 14; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#titleMarginBottom} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 18; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#titleMarginEnd} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 16; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#titleMarginStart} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:titleMarginStart */ public static final int Toolbar_titleMarginStart = 15; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#titleMarginTop} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:titleMarginTop */ public static final int Toolbar_titleMarginTop = 17; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#titleMargins} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:titleMargins */ public static final int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#titleTextAppearance} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 12; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#titleTextColor} attribute's value can be found in the {@link #Toolbar} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:titleTextColor */ public static final int Toolbar_titleTextColor = 27; /** Attributes that can be used with a View. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr> <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingEnd com.companyname.KeyboardType:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart com.companyname.KeyboardType:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme com.companyname.KeyboardType:theme}</code></td><td></td></tr> </table> @see #View_android_focusable @see #View_android_theme @see #View_paddingEnd @see #View_paddingStart @see #View_theme */ public static final int[] View = { 0x01010000, 0x010100da, 0x7f010113, 0x7f010114, 0x7f010115 }; /** <p>This symbol is the offset where the {@link android.R.attr#focusable} attribute's value can be found in the {@link #View} array. @attr name android:focusable */ public static final int View_android_focusable = 1; /** <p>This symbol is the offset where the {@link android.R.attr#theme} attribute's value can be found in the {@link #View} array. @attr name android:theme */ public static final int View_android_theme = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#paddingEnd} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#paddingStart} attribute's value can be found in the {@link #View} array. <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#theme} attribute's value can be found in the {@link #View} array. <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". @attr name com.companyname.KeyboardType:theme */ public static final int View_theme = 4; /** Attributes that can be used with a ViewBackgroundHelper. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint com.companyname.KeyboardType:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.KeyboardType:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010116, 0x7f010117 }; /** <p>This symbol is the offset where the {@link android.R.attr#background} attribute's value can be found in the {@link #ViewBackgroundHelper} array. @attr name android:background */ public static final int ViewBackgroundHelper_android_background = 0; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#backgroundTint} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. @attr name com.companyname.KeyboardType:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.companyname.KeyboardType.R.attr#backgroundTintMode} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> <tr><td><code>add</code></td><td>16</td><td></td></tr> </table> @attr name com.companyname.KeyboardType:backgroundTintMode */ public static final int ViewBackgroundHelper_backgroundTintMode = 2; /** Attributes that can be used with a ViewStubCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr> <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr> </table> @see #ViewStubCompat_android_id @see #ViewStubCompat_android_inflatedId @see #ViewStubCompat_android_layout */ public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:id */ public static final int ViewStubCompat_android_id = 0; /** <p>This symbol is the offset where the {@link android.R.attr#inflatedId} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:inflatedId */ public static final int ViewStubCompat_android_inflatedId = 2; /** <p>This symbol is the offset where the {@link android.R.attr#layout} attribute's value can be found in the {@link #ViewStubCompat} array. @attr name android:layout */ public static final int ViewStubCompat_android_layout = 1; }; }
[ "oomersezer@gmail.com" ]
oomersezer@gmail.com
70930250f4c0e0c5cad6d68ce544ca15cf211d37
eb0ba01d1f8ce1475b12f09dc197233f4732670c
/NashQLearning/src/priv/wjw/Print.java
0b1734177d2aeac4a51d0ac4d9c54ae17d17fc03
[]
no_license
GitLollipop/NashQ-Learning-based-pricing-strategy
58512ddc2bee38bff80c30f81c5f8dd7f1551762
e275bd5ff72fce2817fcbc65548af6ba345eb4c6
refs/heads/master
2020-05-15T15:49:29.946494
2019-04-20T09:03:01
2019-04-20T09:03:01
182,380,302
3
0
null
null
null
null
UTF-8
Java
false
false
1,307
java
package priv.wjw; import java.util.Map; import priv.wjw.file.AppendFile; import priv.wjw.file.CreateFile; public class Print { public void printQ(double[] Q, int lenS,int len1,int len2,String fileName) { CreateFile.createFile(fileName); for (int i = 0; i < lenS; i++) { for (int j = 0; j < len1; j++) { for (int k = 0; k < len2; k++) { int index=i*len1*len2+j*len2+k; AppendFile.appendFile(fileName, Q[index] + " "); } AppendFile.appendFile(fileName, "\r\n"); } AppendFile.appendFile(fileName, "\r\n"); } } public void printQ(int[] Q, int lenS,int len1,int len2,String fileName) { CreateFile.createFile(fileName); for (int i = 0; i < lenS; i++) { for (int j = 0; j < len1; j++) { for (int k = 0; k < len2; k++) { int index=i*len1*len2+j*len2+k; AppendFile.appendFile(fileName, Q[index] + " "); } AppendFile.appendFile(fileName, "\r\n"); } AppendFile.appendFile(fileName, "\r\n"); } } public void printPi(double[] Pi, int lenS,double[] Action, String fileName) { CreateFile.createFile(fileName); for (int i = 0; i < lenS; i++) { for (int j = 0; j < Action.length; j++) { int index=i*Action.length+j; AppendFile.appendFile(fileName, Pi[index] + " "); } AppendFile.appendFile(fileName, "\r\n"); } } }
[ "noreply@github.com" ]
noreply@github.com
0dc043528db447bdb2658b02e9794fce67def9de
36838dfcd53c4d2c73b9a6b0b7a8a28e4a331517
/kankan/wheel/widget/a/b.java
85ba1f1d8ada715b5702be6f4f5002e9a1feaff6
[]
no_license
ShahmanTeh/MiFit-Java
fbb2fd578727131b9ac7150b86c4045791368fe8
93bdf88d39423893b294dec2f5bf54708617b5d0
refs/heads/master
2021-01-20T13:05:10.408158
2016-02-03T21:02:55
2016-02-03T21:02:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,459
java
package kankan.wheel.widget.a; import android.content.Context; import android.graphics.Typeface; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import com.xiaomi.e.a; public abstract class b extends a { public static final int a = -1; protected static final int b = 0; public static final int c = -15724528; public static final int d = -9437072; public static final int e = 20; protected Context f; protected LayoutInflater g; protected int h; protected int i; protected int j; private int k; private int l; protected b(Context context) { this(context, a); } protected b(Context context, int i) { this(context, i, b); } protected b(Context context, int i, int i2) { this.k = c; this.l = e; this.f = context; this.h = i; this.i = i2; this.g = (LayoutInflater) context.getSystemService("layout_inflater"); } private View a(int i, ViewGroup viewGroup) { switch (i) { case a /*-1*/: return new TextView(this.f); case b /*0*/: return null; default: return this.g.inflate(i, viewGroup, false); } } private TextView a(View view, int i) { if (i == 0) { try { if (view instanceof TextView) { return (TextView) view; } } catch (Throwable e) { Log.e("AbstractWheelAdapter", "You must supply a resource ID for a TextView"); throw new IllegalStateException("AbstractWheelAdapter requires the resource ID to be a TextView", e); } } return i != 0 ? (TextView) view.findViewById(i) : null; } public View a(int i, View view, ViewGroup viewGroup) { if (i < 0 || i >= a()) { return null; } if (view == null) { view = a(this.h, viewGroup); } TextView a = a(view, this.i); if (a == null) { return view; } CharSequence f = f(i); if (f == null) { f = a.f; } a.setText(f); if (this.h != a) { return view; } a(a); return view; } public View a(View view, ViewGroup viewGroup) { View a = view == null ? a(this.j, viewGroup) : view; if (this.j == a && (a instanceof TextView)) { a((TextView) a); } return a; } public void a(int i) { this.k = i; } protected void a(TextView textView) { textView.setGravity(17); textView.setTextSize((float) this.l); textView.setLines(1); textView.setTypeface(Typeface.SANS_SERIF, b); textView.setPadding(b, 10, b, 10); } public void b(int i) { this.l = i; } public void c(int i) { this.h = i; } public void d(int i) { this.i = i; } public void e(int i) { this.j = i; } protected abstract CharSequence f(int i); public int g() { return this.k; } public int h() { return this.l; } public int i() { return this.h; } public int j() { return this.i; } public int k() { return this.j; } }
[ "kasha_malaga@hotmail.com" ]
kasha_malaga@hotmail.com
a52db4fcf541a34207eedba59ffdc857b128fc9e
157774c1ab13cb1693608e829859389cf0b7e212
/Java/DiseñoClases/src/com/gm/ventas/Orden.java
fcf716c7aadd734758c59b25b6ae64db90694597
[]
no_license
soldchris/CursoJava
68beedfd90ec2eafcc875310b0ddb4d9ec90597f
47d778593f77e770d0db7fd57b3acb495b739453
refs/heads/master
2022-11-28T17:14:19.531771
2020-08-10T03:18:55
2020-08-10T03:18:55
286,368,078
0
0
null
null
null
null
UTF-8
Java
false
false
1,460
java
package com.gm.ventas; import java.util.Date; public class Orden { private int idOrden; Date fechaOrden = new Date(); private static int contadorOrden; Producto productos[]; private int contadorProductos; private static final int MAX_PRODUCTOS= 10; public Orden(){ this.idOrden = ++contadorOrden; this.productos = new Producto[this.MAX_PRODUCTOS]; } public void agregarProducto(Producto producto){ if (this.contadorProductos<this.MAX_PRODUCTOS){ this.productos[this.contadorProductos++] = producto; } else{ System.out.println("Se alcanzo el maximo de productos " + this.MAX_PRODUCTOS); } } public double calcularTotal(){ double total = 0; for(int i=0; i<this.contadorProductos; i++){ Producto producto; producto = this.productos[i]; total += producto.getPrecio(); } return total; } public void mostrarOrden(){ System.out.println("Fecha de la Orden: " + this.fechaOrden); System.out.println("Numero de la Orden: " + this.idOrden); System.out.println("Total de la orden: $"+ this.calcularTotal()); System.out.println("****** Lista de productos: ******"); for(int i=0; i<this.contadorProductos; i++){ System.out.println(productos[i]); } System.out.println("*********************************"); } }
[ "1598597@TCS.com" ]
1598597@TCS.com
edc95431ee1fcf83b0b20ba14d7a9d72691ea31b
ffb4fe93bafbaad753926ffb180dcd08a36d631f
/kodilla-basic-tests/src/main/java/com/kodilla/abstracts/homework/Triangle.java
4728c61941272d001591af899e7455f7a22c4fba
[]
no_license
KarolKrysztof/karol_krysztof-kodilla_tester
35fd4c711ccb67df04ce27e9f70289f177fdd9f6
68df51bd15e24fcd2f25ee0dcbff5cfe7cf1423a
refs/heads/master
2023-02-01T19:43:05.529250
2020-12-16T20:39:18
2020-12-16T20:39:18
289,105,301
0
0
null
2020-12-16T20:39:19
2020-08-20T20:34:31
Java
UTF-8
Java
false
false
461
java
package com.kodilla.abstracts.homework; public class Triangle extends Shape { double a; double b; double c; double h; public Triangle(double a, double b, double c, double h) { this.a = a; this.b = b; this.c = c; this.h = h; } @Override public double calculateArea() { return (a * h) / 2; } @Override public double calculatePerimeter() { return a + b + c; } }
[ "noreply@github.com" ]
noreply@github.com
304e2b8f2d84c12305766f1d27d42abe13196196
24a8e0f7266a16ca23570d048fc5727a8ee3bb65
/src/main/java/com/valework/yingul/util/Utility.java
78f67937667c8a037c233f6b98616aede18d073e
[]
no_license
ComunidadYingul/Yingul
6f5fbedf8278ba1e7868b5badbcbb6ff2b92d3b2
c2309cee76143be8df257c25d295929e344b4740
refs/heads/master
2021-05-10T18:33:18.357936
2018-11-16T15:28:52
2018-11-16T15:28:52
118,127,498
0
0
null
null
null
null
UTF-8
Java
false
false
568
java
package com.valework.yingul.util; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; public class Utility { public static void displayText(InputStream input) throws IOException{ // Read one text line at a time and display. BufferedReader reader = new BufferedReader(new InputStreamReader(input)); while (true) { String line = reader.readLine(); if (line == null) break; System.out.println(" " + line); } } }
[ "quenallataeddy@gmail.com" ]
quenallataeddy@gmail.com
eb6310ca063e4718250e1bd8fee692a5ad3aa7fd
f20e45e5b1a78f3a76eb77d7be79783b7ff57869
/src/de/shop/storage/Product.java
22948a05dbbfc67743d4d7a7ae8df51ffbf1b26a
[ "WTFPL" ]
permissive
Gerolmed/UniZeugs
a3c3d863e17715dc452fb73365f4f46f6f5c4c40
dc3a0761cdae8fe825464402e5d8a48e95abe6d2
refs/heads/master
2020-04-03T16:28:02.326232
2019-01-22T17:27:13
2019-01-22T17:27:13
155,405,589
0
1
null
null
null
null
UTF-8
Java
false
false
1,420
java
package de.shop.storage; import java.text.DecimalFormat; public class Product { public final String NAME; private final int PRODUCT_NUMBER; private double priceBuy, priceSell; public int stock; public Product(String NAME, int PRODUCT_NUMBER, double priceBuy, double priceSell, int stock) { this.NAME = NAME; this.PRODUCT_NUMBER = PRODUCT_NUMBER; this.priceBuy = priceBuy; this.priceSell = priceSell; this.stock = stock; } public Product(String NAME, int PRODUCT_NUMBER, double priceBuy, double priceSell) { this.NAME = NAME; this.PRODUCT_NUMBER = PRODUCT_NUMBER; this.priceBuy = priceBuy; this.priceSell = priceSell; } public int getPRODUCT_NUMBER() { return PRODUCT_NUMBER; } public double getPriceBuy() { return priceBuy; } public double getPriceSell() { return priceSell; } public void priceChange(double change) { this.priceSell += change; } @Override public boolean equals(Object obj) { if(!(obj instanceof Product)) return false; Product pr = (Product) obj; return pr.PRODUCT_NUMBER == this.PRODUCT_NUMBER; } @Override public String toString() { return NAME+" costs $"+new DecimalFormat("#.00").format(getPriceSell())+". There are "+stock+" left in stock."; } }
[ "werwolf420@yahoo.de" ]
werwolf420@yahoo.de
c6d9016b3eaa5429ac85a4df9f633fef26bd7f27
003f14fc2daef163c145506650bd8275d6c5094e
/portlets/Eprint-harvester-portlet/docroot/WEB-INF/src/com/idetronic/eprint/model/impl/EprintSubjectImpl.java
2443a5b0e93b5b4409a12a40fdeeb5e60edb14d3
[]
no_license
arejae/liferay
5c7874592928d50ddd0f2a237db9713974fef84f
5e94caea43b4204ec21fb5d8b43516035d513acf
refs/heads/master
2021-01-14T09:42:26.637886
2014-01-20T04:40:04
2014-01-20T04:40:04
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,404
java
/** * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.idetronic.eprint.model.impl; /** * The extended model implementation for the EprintSubject service. Represents a row in the &quot;eprint_subjects&quot; database table, with each column mapped to a property of this class. * * <p> * Helper methods and all application logic should be put in this class. Whenever methods are added, rerun ServiceBuilder to copy their definitions into the {@link com.idetronic.eprint.model.EprintSubject} interface. * </p> * * @author Mazlan Mat */ public class EprintSubjectImpl extends EprintSubjectBaseImpl { /* * NOTE FOR DEVELOPERS: * * Never reference this class directly. All methods that expect a eprint subject model instance should use the {@link com.idetronic.eprint.model.EprintSubject} interface instead. */ public EprintSubjectImpl() { } }
[ "matle@fedora19.localdomain" ]
matle@fedora19.localdomain
7281df63f297a998d8b85de8cd6e9dc7c829bc89
e429bc7056459d802cca726a9654772aba3bca06
/jest-common/src/test/java/io/searchbox/indices/StatsTest.java
b15bf55235aef05981e70c391e2d30d92aa2c6d8
[ "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
KurtStam/Jest
53b7bb895209544436d1b8d63c5923dea8817e32
f8ff59d7f220917632f62ca26549e8e65f123c57
refs/heads/master
2021-01-18T07:03:10.008421
2015-05-11T16:08:29
2015-05-11T16:08:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
888
java
package io.searchbox.indices; import org.junit.Test; import static org.junit.Assert.*; public class StatsTest { @Test public void testBasicUriGeneration() { Stats stats = new Stats.Builder().addIndex("twitter").build(); assertEquals("GET", stats.getRestMethodName()); assertEquals("twitter/_stats", stats.getURI()); } @Test public void equalsReturnsTrueForSameIndex() { Stats stats1 = new Stats.Builder().addIndex("twitter").build(); Stats stats1Duplicate = new Stats.Builder().addIndex("twitter").build(); assertEquals(stats1, stats1Duplicate); } @Test public void equalsReturnsFalseForDifferentIndex() { Stats stats1 = new Stats.Builder().addIndex("twitter").build(); Stats stats2 = new Stats.Builder().addIndex("myspace").build(); assertNotEquals(stats1, stats2); } }
[ "info@ckeser.com" ]
info@ckeser.com
6f373f314d1f0ba94563383294d76b9d9af85a34
11d006b6f4d1da83798b2443ba1a673404a98c2a
/src/com/ibm/bluemix/smartveggie/dao/SubOutletVendorAllocationDao.java
3cf0dffbb5af4bbe4c52551be3f5644b0aeb4931
[]
no_license
bishnusinha/Smart_Veggie
8b07421836bd4d4ca22d698bbffbb12c479e4876
299089af03896f7c1bcf5e1c15370d5b68f1e90c
refs/heads/master
2021-01-13T01:14:14.018956
2014-11-23T10:21:13
2014-11-23T10:21:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
563
java
package com.ibm.bluemix.smartveggie.dao; import java.util.List; import com.ibm.bluemix.smartveggie.dto.SubOutletVendorAllocationDTO; import com.mongodb.BasicDBObject; public interface SubOutletVendorAllocationDao { public List<BasicDBObject> retrieveAllocatedSubOutlet(); public BasicDBObject getVendorForSubOutlet(String vendorUserName); public BasicDBObject allocatedSubOutlet(SubOutletVendorAllocationDTO subOutletVendorAllocationDTO); public BasicDBObject deallocatedSubOutlet(SubOutletVendorAllocationDTO subOutletVendorAllocationDTO); }
[ "bishnu.sinha@in.ibm.com" ]
bishnu.sinha@in.ibm.com
73193efd4b9d0334ef5b9e35a9cc623381e767a8
30cbc23b53c6b50db5f5aaec06689a9edf1ff8a1
/app/src/main/java/com/caishifu/myrecyclerview/view/MyRecyclerView.java
f5678c7baa79a2ce4d808bee178e4832a67189db
[]
no_license
529119401/MyRecyclerView
68ceb22771cdbc164d068a5506e2ea2a7f5bf8fb
345d73a98289cf9ff41a1406c8d57294ab535030
refs/heads/master
2021-04-29T06:47:50.042185
2017-01-04T09:26:33
2017-01-04T09:26:33
77,991,902
3
0
null
null
null
null
UTF-8
Java
false
false
4,719
java
package com.caishifu.myrecyclerview.view; import android.content.Context; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.View; import android.widget.RelativeLayout; import android.widget.Scroller; import com.caishifu.myrecyclerview.R; /** * Created by wp on 2016/12/30. * * @description */ public class MyRecyclerView extends RelativeLayout { /** * 滑动需要辅助工具 */ private Scroller mScroller ; private View mTopView ; private View mContentView ; private int mTopViewHeight ; private boolean topIsShown = true ; public MyRecyclerView(Context context, AttributeSet attrs) { super(context, attrs); mScroller = new Scroller(context); } @Override protected void onFinishInflate() { super.onFinishInflate(); mTopView = findViewById(R.id.id_scroll_top); mContentView = findViewById(R.id.id_scroll_content); } @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { //设置头部分 mTopView.layout(0 , 0 , getWidth() , mTopView.getMeasuredHeight()); //设置内容部分 mContentView.layout(0 , mTopViewHeight , getWidth() , mTopViewHeight + mContentView.getMeasuredHeight()); } @Override protected void onSizeChanged(int w, int h, int oldw, int oldh) { super.onSizeChanged(w, h, oldw, oldh); mTopViewHeight = mTopView.getMeasuredHeight(); } float mLastY ; @Override public boolean onInterceptTouchEvent(MotionEvent ev) { float yDown ; switch (ev.getAction()){ case MotionEvent.ACTION_DOWN : yDown = ev.getRawY() ; mLastY = yDown ; break; case MotionEvent.ACTION_MOVE : yDown = ev.getRawY() ; float dy = yDown - mLastY; //如果头部现实,则直接拦截,进行头部滑动 if(topIsShown){ return true; } //如果头部隐藏,则判断手势进行第二次拦截,如果向下则现实头部,并且显示的是第一个item的position是0,进行拦截 if(dy > 0 && ((LinearLayoutManager)((RecyclerView)mContentView).getLayoutManager()) .findFirstVisibleItemPosition() == 0){ //有可能第一个只显示一部分,让其进行全部显示,进行滑动 ((RecyclerView)mContentView).scrollToPosition(0); topIsShown = true ; return true; } mLastY = yDown ; break; default: break; } return super.onInterceptTouchEvent(ev); } @Override public boolean onTouchEvent(MotionEvent event) { float yDown ; switch (event.getAction()){ case MotionEvent.ACTION_DOWN : break; case MotionEvent.ACTION_MOVE : yDown = event.getRawY() ; float dy = (yDown - mLastY) ; //已经全部显示 if(getScrollY()+ (-dy) < 0){ scrollTo(0 , 0); topIsShown = true ; return true ; } //全部隐藏 if(getScrollY() + (-dy) > mTopViewHeight){ scrollTo(0 , mTopViewHeight); topIsShown = false ; return true ; } scrollBy(0 , (int)(-dy)); mLastY = yDown ; break; case MotionEvent.ACTION_UP : yDown = event.getRawY(); float d = (yDown - mLastY) ; //判断向下还是向上 if(getScrollY()+ (-d) < (mTopViewHeight / 2) ){ mScroller.startScroll(0,getScrollY(),0, -getScrollY()); topIsShown = true ; }else { mScroller.startScroll(0,getScrollY(),0, (mTopViewHeight - getScrollY())); topIsShown = false ; } invalidate(); break; default: break; } return super.onTouchEvent(event); } @Override public void computeScroll() { if(mScroller.computeScrollOffset()){ scrollTo(0 , mScroller.getCurrY()); postInvalidate(); } } }
[ "529119401@qq.com" ]
529119401@qq.com
1997f13e80fa680f914fa85395e06714b2b58f20
d4da926071f6e12bcb1e148a859913c8eb058497
/easy4j-parent/easy4j-admin-spring-boot-starter/src/main/java/cn/easy4j/admin/modular/dto/PutSysUserDTO.java
349364e30a1b9dd64f55385565b71f6310654583
[ "Apache-2.0" ]
permissive
fonglaaaam/easy4j
e044cb555674a2c69edf36bc8dd1b7cc24c87fa9
37f001e7abdc37f65e6bffcd8a153057fff9a54b
refs/heads/master
2023-02-01T05:59:48.169977
2020-10-20T06:51:50
2020-10-20T06:51:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,652
java
package cn.easy4j.admin.modular.dto; import cn.easy4j.common.constant.RegularConstant; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Getter; import lombok.Setter; import lombok.ToString; import javax.validation.constraints.NotNull; import javax.validation.constraints.Pattern; import java.io.Serializable; import java.time.LocalDate; import java.util.Set; /** * @author ChenYichen */ @Setter @Getter @ToString @ApiModel(value = "更新用户实体") public class PutSysUserDTO implements Serializable { private static final long serialVersionUID = 1L; @NotNull(message = "主键ID不能为空") @ApiModelProperty(value = "用户ID", required = true) private Long id; @ApiModelProperty(value = "真实姓名") private String realname; @Pattern(regexp = RegularConstant.MOBILE + RegularConstant.OR + RegularConstant.BLANK, message = "手机号码格式错误") @ApiModelProperty(value = "手机号码") private String mobile; @Pattern(regexp = RegularConstant.EMAIL + RegularConstant.OR + RegularConstant.BLANK, message = "邮箱地址格式错误") @ApiModelProperty(value = "邮箱地址") private String email; @ApiModelProperty(value = "出生日期") private LocalDate birthday; @NotNull(message = "用户性别不能为空") @ApiModelProperty(value = "性别 F女 M男", required = true) private String sex; @ApiModelProperty(value = "角色IDS") private Set<Long> roleIds; @NotNull(message = "请选择部门") @ApiModelProperty(value = "部门ID", required = true) private Long deptId; }
[ "zongmin.yang@sohan.hk" ]
zongmin.yang@sohan.hk
f9fca7342e569fa62b3890a151dbc0f81d13433a
69e2df7dcbe924340559b3e1995b84e32dbb46b8
/app/src/main/java/com/simpleexaminationsystem/MainActivity.java
541e6e0033fb62b3264a8c2bbd7987e7b55bd371
[]
no_license
wxh233file/Android-practice-1
1becff2a905e00afe8c5ab86c3aa0bc16a2289ae
8e20a8ee706c2935dbcc466732edaf3ee79699d5
refs/heads/master
2022-12-11T13:07:21.962334
2020-09-02T06:29:56
2020-09-02T06:29:56
292,194,777
0
0
null
null
null
null
UTF-8
Java
false
false
2,024
java
package com.simpleexaminationsystem; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.app.Activity; import android.view.View; import android.view.View.OnClickListener; import android.content.Intent; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; public class MainActivity extends AppCompatActivity { private Button btn1,btn2; private EditText edit1,edit2; private String number,password; private TextView text; Bundle bundle; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btn1 = (Button)findViewById(R.id.button11); btn1.setOnClickListener(new btnclock2()); btn2 = (Button)findViewById(R.id.button12); btn2.setOnClickListener(new btnclock1()); edit1 = (EditText)findViewById(R.id.editText11); edit2 = (EditText)findViewById(R.id.editText12); text = (TextView)findViewById(R.id.textView12); bundle = this.getIntent().getExtras(); } class btnclock1 implements OnClickListener { public void onClick(View v) { Intent intent = new Intent(MainActivity.this,SecondActivity.class); startActivity(intent); } } class btnclock2 implements OnClickListener { public void onClick(View v) { String nub,pas; nub = edit1.getText().toString(); pas = edit2.getText().toString(); number =bundle.getString("number"); password = bundle.getString("password"); if (nub.equals(number) |pas.equals(password)) { Intent intent = new Intent(); intent.setClass(MainActivity.this,ThirdActivity.class); startActivity(intent); }else { text.setText("账号密码错误"); } } } }
[ "15327832212@163.com" ]
15327832212@163.com
96150fd3ab39b88cc61f0b416331487da5df8196
a776b8798c7d210114a6bc3aed8d99667b8d3674
/src/main/java/com/yayiabc/http/mvc/pojo/jpa/MessageNumber.java
756db3ec87244165a362cf97c54c2892eaf98141
[]
no_license
dashtom3/yayi-server
2f448a02c6d31b283da2b90dc261dbe38dce6681
25a2e6d93897e1d673f78ab0ba2a2848051a67f4
refs/heads/master
2021-01-20T17:15:18.611571
2018-02-28T07:29:13
2018-02-28T07:29:13
95,738,437
3
1
null
null
null
null
UTF-8
Java
false
false
672
java
package com.yayiabc.http.mvc.pojo.jpa; /** * 获取个人消息中心的消息数量,问答信息TODO */ public class MessageNumber { private Integer commentNumber;//评论消息 public Integer getCommentNumber() { return commentNumber; } public void setCommentNumber(Integer commentNumber) { this.commentNumber = commentNumber; } public MessageNumber() { } public MessageNumber(Integer commentNumber) { this.commentNumber = commentNumber; } @Override public String toString() { return "MessageNumber{" + "commentNumber=" + commentNumber + '}'; } }
[ "15222004571@163.com" ]
15222004571@163.com
9ae789538f6f8a3066832b3da26e61058eee689f
c1a2f17ec73505c5d7cba935fd5a2657d4658991
/src/test/java/com/sergiopino/spcrm/service/UserServiceIT.java
5fea0bc48adc4c186b2d97608f1d63fd49630859
[]
no_license
sergiopino/spcrm
5cab44cd0e0f8cc3ab2eed93f02c394da048650c
f14c86ab5bd760bf7154c2e3c5dc9a1b5d5fbd2a
refs/heads/master
2022-12-22T23:37:39.372339
2020-03-04T18:04:27
2020-03-04T18:04:27
244,967,710
0
0
null
2022-12-16T05:13:24
2020-03-04T17:54:53
Java
UTF-8
Java
false
false
7,670
java
package com.sergiopino.spcrm.service; import com.sergiopino.spcrm.SpcrmApp; import com.sergiopino.spcrm.config.Constants; import com.sergiopino.spcrm.domain.User; import com.sergiopino.spcrm.repository.UserRepository; import com.sergiopino.spcrm.service.dto.UserDTO; import io.github.jhipster.security.RandomUtil; import org.apache.commons.lang3.RandomStringUtils; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.mockito.Mock; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.data.auditing.AuditingHandler; import org.springframework.data.auditing.DateTimeProvider; import org.springframework.data.domain.Page; import org.springframework.data.domain.PageRequest; import org.springframework.transaction.annotation.Transactional; import java.time.Instant; import java.time.temporal.ChronoUnit; import java.time.LocalDateTime; import java.util.Optional; import java.util.List; import static org.assertj.core.api.Assertions.assertThat; import static org.mockito.Mockito.when; /** * Integration tests for {@link UserService}. */ @SpringBootTest(classes = SpcrmApp.class) @Transactional public class UserServiceIT { private static final String DEFAULT_LOGIN = "johndoe"; private static final String DEFAULT_EMAIL = "johndoe@localhost"; private static final String DEFAULT_FIRSTNAME = "john"; private static final String DEFAULT_LASTNAME = "doe"; private static final String DEFAULT_IMAGEURL = "http://placehold.it/50x50"; private static final String DEFAULT_LANGKEY = "dummy"; @Autowired private UserRepository userRepository; @Autowired private UserService userService; @Autowired private AuditingHandler auditingHandler; @Mock private DateTimeProvider dateTimeProvider; private User user; @BeforeEach public void init() { user = new User(); user.setLogin(DEFAULT_LOGIN); user.setPassword(RandomStringUtils.random(60)); user.setActivated(true); user.setEmail(DEFAULT_EMAIL); user.setFirstName(DEFAULT_FIRSTNAME); user.setLastName(DEFAULT_LASTNAME); user.setImageUrl(DEFAULT_IMAGEURL); user.setLangKey(DEFAULT_LANGKEY); when(dateTimeProvider.getNow()).thenReturn(Optional.of(LocalDateTime.now())); auditingHandler.setDateTimeProvider(dateTimeProvider); } @Test @Transactional public void assertThatUserMustExistToResetPassword() { userRepository.saveAndFlush(user); Optional<User> maybeUser = userService.requestPasswordReset("invalid.login@localhost"); assertThat(maybeUser).isNotPresent(); maybeUser = userService.requestPasswordReset(user.getEmail()); assertThat(maybeUser).isPresent(); assertThat(maybeUser.orElse(null).getEmail()).isEqualTo(user.getEmail()); assertThat(maybeUser.orElse(null).getResetDate()).isNotNull(); assertThat(maybeUser.orElse(null).getResetKey()).isNotNull(); } @Test @Transactional public void assertThatOnlyActivatedUserCanRequestPasswordReset() { user.setActivated(false); userRepository.saveAndFlush(user); Optional<User> maybeUser = userService.requestPasswordReset(user.getLogin()); assertThat(maybeUser).isNotPresent(); userRepository.delete(user); } @Test @Transactional public void assertThatResetKeyMustNotBeOlderThan24Hours() { Instant daysAgo = Instant.now().minus(25, ChronoUnit.HOURS); String resetKey = RandomUtil.generateResetKey(); user.setActivated(true); user.setResetDate(daysAgo); user.setResetKey(resetKey); userRepository.saveAndFlush(user); Optional<User> maybeUser = userService.completePasswordReset("johndoe2", user.getResetKey()); assertThat(maybeUser).isNotPresent(); userRepository.delete(user); } @Test @Transactional public void assertThatResetKeyMustBeValid() { Instant daysAgo = Instant.now().minus(25, ChronoUnit.HOURS); user.setActivated(true); user.setResetDate(daysAgo); user.setResetKey("1234"); userRepository.saveAndFlush(user); Optional<User> maybeUser = userService.completePasswordReset("johndoe2", user.getResetKey()); assertThat(maybeUser).isNotPresent(); userRepository.delete(user); } @Test @Transactional public void assertThatUserCanResetPassword() { String oldPassword = user.getPassword(); Instant daysAgo = Instant.now().minus(2, ChronoUnit.HOURS); String resetKey = RandomUtil.generateResetKey(); user.setActivated(true); user.setResetDate(daysAgo); user.setResetKey(resetKey); userRepository.saveAndFlush(user); Optional<User> maybeUser = userService.completePasswordReset("johndoe2", user.getResetKey()); assertThat(maybeUser).isPresent(); assertThat(maybeUser.orElse(null).getResetDate()).isNull(); assertThat(maybeUser.orElse(null).getResetKey()).isNull(); assertThat(maybeUser.orElse(null).getPassword()).isNotEqualTo(oldPassword); userRepository.delete(user); } @Test @Transactional public void assertThatNotActivatedUsersWithNotNullActivationKeyCreatedBefore3DaysAreDeleted() { Instant now = Instant.now(); when(dateTimeProvider.getNow()).thenReturn(Optional.of(now.minus(4, ChronoUnit.DAYS))); user.setActivated(false); user.setActivationKey(RandomStringUtils.random(20)); User dbUser = userRepository.saveAndFlush(user); dbUser.setCreatedDate(now.minus(4, ChronoUnit.DAYS)); userRepository.saveAndFlush(user); List<User> users = userRepository.findAllByActivatedIsFalseAndActivationKeyIsNotNullAndCreatedDateBefore(now.minus(3, ChronoUnit.DAYS)); assertThat(users).isNotEmpty(); userService.removeNotActivatedUsers(); users = userRepository.findAllByActivatedIsFalseAndActivationKeyIsNotNullAndCreatedDateBefore(now.minus(3, ChronoUnit.DAYS)); assertThat(users).isEmpty(); } @Test @Transactional public void assertThatNotActivatedUsersWithNullActivationKeyCreatedBefore3DaysAreNotDeleted() { Instant now = Instant.now(); when(dateTimeProvider.getNow()).thenReturn(Optional.of(now.minus(4, ChronoUnit.DAYS))); user.setActivated(false); User dbUser = userRepository.saveAndFlush(user); dbUser.setCreatedDate(now.minus(4, ChronoUnit.DAYS)); userRepository.saveAndFlush(user); List<User> users = userRepository.findAllByActivatedIsFalseAndActivationKeyIsNotNullAndCreatedDateBefore(now.minus(3, ChronoUnit.DAYS)); assertThat(users).isEmpty(); userService.removeNotActivatedUsers(); Optional<User> maybeDbUser = userRepository.findById(dbUser.getId()); assertThat(maybeDbUser).contains(dbUser); } @Test @Transactional public void assertThatAnonymousUserIsNotGet() { user.setLogin(Constants.ANONYMOUS_USER); if (!userRepository.findOneByLogin(Constants.ANONYMOUS_USER).isPresent()) { userRepository.saveAndFlush(user); } final PageRequest pageable = PageRequest.of(0, (int) userRepository.count()); final Page<UserDTO> allManagedUsers = userService.getAllManagedUsers(pageable); assertThat(allManagedUsers.getContent().stream() .noneMatch(user -> Constants.ANONYMOUS_USER.equals(user.getLogin()))) .isTrue(); } }
[ "jhipster-bot@jhipster.tech" ]
jhipster-bot@jhipster.tech
6cae4cec6344209c65e4321ac87a14e42a3f3ac7
1e772ed40eb3568f4c67bd2727a6f5d69809aa39
/src/main/java/com/andreitop/springbootgradle/SpringBootIntroGradleApplication.java
aff8a6593dbfa8d34351dd339aad3bd53a00d495
[]
no_license
andreitop/spring-boot-intro-gradle
af74fc6f94b13556962a2a99e0ad3c761125fb86
72bd53125db63db01031e8ab796b3ec2d9cd4c32
refs/heads/master
2020-03-26T23:47:00.509125
2018-08-21T13:56:10
2018-08-21T13:56:10
145,566,853
0
0
null
null
null
null
UTF-8
Java
false
false
1,038
java
package com.andreitop.springbootgradle; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @SpringBootApplication public class SpringBootIntroGradleApplication extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder applicationBuilder) { return applicationBuilder.sources(SpringBootIntroGradleApplication.class); } public static void main(String[] args) { SpringApplication.run(SpringBootIntroGradleApplication.class, args); } @RestController class SimpleController { @RequestMapping("/call") String callMe() { return "Hello, friend!"; } } }
[ "andrei_dremov@epam.com" ]
andrei_dremov@epam.com
f05b67b4563521926d31352b7bc90f15842e4cfc
e2ad1b53366cc70382fd4a5cdbffd33c4f164733
/src/test/java/com/cloudwise/smartagent/resource/DiscoverEventResourceTest.java
1c44f3ac9fff91bf4eb0760fe993e679f6bc32df
[]
no_license
hackdapp/smart-agent
490de7569d16fe38ddc07bc940b7dcf106330e37
05afa984577213ad0b4ba3f031314d6843ca4d7f
refs/heads/master
2021-05-29T03:53:44.565976
2015-01-19T02:32:20
2015-01-19T02:32:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
248
java
package com.cloudwise.smartagent.resource; import static org.junit.Assert.*; import org.junit.Test; public class DiscoverEventResourceTest { @Test public void test() { DiscoverEventResource resource = new DiscoverEventResource(null); } }
[ "nolan.zhang@yunzhihui.com" ]
nolan.zhang@yunzhihui.com
fa90e518e84db2f0b82969c81047a6ec016c9d67
fd2dab9312313a2d42b22130909e631d7ecb7e52
/src/com/javarush/test/level05/lesson12/home05/Solution.java
a2028178669245874b53f8a48b204f21f314235b
[]
no_license
EvgeniyChaika/JavaRush
543ee5b198a939b56cd3fe616a65113e9c78c661
73c888d2c8da46de28a2fd680abf71ab7a9ec530
refs/heads/master
2021-01-10T17:15:14.148001
2016-10-24T17:54:37
2016-10-24T17:54:37
48,767,613
3
0
null
null
null
null
UTF-8
Java
false
false
825
java
package com.javarush.test.level05.lesson12.home05; /* Вводить с клавиатуры числа и считать их сумму Вводить с клавиатуры числа и считать их сумму, пока пользователь не введёт слово «сумма». Вывести на экран полученную сумму. */ import java.io.BufferedReader; import java.io.InputStreamReader; public class Solution { public static void main(String[] args) throws Exception { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String s; int sum = 0; while (!"сумма".equals(s = reader.readLine())) { sum += Integer.parseInt(s); }System.out.println(sum); } }
[ "evgeniy.chaika.83@gmail.com" ]
evgeniy.chaika.83@gmail.com
a2605cc29332670b2e50ad124344f59ca7eaca88
38a2364ae0d9e540235befdf169b233c3efc88d2
/projects/flex_break/app/src/main/java/com/example/flex_break/ui/home/Reminder.java
fefcd835607b064f33b6af8f63226952dc111e6c
[]
no_license
hltdev8642/jterm
73479826c7c4370532ab106f5671fb7595696455
aa65456dbbb763b0411ec8c51b2fe2005a414789
refs/heads/master
2023-08-18T01:01:51.426201
2021-09-23T12:01:35
2021-09-23T12:01:35
409,569,356
0
0
null
null
null
null
UTF-8
Java
false
false
2,773
java
package com.example.flex_break.ui.home; import android.content.Context; import android.graphics.Color; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.TextView; import androidx.core.app.NotificationCompat; import androidx.core.app.NotificationManagerCompat; import com.example.flex_break.R; import java.util.Timer; import java.util.TimerTask; public class Reminder extends Button { private int time; private Timer timer; private TimerTask timerTask; private Context context; private boolean started; public Reminder(Context context, int time) { super(context); this.time = time * 1000; started = false; this.context = context; if((getTime() / 1000) >= 60) { setText(getTime() / 60000 + " minute timer"); } else { setText(getTime() / 1000 + " seconds timer"); } //this.setText(time + " second timer"); this.setBackgroundColor(Color.parseColor("#dfdfdf")); timer = new Timer(); this.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if (!started) { timerTask = new TimerTask() { @Override public void run() { Log.d("Timer", "create notification for"); timerNotify(getTime()); } }; if((getTime() / 1000) >= 60) { setText("counting down for " + getTime() / 60000 + " minutes"); } else { setText("counting down for " + getTime() / 1000 + " seconds"); } timer.schedule(timerTask, getTime()); started = true; } } }); } public void timerNotify(int displayTime) { NotificationCompat.Builder builder = new NotificationCompat.Builder(this.context, "14"); builder.setSmallIcon(R.drawable.ic_flex_stretch_notification_icon); builder.setContentTitle("Flex Stretch"); builder.setContentText("It's time to stretch!"); builder.setPriority(NotificationCompat.PRIORITY_DEFAULT); NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this.context); notificationManager.notify(1, builder.build()); started = false; if((getTime() / 1000) >= 60) { setText(getTime() / 60000 + " minute timer"); } else { setText(getTime() / 1000 + " seconds timer"); } } public int getTime() { return this.time; } }
[ "demouser@Demos-MacBook-Pro.local" ]
demouser@Demos-MacBook-Pro.local
bfc05662667cfa1ab9bc31aa3e6862a2510e38fb
eb5b4535fe1dd7293eca2141f7411ffcd3f60c76
/Task5_6F5/src/ISL/FootBall1.java
18dab9f9c9d66a4ec57674bdf5acb9f58cac1452
[]
no_license
Deesh96/Task5
35f8df7fdd5b72d69263bc5936a33d4b1272716a
a4b2678f6cbfed89d0e83015906481bf6eb9c69a
refs/heads/main
2023-03-03T07:28:30.073290
2021-02-13T08:55:51
2021-02-13T08:55:51
338,514,756
0
0
null
null
null
null
UTF-8
Java
false
false
1,348
java
package ISL; import java.io.BufferedReader; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; import java.util.List; public class FootBall1 { public static void main(String args[]) { readAndWrite(); } public static void readAndWrite() { List<ISLMain> table = new ArrayList<>(); try (BufferedReader br = new BufferedReader(new FileReader("points_table1.csv"))) { String line; while ((line = br.readLine()) != null) { String[] values = line.split(","); table.add(new ISLMain(Integer.parseInt(values[0]),values[1],Integer.parseInt(values[2]),Integer.parseInt(values[3]),Integer.parseInt(values[4]),Integer.parseInt(values[5]),Integer.parseInt(values[6]))); } } catch (Exception e) { e.printStackTrace(); } table.forEach(x -> System.out.println(x)); try { FileWriter writer = new FileWriter("football1.txt"); table.forEach(x -> { try { writer.write(x + "\n"); } catch (IOException e) { e.printStackTrace(); } }); writer.close(); System.out.println("Created : football.txt and updated it."); } catch (IOException e) { System.out.println("An exception occurred."); e.printStackTrace(); } } }
[ "noreply@github.com" ]
noreply@github.com
43b88a50924257c41c359ea83a4a4c213525809b
20eb62855cb3962c2d36fda4377dfd47d82eb777
/newEvaluatedBugs/Jsoup_6_buggy/mutated/2634/QueryParser.java
bf4d86be7262fbdeb3d2944fca84a6326786ef0e
[]
no_license
ozzydong/CapGen
356746618848065cce4e253e5d3c381baa85044a
0ba0321b6b1191443276021f1997833342f02515
refs/heads/master
2023-03-18T20:12:02.923428
2020-08-21T03:08:28
2020-08-21T03:08:28
null
0
0
null
null
null
null
UTF-8
Java
false
false
13,596
java
package org.jsoup.select; import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.jsoup.helper.StringUtil; import org.jsoup.helper.Validate; import org.jsoup.parser.TokenQueue; /** * Parses a CSS selector into an Evaluator tree. */ public class QueryParser { private final static String[] combinators = {",", ">", "+", "~", " "}; private static final String[] AttributeEvals = new String[]{"=", "!=", "^=", "$=", "*=", "~="}; private TokenQueue tq; private String query; private List<Evaluator> evals = new ArrayList<Evaluator>(); /** * Create a new QueryParser. * @param query CSS query */ private QueryParser(String query) { this.query = query; this.tq = new TokenQueue(query); } /** * Parse a CSS query into an Evaluator. * @param query CSS query * @return Evaluator */ public static Evaluator parse(String query) { QueryParser p = new QueryParser(query); return p.parse(); } /** * Parse the query * @return Evaluator */ Evaluator parse() { tq.consumeWhitespace(); if (tq.matchesAny(combinators)) { // if starts with a combinator, use root as elements evals.add(new StructuralEvaluator.Root()); combinator(tq.consume()); } else { findElements(); } while (!tq.isEmpty()) { // hierarchy and extras boolean seenWhite = tq.consumeWhitespace(); if (tq.matchesAny(combinators)) { combinator(tq.consume()); } else if (seenWhite) { combinator(' '); } else { // E.class, E#id, E[attr] etc. AND findElements(); // take next el, #. etc off queue } } if (evals.size() == 1) return evals.get(0); return new CombiningEvaluator.And(evals); } private void combinator(char combinator) { tq.consumeWhitespace(); String subQuery = consumeSubQuery(); // support multi > childs Evaluator rootEval; // the new topmost evaluator Evaluator currentEval; // the evaluator the new eval will be combined to. could be root, or rightmost or. Evaluator newEval = parse(subQuery); // the evaluator to add into target evaluator boolean replaceRightMost = false; if (evals.size() == 1) { rootEval = currentEval = evals.get(0); // make sure OR (,) has precedence: if (rootEval instanceof CombiningEvaluator.Or && combinator != ',') { currentEval = ((CombiningEvaluator.Or) currentEval).rightMostEvaluator(); replaceRightMost = true; } } else { rootEval = currentEval = new CombiningEvaluator.And(evals); } evals.clear(); // for most combinators: change the current eval into an AND of the current eval and the new eval if (combinator == '>') currentEval = new CombiningEvaluator.And(newEval, new StructuralEvaluator.ImmediateParent(currentEval)); else if (combinator == ' ') currentEval = new CombiningEvaluator.And(newEval, new StructuralEvaluator.Parent(currentEval)); else if (combinator == '+') currentEval = new CombiningEvaluator.And(newEval, new StructuralEvaluator.ImmediatePreviousSibling(currentEval)); else if (combinator == '~') currentEval = new CombiningEvaluator.And(newEval, new StructuralEvaluator.PreviousSibling(currentEval)); else if (combinator == ',') { // group or. CombiningEvaluator.Or or; if (currentEval instanceof CombiningEvaluator.Or) { or = (CombiningEvaluator.Or) currentEval; or.add(newEval); } else { or = new CombiningEvaluator.Or(); or.add(currentEval); or.add(newEval); } currentEval = or; } else throw new Selector.SelectorParseException("Unknown combinator: " + combinator); if (replaceRightMost) ((CombiningEvaluator.Or) rootEval).replaceRightMostEvaluator(currentEval); else rootEval = currentEval; evals.add(rootEval); } private String consumeSubQuery() { StringBuilder sq = new StringBuilder(); while (!tq.isEmpty()) { if (tq.matches("(")) sq.append("(").append(tq.chompBalanced('(', ')')).append(")"); else if (tq.matches("[")) sq.append("[").append(tq.chompBalanced('[', ']')).append("]"); else if (tq.matchesAny(combinators)) break; else sq.append(tq.consume()); } return sq.toString(); } private void findElements() { if (tq.matchChomp("#")) byId(); else indexEquals(); if (tq.matchChomp(".")) byClass(); else if (tq.matchesWord() || tq.matches("*|")) byTag(); else if (tq.matches("[")) byAttribute(); else if (tq.matchChomp("*")) allElements(); else if (tq.matchChomp(":lt(")) indexLessThan(); else if (tq.matchChomp(":gt(")) indexGreaterThan(); else if (tq.matchChomp(":eq(")) indexEquals(); else if (tq.matches(":has(")) has(); else if (tq.matches(":contains(")) contains(false); else if (tq.matches(":containsOwn(")) contains(true); else if (tq.matches(":containsData(")) containsData(); else if (tq.matches(":matches(")) matches(false); else if (tq.matches(":matchesOwn(")) matches(true); else if (tq.matches(":not(")) not(); else if (tq.matchChomp(":nth-child(")) cssNthChild(false, false); else if (tq.matchChomp(":nth-last-child(")) cssNthChild(true, false); else if (tq.matchChomp(":nth-of-type(")) cssNthChild(false, true); else if (tq.matchChomp(":nth-last-of-type(")) cssNthChild(true, true); else if (tq.matchChomp(":first-child")) evals.add(new Evaluator.IsFirstChild()); else if (tq.matchChomp(":last-child")) evals.add(new Evaluator.IsLastChild()); else if (tq.matchChomp(":first-of-type")) evals.add(new Evaluator.IsFirstOfType()); else if (tq.matchChomp(":last-of-type")) evals.add(new Evaluator.IsLastOfType()); else if (tq.matchChomp(":only-child")) evals.add(new Evaluator.IsOnlyChild()); else if (tq.matchChomp(":only-of-type")) evals.add(new Evaluator.IsOnlyOfType()); else if (tq.matchChomp(":empty")) evals.add(new Evaluator.IsEmpty()); else if (tq.matchChomp(":root")) evals.add(new Evaluator.IsRoot()); else // unhandled throw new Selector.SelectorParseException("Could not parse query '%s': unexpected token at '%s'", query, tq.remainder()); } private void byId() { String id = tq.consumeCssIdentifier(); Validate.notEmpty(id); evals.add(new Evaluator.Id(id)); } private void byClass() { String className = tq.consumeCssIdentifier(); Validate.notEmpty(className); evals.add(new Evaluator.Class(className.trim())); } private void byTag() { String tagName = tq.consumeElementSelector(); Validate.notEmpty(tagName); // namespaces: wildcard match equals(tagName) or ending in ":"+tagName if (tagName.startsWith("*|")) { evals.add(new CombiningEvaluator.Or(new Evaluator.Tag(tagName.trim().toLowerCase()), new Evaluator.TagEndsWith(tagName.replace("*|", ":").trim().toLowerCase()))); } else { // namespaces: if element name is "abc:def", selector must be "abc|def", so flip: if (tagName.contains("|")) tagName = tagName.replace("|", ":"); evals.add(new Evaluator.Tag(tagName.trim())); } } private void byAttribute() { TokenQueue cq = new TokenQueue(tq.chompBalanced('[', ']')); // content queue String key = cq.consumeToAny(AttributeEvals); // eq, not, start, end, contain, match, (no val) Validate.notEmpty(key); cq.consumeWhitespace(); if (cq.isEmpty()) { if (key.startsWith("^")) evals.add(new Evaluator.AttributeStarting(key.substring(1))); else evals.add(new Evaluator.Attribute(key)); } else { if (cq.matchChomp("=")) evals.add(new Evaluator.AttributeWithValue(key, cq.remainder())); else if (cq.matchChomp("!=")) evals.add(new Evaluator.AttributeWithValueNot(key, cq.remainder())); else if (cq.matchChomp("^=")) evals.add(new Evaluator.AttributeWithValueStarting(key, cq.remainder())); else if (cq.matchChomp("$=")) evals.add(new Evaluator.AttributeWithValueEnding(key, cq.remainder())); else if (cq.matchChomp("*=")) evals.add(new Evaluator.AttributeWithValueContaining(key, cq.remainder())); else if (cq.matchChomp("~=")) evals.add(new Evaluator.AttributeWithValueMatching(key, Pattern.compile(cq.remainder()))); else throw new Selector.SelectorParseException("Could not parse attribute query '%s': unexpected token at '%s'", query, cq.remainder()); } } private void allElements() { evals.add(new Evaluator.AllElements()); } // pseudo selectors :lt, :gt, :eq private void indexLessThan() { evals.add(new Evaluator.IndexLessThan(consumeIndex())); } private void indexGreaterThan() { evals.add(new Evaluator.IndexGreaterThan(consumeIndex())); } private void indexEquals() { evals.add(new Evaluator.IndexEquals(consumeIndex())); } //pseudo selectors :first-child, :last-child, :nth-child, ... private static final Pattern NTH_AB = Pattern.compile("((\\+|-)?(\\d+)?)n(\\s*(\\+|-)?\\s*\\d+)?", Pattern.CASE_INSENSITIVE); private static final Pattern NTH_B = Pattern.compile("(\\+|-)?(\\d+)"); private void cssNthChild(boolean backwards, boolean ofType) { String argS = tq.chompTo(")").trim().toLowerCase(); Matcher mAB = NTH_AB.matcher(argS); Matcher mB = NTH_B.matcher(argS); final int a, b; if ("odd".equals(argS)) { a = 2; b = 1; } else if ("even".equals(argS)) { a = 2; b = 0; } else if (mAB.matches()) { a = mAB.group(3) != null ? Integer.parseInt(mAB.group(1).replaceFirst("^\\+", "")) : 1; b = mAB.group(4) != null ? Integer.parseInt(mAB.group(4).replaceFirst("^\\+", "")) : 0; } else if (mB.matches()) { a = 0; b = Integer.parseInt(mB.group().replaceFirst("^\\+", "")); } else { throw new Selector.SelectorParseException("Could not parse nth-index '%s': unexpected format", argS); } if (ofType) if (backwards) evals.add(new Evaluator.IsNthLastOfType(a, b)); else evals.add(new Evaluator.IsNthOfType(a, b)); else { if (backwards) evals.add(new Evaluator.IsNthLastChild(a, b)); else evals.add(new Evaluator.IsNthChild(a, b)); } } private int consumeIndex() { String indexS = tq.chompTo(")").trim(); Validate.isTrue(StringUtil.isNumeric(indexS), "Index must be numeric"); return Integer.parseInt(indexS); } // pseudo selector :has(el) private void has() { tq.consume(":has"); String subQuery = tq.chompBalanced('(', ')'); Validate.notEmpty(subQuery, ":has(el) subselect must not be empty"); evals.add(new StructuralEvaluator.Has(parse(subQuery))); } // pseudo selector :contains(text), containsOwn(text) private void contains(boolean own) { tq.consume(own ? ":containsOwn" : ":contains"); String searchText = TokenQueue.unescape(tq.chompBalanced('(', ')')); Validate.notEmpty(searchText, ":contains(text) query must not be empty"); if (own) evals.add(new Evaluator.ContainsOwnText(searchText)); else evals.add(new Evaluator.ContainsText(searchText)); } // pseudo selector :containsData(data) private void containsData() { tq.consume(":containsData"); String searchText = TokenQueue.unescape(tq.chompBalanced('(', ')')); Validate.notEmpty(searchText, ":containsData(text) query must not be empty"); evals.add(new Evaluator.ContainsData(searchText)); } // :matches(regex), matchesOwn(regex) private void matches(boolean own) { tq.consume(own ? ":matchesOwn" : ":matches"); String regex = tq.chompBalanced('(', ')'); // don't unescape, as regex bits will be escaped Validate.notEmpty(regex, ":matches(regex) query must not be empty"); if (own) evals.add(new Evaluator.MatchesOwn(Pattern.compile(regex))); else evals.add(new Evaluator.Matches(Pattern.compile(regex))); } // :not(selector) private void not() { tq.consume(":not"); String subQuery = tq.chompBalanced('(', ')'); Validate.notEmpty(subQuery, ":not(selector) subselect must not be empty"); evals.add(new StructuralEvaluator.Not(parse(subQuery))); } }
[ "justinwm@163.com" ]
justinwm@163.com
5462b35a4efbeaa0e8fa43a0700188bd204e1582
244849bbaa6e3c1b524cc1fbed7834a898890d66
/ebox_uer/gege_package/src/main/java/com/moge/gege/ui/adapter/ChatListAdapter.java
1b3dafa35758d457edbd4376b73345b944b37f88
[]
no_license
hellob5code/DevelopProject
db5d7ed27549135a9b9811c012d7e4942947c152
b4eae66d316e468e41dca1443223e2657ebb58fa
refs/heads/master
2021-01-13T03:14:47.253253
2016-09-11T02:50:26
2016-09-11T02:50:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
8,962
java
package com.moge.gege.ui.adapter; import java.util.List; import android.content.Context; import android.graphics.Bitmap; import android.view.LayoutInflater; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.ProgressBar; import android.widget.TextView; import com.moge.gege.R; import com.moge.gege.config.GlobalConfig; import com.moge.gege.model.IMMessageModel; import com.moge.gege.model.enums.IMListType; import com.moge.gege.model.enums.IMMessageStatusType; import com.moge.gege.model.enums.MessageContentType; import com.moge.gege.network.util.RequestManager; import com.moge.gege.util.ImageLoaderUtil; import com.moge.gege.util.TimeUtil; import com.moge.gege.util.ViewUtil; import com.nostra13.universalimageloader.core.DisplayImageOptions; import com.nostra13.universalimageloader.core.assist.ImageScaleType; import com.nostra13.universalimageloader.core.assist.ImageSize; import com.nostra13.universalimageloader.core.listener.SimpleImageLoadingListener; public class ChatListAdapter extends BaseAdapter { private Context mContext; private List<IMMessageModel> mDataList; private ChatListListener mListener; private ImageSize mImageSize; private DisplayImageOptions mImageOptions; public ChatListAdapter(Context context) { mContext = context; if(ViewUtil.getWidth() <= 480) { mImageSize = new ImageSize(150, 1); } else { mImageSize = new ImageSize(300, 1); } mImageOptions = getDisplayImageOptions(R.drawable.icon_default); } public void setDataSource(List<IMMessageModel> list) { mDataList = list; } public void setListener(ChatListListener listener) { mListener = listener; } public int getCount() { return mDataList == null ? 0 : mDataList.size(); } public Object getItem(int position) { return mDataList.get(position); } public long getItemId(int position) { return position; } public int getItemViewType(int position) { IMMessageModel model = mDataList.get(position); return model.getListType(); } public int getViewTypeCount() { return 2; } private DisplayImageOptions getDisplayImageOptions(int defaultResId) { DisplayImageOptions.Builder builder = new DisplayImageOptions.Builder(); builder.cacheInMemory(true).cacheOnDisk(true); builder.bitmapConfig(Bitmap.Config.RGB_565); builder.showImageForEmptyUri(defaultResId); builder.showImageOnFail(defaultResId); builder.showImageOnLoading(defaultResId); builder.imageScaleType(ImageScaleType.EXACTLY); return builder.build(); } @Override public View getView(int position, View convertView, ViewGroup arg2) { final ViewHolder holder; IMMessageModel model = mDataList.get(position); if (convertView == null) { if (model.getListType() == IMListType.IM_FROM) { convertView = LayoutInflater.from(mContext).inflate( R.layout.im_from, null); } else { convertView = LayoutInflater.from(mContext).inflate( R.layout.im_to, null); } holder = new ViewHolder(); holder.avatarImage = (ImageView) convertView .findViewById(R.id.avatarImage); holder.timeText = (TextView) convertView .findViewById(R.id.timeText); holder.contentText = (TextView) convertView .findViewById(R.id.contentText); holder.contentImage = (ImageView) convertView .findViewById(R.id.contentImage); holder.statusLayout = (LinearLayout) convertView .findViewById(R.id.statusLayout); holder.imageProgressBar = (ProgressBar) convertView .findViewById(R.id.imageProgressBar); holder.resendImage = (ImageView) convertView .findViewById(R.id.resendImage); convertView.setTag(holder); } else { holder = (ViewHolder) convertView.getTag(); } RequestManager.loadImage(holder.avatarImage, RequestManager.getImageUrl(model.getAvatar()) + GlobalConfig.IMAGE_STYLE90_90, R.drawable.icon_default_avatar); holder.timeText.setText(TimeUtil.getDateTimeStr((long) (model.getMsg() .getCrts() * 1000))); if (model.getMsg().getMsg_type() == MessageContentType.MSG_TEXT) { holder.contentImage.setVisibility(View.GONE); holder.contentText.setVisibility(View.VISIBLE); holder.contentText.setText(model.getMsg().getContent()); } else { holder.contentImage.setVisibility(View.VISIBLE); holder.contentText.setVisibility(View.GONE); if (model.getMsg().getContent().startsWith("file://")) { ImageLoaderUtil.instance().loadImage( model.getMsg().getContent(), mImageSize, mImageOptions, new SimpleImageLoadingListener() { public void onLoadingComplete(String imageUri, View view, Bitmap loadedImage) { holder.contentImage.setImageBitmap(loadedImage); } }); } else { if(ViewUtil.getWidth() <= 480) { RequestManager.loadImage(holder.contentImage, RequestManager.getImageUrl(model.getMsg().getContent()) + GlobalConfig.IMAGE_STYLE150, R.drawable.icon_default); } else { RequestManager.loadImage(holder.contentImage, RequestManager.getImageUrl(model.getMsg().getContent()) + GlobalConfig.IMAGE_STYLE300, R.drawable.icon_default); } } } if (holder.statusLayout != null) { if (model.getStatus() == IMMessageStatusType.MSG_SEND_SUCCESS) { holder.statusLayout.setVisibility(View.GONE); } else if (model.getStatus() == IMMessageStatusType.MSG_SENDING) { holder.statusLayout.setVisibility(View.VISIBLE); holder.imageProgressBar.setVisibility(View.VISIBLE); holder.resendImage.setVisibility(View.GONE); } else { holder.statusLayout.setVisibility(View.VISIBLE); holder.imageProgressBar.setVisibility(View.GONE); holder.resendImage.setVisibility(View.VISIBLE); holder.resendImage .setOnClickListener(new MyClickListener(model)); } } holder.contentImage.setOnClickListener(new MyClickListener(model)); holder.avatarImage.setOnClickListener(new MyClickListener(model)); return convertView; } public class MyClickListener implements OnClickListener { IMMessageModel mModel; MyClickListener(IMMessageModel model) { mModel = model; } @Override public void onClick(View v) { if (mListener == null) { return; } switch (v.getId()) { case R.id.avatarImage: mListener.onChatAvatarClick(mModel); break; case R.id.contentImage: mListener.onChatImageClick(mModel); break; case R.id.resendImage: mListener.onResendClick(mModel); break; default: break; } } } class ViewHolder { ImageView avatarImage; TextView timeText; TextView contentText; ImageView contentImage; LinearLayout statusLayout; ProgressBar imageProgressBar; ImageView resendImage; } public interface ChatListListener { public void onChatAvatarClick(IMMessageModel model); public void onChatImageClick(IMMessageModel model); public void onResendClick(IMMessageModel model); } }
[ "shi.delei@mgooo.cn" ]
shi.delei@mgooo.cn
e6fb7ade25444e8028f8b0d01e94812f04322cbf
e9affefd4e89b3c7e2064fee8833d7838c0e0abc
/aws-java-sdk-lightsail/src/main/java/com/amazonaws/services/lightsail/model/transform/StartGUISessionRequestMarshaller.java
3f882ae07444b81441688d45b0486b568d5d0e91
[ "Apache-2.0" ]
permissive
aws/aws-sdk-java
2c6199b12b47345b5d3c50e425dabba56e279190
bab987ab604575f41a76864f755f49386e3264b4
refs/heads/master
2023-08-29T10:49:07.379135
2023-08-28T21:05:55
2023-08-28T21:05:55
574,877
3,695
3,092
Apache-2.0
2023-09-13T23:35:28
2010-03-22T23:34:58
null
UTF-8
Java
false
false
2,035
java
/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.lightsail.model.transform; import javax.annotation.Generated; import com.amazonaws.SdkClientException; import com.amazonaws.services.lightsail.model.*; import com.amazonaws.protocol.*; import com.amazonaws.annotation.SdkInternalApi; /** * StartGUISessionRequestMarshaller */ @Generated("com.amazonaws:aws-java-sdk-code-generator") @SdkInternalApi public class StartGUISessionRequestMarshaller { private static final MarshallingInfo<String> RESOURCENAME_BINDING = MarshallingInfo.builder(MarshallingType.STRING) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("resourceName").build(); private static final StartGUISessionRequestMarshaller instance = new StartGUISessionRequestMarshaller(); public static StartGUISessionRequestMarshaller getInstance() { return instance; } /** * Marshall the given parameter object. */ public void marshall(StartGUISessionRequest startGUISessionRequest, ProtocolMarshaller protocolMarshaller) { if (startGUISessionRequest == null) { throw new SdkClientException("Invalid argument passed to marshall(...)"); } try { protocolMarshaller.marshall(startGUISessionRequest.getResourceName(), RESOURCENAME_BINDING); } catch (Exception e) { throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e); } } }
[ "" ]
4bf9447fd7ed438c350ecf2cf4138a028388e8d3
053c4f4a1e7e7a2dc155599c7452dadf2e5bd2ef
/weibo-web/src/main/java/com/ctvit/weibo/task/entity/tasklist/TaskSendWeibo.java
5fd7365dce612872ddd4a3307329bd3c46e60e46
[]
no_license
lindor888/weibo
be728a8748fcd203e935cdb8c766d8d92a448be8
2a743ff0798427785c05093d7caf3ee9b4d90c71
refs/heads/master
2020-04-14T08:39:45.611383
2018-02-10T13:23:33
2018-02-10T13:23:33
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,620
java
package com.ctvit.weibo.task.entity.tasklist; import org.apache.commons.lang3.StringUtils; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; import weibo4j.model.Status; import weibo4j.model.WeiboException; import com.ctvit.weibo.entity.SentWeibo; import com.ctvit.weibo.entity.Weibo; import com.ctvit.weibo.task.entity.Task; import com.ctvit.weibo.util.ConstantParam; public class TaskSendWeibo extends Task { public void execute(JobExecutionContext context) throws JobExecutionException { this.initTask(context); String id = (String) context.getJobDetail().getJobDataMap().get("id"); SentWeibo sentWeibo = this.getSentDao().selectByPrimaryKey(id); if(sentWeibo != null) { if(StringUtils.isNotBlank(sentWeibo.getUserId())) { sentWeibo.setWeiboUid(sentWeibo.getUserId()); } } Weibo weibo = this.getWeiboService().searchWeiboAppById(sentWeibo); String weiboToken = this.getSinaWeiboUtil().getToken(weibo.getAppKey(), weibo.getAppSecret(), weibo.getAppRedirectUri(), weibo.getWeiboUserName(), weibo.getWeiboPassword()); Status status = null; try { status = this.getSinaWeiboUtil().UploadStatus(weiboToken, sentWeibo.getImageUrl(), sentWeibo.getBrief()); if(status != null) {//发送成功时,将本地已发微博表中的该条数据更新为已发状态 sentWeibo.setStatus(ConstantParam.STATUS_SENT); sentWeibo.setWeiboContentId(status.getId()); sentWeibo.setUserId(status.getUser().getId()); this.getSentDao().updateByPrimaryKeySelective(sentWeibo); } } catch (WeiboException e) { e.printStackTrace(); } } }
[ "user1@qq.com" ]
user1@qq.com
31af2f41a48176ae38f88db3e2989ab79d560659
5eb7ebb8478f0ec1bcd6910a5a62d4fd159013c0
/src/Starter.java
9e9d4862e2aa313bbbec31e13aaa9c780a42b393
[]
no_license
sumedhaSKumar/PAYMENTRECORD
9d3dc7fa94c74410147ce62efb5a0413113fa77d
d5137d9aa6b5b9459a50a15b2f49a676d7666218
refs/heads/master
2023-06-22T15:04:13.620545
2021-07-22T10:41:51
2021-07-22T10:41:51
388,120,476
0
0
null
2021-07-21T15:06:24
2021-07-21T13:09:25
Java
UTF-8
Java
false
false
2,681
java
import java.io.*; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.util.Scanner; import java.util.ArrayList; public class Starter { public static void main(String[] args) throws Exception { DateTimeFormatter format = DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm:ss"); Controller controller = new Controller(); // Taking input for file location including file name Scanner sc = new Scanner(System.in); System.out.println("Please enter the file path with file name exactly"); String filePath = sc.nextLine(); try { controller.processCSVData(filePath, format); }catch (Exception e) { } System.out.println("Please Enter account id for which you want to process records: "); String selectedAccountID = sc.nextLine(); boolean f1 = !controller.accountExists(selectedAccountID); while (f1){ System.out.println("Entered account does not exist, please enter a valid account number: "); selectedAccountID = sc.nextLine(); f1 = !controller.accountExists(selectedAccountID); } System.out.println("Please enter the time from which the records should be processed: "); String startTimeString = sc.nextLine(); boolean f2 = !(startTimeString.matches("\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}")); while (f2){ System.out.println("Please enter the time in DD/MM/YYYY HH:MM:SS format from which the records should be processed: "); startTimeString = sc.nextLine(); f2 = !(startTimeString.matches("\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}")); } LocalDateTime startTime = LocalDateTime.parse(startTimeString, format); System.out.println("Please enter the time to which the records should be processed: "); String endTimeString = sc.nextLine(); boolean f3 = !(endTimeString.matches("\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}")); while (f3){ System.out.println("Please enter the time in DD/MM/YYYY HH:MM:SS format to which the records should be processed: "); endTimeString = sc.nextLine(); f3 = !(endTimeString.matches("\\d{2}/\\d{2}/\\d{4} \\d{2}:\\d{2}:\\d{2}")); } LocalDateTime endTime = LocalDateTime.parse(endTimeString, format); if (endTime.isBefore(startTime)) { System.out.println("End time entered occurs before start time. This is invalid. Please try again."); } else { controller.calculateTotals( selectedAccountID, startTime, endTime); } } }
[ "sumedhaskumaron14@gmail.com" ]
sumedhaskumaron14@gmail.com
7036d1d743572098709fbb63ac50f3d268dac86d
9bd551fc745c06be85ed0f25d7387c76da1171e3
/src/main/java/com/xianlaifeng/user/controller/CollectionController.java
f9787b063667a3a49d824c38c1c0c2bd7dfab847
[]
no_license
tmyVvit/Xianlaifeng
89c8b5b3d6da5ffd8629fd8a07611e50c9a4b98e
25fe46b271bfef4361c7af1986bc81cffa96af94
refs/heads/master
2020-04-27T20:02:24.557460
2017-12-26T05:36:17
2017-12-26T05:36:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,522
java
package com.xianlaifeng.user.controller; import com.github.pagehelper.PageInfo; import com.xianlaifeng.join.entity.XLF_Join; import com.xianlaifeng.user.entity.XLF_Collection; import com.xianlaifeng.user.entity.XLF_Wechat; import com.xianlaifeng.user.service.CollectionService; import com.xianlaifeng.user.service.RedisService; import com.xianlaifeng.user.service.UserService; import com.xianlaifeng.utils.AjaxJSON; import com.xianlaifeng.utils.QueueList; import net.sf.json.JSONObject; import org.apache.commons.lang.StringUtils; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import java.util.List; import java.util.Map; @Controller @RequestMapping("/cc") public class CollectionController { @Resource private CollectionService collectionService; @Resource private RedisService redisService; @Resource private HttpServletRequest request; @Resource private UserService userService; @RequestMapping(value = "/getCollection.do" ,produces="application/json" ,method = RequestMethod.GET) @ResponseBody public Object getUserCollection(@RequestParam Map<String,Object> params){ String method = (String)params.get("method"); AjaxJSON aj = new AjaxJSON(); try { String openid =(String)request.getAttribute("openid"); aj.setSuccess(true); aj.setMsg("查询收藏记录成功"); }catch (Exception e){ aj.setSuccess(false); aj.setMsg(e.getMessage()); return aj; } return aj; } @RequestMapping(value = "/addCollection.do" ,produces="application/json" ,method ={RequestMethod.GET,RequestMethod.POST}) @ResponseBody public Object addUserCollection(@RequestParam Map<String,Object> params, @RequestBody AjaxJSON ajax){ AjaxJSON aj = new AjaxJSON(); try { String openid =(String)request.getAttribute("openid"); Map<String, Object> u_info = (Map<String, Object>)userService.getWechatUserInfo(new XLF_Wechat(openid)); XLF_Collection collection = (XLF_Collection) JSONObject.toBean(JSONObject.fromObject(ajax.getObj()), XLF_Collection.class); collection.setUserId((Integer) u_info.get("id")); String result = collectionService.addCollection(collection); aj.setMsg(result.equals("success")?"收藏成功":result); aj.setSuccess(result.equals("success")?true:false); }catch (Exception e){ aj.setSuccess(false); aj.setMsg(e.getMessage()); return aj; } return aj; } //取消个人收藏 @RequestMapping(value = "/delCollection.do" ,produces="application/json" ,method ={RequestMethod.GET,RequestMethod.POST}) @ResponseBody public Object delCollection(@RequestParam Map<String,Object> params, @RequestBody AjaxJSON ajax){ AjaxJSON aj = new AjaxJSON(); String get = (String)params.get("get"); try { String openid =(String)request.getAttribute("openid"); Map<String, Object> u_info = (Map<String, Object>)userService.getWechatUserInfo(new XLF_Wechat(openid)); XLF_Collection collection = (XLF_Collection) JSONObject.toBean(JSONObject.fromObject(ajax.getObj()), XLF_Collection.class); collection.setUserId((Integer) u_info.get("id")); String result = collectionService.delCollection(collection); if(!StringUtils.isEmpty(get)&&get.equals("1")){ PageInfo<Map<String,Object>> p_list = collectionService.getMyCollection(collection,Integer.parseInt("0"),Integer.parseInt("0")); aj.setObj(p_list.getList()); aj.setTotal(p_list.getTotal()); } aj.setMsg(result.equals("success")?"删除成功":"删除失败"); aj.setSuccess(result.equals("success")?true:false); }catch (Exception e){ aj.setSuccess(false); aj.setMsg(e.getMessage()); return aj; } return aj; } //用户获取个人收藏列表接口 @RequestMapping(value = "/getMyCollection.do" ,produces="application/json" ,method ={RequestMethod.GET,RequestMethod.POST}) @ResponseBody public Object getMyCollection(@RequestParam Map<String,Object> params, @RequestBody AjaxJSON ajax){ AjaxJSON aj = new AjaxJSON(); String pageNum = (String)params.get("pageNum"); String pageSize = (String)params.get("pageSize"); try { pageNum = pageNum == null?"0":pageNum; pageSize = pageSize == null?"0":pageSize; String openid =(String)request.getAttribute("openid"); Map<String, Object> u_info = (Map<String, Object>)userService.getWechatUserInfo(new XLF_Wechat(openid)); XLF_Collection collection = (XLF_Collection) JSONObject.toBean(JSONObject.fromObject(ajax.getObj()), XLF_Collection.class); collection.setUserId((Integer) u_info.get("id")); PageInfo<Map<String,Object>> p_list = collectionService.getMyCollection(collection,Integer.parseInt(pageNum),Integer.parseInt(pageSize)); aj.setObj(p_list.getList()); aj.setTotal(p_list.getTotal()); }catch (Exception e){ aj.setSuccess(false); aj.setMsg(e.getMessage()); return aj; } return aj; } }
[ "717572168@qq.com" ]
717572168@qq.com
ee9a374a7d5c31b8da5f8271ad4e9197d0901212
69cc3f4c2d80782d3cbbc9e93f2cf2ed6194139b
/myproject/src/main/java/com/dosome/SourceInit2.java
0d3b49cb34d24abe7d0e9329192cbf7ae25b8cf3
[]
no_license
SeeYCD/mypro
63ba30b72109ec3beb9d6accbc9fa62ba348d595
05f0806a86e9345c3e0737440e1aa02f4659cce8
refs/heads/master
2022-12-23T20:56:38.207595
2019-10-30T06:12:25
2019-10-30T06:12:25
176,973,437
0
0
null
2022-12-16T04:26:12
2019-03-21T15:27:47
Java
UTF-8
Java
false
false
627
java
package com.dosome; import myproject.frame.dao.DaoA; import org.springframework.beans.factory.InitializingBean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.alibaba.druid.util.StringUtils; /** * 初始化加载资源测试 * @author user * */ @Service public class SourceInit2 implements InitializingBean{ @Autowired private DaoA daoa; @Override public void afterPropertiesSet() throws Exception { StringUtils.equals("",""); for(int i=0;i<20;i++){ System.out.println("dmeo=================="); } }; }
[ "1148507674@qq.com" ]
1148507674@qq.com
e33efd684f744c4e684fb9e28c86a47064b841ba
de6b03d812bc011b18cb652863568fe35933a8e0
/src/main/java/org/support/project/knowledge/dao/gen/GenServiceLocaleConfigsDao.java
5d3e86dfa4932a93cd8cfdf77af2453c79e9a4d1
[ "Apache-2.0" ]
permissive
support-project/knowledge
e53a51b276ad9787cc44c136811ad027163ab12c
bee4efe436eb3798cb546a60b948ebd8f7907ec0
refs/heads/v1
2023-08-15T00:08:45.372764
2018-07-22T02:49:21
2018-07-22T02:49:21
28,609,126
790
295
Apache-2.0
2022-09-08T00:38:37
2014-12-29T22:44:55
Java
UTF-8
Java
false
false
19,959
java
package org.support.project.knowledge.dao.gen; import java.util.List; import java.sql.Timestamp; import org.support.project.knowledge.entity.ServiceLocaleConfigsEntity; import org.support.project.ormapping.dao.AbstractDao; import org.support.project.ormapping.exception.ORMappingException; import org.support.project.ormapping.common.SQLManager; import org.support.project.ormapping.common.DBUserPool; import org.support.project.ormapping.common.IDGen; import org.support.project.ormapping.config.ORMappingParameter; import org.support.project.ormapping.config.Order; import org.support.project.ormapping.connection.ConnectionManager; import org.support.project.common.util.PropertyUtil; import org.support.project.common.util.DateUtils; import org.support.project.di.Container; import org.support.project.di.DI; import org.support.project.di.Instance; import org.support.project.aop.Aspect; /** * サービスの表示言語毎の設定 * this class is auto generate and not edit. * if modify dao method, you can edit ServiceLocaleConfigsDao. */ @DI(instance = Instance.Singleton) public class GenServiceLocaleConfigsDao extends AbstractDao { /** SerialVersion */ private static final long serialVersionUID = 1L; /** * Get instance from DI container. * @return instance */ public static GenServiceLocaleConfigsDao get() { return Container.getComp(GenServiceLocaleConfigsDao.class); } /** * Select all data. * @return all data */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> physicalSelectAll() { return physicalSelectAll(Order.DESC); } /** * Select all data. * @param order order * @return all data */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> physicalSelectAll(Order order) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_physical_select_all.sql"); sql = String.format(sql, order.toString()); return executeQueryList(sql, ServiceLocaleConfigsEntity.class); } /** * Select all data with pager. * @param limit limit * @param offset offset * @return all data on limit and offset */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> physicalSelectAllWithPager(int limit, int offset) { return physicalSelectAllWithPager(limit, offset, Order.DESC); } /** * Select all data with pager. * @param limit limit * @param offset offset * @param order order * @return all data on limit and offset */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> physicalSelectAllWithPager(int limit, int offset, Order order) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_physical_select_all_with_pager.sql"); sql = String.format(sql, order.toString()); return executeQueryList(sql, ServiceLocaleConfigsEntity.class, limit, offset); } /** * Select data on key. * @param localeKey localeKey * @param serviceName serviceName * @return data */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public ServiceLocaleConfigsEntity physicalSelectOnKey(String localeKey, String serviceName) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_physical_select_on_key.sql"); return executeQuerySingle(sql, ServiceLocaleConfigsEntity.class, localeKey, serviceName); } /** * Select all data that not deleted. * @return all data */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> selectAll() { return selectAll(Order.DESC); } /** * Select all data that not deleted. * @param order order * @return all data */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> selectAll(Order order) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_select_all.sql"); sql = String.format(sql, order.toString()); return executeQueryList(sql, ServiceLocaleConfigsEntity.class); } /** * Select all data that not deleted with pager. * @param limit limit * @param offset offset * @return all data */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> selectAllWidthPager(int limit, int offset) { return selectAllWidthPager(limit, offset, Order.DESC); } /** * Select all data that not deleted with pager. * @param limit limit * @param offset offset * @param order order * @return all data */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> selectAllWidthPager(int limit, int offset, Order order) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_select_all_with_pager.sql"); sql = String.format(sql, order.toString()); return executeQueryList(sql, ServiceLocaleConfigsEntity.class, limit, offset); } /** * Select count that not deleted. * @return count */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public Integer selectCountAll() { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_select_count_all.sql"); return executeQuerySingle(sql, Integer.class); } /** * Select data that not deleted on key. * @param localeKey localeKey * @param serviceName serviceName * @return data */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public ServiceLocaleConfigsEntity selectOnKey(String localeKey, String serviceName) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_select_on_key.sql"); return executeQuerySingle(sql, ServiceLocaleConfigsEntity.class, localeKey, serviceName); } /** * Select data that not deleted on LOCALE_KEY column. * @param localeKey localeKey * @return list */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> selectOnLocaleKey(String localeKey) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_select_on_locale_key.sql"); return executeQueryList(sql, ServiceLocaleConfigsEntity.class, localeKey); } /** * Select data that not deleted on SERVICE_NAME column. * @param serviceName serviceName * @return list */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> selectOnServiceName(String serviceName) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_select_on_service_name.sql"); return executeQueryList(sql, ServiceLocaleConfigsEntity.class, serviceName); } /** * Select data on LOCALE_KEY column. * @param localeKey localeKey * @return list */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> physicalSelectOnLocaleKey(String localeKey) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_physical_select_on_locale_key.sql"); return executeQueryList(sql, ServiceLocaleConfigsEntity.class, localeKey); } /** * Select data on SERVICE_NAME column. * @param serviceName serviceName * @return list */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public List<ServiceLocaleConfigsEntity> physicalSelectOnServiceName(String serviceName) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_physical_select_on_service_name.sql"); return executeQueryList(sql, ServiceLocaleConfigsEntity.class, serviceName); } /** * Count all data * @return count */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public int physicalCountAll() { String sql = "SELECT COUNT(*) FROM SERVICE_LOCALE_CONFIGS"; return executeQuerySingle(sql, Integer.class); } /** * Physical Insert. * it is not create key on database sequence. * @param entity entity * @return saved entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public ServiceLocaleConfigsEntity rawPhysicalInsert(ServiceLocaleConfigsEntity entity) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_raw_insert.sql"); executeUpdate(sql, entity.getLocaleKey(), entity.getServiceName(), entity.getPageHtml(), entity.getInsertUser(), entity.getInsertDatetime(), entity.getUpdateUser(), entity.getUpdateDatetime(), entity.getDeleteFlag()); return entity; } /** * Physical Insert. * if key column have sequence, key value create by database. * @param entity entity * @return saved entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public ServiceLocaleConfigsEntity physicalInsert(ServiceLocaleConfigsEntity entity) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_insert.sql"); executeUpdate(sql, entity.getLocaleKey(), entity.getServiceName(), entity.getPageHtml(), entity.getInsertUser(), entity.getInsertDatetime(), entity.getUpdateUser(), entity.getUpdateDatetime(), entity.getDeleteFlag()); return entity; } /** * Insert. * set saved user id. * @param user saved userid * @param entity entity * @return saved entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public ServiceLocaleConfigsEntity insert(Integer user, ServiceLocaleConfigsEntity entity) { entity.setInsertUser(user); entity.setInsertDatetime(new Timestamp(DateUtils.now().getTime())); entity.setUpdateUser(user); entity.setUpdateDatetime(new Timestamp(DateUtils.now().getTime())); entity.setDeleteFlag(0); return physicalInsert(entity); } /** * Insert. * saved user id is auto set. * @param entity entity * @return saved entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public ServiceLocaleConfigsEntity insert(ServiceLocaleConfigsEntity entity) { DBUserPool pool = Container.getComp(DBUserPool.class); Integer userId = (Integer) pool.getUser(); return insert(userId, entity); } /** * Physical Update. * @param entity entity * @return saved entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public ServiceLocaleConfigsEntity physicalUpdate(ServiceLocaleConfigsEntity entity) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_update.sql"); executeUpdate(sql, entity.getPageHtml(), entity.getInsertUser(), entity.getInsertDatetime(), entity.getUpdateUser(), entity.getUpdateDatetime(), entity.getDeleteFlag(), entity.getLocaleKey(), entity.getServiceName()); return entity; } /** * Update. * set saved user id. * @param user saved userid * @param entity entity * @return saved entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public ServiceLocaleConfigsEntity update(Integer user, ServiceLocaleConfigsEntity entity) { ServiceLocaleConfigsEntity db = selectOnKey(entity.getLocaleKey(), entity.getServiceName()); entity.setInsertUser(db.getInsertUser()); entity.setInsertDatetime(db.getInsertDatetime()); entity.setDeleteFlag(db.getDeleteFlag()); entity.setUpdateUser(user); entity.setUpdateDatetime(new Timestamp(DateUtils.now().getTime())); return physicalUpdate(entity); } /** * Update. * saved user id is auto set. * @param entity entity * @return saved entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public ServiceLocaleConfigsEntity update(ServiceLocaleConfigsEntity entity) { DBUserPool pool = Container.getComp(DBUserPool.class); Integer userId = (Integer) pool.getUser(); return update(userId, entity); } /** * Save. * if same key data is exists, the data is update. otherwise the data is insert. * set saved user id. * @param user saved userid * @param entity entity * @return saved entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public ServiceLocaleConfigsEntity save(Integer user, ServiceLocaleConfigsEntity entity) { ServiceLocaleConfigsEntity db = selectOnKey(entity.getLocaleKey(), entity.getServiceName()); if (db == null) { return insert(user, entity); } else { return update(user, entity); } } /** * Save. * if same key data is exists, the data is update. otherwise the data is insert. * @param entity entity * @return saved entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public ServiceLocaleConfigsEntity save(ServiceLocaleConfigsEntity entity) { ServiceLocaleConfigsEntity db = selectOnKey(entity.getLocaleKey(), entity.getServiceName()); if (db == null) { return insert(entity); } else { return update(entity); } } /** * Physical Delete. * @param localeKey localeKey * @param serviceName serviceName */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public void physicalDelete(String localeKey, String serviceName) { String sql = SQLManager.getInstance().getSql("/org/support/project/knowledge/dao/sql/ServiceLocaleConfigsDao/ServiceLocaleConfigsDao_delete.sql"); executeUpdate(sql, localeKey, serviceName); } /** * Physical Delete. * @param entity entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public void physicalDelete(ServiceLocaleConfigsEntity entity) { physicalDelete(entity.getLocaleKey(), entity.getServiceName()); } /** * Delete. * if delete flag is exists, the data is logical delete. * set saved user id. * @param user saved userid * @param localeKey localeKey * @param serviceName serviceName */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public void delete(Integer user, String localeKey, String serviceName) { ServiceLocaleConfigsEntity db = selectOnKey(localeKey, serviceName); db.setDeleteFlag(1); db.setUpdateUser(user); db.setUpdateDatetime(new Timestamp(DateUtils.now().getTime())); physicalUpdate(db); } /** * Delete. * if delete flag is exists, the data is logical delete. * @param localeKey localeKey * @param serviceName serviceName */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public void delete(String localeKey, String serviceName) { DBUserPool pool = Container.getComp(DBUserPool.class); Integer user = (Integer) pool.getUser(); delete(user, localeKey, serviceName); } /** * Delete. * if delete flag is exists, the data is logical delete. * set saved user id. * @param user saved userid * @param entity entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public void delete(Integer user, ServiceLocaleConfigsEntity entity) { delete(user, entity.getLocaleKey(), entity.getServiceName()); } /** * Delete. * if delete flag is exists, the data is logical delete. * set saved user id. * @param entity entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public void delete(ServiceLocaleConfigsEntity entity) { delete(entity.getLocaleKey(), entity.getServiceName()); } /** * Ativation. * if delete flag is exists and delete flag is true, delete flug is false to activate. * set saved user id. * @param user saved userid * @param localeKey localeKey * @param serviceName serviceName */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public void activation(Integer user, String localeKey, String serviceName) { ServiceLocaleConfigsEntity db = physicalSelectOnKey(localeKey, serviceName); db.setDeleteFlag(0); db.setUpdateUser(user); db.setUpdateDatetime(new Timestamp(DateUtils.now().getTime())); physicalUpdate(db); } /** * Ativation. * if delete flag is exists and delete flag is true, delete flug is false to activate. * @param localeKey localeKey * @param serviceName serviceName */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public void activation(String localeKey, String serviceName) { DBUserPool pool = Container.getComp(DBUserPool.class); Integer user = (Integer) pool.getUser(); activation(user, localeKey, serviceName); } /** * Ativation. * if delete flag is exists and delete flag is true, delete flug is false to activate. * set saved user id. * @param user saved userid * @param entity entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public void activation(Integer user, ServiceLocaleConfigsEntity entity) { activation(user, entity.getLocaleKey(), entity.getServiceName()); } /** * Ativation. * if delete flag is exists and delete flag is true, delete flug is false to activate. * @param entity entity */ @Aspect(advice = org.support.project.ormapping.transaction.Transaction.class) public void activation(ServiceLocaleConfigsEntity entity) { activation(entity.getLocaleKey(), entity.getServiceName()); } }
[ "koda.masaru3@gmail.com" ]
koda.masaru3@gmail.com
138b0c0ec8846422fb71bdf3f575a65e3c414e19
4c8e7a5098de09cd273cabcce7f2ac42f87b338f
/src/main/java/com/ztech/donus/service/impl/AccountServiceImpl.java
f7b26b400c388a9d31252afda32d3df967316a8b
[]
no_license
mendesba/donus
124b6d9e07033d2b56bbc24783876ce88de0de9f
2ca1eb92cd0c08633c4ceaf60e5248efcb104b4f
refs/heads/master
2022-11-26T05:55:24.480916
2020-08-01T21:55:12
2020-08-01T21:55:12
284,343,338
0
0
null
null
null
null
UTF-8
Java
false
false
3,220
java
package com.ztech.donus.service.impl; import java.util.ArrayList; import java.util.List; import java.util.Optional; import org.modelmapper.ModelMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ztech.donus.handler.exceptions.BusinessException; import com.ztech.donus.model.Account; import com.ztech.donus.model.dto.AccountRequest; import com.ztech.donus.model.dto.AccountResponse; import com.ztech.donus.repository.AccountRepository; import com.ztech.donus.service.AccountService; import com.ztech.donus.util.Utils; import com.ztech.donus.util.ValidaCPF; import lombok.NoArgsConstructor; import lombok.extern.slf4j.Slf4j; @Slf4j @NoArgsConstructor @Service public class AccountServiceImpl implements AccountService { @Autowired private AccountRepository repository; @Autowired private ModelMapper modelMapper; @Override public List<Account> findAll() { log.info("Initializing - Method findAll"); Iterable<Account> results = repository.findAll(); List<Account> accounts = new ArrayList<>(); results.forEach(accounts::add); log.info("Finishing - Method findAll"); return accounts; } @Override public Account findByCpf(String cpf) { log.info("Initializing - Method findByCpf"); cpf = Utils.removeCaracter(cpf); if (!ValidaCPF.isCPF(cpf)) throw new BusinessException(Utils.getMessage("cpf.invalido")); Optional<Account> result = repository.findByCpf(cpf); if (!result.isPresent()) throw new BusinessException(Utils.getMessage("cpf.nao.encontrado")); log.info("Finishing - Method findByCpf"); return result.get(); } @Override public Account save(AccountRequest account) { log.info("Initializing - Method save"); String cpf = account.getCpf(); if (!ValidaCPF.isCPF(cpf)) throw new BusinessException(Utils.getMessage("cpf.invalido")); Optional<Account> result = repository.findByCpf(cpf); if (!result.isPresent()) { Account accountSave = modelMapper.map(account, Account.class); accountSave.setAgency(Utils.getNumberAgency()); accountSave.setCc(Utils.getNumberCc()); return repository.save(accountSave); } else { throw new BusinessException(Utils.getMessage("cpf.cadastrado")); } } @Override public AccountResponse update(AccountRequest account) { Optional<Account> result = repository.findByCpf(account.getCpf()).map(item -> { item.setName(account.getName()); return repository.save(item); }); if (!result.isPresent()) throw new BusinessException(Utils.getMessage("cpf.invalido")); AccountResponse accountResponse = modelMapper.map(account, AccountResponse.class); return accountResponse; } @Override public AccountResponse updateBalance(Account account) { if (!ValidaCPF.isCPF(account.getCpf())) throw new BusinessException(Utils.getMessage("cpf.invalido")); Optional<Account> result = repository.findByCpf(account.getCpf()).map(item -> { item.setBalance(account.getBalance()); return repository.save(item); }); if (!result.isPresent()) throw new BusinessException(Utils.getMessage("cpf.invalido")); AccountResponse accountResponse = modelMapper.map(account, AccountResponse.class); return accountResponse; } }
[ "mendesba@gmail.com" ]
mendesba@gmail.com
4674b52d09cec93664a209c5d8c30e1135e3c3e2
ddc2411854542d3797c0bee61a6c49ad2d585e3e
/src/main/java/ItemDAO/ItemDAO.java
7aa4874507c2c6f009042d33b030c1833931f6c2
[]
no_license
tsulukiya/servlet-grom
b4a371deca0bd76d9acdb1e803b9c3616849386f
863fd2b60382295665119dfdef4a6153bf038a89
refs/heads/master
2022-11-29T15:16:09.749364
2019-10-31T18:48:44
2019-10-31T18:48:44
217,493,695
0
0
null
2022-11-24T08:16:55
2019-10-25T08:57:10
Java
UTF-8
Java
false
false
3,603
java
package ItemDAO; import Entity.Item; import com.fasterxml.jackson.databind.ObjectMapper; import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.hibernate.cfg.Configuration; import org.hibernate.query.Query; public class ItemDAO { private static SessionFactory sessionFactory; public String sqlQueryFindById = "from Item where id =:code"; public Item save(Item item) { Transaction transaction = null; Session session = null; try { session = createSessionFactory().openSession(); transaction = session.getTransaction(); transaction.begin(); session.save(item); transaction.commit(); return item; } catch (HibernateException e) { System.err.println("Save object: " + item + " is failed"); System.err.println(e.getMessage()); transaction.rollback(); throw e; } finally { if (session != null) { session.close(); } } } public Item update(Item item) { Transaction transaction = null; Session session = null; try { session = createSessionFactory().openSession(); transaction = session.getTransaction(); transaction.begin(); session.update(item); transaction.commit(); return item; } catch (HibernateException e) { System.err.println("Save object: " + item + " is failed"); System.err.println(e.getMessage()); transaction.rollback(); throw e; } finally { if (session != null) { session.close(); } } } public Item delete(long id) { Session session = null; Transaction tr = null; try { session = createSessionFactory().openSession(); tr = session.getTransaction(); tr.begin(); Item item = findById(id); session.delete(item); tr.commit(); return item; } catch (HibernateException e) { System.err.println("Delete is failed"); System.err.println(e.getMessage()); if (tr != null) { tr.rollback(); throw e; } } finally { if (session != null) { session.close(); } } return null; } public Item findById(long id) { Session session = null; Transaction tr; Item item = null; try { session = createSessionFactory().openSession(); tr = session.getTransaction(); tr.begin(); Query query = session.createQuery(sqlQueryFindById); query.setParameter("code", id); for (Object o : query.list()) { item = (Item) o; } tr.commit(); return item; } catch (HibernateException e) { System.err.println("Find by is failed"); System.err.println(e.getMessage()); throw e; } finally { if (session != null) { session.close(); } } } public static SessionFactory createSessionFactory() { if (sessionFactory == null) { sessionFactory = new Configuration().configure().buildSessionFactory(); } return sessionFactory; } }
[ "tsulukiya86@gmail.com" ]
tsulukiya86@gmail.com
4d3e2b810cb92b78c9571ec210bc91001a203f6d
8258dd82dece76adbffc1d3429ca63aebf1a2600
/app/src/main/java/com/mac/runtu/activity/personcentre/SuggestionActivity.java
fdc52aa27d893f002ed6b5cf6c775948d9e3a56b
[]
no_license
wuyue0829/Runtu-master02
155750550c601e05afe3c5a76140bb92df14fe77
cc76dde1bf017d2649f5b51a7bf45afc2891df4e
refs/heads/master
2020-04-11T06:44:44.682500
2018-12-13T05:51:04
2018-12-13T05:51:04
161,590,380
0
0
null
null
null
null
UTF-8
Java
false
false
4,939
java
package com.mac.runtu.activity.personcentre; import android.content.res.Configuration; import android.content.res.Resources; import android.os.Build; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.text.TextUtils; import android.view.View; import android.widget.EditText; import android.widget.ImageView; import com.mac.runtu.R; import com.mac.runtu.global.GlobalConstants; import com.mac.runtu.javabean.UserSuggestionInfo; import com.mac.runtu.utils.GSonUtil; import com.mac.runtu.utils.MyHttpUtils; import com.mac.runtu.utils.PhoneNetWordUitls; import com.mac.runtu.utils.ToastUtils; import com.mac.runtu.utils.UiUtils; import butterknife.BindView; import butterknife.ButterKnife; import butterknife.OnClick; public class SuggestionActivity extends AppCompatActivity { @BindView(R.id.back_Iv) ImageView backIv; @BindView(R.id.editText1) EditText editText1; @BindView(R.id.et_phone_qq) EditText etPhoneQq; @BindView(R.id.iv_btnConfirm) ImageView ivBtnConfirm; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_personal_settings_suggestion); ButterKnife.bind(this); } @Override public Resources getResources() { Resources res = super.getResources(); if (res.getConfiguration().fontScale != 1) { Configuration newConfig = new Configuration(); newConfig.setToDefaults(); res.updateConfiguration(newConfig, res.getDisplayMetrics()); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) { createConfigurationContext(newConfig); } else { res.updateConfiguration(newConfig, res.getDisplayMetrics()); } } return res; } @OnClick({R.id.back_Iv, R.id.iv_btnConfirm}) public void onClick(View view) { switch (view.getId()) { case R.id.back_Iv: finish(); break; case R.id.iv_btnConfirm: String suggestInfo = editText1.getText().toString().trim(); String phoneQQ = etPhoneQq.getText().toString().trim(); if (TextUtils.isEmpty(suggestInfo)) { ToastUtils.makeTextShow(SuggestionActivity.this, "内容不能为空!"); return; } if (TextUtils.isEmpty(phoneQQ)) { ToastUtils.makeTextShow(SuggestionActivity.this, "联系方式不能为空!"); return; } if (phoneQQ.length() < 5 || phoneQQ.length() > 11) { ToastUtils.makeTextShow(SuggestionActivity.this, "联系方式格式不正确 !"); return; } if (!PhoneNetWordUitls.isNetworkConnected(this)) { ToastUtils.makeTextShow(this,"请打开网络!"); return; } ivBtnConfirm.setEnabled(false); UserSuggestionInfo info = new UserSuggestionInfo(); info.contact = phoneQQ; info.content = suggestInfo; info.userUuid = UiUtils.getUserID(); String infoJson = GSonUtil.obj2json(info); MyHttpUtils.getBooleanDataFromNet(GlobalConstants .user_suggest_upload_url, null, GlobalConstants .key_info, infoJson, new MyHttpUtils.OnNewWorkRequestListener2Boolean() { @Override public void onNewWorkSuccess(Boolean result) { if (result) { ToastUtils.makeTextShow (SuggestionActivity.this, "您的意见我们已收到!"); finish(); } else { ToastUtils.makeTextShow (SuggestionActivity.this, "意见提交失败!"); } ivBtnConfirm.setEnabled(true); } @Override public void onNewWorkError(String msg) { ToastUtils.makeTextShowNoNet (SuggestionActivity.this); ivBtnConfirm.setEnabled(true); } }); break; } } }
[ "wuyue@wuyuedeiMac.local" ]
wuyue@wuyuedeiMac.local
8faefe5686ad165aa0edfb2bf97261335a141981
360102c70674a1f51f8745cd76ba3530fedc6da5
/app/src/main/java/com/niucong/punchcardclient/ScheduleActivity.java
9239946a6b77c4504efd061ef43d8c1afeb5c7e0
[]
no_license
niucong/PunchCardClient
0d3c355cd7e1bf39f3ca945f8c1dba2786d080db
0c626f2592c7398230e36dcfd57de9b84d93990f
refs/heads/master
2021-07-13T18:44:21.773340
2020-05-15T01:38:14
2020-05-15T01:38:14
130,287,383
0
0
null
null
null
null
UTF-8
Java
false
false
6,432
java
package com.niucong.punchcardclient; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.WindowManager; import com.bin.david.form.core.SmartTable; import com.niucong.punchcardclient.app.App; import com.niucong.punchcardclient.net.ApiCallback; import com.niucong.punchcardclient.net.bean.ScheduleListBean; import com.niucong.punchcardclient.net.db.ClassTimeDB; import com.niucong.punchcardclient.net.db.ScheduleDB; import com.niucong.punchcardclient.table.Schedule; import org.litepal.LitePal; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import androidx.appcompat.app.ActionBar; import butterknife.BindView; import butterknife.ButterKnife; /** * 作息表 */ public class ScheduleActivity extends BasicActivity { @BindView(R.id.schedule_table) SmartTable<Schedule> table; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_schedule); ButterKnife.bind(this); ActionBar actionBar = getSupportActionBar(); if (actionBar != null) { actionBar.setHomeButtonEnabled(true); actionBar.setDisplayHomeAsUpEnabled(true); } WindowManager wm = this.getWindowManager(); int screenWith = wm.getDefaultDisplay().getWidth(); table.getConfig().setMinTableWidth(screenWith); //设置最小宽度 屏幕宽度 if (LitePal.count(ScheduleDB.class) == 0) { App.showToast("请先刷新作息表"); } else { refreshScheduleList(); } } private void refreshScheduleList() { final List<Schedule> schedules = new ArrayList<>(); for (ScheduleDB scheduleDB : LitePal.findAll(ScheduleDB.class)) { schedules.add(new Schedule(scheduleDB.getTimeRank(), scheduleDB.getSectionName(), scheduleDB.getTime())); } table.setData(schedules); table.getConfig().setShowTableTitle(false); table.setZoom(true, 2, 0.2f); } private void getScheduleList() { Map<String, String> fields = new HashMap<>(); Log.d("ScheduleActivity", "fields=" + fields.toString()); addSubscription(getApi().scheduleList(fields), new ApiCallback<ScheduleListBean>() { @Override public void onSuccess(ScheduleListBean model) { if (model != null) { if (model.getCode() == 1) { if (LitePal.count(ScheduleDB.class) > 0) { LitePal.deleteAll(ScheduleDB.class); } LitePal.saveAll(model.getList()); if (LitePal.count(ClassTimeDB.class) > 0) { LitePal.deleteAll(ClassTimeDB.class); } List<ClassTimeDB> timeDBS = new ArrayList<>(); for (ScheduleDB scheduleDB : model.getList()) { try { Integer.valueOf(scheduleDB.getSectionName()); ClassTimeDB monday = new ClassTimeDB(); monday.setSectionName(scheduleDB.getSectionName()); monday.setWeekDay("星期一"); timeDBS.add(monday); ClassTimeDB tuesday = new ClassTimeDB(); tuesday.setSectionName(scheduleDB.getSectionName()); tuesday.setWeekDay("星期二"); timeDBS.add(tuesday); ClassTimeDB wednesday = new ClassTimeDB(); wednesday.setSectionName(scheduleDB.getSectionName()); wednesday.setWeekDay("星期三"); timeDBS.add(wednesday); ClassTimeDB thursday = new ClassTimeDB(); thursday.setSectionName(scheduleDB.getSectionName()); thursday.setWeekDay("星期四"); timeDBS.add(thursday); ClassTimeDB friday = new ClassTimeDB(); friday.setSectionName(scheduleDB.getSectionName()); friday.setWeekDay("星期五"); timeDBS.add(friday); ClassTimeDB saturday = new ClassTimeDB(); saturday.setSectionName(scheduleDB.getSectionName()); saturday.setWeekDay("星期六"); timeDBS.add(saturday); ClassTimeDB sunday = new ClassTimeDB(); sunday.setSectionName(scheduleDB.getSectionName()); sunday.setWeekDay("星期日"); timeDBS.add(sunday); } catch (NumberFormatException e) { e.printStackTrace(); } } LitePal.saveAll(timeDBS); refreshScheduleList(); } else { App.showToast("" + model.getMsg()); } } else { App.showToast("接口错误" + (model == null)); } } @Override public void onFinish() { } @Override public void onFailure(String msg) { App.showToast("请求失败"); } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { this.getMenuInflater().inflate(R.menu.menu_refresh, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { super.onOptionsItemSelected(item); switch (item.getItemId()) { case android.R.id.home: this.finish(); break; case R.id.action_refresh: getScheduleList(); break; } return super.onOptionsItemSelected(item); } }
[ "niucong@julong.cc" ]
niucong@julong.cc
7b40cfe93651ed779ae4144996670165e5978a10
d18af2a6333b1a868e8388f68733b3fccb0b4450
/java/src/com/flurry/android/monolithic/sdk/impl/em.java
06faf05869bc43e7ff11609de132ffe928e5d6c0
[]
no_license
showmaxAlt/showmaxAndroid
60576436172495709121f08bd9f157d36a077aad
d732f46d89acdeafea545a863c10566834ba1dec
refs/heads/master
2021-03-12T20:01:11.543987
2015-08-19T20:31:46
2015-08-19T20:31:46
41,050,587
0
1
null
null
null
null
UTF-8
Java
false
false
6,628
java
// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.flurry.android.monolithic.sdk.impl; import java.util.HashSet; import java.util.Iterator; import java.util.List; import java.util.Set; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; // Referenced classes of package com.flurry.android.monolithic.sdk.impl: // id, jb, jc, eo, // ja, es, et, ep, // eq, ev, ib, ic, // en, ey, ew, eu public class em implements id, jb { static String a; static String b = "http://data.flurry.com/aap.do"; static String c = "https://data.flurry.com/aap.do"; private static final String f = com/flurry/android/monolithic/sdk/impl/em.getSimpleName(); ey d; Set e; private boolean g; private ExecutorService h; private ExecutorService i; public em() { this(null); } em(eu eu) { e = new HashSet(); jc.a().a(this); h = Executors.newSingleThreadExecutor(); i = Executors.newCachedThreadPool(); e(); f(); a(eu); } static void a(em em1) { em1.i(); } static void a(em em1, String s, String s1) { em1.b(s, s1); } static void a(em em1, String s, String s1, int j) { em1.a(s, s1, j); } private void a(eu eu) { h.submit(new eo(this, eu)); } private void a(String s) { if (s != null && !s.endsWith(".do")) { ja.a(5, f, "overriding analytics agent report URL without an endpoint, are you sure?"); } a = s; } private void a(String s, String s1, int j) { h.submit(new es(this, j, s, s1)); } static void b(em em1) { em1.h(); } private void b(String s, String s1) { h.submit(new et(this, s)); } static void c(em em1) { em1.g(); } private void c(byte abyte0[], String s, String s1) { h.submit(new ep(this, abyte0, s, s1)); } static String d() { return f; } private void d(byte abyte0[], String s, String s1) { String s2 = b(); ja.a(4, f, (new StringBuilder()).append("FlurryDataSender: start upload data with id = ").append(s).append(" to ").append(s2).toString()); eq eq1 = new eq(this); i.submit(new ev(s2, s, s1, abyte0, eq1)); } private void e() { ic ic1 = ib.a(); g = ((Boolean)ic1.a("UseHttps")).booleanValue(); ic1.a("UseHttps", this); ja.a(4, f, (new StringBuilder()).append("initSettings, UseHttps = ").append(g).toString()); String s = (String)ic1.a("ReportUrl"); ic1.a("ReportUrl", this); a(s); ja.a(4, f, (new StringBuilder()).append("initSettings, ReportUrl = ").append(s).toString()); } private void f() { h.submit(new en(this)); } private void g() { a(((eu) (null))); } private void h() { if (jc.a().c()) goto _L2; else goto _L1 _L1: ja.a(5, f, "Reports were not sent! No Internet connection!"); _L4: return; _L2: Object obj; obj = d.b(); if (obj == null || ((List) (obj)).isEmpty()) { ja.a(4, f, "No more reports to send."); return; } obj = ((List) (obj)).iterator(); _L7: if (!((Iterator) (obj)).hasNext()) goto _L4; else goto _L3 _L3: String s = (String)((Iterator) (obj)).next(); if (!c()) goto _L4; else goto _L5 _L5: List list; int j; list = d.b(s); ja.a(4, f, (new StringBuilder()).append("Number of not sent blocks = ").append(list.size()).toString()); j = 0; _L8: if (j >= list.size()) goto _L7; else goto _L6 _L6: String s1; s1 = (String)list.get(j); if (!e.contains(s1)) { continue; /* Loop/switch isn't completed */ } _L10: j++; goto _L8 if (!c()) goto _L7; else goto _L9 _L9: byte abyte0[] = (new ew(s1)).b(); if (abyte0 == null || abyte0.length == 0) { ja.a(6, f, "Internal ERROR! Report is empty!"); d.a(s1, s); } else { e.add(s1); d(abyte0, s1, s); } goto _L10 } private void i() { long l = Thread.currentThread().getId(); Thread.currentThread().setName((new StringBuilder()).append("DataSender Main Single Thread , id = ").append(l).toString()); } int a() { return e.size(); } String a(String s, String s1) { return (new StringBuilder()).append("Data_").append(s).append("_").append(s1).toString(); } public void a(String s, Object obj) { if (s.equals("UseHttps")) { g = ((Boolean)obj).booleanValue(); ja.a(4, f, (new StringBuilder()).append("onSettingUpdate, UseHttps = ").append(g).toString()); return; } if (s.equals("ReportUrl")) { s = (String)obj; a(s); ja.a(4, f, (new StringBuilder()).append("onSettingUpdate, ReportUrl = ").append(s).toString()); return; } else { ja.a(6, f, "onSettingUpdate internal error!"); return; } } public void a(byte abyte0[], String s, String s1) { a(abyte0, s, s1, ((eu) (null))); } void a(byte abyte0[], String s, String s1, eu eu) { if (abyte0 == null || abyte0.length == 0) { ja.a(6, f, "Report that has to be sent is EMPTY or NULL"); return; } else { c(abyte0, s, s1); a(eu); return; } } String b() { if (a != null) { return a; } if (g) { return c; } else { return b; } } String b(byte abyte0[], String s, String s1) { s = a(s, s1); s1 = new ew(); s1.a(abyte0); abyte0 = s1.a(); d.a(s1, s); return abyte0; } public void b(boolean flag) { ja.a(4, f, (new StringBuilder()).append("onNetworkStateChanged : isNetworkEnable = ").append(flag).toString()); if (flag) { g(); } } boolean c() { return a() <= 8; } }
[ "invisible@example.com" ]
invisible@example.com
12b613c7080fbcb1b0a08e9e2fd224acca450f66
ec372cef87e6d261601286ef251a15a57a054d35
/src/engine/model/quiz/Answer.java
295c1518f46410174318e37294c85f7baeaf1808
[]
no_license
ssotom/Web-Quiz-Engine
a70510f7a7a82d6d395cd1dde5efae9fe0c330cb
79ace2c9b40908185db2928023dff589fbd79cbb
refs/heads/master
2022-11-21T12:22:23.145599
2020-07-02T22:59:07
2020-07-02T22:59:07
275,486,705
0
0
null
null
null
null
UTF-8
Java
false
false
264
java
package engine.model.quiz; import java.util.Set; public class Answer { private Set<Integer> answer; public Set<Integer> getAnswer() { return answer; } public void setAnswer(Set<Integer> answer) { this.answer = answer; } }
[ "ssotom@eafit.edu.co" ]
ssotom@eafit.edu.co
15860a8a966a4ae3ba2edd48583aa8381a8a6512
ccebd285e2c48ccd756a579a4228d7dab4ecd89b
/src/Main.java
df674a702064b88a28878f8d66edc2fd8263272c
[]
no_license
Jairinka26/Converter.v3
560701256fd6541cc01569d9755327ce384d3f17
b47a2dd7b44ce1eceaf9cda75706d74a3e974a03
refs/heads/master
2020-04-08T08:59:04.790110
2018-11-26T16:49:42
2018-11-26T16:49:42
159,202,172
0
0
null
null
null
null
UTF-8
Java
false
false
147
java
public class Main { public static void main(String[] args) { init(); } static void init (){ new Controller(); } }
[ "ipaschenko@gmail.com" ]
ipaschenko@gmail.com
4d752801ceb166170ed0dc1965fc300d69d65a69
26cff18559c6c092fdbfaea948a3940f381ef4ad
/src/main/java/com/tsinghua/course/Biz/Controller/Params/MessageParams/In/CreateMessageInParams.java
ee6ff82839f04688d1ff85314ec572ee23c5d23d
[]
no_license
jameslahm/weixin_backend
671d76561eac42ffa5acf2c9c3ba9cbe590d1ea9
85cfc77d969f528c19b7a9b8306b205302aad6cb
refs/heads/master
2023-06-02T17:03:15.236395
2021-06-24T08:04:26
2021-06-24T08:04:26
361,343,279
0
0
null
null
null
null
UTF-8
Java
false
false
1,334
java
package com.tsinghua.course.Biz.Controller.Params.MessageParams.In; import com.tsinghua.course.Base.Annotation.BizType; import com.tsinghua.course.Base.Annotation.Required; import com.tsinghua.course.Base.Enum.BizTypeEnum; import com.tsinghua.course.Biz.Controller.Params.CommonInParams; @BizType(BizTypeEnum.MESSAGE_CREATE) public class CreateMessageInParams extends CommonInParams { @Required String content; @Required String contentType; @Required String messageType; @Required String to; @Required long timestamp; public void setMessageType(String messageType) { this.messageType = messageType; } public String getMessageType() { return messageType; } public void setContentType(String contentType) { this.contentType = contentType; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getContentType() { return contentType; } public void setTo(String to) { this.to = to; } public String getTo() { return to; } public long getTimestamp() { return timestamp; } public void setTimestamp(long timestamp) { this.timestamp = timestamp; } }
[ "1366463855@qq.com" ]
1366463855@qq.com
17cb211ffe3fe5679008e6a78c20df353a574e27
b3648173e093ea7f5046df971255b5ba94a643ee
/src/main/java/com/conveyal/r5/analyst/GridTransformWrapper.java
8c18549cf3e8f948902e9d1bccd14723e1366e9e
[ "MIT" ]
permissive
availabs/r5
c6dd50db6b2149bf9a6674d1d3057a833d61ddce
302224c226de16c146eaf0365eef04a812c11096
refs/heads/master
2023-07-12T11:34:54.495439
2021-05-16T17:18:52
2021-05-16T17:18:52
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,868
java
package com.conveyal.r5.analyst; import org.locationtech.jts.geom.Envelope; import static com.google.common.base.Preconditions.checkArgument; /** * This wraps a gridded destination pointset (the "source"), remapping its point indexes to match those of another grid. * This can be used to stack pointsets of varying dimensions, or to calculate accessibility to pointsets of * different dimensions than a travel time surface grid. * * These wrappers should not be used for linking as they don't have a BasePointSet. Another WebMercatorGridPointSet will * be linked, and these will just serve as opportunity grids of identical dimensions during accessibility calculations. */ public class GridTransformWrapper extends PointSet { /** Defer to this PointSet for everything but opportunity counts, including grid dimensions and lat/lon. */ private WebMercatorGridPointSet targetGrid; /** Defer to this PointSet to get opportunity counts (transforming indexes to those of targetPointSet). */ private Grid sourceGrid; /** * Wraps the sourceGrid such that the opportunity count is read from the geographic locations of indexes in the * targetGrid. For the time being, both pointsets must be at the same zoom level. Any opportunities outside the * targetGrid cannot be indexed so are effectively zero for the purpose of accessibility calculations. */ public GridTransformWrapper (WebMercatorExtents targetGridExtents, Grid sourceGrid) { checkArgument(targetGridExtents.zoom == sourceGrid.zoom, "Zoom levels must be identical."); // Make a pointset for these extents so we can defer to its methods for lat/lon lookup, size, etc. this.targetGrid = new WebMercatorGridPointSet(targetGridExtents); this.sourceGrid = sourceGrid; } // Given an index in the targetPointSet, return the corresponding 1D index into the sourceGrid or -1 if the target // index is for a point outside the source grid. // This could certainly be made more efficient (but complex) by forcing sequential iteration over opportunity counts // and disallowing random access, using a new PointSetIterator class that allows reading lat, lon, and counts. private int transformIndex (int i) { final int x = (i % targetGrid.width) + targetGrid.west - sourceGrid.west; final int y = (i / targetGrid.width) + targetGrid.north - sourceGrid.north; if (x < 0 || x >= sourceGrid.width || y < 0 || y >= sourceGrid.height) { // Point in target grid lies outside source grid, there is no valid index. Return special value. return -1; } return y * sourceGrid.width + x; } @Override public double getLat (int i) { return targetGrid.getLat(i); } @Override public double getLon (int i) { return targetGrid.getLon(i); } @Override public int featureCount () { return targetGrid.featureCount(); } @Override public double sumTotalOpportunities() { // Very inefficient compared to the other implementations as it does a lot of index math, but it should work. double totalOpportunities = 0; for (int i = 0; i < featureCount(); i++) { totalOpportunities += getOpportunityCount(i); } return totalOpportunities; } @Override public double getOpportunityCount (int targetIndex) { int sourceindex = transformIndex(targetIndex); if (sourceindex < 0) { return 0; } else { return sourceGrid.getOpportunityCount(sourceindex); } } @Override public Envelope getWgsEnvelope () { return targetGrid.getWgsEnvelope(); } @Override public WebMercatorExtents getWebMercatorExtents () { return targetGrid.getWebMercatorExtents(); } }
[ "abyrd@conveyal.com" ]
abyrd@conveyal.com
3a5294eda3b21c2c488096bb7fc396284d6196c6
ecd7978470220b5a67e4b28ce55134917d3edc1b
/src/java/com/slambook/repository/interfaces/MessageDAOInt.java
60babb0635169b2529c2393aceca5f4d024eccdf
[]
no_license
mayanktech/slambook
66ca65caa6c5cfcf78b1cbab0aefca3a57c07fb6
863abde3fac5cda443926248e54770a0c8a50aea
refs/heads/master
2021-01-01T19:01:41.467220
2014-12-27T09:47:39
2014-12-27T09:47:39
null
0
0
null
null
null
null
UTF-8
Java
false
false
658
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.slambook.repository.interfaces; //import com.slambook.entity.Messages; import java.util.ArrayList; /** * * @author Mayank */ public interface MessageDAOInt { // public int sendMessage(Messages message); public ArrayList getConversationMessagesFromFriend(int senderId,int receiverId,int clickTimes); public ArrayList getTop10Messages(int receiverId); public ArrayList getRealTimeMessages(int senderId,int userId,int messageId); public int getRealTimeMessageId(int senderId,int userId,int messageId); }
[ "mayank@WIN-DF43Q7ASOEC" ]
mayank@WIN-DF43Q7ASOEC
8779881acc61af60e688dd9f084ae7046e8107b2
7fdabec0dc9a9a59b17160169dbae86c47f44931
/src/main/java/dhbw/vorlesungsplaner/kurs/KursServiceClass.java
7c6b579b6b794c9fa6b6cecb0a73c01e65aec73e
[]
no_license
platzhirsch/vorlesungsplaner
441c707a866d6c80a11eba3f2d03a8630aca474c
f237e55edd2b9ad127c3fed91650395e5d614d10
refs/heads/master
2021-03-04T15:10:19.375099
2020-05-07T19:54:41
2020-05-07T19:54:41
246,044,760
0
0
null
null
null
null
UTF-8
Java
false
false
685
java
package dhbw.vorlesungsplaner.kurs; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.util.List; @Service @Transactional public class KursServiceClass { @Autowired private KursRepository kursRepository; public List<Kurs> listAll() { return kursRepository.findAll(); } public void save(Kurs kurs) { kursRepository.save(kurs); } public Kurs get(Integer id) { return kursRepository.findById(id).get(); } public void delete(Integer id) { kursRepository.deleteById(id); } }
[ "felixflassak@gmail.com" ]
felixflassak@gmail.com
ca44b731281315777514d70ab1e751fe087f7478
91029b9b4a4297d5f36f7ab466846606a844687c
/src/test/java/fr/diginamic/atlasofeconomie/AppTest.java
44b4ca8a61974294e7a57dfa79d71e043b535484
[]
no_license
olivier29000/atlasdeconomie
87104d0898fe846e91388ba25928922d0c0c536e
33092a217ab7fb325ce71d82ad8a379a3c2a6614
refs/heads/master
2021-07-06T15:59:08.924340
2019-06-30T20:59:54
2019-06-30T20:59:54
194,538,600
0
0
null
null
null
null
UTF-8
Java
false
false
656
java
package fr.diginamic.atlasofeconomie; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Unit test for simple App. */ public class AppTest extends TestCase { /** * Create the test case * * @param testName name of the test case */ public AppTest( String testName ) { super( testName ); } /** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite( AppTest.class ); } /** * Rigourous Test :-) */ public void testApp() { assertTrue( true ); } }
[ "you@example.com" ]
you@example.com
b8388790bb85854e64bbe6a958443d693bbd773a
46786b383a16fff9c5d57b6b197b905e56a40dba
/xcloud/xcloud-service/src/main/java/org/waddys/xcloud/monitor/serviceImpl/impl/HostServiceImpl.java
66547a9574ae8b85f3c16a2363aca2e0f2cce616
[]
no_license
yiguotang/x-cloud
feeb9c6288e01a45fca82648153238ed85d4069e
2b255249961efb99d48a0557f7d74ce3586918fe
refs/heads/master
2020-04-05T06:18:30.750373
2016-08-03T06:48:35
2016-08-03T06:48:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
11,542
java
/** * */ package org.waddys.xcloud.monitor.serviceImpl.impl; import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Service; import org.waddys.xcloud.monitor.bo.HostBo; import org.waddys.xcloud.monitor.service.exception.CloudViewPerfException; import org.waddys.xcloud.monitor.service.service.HostService; import org.waddys.xcloud.monitor.serviceImpl.entity.Host; import org.waddys.xcloud.monitor.serviceImpl.entity.VM; import org.waddys.xcloud.monitor.serviceImpl.service.HistoryPerfAndAlertServiceI; import org.waddys.xcloud.monitor.serviceImpl.service.HostAndVmPerfOp; import org.waddys.xcloud.monitor.serviceImpl.util.Connection; import org.waddys.xcloud.monitor.serviceImpl.util.PerfConstants; import org.waddys.xcloud.monitor.serviceImpl.util.PerfUtils; import org.waddys.xcloud.monitor.serviceImpl.util.ToolsUtils; import org.waddys.xcloud.monitor.serviceImpl.util.VCenterManageUtils; import com.vmware.vim25.HostSystemConnectionState; import com.vmware.vim25.HostSystemPowerState; import com.vmware.vim25.ManagedEntityStatus; import com.vmware.vim25.mo.Datastore; import com.vmware.vim25.mo.HostSystem; import com.vmware.vim25.mo.VirtualMachine; /** * 功能名: 请填写功能名 功能描述: 请简要描述功能的要点 Copyright: Copyright (c) 2016 公司: 曙光云计算技术有限公司 * * @author wq * @version 2.0.0 sp1 */ @Service("monitor-hostServiceImpl") public class HostServiceImpl implements HostService { private static final Logger logger = LoggerFactory.getLogger(HostServiceImpl.class); // 物理机和虚拟机性能服务 @Qualifier("monitor-hostAndVmPerfOpImpl") @Autowired private HostAndVmPerfOp hostAndVmPerfOp; @Qualifier("monitor-connection") @Autowired private Connection connection; String accessble = "accessble"; String unaccessble = "unaccessble"; private VCenterManageUtils vCenterManageUtils; @Autowired private ToolsUtils toolsUtils; @Qualifier("monitor-historyPerfAndAlertServiceImpl") @Autowired private HistoryPerfAndAlertServiceI alarmUtil; @Qualifier("monitor-resourceServiceImpl") @Autowired private ResourceServiceImpl resourceServiceImpl; @Override public List<HostBo> getHosts() { List<Host> hosts = hostAndVmPerfOp.getHostsEx(); List<HostBo> hostBos = new ArrayList<HostBo>(); for (Host host : hosts) { try { HostBo hostBo = new HostBo(); toolsUtils.convert(host, hostBo); double cpuGHzTotal = toolsUtils.CpuMHzToGHz(Double.valueOf(hostBo.getCpuMHZTotal())); double cpuGHzUsed = toolsUtils.CpuMHzToGHz(Double.valueOf(hostBo.getCpuMHZUsed())); double memGBTotal = toolsUtils.MembyteToGB(Double.valueOf(hostBo.getMemoryTotal())); double memGBUsed = toolsUtils.MemMBToGB(Double.valueOf(hostBo.getMemoryUsed())); double storeTBTotal = toolsUtils.StoreMBToTB(Double.valueOf(hostBo.getDiskTotal())); double storeTBUsed = toolsUtils.StoreMBToTB(Double.valueOf(hostBo.getDiskUsed())); hostBo.setCpuGHzTotal(cpuGHzTotal); hostBo.setCpuGHzUsed(cpuGHzUsed); hostBo.setMemGBTotal(memGBTotal); hostBo.setMemGBUsed(memGBUsed); hostBo.setStoreTBTotal(storeTBTotal); hostBo.setStoreTBUsed(storeTBUsed); hostBos.add(hostBo); } catch (Exception e) { } } return hostBos; } @Override public HostBo getHostById(String hostId) { HostSystem hostSystem = null; try { hostSystem = getVCenterManageUtils().getHostSystemById(hostId); } catch (CloudViewPerfException e) { e.printStackTrace(); } if (hostSystem != null) { Host host = new Host(); host.setName(hostSystem.getName()); host.setIpAddr(hostSystem.getName());// getName返回的是主机名或者IP地址 host.setId(hostSystem.getMOR().getVal()); // 所属数据中心 try { if(hostSystem.getParent()!=null && hostSystem.getParent().getParent()!=null && hostSystem.getParent().getParent().getParent()!=null ){ host.setDataCenterName(hostSystem.getParent().getParent().getParent().getName()); } } catch (Exception e) { host.setDataCenterName("unknown"); logger.debug("获取数据中心异常"+e); //e.printStackTrace(); } // 所属集群 try { host.setClusterName(hostSystem.getParent().getName()); } catch (Exception e) { host.setClusterName("unknown"); e.printStackTrace(); } // 断开主机特殊处理 if (hostSystem.getRuntime().getConnectionState() == HostSystemConnectionState.disconnected) { PerfUtils.InitialHost(host); host.setConnectionStatus( ToolsUtils.convertHostConnectionStatusToString(hostSystem.getRuntime().getConnectionState())); } long starTime = System.currentTimeMillis(); Map<String, String> commonInfo = PerfUtils.getHostCommonPerf(hostSystem); Map<String, String> otherInfo = PerfUtils.getHostOtherPerf(hostSystem); String hostName = hostSystem.getName(); HostSystemPowerState powerStatus = hostSystem.getRuntime().getPowerState(); ManagedEntityStatus mEnStatus = hostSystem.getSummary().getOverallStatus(); // 虚拟机列表 try { VirtualMachine[] vms = hostSystem.getVms(); List<VM> vmList = new ArrayList<VM>(); if (null != vms && vms.length > 0) { for (VirtualMachine virtualMachine : vms) { VM vm = resourceServiceImpl.getVMBasicInfo(virtualMachine, hostSystem); vmList.add(vm); } } host.setVmList(vmList); Map<String, Integer> vmMap = resourceServiceImpl.getVmStatusInfo(vms); host.setVmNum(vms.length); host.setVmAccessibleNum(vmMap.get(accessble)); host.setVmUnaccessibleNum(vmMap.get(unaccessble)); } catch (Exception e) { e.printStackTrace(); } try { Datastore[] dss = hostSystem.getDatastores(); Map<String, Integer> dssMap = resourceServiceImpl.getStoreStatusInfo(dss); host.setStoreNum(dss.length); host.setStoreAccessibleNum(dssMap.get(accessble)); host.setStoreUnaccessibleNum(dssMap.get(unaccessble)); } catch (Exception e) { e.printStackTrace(); } // 获取已触发告警信息 host.setTriggeredAlarm(alarmUtil.getTriggeredAlarms(hostSystem)); try { // 设置电源状态 host.setPowerStatus(ToolsUtils.convertHostPowerStatusToString(powerStatus)); // 设置主机运行状态,是否正常 host.setStatus(ToolsUtils.convertManageObjectStatusToString(mEnStatus)); // 设置连接状态 host.setConnectionStatus( ToolsUtils.convertHostConnectionStatusToString(hostSystem.getRuntime().getConnectionState())); host.setCpuMHZUsed(commonInfo.get(PerfConstants.CPU_USED_ID)); host.setCpuUsage(commonInfo.get(PerfConstants.CPU_USAGE_ID)); host.setMemoryUsed(commonInfo.get(PerfConstants.MEM_USED_ID)); host.setMemoryUsage(commonInfo.get(PerfConstants.MEM_USAGE_ID)); host.setDiskReadSpeed(ToolsUtils.GetMapValue(otherInfo, PerfConstants.DISK_READ_ID)); host.setDiskWriteSpeed(ToolsUtils.GetMapValue(otherInfo, PerfConstants.DISK_WRITE_ID)); long diskIOSpeed = Long.valueOf(ToolsUtils.GetMapValue(otherInfo, PerfConstants.DISK_READ_ID)) + Long.valueOf(ToolsUtils.GetMapValue(otherInfo, PerfConstants.DISK_WRITE_ID)); host.setDiskIOSpeed(String.valueOf(diskIOSpeed)); long diskIOPS = Long.valueOf(ToolsUtils.GetMapValue(otherInfo, PerfConstants.DISK_IOPS_READ_ID)) + Long.valueOf(ToolsUtils.GetMapValue(otherInfo, PerfConstants.DISK_IOPS_WRITE_ID)); host.setDiskIops(String.valueOf(diskIOPS)); host.setNetworkReceiveSpeed(ToolsUtils.GetMapValue(otherInfo, PerfConstants.NET_RX_ID)); host.setNetworkSendSpeed(ToolsUtils.GetMapValue(otherInfo, PerfConstants.NET_TX_ID)); host.setNetworkTransmitSpeed(ToolsUtils.GetMapValue(otherInfo, PerfConstants.NET_IO_SPEED_ID)); host.setCpuMHZTotal(commonInfo.get(PerfConstants.CPU_TOTAL_ID)); host.setMemoryTotal(commonInfo.get(PerfConstants.MEM_TOTAL_ID)); host.setDiskTotal(commonInfo.get(PerfConstants.DISK_TOTAL_ID)); host.setDiskUsed(commonInfo.get(PerfConstants.DISK_USED_ID)); double diskTotal = Double.valueOf(commonInfo.get(PerfConstants.DISK_TOTAL_ID)); double usedSpace = Double.valueOf(commonInfo.get(PerfConstants.DISK_USED_ID)); double diskUsagePercent = 0.0; if (Math.abs(diskTotal - 0) > 0.0001) { BigDecimal diskUsageBd = new BigDecimal((usedSpace / diskTotal) * 100); diskUsagePercent = diskUsageBd.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue(); } host.setDiskUsage(String.valueOf(diskUsagePercent)); long endTime = System.currentTimeMillis(); long Time = endTime - starTime; System.out.println("**********************************主机信息花费:" + Time + "ms"); } catch (Exception e) { e.printStackTrace(); } HostBo hostBo = new HostBo(); toolsUtils.convert(host, hostBo); double cpuGHzTotal = toolsUtils.CpuMHzToGHz(Double.valueOf(hostBo.getCpuMHZTotal())); double cpuGHzUsed = toolsUtils.CpuMHzToGHz(Double.valueOf(hostBo.getCpuMHZUsed())); double memGBTotal = toolsUtils.MemMBToGB(Double.valueOf(hostBo.getMemoryTotal())); double memGBUsed = toolsUtils.MemMBToGB(Double.valueOf(hostBo.getMemoryUsed())); double storeTBTotal = toolsUtils.StoreMBToTB(Double.valueOf(hostBo.getDiskTotal())); double storeTBUsed = toolsUtils.StoreMBToTB(Double.valueOf(hostBo.getDiskUsed())); hostBo.setCpuGHzTotal(cpuGHzTotal); hostBo.setCpuGHzUsed(cpuGHzUsed); hostBo.setMemGBTotal(memGBTotal); hostBo.setMemGBUsed(memGBUsed); hostBo.setStoreTBTotal(storeTBTotal); hostBo.setStoreTBUsed(storeTBUsed); return hostBo; } else { return null; } } /** * @return the opUtil */ public VCenterManageUtils getVCenterManageUtils() { this.vCenterManageUtils = new VCenterManageUtils(this.connection); return vCenterManageUtils; } }
[ "waddy87@gmail.com" ]
waddy87@gmail.com
26a9ce77d0f29fa46c02c80652b044820e90d7b0
b7d5ab3fa21217df8631f6a738a5cb47bb2e969d
/springcloud-02-shopping-goods-provider/src/main/java/com/springcloud/dao/Class1Mapper.java
d3b4c97cd8f2e52b47c56451c1a9075d91465735
[]
no_license
1depression1/R1
bbdaae164c43b77cabda025988cd7aa8876c0cf4
da0317b6f69a51e00646358eaacfae55d5abf856
refs/heads/master
2022-07-01T23:11:35.092462
2019-06-17T01:40:39
2019-06-17T01:40:39
192,257,860
0
0
null
2022-06-21T01:17:37
2019-06-17T01:57:04
Java
UTF-8
Java
false
false
1,213
java
package com.springcloud.dao; import com.springcloud.entity.Class1; import java.util.List; public interface Class1Mapper { /** * This method was generated by MyBatis Generator. This method corresponds to * the database table class1 * * @mbg.generated Wed May 22 10:08:06 CST 2019 */ int deleteByPrimaryKey(Integer class1Id); /** * This method was generated by MyBatis Generator. This method corresponds to * the database table class1 * * @mbg.generated Wed May 22 10:08:06 CST 2019 */ int insert(Class1 record); /** * This method was generated by MyBatis Generator. This method corresponds to * the database table class1 * * @mbg.generated Wed May 22 10:08:06 CST 2019 */ Class1 selectByPrimaryKey(Integer class1Id); /** * This method was generated by MyBatis Generator. This method corresponds to * the database table class1 * * @mbg.generated Wed May 22 10:08:06 CST 2019 */ List<Class1> selectAll(); /** * This method was generated by MyBatis Generator. This method corresponds to * the database table class1 * * @mbg.generated Wed May 22 10:08:06 CST 2019 */ int updateByPrimaryKey(Class1 record); }
[ "974075879@qq.com" ]
974075879@qq.com
8105fa44738a9b228d74a93174d34c754f3b2341
eba4727b3ea7f4d4d73b69954b13e6af7a403a7a
/src/main/java/com/ipeknil/bayilikformu/HomeController.java
8093a5f4eb22fabcf4c53146f98ca6d20eb41bbf
[]
no_license
ipekniil/springform
31ac611aaa8617f3801a3419524935bfefcb3225
7e77b4b05c888945fb502d6f468c573142055e06
refs/heads/master
2022-12-27T07:31:01.553119
2019-11-25T22:02:18
2019-11-25T22:02:18
223,482,972
0
0
null
2022-12-16T06:44:47
2019-11-22T20:40:46
CSS
UTF-8
Java
false
false
1,279
java
package com.ipeknil.bayilikformu; import java.beans.PropertyVetoException; import java.sql.SQLException; import javax.servlet.http.HttpServletRequest; import org.hibernate.HibernateException; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.hibernate.SessionFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import com.ipeknil.service.formservice; import com.ipeknil.entity.Form; @Controller public class HomeController { @Autowired private formservice formService; @RequestMapping(value = "/", method = RequestMethod.GET) public String home( Model model, HttpServletRequest req) { return "index"; } @RequestMapping(value = "/addForm", method = RequestMethod.POST) public ResponseEntity<String> addForm(@RequestBody Form form, HttpServletRequest request){ formService.createform(form); return new ResponseEntity<>("OK",HttpStatus.CREATED); } }
[ "ipeknil@DESKTOP-HJ42991" ]
ipeknil@DESKTOP-HJ42991
cb99e91293d3355b8ab23943b46ba755f8678a17
859558984d3aad44609dbf1308fbd1fcce5ab0f5
/Demon.java
d8833f0360f9cf942afa68386bddda4a3637a6d0
[]
no_license
TonyPwny/CreatureWar-Base
fc44fee6458a52f5123e6bd493acafca534eb06f
73ef3ea945e3cd39367733f39e6d2a46ca33bf1b
refs/heads/master
2020-04-07T06:42:31.451639
2018-11-27T00:20:37
2018-11-27T00:20:37
158,147,761
0
0
null
2018-11-19T01:58:09
2018-11-19T01:58:08
null
UTF-8
Java
false
false
729
java
/** * Write a description of class Demon here. * * @author (your name) * @version (a version number or a date) */ public class Demon extends Creature { // instance variables - replace the example below with your own /** * Constructor for objects of class Demon */ public Demon() { // initialise instance variables super(); } public Demon(int hp, int str) { // initialise instance variables super(hp, str); } public int damage() { int critical = Randomizer.nextInt(20); if (critical == 0) { return super.damage() + 50; } else { return super.damage(); } } }
[ "anthonytiongson@me.com" ]
anthonytiongson@me.com
1992ed63567504e022e5e0795204e30657dfa4f3
2d242a8d03163074b99e3c84547686a72a004f30
/src/main/java/com/bettorleague/server/batch/fifa/com/FifaBatchLauncher.java
d68883bfeeeee7d2eb8817d3aa0f5379ecca5e95
[]
no_license
BettorLeague/bettor-league-api
7882a5519cf2398870ea50e2ef9aac59ef16f1cd
87019a922970bbbd29215e4da1e34aab601e6674
refs/heads/master
2023-05-01T12:24:22.305701
2019-07-02T13:20:06
2019-07-02T13:20:06
187,831,471
0
0
null
2023-04-14T17:47:36
2019-05-21T12:20:48
Java
UTF-8
Java
false
false
84
java
package com.bettorleague.server.batch.fifa.com; public class FifaBatchLauncher { }
[ "c.nadjim@gmail.com" ]
c.nadjim@gmail.com
b13767cca09c95fa0ccfebe60b0b01e716f40e49
0a37e449f61830fa553a3a68b0d3267e3e77d338
/LearnIntent/app1/src/main/java/com/waydrow/app1/MainActivity.java
6f1d1dabd9a728d4354715e6efd350cf26a79688
[]
no_license
Waydrow/Android-Learning
64d06614192f67b2aed3f2e9c657d7eefa005b05
2221444304e735dd5bc7dc0003d11832f62be809
refs/heads/master
2021-01-10T14:37:01.404726
2018-09-16T07:04:48
2018-09-16T07:04:48
53,138,805
2
1
null
null
null
null
UTF-8
Java
false
false
2,345
java
package com.waydrow.app1; import android.content.Intent; import android.os.Bundle; import android.support.design.widget.FloatingActionButton; import android.support.design.widget.Snackbar; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.view.View; import android.view.Menu; import android.view.MenuItem; import android.widget.Toast; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab); fab.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) .setAction("Action", null).show(); } }); findViewById(R.id.btnStartMyAtyFromAPP1).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { try { startActivity(new Intent("com.waydrow.learnintent.myaty")); }catch (Exception e){ Toast.makeText(MainActivity.this, "无法启动MyAty", Toast.LENGTH_SHORT).show(); System.out.println("Cannot open MyAty"); } } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_main, menu); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } }
[ "waydrow@163.com" ]
waydrow@163.com
01d9a8b858cd8ae2b6223d19274a569bd05ffbc3
c37d2a36312534a55c319b19b61060649c7c862c
/app/src/main/java/com/spongycastle/crypto/params/DHKeyGenerationParameters.java
be8a025177f341f62b859c90867941b84033a19d
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
trwinowiecki/AndroidTexting
f5626ad91a07ea7b3cd3ee75893abf8b1fe7154f
27e84a420b80054e676c390b898705856364b340
refs/heads/master
2020-12-30T23:10:17.542572
2017-02-01T01:46:13
2017-02-01T01:46:13
80,580,124
0
0
null
null
null
null
UTF-8
Java
false
false
655
java
package com.spongycastle.crypto.params; import java.security.SecureRandom; import com.spongycastle.crypto.KeyGenerationParameters; public class DHKeyGenerationParameters extends KeyGenerationParameters { private DHParameters params; public DHKeyGenerationParameters( SecureRandom random, DHParameters params) { super(random, getStrength(params)); this.params = params; } public DHParameters getParameters() { return params; } static int getStrength(DHParameters params) { return params.getL() != 0 ? params.getL() : params.getP().bitLength(); } }
[ "trw0511@gmail.com" ]
trw0511@gmail.com
da4aad1088c419197a35a74c214d97dc8d0d0af2
b14984f3db272f94ceee671cf36cf229bc030f7e
/lib_rx2camera/src/main/java/com/mrk/rx2camera/request/FaceDetectionRequest.java
14b9e65bbe12c166fcc849576727d137051a47dd
[]
no_license
1152574267/Rx2Camera
7cc7b890e5cd5b99409e45b39336fcb0dd1e3973
884a9b06f0087ad1a6e0f79cdded5108a9731a63
refs/heads/master
2021-09-02T14:08:17.598868
2018-01-03T03:57:22
2018-01-03T03:57:22
114,360,564
2
0
null
null
null
null
UTF-8
Java
false
false
2,245
java
package com.mrk.rx2camera.request; import android.hardware.Camera; import com.mrk.rx2camera.base.RxCamera; import com.mrk.rx2camera.data.RxCameraData; import com.mrk.rx2camera.exception.FaceDetectionNotSupportError; import io.reactivex.Observable; import io.reactivex.ObservableEmitter; import io.reactivex.ObservableOnSubscribe; import io.reactivex.disposables.Disposable; import io.reactivex.functions.Action; import io.reactivex.functions.Consumer; /** * Created by mrk on 2017/12. */ public class FaceDetectionRequest extends BaseRxCameraRequest implements Camera.FaceDetectionListener { private ObservableEmitter<RxCameraData> emitter; public FaceDetectionRequest(RxCamera rxCamera) { super(rxCamera); } @Override public Observable<RxCameraData> get() { return Observable.create(new ObservableOnSubscribe<RxCameraData>() { @Override public void subscribe(ObservableEmitter<RxCameraData> emitter) throws Exception { if (rxCamera.getNativeCamera().getParameters().getMaxNumDetectedFaces() > 0) { FaceDetectionRequest.this.emitter = emitter; } else { emitter.onError(new FaceDetectionNotSupportError("Camera not support face detection")); } } }).doOnSubscribe(new Consumer<Disposable>() { @Override public void accept(Disposable disposable) throws Exception { rxCamera.getNativeCamera().setFaceDetectionListener(FaceDetectionRequest.this); rxCamera.getNativeCamera().startFaceDetection(); } }).doOnDispose(new Action() { @Override public void run() throws Exception { rxCamera.getNativeCamera().setFaceDetectionListener(null); rxCamera.getNativeCamera().stopFaceDetection(); } }); } @Override public void onFaceDetection(Camera.Face[] faces, Camera camera) { if (emitter != null && !emitter.isDisposed() && rxCamera.isOpenCamera()) { RxCameraData cameraData = new RxCameraData(); cameraData.faceList = faces; emitter.onNext(cameraData); } } }
[ "1152574267@qq.com" ]
1152574267@qq.com
9a8323f389218d07139c0b6b19edacaa96c28765
04271b261f25b4cd5951daa5c5f7ef4b30d5562a
/src/main/java/Java/chapter8/exam/Circle2.java
4e3a4f9719c44568777dc17c126116346cacb673
[]
no_license
zhiyongwu/JavaCode
cd8c470de5386057e6dc3523cac2f309d62c8ba4
f84cf2134a8e227ce18bd0053884548c6183de6e
refs/heads/dev
2020-04-12T06:32:23.265435
2017-10-31T06:43:42
2017-10-31T06:43:42
41,486,224
3
0
null
2016-03-08T02:45:48
2015-08-27T12:48:50
Java
UTF-8
Java
false
false
655
java
package Java.chapter8.exam; /** * Created by Administrator on 2016/1/26. */ public class Circle2 { private double radius; private static int numberOfObjects = 0; Circle2(){ numberOfObjects++; } Circle2(double radius){ this.radius = radius; numberOfObjects++; } public double getArea(){ return radius * radius * Math.PI; } public static int getCount(){ return numberOfObjects; } } class Test1{ public static void main(String[] args) { Circle2 c1 = new Circle2(); Circle2 c2 = new Circle2(10); System.out.println(Circle2.getCount()); } }
[ "zhiyongwu@live.cn" ]
zhiyongwu@live.cn
7af748ba5c34ad362413956c58c748a1fc6d5477
c732c59d52dc999b604fa388c5876440c3c9c514
/backend/src/main/java/com/finki/renterr/api/validation/PasswordMatch.java
d42366d54e7703b3d869b1618d32f06ad76d3dde
[]
no_license
MarijaShopova/Renterr_WP_Project
47cf78e6ca9c8d94afd9269bd8557a1a72a63408
3bd9335c6a1746d4bffcb4e726686f265832a88c
refs/heads/master
2023-07-23T06:24:46.063326
2020-04-06T23:39:52
2020-04-06T23:39:52
253,635,490
0
0
null
2023-07-10T17:41:05
2020-04-06T23:04:41
Java
UTF-8
Java
false
false
597
java
package com.finki.renterr.api.validation; import javax.validation.Constraint; import javax.validation.Payload; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Constraint(validatedBy = PasswordMatchValidator.class) @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE}) public @interface PasswordMatch { public String message() default "Passwords dont match!"; public Class<?>[] groups() default {}; public Class<? extends Payload>[] payload() default{}; }
[ "shopova.marija@yahoo.com" ]
shopova.marija@yahoo.com
7713bcff7a4321589ab0a9adb9469a91b3aa12f0
66581bc32744f3a30be77c7638a534f024daddb6
/sakai-mini/2.8.0/metaobj/metaobj-impl/api-impl/src/java/org/sakaiproject/metaobj/shared/mgt/impl/MetaobjContentEntityProducer.java
23a60cd25ecc8672a7936a8892da5a6c68c9962e
[ "ECL-2.0" ]
permissive
lijiangt/sakai
087be33a4f20fe199458fe6a4404f37c613f3fa2
2647ef7e93617e33d53b1756918e64502522636b
refs/heads/master
2021-01-10T08:44:39.756518
2012-03-05T14:40:08
2012-03-05T14:40:08
36,716,620
1
1
null
null
null
null
UTF-8
Java
false
false
3,214
java
/********************************************************************************** * $URL: https://source.sakaiproject.org/svn/msub/iu.edu/oncourse/trunk/metaobj/metaobj-impl/api-impl/src/java/org/sakaiproject/metaobj/shared/mgt/impl/MetaobjEntityProducer.java $ * $Id: MetaobjEntityProducer.java 60509 2009-04-21 21:27:16Z arwhyte@umich.edu $ *********************************************************************************** * * Copyright (c) 2006, 2007, 2008 The Sakai Foundation * * Licensed under the Educational Community 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.osedu.org/licenses/ECL-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.sakaiproject.metaobj.shared.mgt.impl; import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.sakaiproject.entity.api.Entity; import org.sakaiproject.entity.api.EntityTransferrer; import org.sakaiproject.metaobj.shared.mgt.EntityProducerBase; import org.sakaiproject.metaobj.shared.mgt.MetaobjEntityManager; import org.sakaiproject.service.legacy.resource.DuplicatableToolService; /** * Created by IntelliJ IDEA. * User: John Ellis * Date: Feb 21, 2006 * Time: 1:23:17 PM * To change this template use File | Settings | File Templates. */ public class MetaobjContentEntityProducer extends EntityProducerBase implements EntityTransferrer { protected final Log logger = LogFactory.getLog(getClass()); private DuplicatableToolService structuredArtifactDefinitionManager; public String getLabel() { return MetaobjEntityManager.METAOBJ_CONTENT_ENTITY_PREFIX; } public void init() { logger.info("init()"); try { getEntityManager().registerEntityProducer(this, Entity.SEPARATOR + MetaobjEntityManager.METAOBJ_CONTENT_ENTITY_PREFIX); } catch (Exception e) { logger.warn("Error registering MetaObj Content Entity Producer", e); } } public void transferCopyEntities(String fromContext, String toContext, List ids) { getStructuredArtifactDefinitionManager().importResources(fromContext, toContext, ids); } public String[] myToolIds() { String[] toolIds = { "sakai.metaobj" }; return toolIds; } public DuplicatableToolService getStructuredArtifactDefinitionManager() { return structuredArtifactDefinitionManager; } public void setStructuredArtifactDefinitionManager( DuplicatableToolService structuredArtifactDefinitionManager) { this.structuredArtifactDefinitionManager = structuredArtifactDefinitionManager; } public void transferCopyEntities(String fromContext, String toContext, List ids, boolean cleanup) { //TODO } }
[ "lijiangt@gmail.com" ]
lijiangt@gmail.com
f54367b74f022d172c17bde5a395b5aa500b3091
7be41a6f4794bb843016d75cf018c88e0888e599
/src/main/java/com/kravchenko/agency/config/DispatcherServletInitializer.java
6ce3b73cf935c37c977b607f51e2ac94f7598374
[]
no_license
SashkoMolodec/travel-agency
e5c73f60bd72bc651ac7468712603c7ed9fff2ce
c9ebcd82dea864928dec84ed81a889d37440fa9c
refs/heads/master
2022-12-15T06:19:13.120591
2020-09-11T21:12:17
2020-09-11T21:12:17
289,288,879
0
0
null
2020-09-11T21:12:19
2020-08-21T14:26:05
Java
UTF-8
Java
false
false
578
java
package com.kravchenko.agency.config; import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer; public class DispatcherServletInitializer extends AbstractAnnotationConfigDispatcherServletInitializer { @Override protected Class<?>[] getRootConfigClasses() { return new Class[] {RootConfig.class };} @Override protected Class<?>[] getServletConfigClasses() { return new Class[] {SpringConfig.class}; } @Override protected String[] getServletMappings() { return new String[] {"/"}; } }
[ "sanykk2014@gmail.com" ]
sanykk2014@gmail.com
c3142f5f8c2623efcbc5d6dbf92c688f1935c7bb
b3c3d9429631271144782d4410feb311dce2130c
/src/main/java/JsonMessage/JSONPointer.java
aaf5fa46fe26256e19e23c5c542fd2f64b31bab5
[ "JSON" ]
permissive
iefken/IPGA-Java-Controller
5d9169c4d53e74404427959a3ad4bfbbc87253cb
d2cb2444cff58aba06c3b6061b9fcb5710522adc
refs/heads/master
2021-09-22T10:28:57.457272
2018-05-30T10:36:00
2018-05-30T10:36:00
131,515,624
0
0
null
null
null
null
UTF-8
Java
false
false
11,772
java
package JsonMessage; import java.io.UnsupportedEncodingException; import java.net.URLDecoder; import java.net.URLEncoder; import java.util.ArrayList; import java.util.Collections; import java.util.List; import static java.lang.String.format; /* Copyright (c) 2002 JSON.org 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 shall be used for Good, not Evil. 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. */ /** * A JSON Pointer is a simple query language defined for JSON documents by * <a href="https://tools.ietf.org/html/rfc6901">RFC 6901</a>. * * In a nutshell, JSONPointer allows the user to navigate into a JSON document * using strings, and retrieve targeted objects, like a simple form of XPATH. * Path segments are separated by the '/' char, which signifies the root of * the document when it appears as the first char of the string. Array * elements are navigated using ordinals, counting from 0. JSONPointer strings * may be extended to any arbitrary number of segments. If the navigation * is successful, the matched item is returned. A matched item may be a * JSONObject, a JSONArray, or a JSON value. If the JSONPointer string building * fails, an appropriate exception is thrown. If the navigation fails to find * a match, a JSONPointerException is thrown. * * @author JSON.org * @version 2016-05-14 */ public class JSONPointer { // used for URL encoding and decoding private static final String ENCODING = "utf-8"; /** * This class allows the user to build a JSONPointer in steps, using * exactly one segment in each step. */ public static class Builder { // Segments for the eventual JSONPointer string private final List<String> refTokens = new ArrayList<String>(); /** * Creates a {@code JSONPointer} instance using the tokens previously set using the * {@link #append(String)} method calls. */ public JSONPointer build() { return new JSONPointer(this.refTokens); } /** * Adds an arbitrary token to the list of reference tokens. It can be any non-null value. * * Unlike in the case of JSON string or URI fragment representation of JSON pointers, the * argument of this method MUST NOT be escaped. If you want to query the property called * {@code "a~b"} then you should simply pass the {@code "a~b"} string as-is, there is no * need to escape it as {@code "a~0b"}. * * @param token the new token to be appended to the list * @return {@code this} * @throws NullPointerException if {@code token} is null */ public Builder append(String token) { if (token == null) { throw new NullPointerException("token cannot be null"); } this.refTokens.add(token); return this; } /** * Adds an integer to the reference token list. Although not necessarily, mostly this token will * denote an array index. * * @param arrayIndex the array index to be added to the token list * @return {@code this} */ public Builder append(int arrayIndex) { this.refTokens.add(String.valueOf(arrayIndex)); return this; } } /** * Static factory method for {@link Builder}. Example usage: * * <pre><code> * JSONPointer pointer = JSONPointer.builder() * .append("obj") * .append("other~key").append("another/key") * .append("\"") * .append(0) * .build(); * </code></pre> * * @return a builder instance which can be used to construct a {@code JSONPointer} instance by chained * {@link Builder#append(String)} calls. */ public static Builder builder() { return new Builder(); } // Segments for the JSONPointer string private final List<String> refTokens; /** * Pre-parses and initializes a new {@code JSONPointer} instance. If you want to * evaluate the same JSON Pointer on different JSON documents then it is recommended * to keep the {@code JSONPointer} instances due to performance considerations. * * @param pointer the JSON String or URI Fragment representation of the JSON pointer. * @throws IllegalArgumentException if {@code pointer} is not a valid JSON pointer */ public JSONPointer(final String pointer) { if (pointer == null) { throw new NullPointerException("pointer cannot be null"); } if (pointer.isEmpty() || pointer.equals("#")) { this.refTokens = Collections.emptyList(); return; } String refs; if (pointer.startsWith("#/")) { refs = pointer.substring(2); try { refs = URLDecoder.decode(refs, ENCODING); } catch (UnsupportedEncodingException e) { throw new RuntimeException(e); } } else if (pointer.startsWith("/")) { refs = pointer.substring(1); } else { throw new IllegalArgumentException("a JSON pointer should start with '/' or '#/'"); } this.refTokens = new ArrayList<String>(); int slashIdx = -1; int prevSlashIdx = 0; do { prevSlashIdx = slashIdx + 1; slashIdx = refs.indexOf('/', prevSlashIdx); if(prevSlashIdx == slashIdx || prevSlashIdx == refs.length()) { // found 2 slashes in a row ( obj//next ) // or single slash at the end of a string ( obj/test/ ) this.refTokens.add(""); } else if (slashIdx >= 0) { final String token = refs.substring(prevSlashIdx, slashIdx); this.refTokens.add(unescape(token)); } else { // last item after separator, or no separator at all. final String token = refs.substring(prevSlashIdx); this.refTokens.add(unescape(token)); } } while (slashIdx >= 0); // using split does not take into account consecutive separators or "ending nulls" //for (String token : refs.split("/")) { // this.refTokens.add(unescape(token)); //} } public JSONPointer(List<String> refTokens) { this.refTokens = new ArrayList<String>(refTokens); } private String unescape(String token) { return token.replace("~1", "/").replace("~0", "~") .replace("\\\"", "\"") .replace("\\\\", "\\"); } /** * Evaluates this JSON Pointer on the given {@code document}. The {@code document} * is usually a {@link JSONObject} or a {@link JSONArray} instance, but the empty * JSON Pointer ({@code ""}) can be evaluated on any JSON values and in such case the * returned value will be {@code document} itself. * * @param document the JSON document which should be the subject of querying. * @return the result of the evaluation * @throws JSONPointerException if an error occurs during evaluation */ public Object queryFrom(Object document) throws JSONPointerException { if (this.refTokens.isEmpty()) { return document; } Object current = document; for (String token : this.refTokens) { if (current instanceof JSONObject) { current = ((JSONObject) current).opt(unescape(token)); } else if (current instanceof JSONArray) { current = readByIndexToken(current, token); } else { throw new JSONPointerException(format( "value [%s] is not an array or object therefore its key %s cannot be resolved", current, token)); } } return current; } /** * Matches a JSONArray element by ordinal position * @param current the JSONArray to be evaluated * @param indexToken the array index in string form * @return the matched object. If no matching item is found a * @throws JSONPointerException is thrown if the index is out of bounds */ private Object readByIndexToken(Object current, String indexToken) throws JSONPointerException { try { int index = Integer.parseInt(indexToken); JSONArray currentArr = (JSONArray) current; if (index >= currentArr.length()) { throw new JSONPointerException(format("index %d is out of bounds - the array has %d elements", index, currentArr.length())); } try { return currentArr.get(index); } catch (JSONException e) { throw new JSONPointerException("Error reading value at index position " + index, e); } } catch (NumberFormatException e) { throw new JSONPointerException(format("%s is not an array index", indexToken), e); } } /** * Returns a string representing the JSONPointer path value using string * representation */ @Override public String toString() { StringBuilder rval = new StringBuilder(""); for (String token: this.refTokens) { rval.append('/').append(escape(token)); } return rval.toString(); } /** * Escapes path segment values to an unambiguous form. * The escape char to be inserted is '~'. The chars to be escaped * are ~, which maps to ~0, and /, which maps to ~1. Backslashes * and double quote chars are also escaped. * @param token the JSONPointer segment value to be escaped * @return the escaped value for the token */ private String escape(String token) { return token.replace("~", "~0") .replace("/", "~1") .replace("\\", "\\\\") .replace("\"", "\\\""); } /** * Returns a string representing the JSONPointer path value using URI * fragment identifier representation */ public String toURIFragment() { try { StringBuilder rval = new StringBuilder("#"); for (String token : this.refTokens) { rval.append('/').append(URLEncoder.encode(token, ENCODING)); } return rval.toString(); } catch (UnsupportedEncodingException e) { throw new RuntimeException(e); } } }
[ "iefffalot@student.ehb.be" ]
iefffalot@student.ehb.be
bb4132a56c6e901f71e6e5dc0201457ea8588d54
c604074b0f65985bbdaee02536783c8e7e9f9059
/Georgia Tech/cs/cs1331/mePractice/enumeration/basicEnum/Animal.java
cf1d5f84cab384cf26b371ef3a02c2803eaa8eeb
[]
no_license
yaminmousselli/school
4dfc1683f600451fc14ddbee9c4409a399ea969f
5043b7fc9a8643912c8affd58e50b3a2eaf4d2cd
refs/heads/master
2020-11-29T16:23:46.740468
2019-12-25T23:16:15
2019-12-25T23:16:15
223,072,115
0
1
null
null
null
null
UTF-8
Java
false
false
553
java
/* Enum is intended to replace. Say you have int animal; Say */ public enum Animal { CAT, DOG, LION; //These are actually object of the type Animal public boolean yesOrNo(Animal animal1, Animal animal2) { if (animal.ordinal() < animal2.ordinal()) { System.out.println(Animal.valueOf(DOG)); return true; } else if (animal2.ordinal() > animal2.ordinal) { System.out.println(Animal.valueOf(CAT)); return false; } else {return false;} } }
[ "16247528+yaminmousselli@users.noreply.github.com" ]
16247528+yaminmousselli@users.noreply.github.com
3bd7184b24985229ee2013d71c1297b7abc95d41
56fd9479b882ac726e6435af202e37dfc128f6f8
/spring-boot-demo1/src/main/java/com/elveny/demo/spring_boot_demo1/rest/test/TestController.java
eff81ac98972be52c9a9030d119b1e32e2006c6d
[]
no_license
elveny/spring-boot-demo
6a708b177b490ae9b8dc89e310f3d8603b3d17f5
f5c7da20c7214dd6401aff07e62acf047f453a53
refs/heads/master
2021-01-20T13:37:29.132371
2017-02-21T16:59:32
2017-02-21T16:59:32
82,704,509
0
0
null
null
null
null
UTF-8
Java
false
false
801
java
package com.elveny.demo.spring_boot_demo1.rest.test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.bind.annotation.CrossOrigin; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.RestController; /** * Created by elven on 2016/8/16. */ @CrossOrigin(origins = {"http://127.0.0.1:8888", "http://localhost:8888"}, maxAge = 3600) @RestController @RequestMapping("rest/test") public class TestController { private static final Logger logger = LoggerFactory.getLogger(TestController.class); @RequestMapping("test1") @ResponseBody String test1() { System.out.println("start test1..."); return "test1"; } }
[ "elve1984@163.com" ]
elve1984@163.com
912d7e7a889c64e4f3a993ef368879d386c65b25
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/9/9_53f5a6b4d8e5e8708a5a83b2b7f7d7da96bdfa44/StarbucksServiceRestEasyTest/9_53f5a6b4d8e5e8708a5a83b2b7f7d7da96bdfa44_StarbucksServiceRestEasyTest_s.java
a0aaa00c46e97df91f0a90b6c65ea7263b52b49c
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
3,939
java
package starbucks.service.resteasyjackson; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpOptions; import org.apache.http.client.methods.HttpPost; import org.apache.http.client.methods.HttpPut; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.DefaultHttpClient; import org.junit.Test; import starbucks.service.servlet.StarbucksService; public class StarbucksServiceRestEasyTest { private static final String HTTP_CODE_100_CONTINUE = "100-Continue"; StarbucksService starbucksService; HttpClient client; HttpPost post; HttpOptions options; HttpPut put; @Test public void updateOrderedCoffee() { try { client = new DefaultHttpClient(); put = new HttpPut("http://localhost:8080/" + "Starbucks-1.0-SNAPSHOT" + "/order/put" + "/1234"); StringEntity input = new StringEntity("{\"additions\":\"lactose\"}"); input.setContentType("application/json"); put.setEntity(input); put.setHeader("Expect", HTTP_CODE_100_CONTINUE); HttpResponse response = client.execute(put); // HANDLE RESPONSE if (response.getStatusLine().getStatusCode() != 200) { throw new RuntimeException("Failed : HTTP error code : " + response.getStatusLine().getStatusCode()); } BufferedReader br = new BufferedReader(new InputStreamReader( (response.getEntity().getContent()))); String output; System.out.println("Output from Server .... \n"); while ((output = br.readLine()) != null) { System.out.println(output); } client.getConnectionManager().shutdown(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } assert(true); } @Test public void checkOptionsOnOrderedCoffee() { try { client = new DefaultHttpClient(); options = new HttpOptions("http://localhost:8080/" + "Starbucks-1.0-SNAPSHOT" + "/order/options" + "/1234"); HttpResponse response = client.execute(options); // HANDLE RESPONSE if (response.getStatusLine().getStatusCode() != 200) { throw new RuntimeException("Failed : HTTP error code : " + response.getStatusLine().getStatusCode()); } BufferedReader br = new BufferedReader(new InputStreamReader( (response.getEntity().getContent()))); String output; System.out.println("Output from Server .... \n"); while ((output = br.readLine()) != null) { System.out.println(output); } client.getConnectionManager().shutdown(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } assert(true); } @Test public void orderCupOfCoffeeFromRestEasyService() { try { client = new DefaultHttpClient(); post = new HttpPost("http://localhost:8080/" + "Starbucks-1.0-SNAPSHOT" + "/order/post"); StringEntity input = new StringEntity("{\"drink\":\"machiato\",\"cost\":\"10\"}"); input.setContentType("application/json"); post.setEntity(input); HttpResponse response = client.execute(post); // HANDLE RESPONSE if (response.getStatusLine().getStatusCode() != 201) { throw new RuntimeException("Failed : HTTP error code : " + response.getStatusLine().getStatusCode()); } BufferedReader br = new BufferedReader(new InputStreamReader( (response.getEntity().getContent()))); String output; System.out.println("Output from Server .... \n"); while ((output = br.readLine()) != null) { System.out.println(output); } client.getConnectionManager().shutdown(); assert (true); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
703b234a441b66bd7738706a22dad810cc838450
6dd10e6261b4b85264443b6c160db84548502861
/Javachobo/Day11_160112/InnerEx5.java
20c1d7140bf480db48d1feab5b99d48e9e167c82
[]
no_license
mirikim/JavaSamples
a139c23dc64397f8b37448c660b8911dd550ef3c
465cb9793a661670df4ed59341c3b9b00682f016
refs/heads/master
2021-01-10T06:42:52.188095
2016-02-14T04:25:12
2016-02-14T04:25:12
50,391,133
0
0
null
null
null
null
UTF-8
Java
false
false
608
java
package Day11_160112; class Outer2 { int value = 10;// Outer.this.value//인스턴스변 class Inner {// 인스턴스클래스 int value = 20;// this.value void method1() { int value = 30; System.out.println(" value | " + value); System.out.println(" this.value | " + this.value); System.out.println("Outer.this.value | " + Outer2.this.value); } }// Inner class 의 }// outer클래스의 public class InnerEx5 { public static void main(String[] args) { Outer2 outer = new Outer2(); Outer2.Inner inner = outer.new Inner(); inner.method1(); } }// InnerEx5의끝
[ "rlaalfl92@nate.com" ]
rlaalfl92@nate.com
ed043ead2b551a749f8636f015702cffdea90eba
5d8fab6c594df25054edbda5692265ce1c8e739d
/src/main/java/br/com/estacionai/modelo/Geolocalizacao.java
0f9ea7599ae967e8113b0a6d0af34ebf9956f43f
[]
no_license
acmesquita/EstacionaiServidor
a1190138839e1611740fa7263a9188013bf4751c
a76efb2e93db97e28be6d667b2db24eef331b46a
refs/heads/master
2016-09-14T00:00:38.621361
2016-05-02T20:44:22
2016-05-02T20:44:22
57,920,078
0
0
null
null
null
null
UTF-8
Java
false
false
1,474
java
package br.com.estacionai.modelo; import javax.persistence.Embeddable; @Embeddable public class Geolocalizacao { private Double latitude; private Double longitude; public Geolocalizacao(Double latitude, Double longitude) { super(); this.latitude = latitude; this.longitude = longitude; } public Double getLatitude() { return latitude; } public void setLatitude(Double latitude) { this.latitude = latitude; } public Double getLongitude() { return longitude; } public void setLongitude(Double longitude) { this.longitude = longitude; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((latitude == null) ? 0 : latitude.hashCode()); result = prime * result + ((longitude == null) ? 0 : longitude.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; Geolocalizacao other = (Geolocalizacao) obj; if (latitude == null) { if (other.latitude != null) return false; } else if (!latitude.equals(other.latitude)) return false; if (longitude == null) { if (other.longitude != null) return false; } else if (!longitude.equals(other.longitude)) return false; return true; } @Override public String toString() { return "Geolocalizacao [latitude=" + latitude + ", longitude=" + longitude + "]"; } }
[ "catha.ana.1994@gmail.com" ]
catha.ana.1994@gmail.com
14ac6b6e14c866e782bc329e4767578ce54ffcf3
19910c6f61f94495f24cdd98f5463fc44aab44b4
/Java/eclipse_projects/Threads/src/main/java/com/thread/synchronizers/SemProducerConsumer.java
311367f30baa8869733731c5c13f71fc58801491
[]
no_license
a2ankitrai/2KX7
9a0999e5920088186c7591bbfb11250bc3254451
c154a96fc5950fba1b4d081f455d07134c9e40fb
refs/heads/master
2023-07-11T00:18:01.869729
2021-08-06T01:05:53
2021-08-06T01:05:53
54,949,995
5
2
null
2021-08-06T01:05:54
2016-03-29T06:01:02
Java
UTF-8
Java
false
false
2,248
java
package com.thread.synchronizers; import java.util.concurrent.Semaphore; public class SemProducerConsumer{ public static void main(String[] args) { Semaphore semaphoreProducer=new Semaphore(1); Semaphore semaphoreConsumer=new Semaphore(0); System.out.println("semaphoreProducer permit=1 | semaphoreConsumer permit=0"); Producer producer=new Producer(semaphoreProducer,semaphoreConsumer); Consumer consumer=new Consumer(semaphoreConsumer,semaphoreProducer); Thread producerThread = new Thread(producer, "ProducerThread"); Thread consumerThread = new Thread(consumer, "ConsumerThread"); producerThread.start(); consumerThread.start(); } } /** * Producer Class. */ class Producer implements Runnable{ Semaphore semaphoreProducer; Semaphore semaphoreConsumer; public Producer(Semaphore semaphoreProducer,Semaphore semaphoreConsumer) { this.semaphoreProducer=semaphoreProducer; this.semaphoreConsumer=semaphoreConsumer; } public void run() { for(int i=1;i<=5;i++){ try { semaphoreProducer.acquire(); System.out.println("Produced : "+i); semaphoreConsumer.release(); } catch (InterruptedException e) { e.printStackTrace(); } } } } /** * Consumer Class. */ class Consumer implements Runnable{ Semaphore semaphoreConsumer; Semaphore semaphoreProducer; public Consumer(Semaphore semaphoreConsumer,Semaphore semaphoreProducer) { this.semaphoreConsumer=semaphoreConsumer; this.semaphoreProducer=semaphoreProducer; } public void run() { for(int i=1;i<=5;i++){ try { semaphoreConsumer.acquire(); System.out.println("Consumed : "+i); semaphoreProducer.release(); } catch (InterruptedException e) { e.printStackTrace(); } } } }
[ "a2.ankitrai@gmail.com" ]
a2.ankitrai@gmail.com
3873ac5d71b77de0dfcfe03b0077aa887886a746
318040bc638e900ced4735646bfddaa2ddb563e0
/run-platform/src/fr/inria/insitu/touchstone/run/input/expr/MinAxisExpr.java
7f26aee5c97a0c15c20eb297e86ed2386e72df38
[]
no_license
jdfekete/touchstone-platforms
85ef50d76af8de734b4638614bccb7870d161fe7
0e2231e4a9a8cc88851f3cdc8f0aae4cac2f996c
refs/heads/master
2021-01-21T14:07:30.826490
2018-09-25T11:51:13
2018-09-25T11:51:13
33,189,903
7
2
null
2018-09-25T11:51:14
2015-03-31T14:26:07
Java
UTF-8
Java
false
false
3,245
java
/* TouchStone run platform is a software to run lab experiments. It is * * published under the terms of a BSD license (see details below) * * Author: Caroline Appert (appert@lri.fr) * * Copyright (c) 2010 Caroline Appert and INRIA, France. * * TouchStone run platform reuses parts of an early version which were * * programmed by Jean-Daniel Fekete under the terms of a MIT (X11) Software * * License (Copyright (C) 2006 Jean-Daniel Fekete and INRIA, France) * *********************************************************************************/ /* Redistribution and use in source and binary forms, with or without * * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * * this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright notice, * * this list of conditions and the following disclaimer in the documentation * * and/or other materials provided with the distribution. * * - Neither the name of the INRIA nor the names of its contributors * * may be used to endorse or promote products derived from this software without * * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * * POSSIBILITY OF SUCH DAMAGE. * *********************************************************************************/ package fr.inria.insitu.touchstone.run.input.expr; import fr.inria.insitu.touchstone.run.input.AxisExpr; import fr.inria.insitu.touchstone.run.input.InputEnvironment; /** * <b>MinAxisExpr</b> implements the min expression. * */ public class MinAxisExpr extends BinaryAxisExpr { /** * Creates a MinAxisExpr. * @param e1 the first expression * @param e2 the second expression */ public MinAxisExpr(AxisExpr e1, AxisExpr e2) { super(e1, e2); } /** * {@inheritDoc} */ public double getValue(InputEnvironment env) { return Math.min(e1.getValue(env), e2.getValue(env)); } /** * {@inheritDoc} */ public String toString() { return "min"+super.toString(); } }
[ "appert.caroline@gmail.com@e3e94896-a4d7-f8a7-d182-4b30e3442697" ]
appert.caroline@gmail.com@e3e94896-a4d7-f8a7-d182-4b30e3442697
82d591f6f48aac42de6aa8998bda7352bc0c3680
296d3972fe013bb2e651132abdbbd07985aaa57a
/src/main/java/br/inatel/c125/animais/Animal.java
ac94333323c98c5f3eb4f55d3808d8d639dada05
[ "MIT" ]
permissive
anaclarasto/Projeto-C125
6166d523a1b2071b5ce4955473306ad59e00cfcc
fd622ba5a9f576c7dbb7860af7ac20a765c78f27
refs/heads/main
2023-06-20T03:58:29.781942
2021-07-12T01:35:36
2021-07-12T01:35:36
382,426,025
1
0
null
null
null
null
UTF-8
Java
false
false
1,198
java
package br.inatel.c125.animais; public abstract class Animal { protected String nome; protected int idade; protected double peso; protected boolean sexo; //false = masculino, true = feminino //Construtor public Animal(String nome, int idade, double peso, String sexo) { this.nome = nome; this.idade = idade; this.peso = peso; if("Masculino".equals(sexo) || "masculino".equals(sexo)) { this.sexo = false; } else if ("Feminino".equals(sexo) || "feminino".equals(sexo) ) { this.sexo = true; } } public boolean dormir() { System.out.println(this.nome + " está dormindo"); return true; } public boolean comer() { System.out.println(this.nome + " está comendo"); return true; } //Getters public String getNome() { return this.nome; } public int getIdade() { return this.idade; } public double getPeso() { return this.peso; } public String getSexo() { if (this.sexo) { return "Feminino"; } else { return "Masculino"; } } }
[ "anaaclara0302@gmail.com" ]
anaaclara0302@gmail.com