blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
410
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
131 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
32 values
content
stringlengths
3
9.45M
authors
sequencelengths
1
1
author_id
stringlengths
0
313
71200894f91d9c2bd5161e5cd2f92970b607f820
e4c880599e40e08db2b1dd878429d838717a9f42
/src/com/fdmy/dao/IReportDao.java
d0c301425723bdbcf0d4304e89f7664fbec1a661
[]
no_license
sailei00/PMS
11a8fecd7a0724af148cf691ac0b7e51531f672b
dca5e6e224093f51d902b4f21f697e227d71d444
refs/heads/master
2020-04-06T14:57:53.532756
2017-12-22T13:26:15
2017-12-22T13:26:15
55,626,308
0
0
null
null
null
null
UTF-8
Java
false
false
266
java
package com.fdmy.dao; import java.util.HashMap; import java.util.List; import com.fdmy.controller.vo.ReportVO; public interface IReportDao { public List<ReportVO> getReport(ReportVO report); public List<HashMap<String,String>> getCost(ReportVO report); }
32c313e01be42d3ea56a820505d4793c995b008a
f08f672a95150ae3f723e4bf3631fa451b423e2e
/src/main/java/com/skillbox/blog/entity/PostComment.java
6523832c77bf24f2ce3d71667df31d005f4f7fb5
[]
no_license
docent42/blog-engine
4d3e17b4e0d29f09ebfd904cb5a9101fcf3f802a
32f2dbc0e5ae3ef3b1e0cd77179e5da1311ba833
refs/heads/master
2021-07-20T11:39:49.822128
2020-04-21T19:18:55
2020-04-21T19:18:55
247,800,125
2
1
null
2021-04-26T20:08:31
2020-03-16T19:30:23
Java
UTF-8
Java
false
false
834
java
package com.skillbox.blog.entity; import java.time.LocalDateTime; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import lombok.Data; @Data @Entity @Table(name = "post_comment") public class PostComment { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private int id; @ManyToOne @JoinColumn(name = "parent_id") private PostComment parentId; @ManyToOne @JoinColumn(name = "user_id") private User userId; @ManyToOne @JoinColumn(name = "post_id") private Post postId; @Column(nullable = false) private LocalDateTime time; @Column private String text; }
9c1f7c4980a7afa035686791d885e42a1f06d97b
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/27/27_b6cbf1161b3992966091e8728b92323c9819aebb/CarRampPhysicsV2/27_b6cbf1161b3992966091e8728b92323c9819aebb_CarRampPhysicsV2_t.java
9ca864e672a51eec558874479a75750451765437
[]
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
50,446
java
/***************************************************************************************************/ /***************************************************************************************************/ /** **/ /** IIIIIIIIIIIII iSENSE Car Ramp Physics App SSSSSSSSS **/ /** III SSS **/ /** III By: Michael Stowell SSS **/ /** III and Virinchi Balabhadrapatruni SSS **/ /** III Some Code From: iSENSE Amusement Park SSS **/ /** III App (John Fertita) SSSSSSSSS **/ /** III Faculty Advisor: Fred Martin SSS **/ /** III Group: ECG, SSS **/ /** III iSENSE SSS **/ /** IIIIIIIIIIIII Property: UMass Lowell SSSSSSSSS **/ /** **/ /***************************************************************************************************/ /***************************************************************************************************/ package edu.uml.cs.isense.carphysicsv2; import java.text.DecimalFormat; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.Locale; import java.util.Timer; import java.util.TimerTask; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import android.annotation.SuppressLint; import android.app.Activity; import android.app.ProgressDialog; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.hardware.Sensor; import android.hardware.SensorEvent; import android.hardware.SensorEventListener; import android.hardware.SensorManager; import android.location.Criteria; import android.location.Location; import android.location.LocationListener; import android.media.MediaPlayer; import android.os.AsyncTask; import android.os.Bundle; import android.os.Handler; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.view.View.OnLongClickListener; import android.view.WindowManager; import android.widget.Button; import android.widget.Switch; import android.widget.TextView; import android.widget.ToggleButton; import edu.uml.cs.isense.comm.API; import edu.uml.cs.isense.credentials.EnterName; import edu.uml.cs.isense.credentials.Login; import edu.uml.cs.isense.dfm.DataFieldManager; import edu.uml.cs.isense.dfm.Fields; import edu.uml.cs.isense.objects.RPerson; import edu.uml.cs.isense.proj.Setup; import edu.uml.cs.isense.queue.QDataSet; import edu.uml.cs.isense.queue.QueueLayout; import edu.uml.cs.isense.queue.UploadQueue; import edu.uml.cs.isense.supplements.ObscuredSharedPreferences; import edu.uml.cs.isense.supplements.OrientationManager; import edu.uml.cs.isense.waffle.Waffle; public class CarRampPhysicsV2 extends Activity implements SensorEventListener, LocationListener { public static String experimentNumber = "12"; public static final String DEFAULT_PROJ_PROD = "12"; public static final String DEFAULT_PROJ_DEV = "3"; private static final String DEFAULT_USER = "mobile"; public static boolean useDev = true; public static final String VIS_URL_PROD = "http://isenseproject.org/projects/"; public static final String VIS_URL_DEV = "http://rsense-dev.cs.uml.edu/projects/"; public static String baseSessionUrl = ""; public static String sessionUrl = ""; public static String RECORD_SETTINGS = "RECORD_SETTINGS"; private Button startStop; private TextView values; public static Boolean running = false; private SensorManager mSensorManager; public static Location loc; private float accel[]; private Timer timeTimer; private int INTERVAL = 50; static final public int DIALOG_CANCELED = 0; static final public int DIALOG_OK = 1; public DataFieldManager dfm; public Fields f; API api; private int countdown; static String firstName = ""; static String lastInitial = ""; public static final int RESULT_GOT_NAME = 1098; public static final int UPLOAD_OK_REQUESTED = 90000; public static final int LOGIN_STATUS_REQUESTED = 6005; public static final int RECORDING_LENGTH_REQUESTED = 4009; public static final int EXPERIMENT_REQUESTED = 9000; public static final int QUEUE_UPLOAD_REQUESTED = 5000; public static final int RESET_REQUESTED = 6003; public static final int SAVE_MODE_REQUESTED = 10005; public static final String ACCEL_SETTINGS = "ACCEL_SETTINGS"; private boolean timeHasElapsed = false; private boolean usedHomeButton = false; public static boolean saveMode = false; private MediaPlayer mMediaPlayer; private int elapsedMillis = 0; private String dateString; DecimalFormat toThou = new DecimalFormat("######0.000"); ArrayList<Double> accelerX; ArrayList<Double> accelerY; ArrayList<Double> accelerZ; ArrayList<Double> acceler; int i = 0; int len = 0; int len2 = 0; int length; ProgressDialog dia; double partialProg = 1.0; public static String nameOfSession = ""; static int mediaCount = 0; static boolean inPausedState = false; static boolean toastSuccess = false; static boolean useMenu = true; public static boolean setupDone = false; static boolean choiceViaMenu = false; static boolean dontToastMeTwice = false; static boolean exitAppViaBack = false; static boolean backWasPressed = false; static boolean nameSuccess = false; static boolean dontPromptMeTwice = false; private Handler mHandler; public static String textToSession = ""; public static String toSendOut = ""; public static String experimentId = ""; public static JSONArray dataSet; static int mheight = 1; static int mwidth = 1; long currentTime; public static Context mContext; public static TextView loggedInAs; private Waffle w; public static boolean inApp = false; public static UploadQueue uq; public static Bundle saved; public static Menu menu; @SuppressLint("NewApi") @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); saved = savedInstanceState; mContext = this; api = API.getInstance(mContext); api.useDev(useDev); if (useDev) { baseSessionUrl = VIS_URL_DEV; } else { baseSessionUrl = VIS_URL_PROD; } accelerX = new ArrayList<Double>(); accelerY = new ArrayList<Double>(); accelerZ = new ArrayList<Double>(); acceler = new ArrayList<Double>(); f = new Fields(); uq = new UploadQueue("carrampphysics", mContext, api); uq.buildQueueFromFile(); w = new Waffle(mContext); new OnCreateLoginTask().execute(); // Save the default login info final SharedPreferences mPrefs = new ObscuredSharedPreferences( CarRampPhysicsV2.mContext, CarRampPhysicsV2.mContext.getSharedPreferences(Login.PREFERENCES_KEY_OBSCURRED_USER_INFO, Context.MODE_PRIVATE)); if (mPrefs.getString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_USERNAME, "").equals("")) { SharedPreferences.Editor mEdit = mPrefs.edit(); mEdit.putString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_USERNAME, DEFAULT_USER).commit(); mEdit.putString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_PASSWORD, DEFAULT_USER).commit(); } dateString = ""; mHandler = new Handler(); startStop = (Button) findViewById(R.id.startStop); values = (TextView) findViewById(R.id.values); SharedPreferences prefs = getSharedPreferences("RECORD_LENGTH", 0); length = countdown = prefs.getInt("length", 10); if (savedInstanceState == null) { if (firstName.equals("") || lastInitial.equals("")) { if (!dontPromptMeTwice) { startActivityForResult( new Intent(mContext, EnterName.class), RESULT_GOT_NAME); } } } if (!api.hasConnectivity() && !saveMode) { startActivityForResult(new Intent(mContext, SaveModeDialog.class), SAVE_MODE_REQUESTED); } loggedInAs = (TextView) findViewById(R.id.loginStatus); if (api.getCurrentUser() != null) { loggedInAs.setText(getResources().getString(R.string.logged_in_as) + " " + mPrefs.getString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_USERNAME, "") + ", Name: " + firstName + " " + lastInitial); } else { loggedInAs.setText(getResources().getString(R.string.not_logged_in) + ", Name: " + firstName + " " + lastInitial); } SharedPreferences prefs2 = getSharedPreferences("PROJID", 0); experimentNumber = prefs2.getString("project_id", null); if (experimentNumber == null) { if (useDev) { experimentNumber = DEFAULT_PROJ_DEV; } else { experimentNumber = DEFAULT_PROJ_PROD; } } if (!api.hasConnectivity()) { experimentNumber = "-1"; System.out.println("Logtastic"); } dfm = new DataFieldManager(Integer.parseInt(experimentNumber), api, mContext, f); dfm.getOrder(); new DecimalFormat("#,##0.0"); if (dfm.getOrderList().contains(mContext.getString(R.string.accel_x))) { values.setText("X: "); } if (dfm.getOrderList().contains(mContext.getString(R.string.accel_y))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { values.setText(values.getText() + " Y: "); } else { values.setText("Y: "); } } if (dfm.getOrderList().contains(mContext.getString(R.string.accel_z))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { values.setText(values.getText() + " Z: "); } else { values.setText("Z: "); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_total))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { values.setText(values.getText() + " Magnitude: "); } else { values.setText("Magnitude: "); } } startStop.setOnLongClickListener(new OnLongClickListener() { @Override public boolean onLongClick(View arg0) { mMediaPlayer.setLooping(false); mMediaPlayer.start(); if (!api.hasConnectivity() && !saveMode) { startActivityForResult(new Intent(mContext, SaveModeDialog.class), SAVE_MODE_REQUESTED); return false; } if (running) { if (timeHasElapsed) { getWindow().clearFlags( WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); setupDone = false; timeHasElapsed = false; useMenu = true; countdown = length; running = false; startStop.setText("Hold to Start"); timeTimer.cancel(); choiceViaMenu = false; startStop.setEnabled(true); startStop .setBackgroundResource(R.drawable.button_rsense); Intent dataIntent = new Intent(mContext, DataActivity.class); startActivityForResult(dataIntent, UPLOAD_OK_REQUESTED); } else if (usedHomeButton) { setupDone = false; timeHasElapsed = false; useMenu = true; countdown = length; running = false; startStop.setText("Hold to Start"); timeTimer.cancel(); choiceViaMenu = false; startStop.setEnabled(true); startStop .setBackgroundResource(R.drawable.button_rsense); } } else { OrientationManager.disableRotation(CarRampPhysicsV2.this); getWindow().addFlags( WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); startStop.setEnabled(false); startStop .setBackgroundResource(R.drawable.button_rsense_green); dataSet = new JSONArray(); elapsedMillis = 0; len = 0; len2 = 0; i = 0; currentTime = getUploadTime(0); setEnabledFields(); if (saveMode) { dfm.getOrder(); System.out .println("Honk frogs@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); } try { Thread.sleep(100); } catch (InterruptedException e) { w.make("Data recording has offset 100 milliseconds due to an error.", Waffle.LENGTH_SHORT); e.printStackTrace(); } useMenu = false; SharedPreferences prefs2 = getSharedPreferences( ACCEL_SETTINGS, 0); if (mSensorManager != null) { boolean isLinear = prefs2.getBoolean("LINEAR_ACCEL", false); if (isLinear) { mSensorManager.registerListener( CarRampPhysicsV2.this, mSensorManager .getDefaultSensor(Sensor.TYPE_LINEAR_ACCELERATION), SensorManager.SENSOR_DELAY_FASTEST); } else { mSensorManager.registerListener( CarRampPhysicsV2.this, mSensorManager .getDefaultSensor(Sensor.TYPE_ACCELEROMETER), SensorManager.SENSOR_DELAY_FASTEST); } } running = true; startStop.setText("" + countdown); timeTimer = new Timer(); timeTimer.scheduleAtFixedRate(new TimerTask() { public void run() { elapsedMillis += INTERVAL; if (i >= (length * (1000 / INTERVAL))) { timeTimer.cancel(); timeHasElapsed = true; mHandler.post(new Runnable() { @Override public void run() { startStop.performLongClick(); } }); } else { i++; len++; len2++; if (i % (1000 / INTERVAL) == 0) { mHandler.post(new Runnable() { @Override public void run() { startStop.setText("" + countdown); } }); countdown--; } f.timeMillis = currentTime + elapsedMillis; Log.d("fantastag", "time added"); if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { f.accel_x = toThou.format(accel[0]); Log.d("fantastag", "X added"); } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { f.accel_y = toThou.format(accel[1]); Log.d("fantastag", "Y added"); } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { f.accel_z = toThou.format(accel[2]); Log.d("fantastag", "Z added"); } if (dfm.getOrderList() .contains( mContext.getString(R.string.accel_total))) { f.accel_total = toThou.format(accel[3]); Log.d("fantastag", "Magnitude added"); } dataSet.put(dfm.putDataForNoProjectID()); Log.d("tag", "NULLTOAD"); } } }, 0, INTERVAL); } if (android.os.Build.VERSION.SDK_INT >= 11) { CarRampPhysicsV2.this.invalidateOptionsMenu(); } return running; } }); mSensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE); SharedPreferences prefs3 = getSharedPreferences(ACCEL_SETTINGS, 0); if (mSensorManager != null) { boolean isLinear = prefs3.getBoolean("LINEAR_ACCEL", false); if (CarRampPhysicsV2.getApiLevel() < 14) { // If the device isn't on Jelly Bean ToggleButton button = (ToggleButton) findViewById(R.id.toggleButton1); button.setChecked(isLinear); } else { Switch button = (Switch) findViewById(R.id.switch1); button.setChecked(isLinear); } if (isLinear) { mSensorManager .registerListener( CarRampPhysicsV2.this, mSensorManager .getDefaultSensor(Sensor.TYPE_LINEAR_ACCELERATION), SensorManager.SENSOR_DELAY_FASTEST); } else { mSensorManager.registerListener(CarRampPhysicsV2.this, mSensorManager .getDefaultSensor(Sensor.TYPE_ACCELEROMETER), SensorManager.SENSOR_DELAY_FASTEST); } mSensorManager .registerListener(CarRampPhysicsV2.this, mSensorManager .getDefaultSensor(Sensor.TYPE_MAGNETIC_FIELD), SensorManager.SENSOR_DELAY_FASTEST); } Criteria c = new Criteria(); c.setAccuracy(Criteria.ACCURACY_FINE); accel = new float[4]; mMediaPlayer = MediaPlayer.create(this, R.raw.beep); } @SuppressLint("NewApi") public void onToggleClicked(View view) { mSensorManager.unregisterListener(CarRampPhysicsV2.this, mSensorManager .getDefaultSensor(Sensor.TYPE_LINEAR_ACCELERATION)); mSensorManager.unregisterListener(CarRampPhysicsV2.this, mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER)); boolean on; if (CarRampPhysicsV2.getApiLevel() < 14) { // If the device isn't on Jelly Bean on = ((ToggleButton) view).isChecked(); } else { // the device is on Jelly Bean on = ((Switch) view).isChecked(); } // Determine if normal or linear acceleration if (on) { mSensorManager.registerListener(CarRampPhysicsV2.this, mSensorManager .getDefaultSensor(Sensor.TYPE_LINEAR_ACCELERATION), SensorManager.SENSOR_DELAY_FASTEST); } else { mSensorManager.registerListener(CarRampPhysicsV2.this, mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER), SensorManager.SENSOR_DELAY_FASTEST); } SharedPreferences prefs = getSharedPreferences(ACCEL_SETTINGS, 0); SharedPreferences.Editor editor = prefs.edit(); editor.putBoolean("LINEAR_ACCEL", on); editor.commit(); } private void setEnabledFields() { if (dfm.getOrderList().contains(mContext.getString(R.string.accel_x))) dfm.enabledFields[Fields.ACCEL_X] = true; if (dfm.getOrderList().contains(mContext.getString(R.string.accel_y))) dfm.enabledFields[Fields.ACCEL_Y] = true; if (dfm.getOrderList().contains(mContext.getString(R.string.accel_z))) dfm.enabledFields[Fields.ACCEL_Z] = true; if (dfm.getOrderList().contains( mContext.getString(R.string.accel_total))) dfm.enabledFields[Fields.ACCEL_TOTAL] = true; dfm.enabledFields[Fields.TIME] = true; } long getUploadTime(int millisecond) { Calendar c = Calendar.getInstance(); return (long) (c.getTimeInMillis()); } @Override public void onPause() { super.onPause(); if (timeTimer != null) timeTimer.cancel(); inPausedState = true; } @Override public void onStop() { super.onStop(); if (timeTimer != null) timeTimer.cancel(); inPausedState = true; mSensorManager.unregisterListener(CarRampPhysicsV2.this, mSensorManager .getDefaultSensor(Sensor.TYPE_LINEAR_ACCELERATION)); } public void onUserLeaveHint() { super.onUserLeaveHint(); usedHomeButton = true; } @Override public void onStart() { super.onStart(); inPausedState = false; SharedPreferences prefs3 = getSharedPreferences(ACCEL_SETTINGS, 0); boolean isLinear = prefs3.getBoolean("LINEAR_ACCEL", false); if (isLinear) { mSensorManager.registerListener(CarRampPhysicsV2.this, mSensorManager .getDefaultSensor(Sensor.TYPE_LINEAR_ACCELERATION), SensorManager.SENSOR_DELAY_FASTEST); } else { mSensorManager.registerListener(CarRampPhysicsV2.this, mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER), SensorManager.SENSOR_DELAY_FASTEST); } } @Override public void onResume() { super.onResume(); inPausedState = false; getSharedPreferences(RECORD_SETTINGS, 0); if (usedHomeButton && running) { setupDone = false; timeHasElapsed = false; useMenu = true; countdown = length; running = false; startStop.setText("Hold to Start"); startStop.setEnabled(true); startStop.setBackgroundResource(R.drawable.button_rsense); timeTimer.cancel(); choiceViaMenu = false; startStop.setEnabled(true); dataSet = new JSONArray(); OrientationManager.enableRotation(CarRampPhysicsV2.this); menu.setGroupVisible(0, true); useMenu = true; w.make("Data recording halted.", Waffle.LENGTH_SHORT, Waffle.IMAGE_X); } if (uq != null) uq.buildQueueFromFile(); SharedPreferences prefs2 = getSharedPreferences("PROJID", 0); experimentNumber = prefs2.getString("project_id", null); if (experimentNumber == null) { if (useDev) { experimentNumber = DEFAULT_PROJ_DEV; } else { experimentNumber = DEFAULT_PROJ_PROD; } } if (!api.hasConnectivity()) { experimentNumber = "-1"; System.out.println("Logtastic"); } dfm = new DataFieldManager(Integer.parseInt(experimentNumber), api, mContext, f); dfm.getOrder(); new DecimalFormat("#,##0.0"); if (dfm.getOrderList().contains(mContext.getString(R.string.accel_x))) { values.setText("X: "); } if (dfm.getOrderList().contains(mContext.getString(R.string.accel_y))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { values.setText(values.getText() + " Y: "); } else { values.setText("Y: "); } } if (dfm.getOrderList().contains(mContext.getString(R.string.accel_z))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { values.setText(values.getText() + " Z: "); } else { values.setText("Z: "); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_total))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { values.setText(values.getText() + " Magnitude: "); } else { values.setText("Magnitude: "); } } } @Override public void onBackPressed() { if (!dontToastMeTwice) { if (running) w.make( "Cannot exit via BACK while recording data; use HOME instead.", Waffle.LENGTH_LONG, Waffle.IMAGE_WARN); else w.make("Press back again to exit.", Waffle.LENGTH_SHORT); new NoToastTwiceTask().execute(); } else if (exitAppViaBack && !running) { setupDone = false; super.onBackPressed(); } } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.main, menu); return true; } public boolean onPrepareOptionsMenu(Menu menu) { CarRampPhysicsV2.menu = menu; menu.setGroupEnabled(0, useMenu); return useMenu; } @Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case R.id.about_app: startActivity(new Intent(this, AboutActivity.class)); return true; case R.id.login: startActivityForResult( new Intent(this, Login.class), LOGIN_STATUS_REQUESTED); return true; case R.id.experiment_select: Intent setup = new Intent(this, Setup.class); startActivityForResult(setup, EXPERIMENT_REQUESTED); return true; case R.id.upload: manageUploadQueue(); return true; case R.id.record_length: createSingleInputDialog("Change Recording Length", "", RECORDING_LENGTH_REQUESTED); return true; case R.id.changename: startActivityForResult(new Intent(this, EnterName.class), RESULT_GOT_NAME); return true; case R.id.reset: startActivityForResult(new Intent(this, ResetToDefaults.class), RESET_REQUESTED); return true; } return false; } @Override public void onSensorChanged(SensorEvent event) { DecimalFormat oneDigit = new DecimalFormat("#,##0.0"); if (event.sensor.getType() == Sensor.TYPE_LINEAR_ACCELERATION || event.sensor.getType() == Sensor.TYPE_ACCELEROMETER) { accel[0] = event.values[0]; accel[1] = event.values[1]; accel[2] = event.values[2]; accel[3] = (float) Math.sqrt(Math.pow(accel[0], 2) + Math.pow(accel[1], 2) + Math.pow(accel[2], 2)); String xPrepend, yPrepend, zPrepend, data = ""; xPrepend = accel[0] > 0 ? "+" : ""; yPrepend = accel[1] > 0 ? "+" : ""; zPrepend = accel[2] > 0 ? "+" : ""; if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { data = "X: " + xPrepend + oneDigit.format(accel[0]); } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { if (!data.equals("")) { data += " , Y: " + yPrepend + oneDigit.format(accel[1]); } else { data += "Y: " + yPrepend + oneDigit.format(accel[1]); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { if (!data.equals("")) { data += " , Z: " + zPrepend + oneDigit.format(accel[2]); } else { data += "Z: " + zPrepend + oneDigit.format(accel[2]); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_total))) { if (!data.equals("")) { data += " , Magnitude: " + oneDigit.format(accel[3]); } else { data += "Magnitude: " + oneDigit.format(accel[3]); } } /* * accelerX.add(Double.valueOf(accel[0])); * accelerY.add(Double.valueOf(accel[1])); * accelerZ.add(Double.valueOf(accel[2])); * * ArrayList<Double> velocityX = new ArrayList<Double>(); * ArrayList<Double> velocityY = new ArrayList<Double>(); * ArrayList<Double> velocityZ = new ArrayList<Double>(); * ArrayList<Double> velocity = new ArrayList<Double>(); * velocityX.add(Double.valueOf(0)); * velocityY.add(Double.valueOf(0)); * velocityZ.add(Double.valueOf(0)); double interval = 0.05; for * (int i = 1; i < accelerX.size(); i++) { * velocityX.add(Double.valueOf((accelerX.get(i) + accelerX .get(i - * 1)) / 2 * interval + velocityX.get(i - 1))); * velocityY.add(Double.valueOf((accelerY.get(i) + accelerY .get(i - * 1)) / 2 * interval + velocityY.get(i - 1))); * velocityZ.add(Double.valueOf((accelerZ.get(i) + accelerZ .get(i - * 1)) / 2 * interval + velocityZ.get(i - 1))); } * * for (int i = 0; i < velocityX.size(); i++) { velocity.add(Math * .sqrt((velocityX.get(i).doubleValue() * velocityX * .get(i).doubleValue()) + (velocityY.get(i).doubleValue() * * velocityY .get(i).doubleValue()) + * (velocityZ.get(i).doubleValue() * velocityZ * .get(i).doubleValue()))); } * * double avgUpTill = 0; * * for (int i = 0 ; i<velocity.size(); i++) avgUpTill += * velocity.get(i).doubleValue(); * * avgUpTill /= velocity.size(); * * values.setText(data + " Velocity: " + * oneDigit.format(avgUpTill)); */ values.setText(data); } } @Override public void onLocationChanged(Location location) { loc = location; } public static int getApiLevel() { return android.os.Build.VERSION.SDK_INT; } @Override public void onActivityResult(int reqCode, int resultCode, Intent data) { super.onActivityResult(reqCode, resultCode, data); dontPromptMeTwice = false; if (reqCode == EXPERIMENT_REQUESTED) { if (resultCode == RESULT_OK) { SharedPreferences prefs = getSharedPreferences("PROJID", 0); experimentNumber = prefs.getString("project_id", null); if (experimentNumber == null) { if (useDev) { experimentNumber = DEFAULT_PROJ_DEV; } else { experimentNumber = DEFAULT_PROJ_PROD; } } dfm = new DataFieldManager(Integer.parseInt(experimentNumber), api, mContext, f); dfm.getOrder(); DecimalFormat oneDigit = new DecimalFormat("#,##0.0"); if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { values.setText("X: " + oneDigit.format(accel[0])); } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { values.setText(values.getText() + " Y: " + oneDigit.format(accel[1])); } else { values.setText("Y: " + oneDigit.format(accel[1])); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { values.setText(values.getText() + " Z: " + oneDigit.format(accel[2])); } else { values.setText("Z: " + oneDigit.format(accel[2])); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_total))) { accel[3] = (float) Math.sqrt(Math.pow(accel[0], 2) + Math.pow(accel[1], 2) + Math.pow(accel[2], 2)); if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { values.setText(values.getText() + " Magnitude: " + oneDigit.format(accel[3])); } else { values.setText("Magnitude: " + oneDigit.format(accel[3])); } } } } else if (reqCode == QUEUE_UPLOAD_REQUESTED) { uq.buildQueueFromFile(); } else if (reqCode == UPLOAD_OK_REQUESTED) { if (resultCode == RESULT_OK) { if (len == 0 || len2 == 0) { w.make("There are no data to upload!", Waffle.LENGTH_LONG, Waffle.IMAGE_X); OrientationManager.enableRotation(CarRampPhysicsV2.this); } else new UploadTask().execute(); } else { w.make("Data set discarded", Waffle.LENGTH_LONG, Waffle.IMAGE_WARN); OrientationManager.enableRotation(CarRampPhysicsV2.this); } } else if (reqCode == LOGIN_STATUS_REQUESTED) { if (resultCode == RESULT_OK) { final SharedPreferences mPrefs = new ObscuredSharedPreferences( mContext, mContext.getSharedPreferences(Login.PREFERENCES_KEY_OBSCURRED_USER_INFO, Context.MODE_PRIVATE)); String loginName = mPrefs.getString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_USERNAME, ""); if (loggedInAs == null) loggedInAs = (TextView) findViewById(R.id.loginStatus); if (api.getCurrentUser() != null) { loggedInAs.setText(getResources().getString( R.string.logged_in_as) + " " + loginName + ", Name: " + firstName + " " + lastInitial); } else { loggedInAs.setText(getResources().getString( R.string.not_logged_in) + ", Name: " + firstName + " " + lastInitial); } dfm = new DataFieldManager(Integer.parseInt(experimentNumber), api, mContext, f); dfm.getOrder(); DecimalFormat oneDigit = new DecimalFormat("#,##0.0"); if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { values.setText("X: " + oneDigit.format(accel[0])); } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { values.setText(values.getText() + " Y: " + oneDigit.format(accel[1])); } else { values.setText("Y: " + oneDigit.format(accel[1])); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { values.setText(values.getText() + " Z: " + oneDigit.format(accel[2])); } else { values.setText("Z: " + oneDigit.format(accel[2])); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_total))) { accel[3] = (float) Math.sqrt(Math.pow(accel[0], 2) + Math.pow(accel[1], 2) + Math.pow(accel[2], 2)); if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { values.setText(values.getText() + " Magnitude: " + oneDigit.format(accel[3])); } else { values.setText("Magnitude: " + oneDigit.format(accel[3])); } } w.make("Login successful", Waffle.LENGTH_SHORT, Waffle.IMAGE_CHECK); } else if (resultCode == Login.RESULT_ERROR) { startActivityForResult(new Intent(mContext, Login.class), LOGIN_STATUS_REQUESTED); } } else if (reqCode == RECORDING_LENGTH_REQUESTED) { if (resultCode == RESULT_OK) { length = Integer.parseInt(data.getStringExtra("input")); countdown = length; SharedPreferences prefs = getSharedPreferences("RECORD_LENGTH", 0); SharedPreferences.Editor editor = prefs.edit(); editor.putInt("length", length); // Below is a math fail // if (length <= 25) { // INTERVAL = 50; // } else { // INTERVAL = 2 * length; // } editor.putInt("Interval", INTERVAL); editor.commit(); } } else if (reqCode == RESULT_GOT_NAME) { if (resultCode == RESULT_OK) { if (!inApp) inApp = true; SharedPreferences namePrefs = getSharedPreferences(EnterName.PREFERENCES_KEY_USER_INFO, MODE_PRIVATE); SharedPreferences loginPrefs = new ObscuredSharedPreferences( CarRampPhysicsV2.mContext, CarRampPhysicsV2.mContext.getSharedPreferences( Login.PREFERENCES_KEY_OBSCURRED_USER_INFO, Context.MODE_PRIVATE)); if (namePrefs.getBoolean(EnterName.PREFERENCES_USER_INFO_SUBKEY_USE_ACCOUNT_NAME, true)) { RPerson user = api.getCurrentUser(); firstName = user.name; lastInitial = ""; loggedInAs.setText(getResources().getString( R.string.logged_in_as) + " " + loginPrefs.getString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_USERNAME, "") + ", Name: " + firstName); } else { firstName = namePrefs.getString(EnterName.PREFERENCES_USER_INFO_SUBKEY_FIRST_NAME, ""); lastInitial = namePrefs.getString(EnterName.PREFERENCES_USER_INFO_SUBKEY_LAST_INITIAL, ""); loggedInAs.setText(getResources().getString( R.string.logged_in_as) + " " + loginPrefs.getString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_USERNAME, "") + ", Name: " + firstName + " " + lastInitial); } } else { if (!inApp) finish(); } } else if (reqCode == RESET_REQUESTED) { if (resultCode == RESULT_OK) { SharedPreferences prefs = getSharedPreferences("RECORD_LENGTH", 0); countdown = length = prefs.getInt("length", 10); final SharedPreferences mPrefs = new ObscuredSharedPreferences( CarRampPhysicsV2.mContext, CarRampPhysicsV2.mContext.getSharedPreferences( Login.PREFERENCES_KEY_OBSCURRED_USER_INFO, Context.MODE_PRIVATE)); SharedPreferences.Editor mOSPEdit = mPrefs.edit(); mOSPEdit.putString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_USERNAME, DEFAULT_USER).commit(); mOSPEdit.putString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_PASSWORD, DEFAULT_USER).commit(); new OnCreateLoginTask().execute(); if (api.getCurrentUser() != null) { loggedInAs.setText(getResources().getString( R.string.logged_in_as) + " " + mPrefs.getString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_USERNAME, "") + ", Name: " + firstName + " " + lastInitial); } else { loggedInAs.setText(getResources().getString( R.string.not_logged_in) + ", Name: " + firstName + " " + lastInitial); } SharedPreferences eprefs = getSharedPreferences("PROJID", 0); SharedPreferences.Editor editor = eprefs.edit(); if (useDev) { experimentNumber = DEFAULT_PROJ_DEV; } else { experimentNumber = DEFAULT_PROJ_PROD; } editor.putString("project_id", experimentNumber); editor.commit(); INTERVAL = 50; dfm = new DataFieldManager(Integer.parseInt(experimentNumber), api, mContext, f); dfm.getOrder(); DecimalFormat oneDigit = new DecimalFormat("#,##0.0"); if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { values.setText("X: " + oneDigit.format(accel[0])); } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { values.setText(values.getText() + " Y: " + oneDigit.format(accel[1])); } else { values.setText("Y: " + oneDigit.format(accel[1])); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { values.setText(values.getText() + " Z: " + oneDigit.format(accel[2])); } else { values.setText("Z: " + oneDigit.format(accel[2])); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_total))) { accel[3] = (float) Math.sqrt(Math.pow(accel[0], 2) + Math.pow(accel[1], 2) + Math.pow(accel[2], 2)); if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { values.setText(values.getText() + " Magnitude: " + oneDigit.format(accel[3])); } else { values.setText("Magnitude: " + oneDigit.format(accel[3])); } } Log.d("fantastag", "resetti"); } } else if (reqCode == SAVE_MODE_REQUESTED) { if (resultCode == RESULT_OK) { saveMode = true; System.out.println("Save mode is on"); CarRampPhysicsV2.experimentNumber = "-1"; dfm = new DataFieldManager(Integer.parseInt(experimentNumber), api, mContext, f); dfm.getOrder(); DecimalFormat oneDigit = new DecimalFormat("#,##0.0"); if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { values.setText("X: " + oneDigit.format(accel[0])); } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x))) { values.setText(values.getText() + " Y: " + oneDigit.format(accel[1])); } else { values.setText("Y: " + oneDigit.format(accel[1])); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y))) { values.setText(values.getText() + " Z: " + oneDigit.format(accel[2])); } else { values.setText("Z: " + oneDigit.format(accel[2])); } } if (dfm.getOrderList().contains( mContext.getString(R.string.accel_total))) { accel[3] = (float) Math.sqrt(Math.pow(accel[0], 2) + Math.pow(accel[1], 2) + Math.pow(accel[2], 2)); if (dfm.getOrderList().contains( mContext.getString(R.string.accel_x)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_y)) || dfm.getOrderList().contains( mContext.getString(R.string.accel_z))) { values.setText(values.getText() + " Magnitude: " + oneDigit.format(accel[3])); } else { values.setText("Magnitude: " + oneDigit.format(accel[3])); } } } else { if (!api.hasConnectivity()) { startActivityForResult(new Intent(mContext, SaveModeDialog.class), SAVE_MODE_REQUESTED); } else { saveMode = false; } } } } private Runnable uploader = new Runnable() { @Override public void run() { int dataSetID = -1; SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy, HH:mm:ss", Locale.ENGLISH); Date dt = new Date(); dateString = sdf.format(dt); nameOfSession = firstName + " " + lastInitial + ". - " + dateString; if (api.hasConnectivity()) { dataSetID = CarRampPhysicsV2.upload(api, mContext); Log.d("fantagstag", "Data Set: " + dataSetID); if (dataSetID != -1) { sessionUrl = baseSessionUrl + experimentNumber + "/data_sets/" + dataSetID + "?embed=true"; Log.d("fantastag", sessionUrl); uploadSuccessful = true; } else { uploadSuccessful = false; QDataSet ds = new QDataSet(QDataSet.Type.DATA, nameOfSession, "Car Ramp Physics", experimentNumber, dataSet.toString(), null); Log.d("data", "Data: " + dataSet.toString()); CarRampPhysicsV2.uq.addDataSetToQueue(ds); } } else { uploadSuccessful = false; QDataSet ds = new QDataSet(QDataSet.Type.DATA, nameOfSession, "Car Ramp Physics", experimentNumber, dataSet.toString(), null); Log.d("data", "Data: " + dataSet.toString()); CarRampPhysicsV2.uq.addDataSetToQueue(ds); return; } } }; public boolean uploadSuccessful; /** * Upload function specifically for when projID = -1 initially. * * In this scenario, you'll need to provide an * {@link edu.uml.cs.isense.comm.API API} instance along with an activity * context. * * @param api * - An instance of API * @param c * - The context of the calling activity * * @return The ID of the data set created on iSENSE, or -1 if the upload * failed */ public static int upload(API api, Context c) { if (CarRampPhysicsV2.experimentNumber.equals("-1")) return -1; System.out.println("Need to re-order some data"); return upload(DataFieldManager.reOrderData(dataSet, CarRampPhysicsV2.experimentNumber, api, mContext, null)); } /** * Attempts to upload data with the given information passed in through the * QDataSet constructor * * @return The ID of the data set created on iSENSE, or -1 if the upload * failed */ public static int upload(String obj) { int dataSetID = -1; // switch (type) { // case DATA: // check for closed experiment // if (sid == -1) { // // if (addr.equals("")) { // sid = UploadQueue.getRapi().createSession(eid, name, desc, // "N/A", "N/A", "United States"); // } else { // sid = UploadQueue.getRapi().createSession(eid, name, desc, // addr, city + ", " + state, country); // } // // // Failure to create session or not logged in // if (sid == -1) { // success = false; // break; // } else QueueLayout.lastSID = sid; // } // // // Experiment Closed Checker // if (sid == -400) { // success = false; // break; // } else { try { JSONArray dataJSON = new JSONArray(obj); if (!(dataJSON.isNull(0))) { // success = UploadQueue.getRapi().putSessionData(sid, eid, // dataJSON); JSONObject jobj = new JSONObject(); try { jobj.put("data", dataJSON); } catch (JSONException e) { // uh oh e.printStackTrace(); } jobj = UploadQueue.getAPI().rowsToCols(jobj); System.out.println("JOBJ: " + jobj.toString()); dataSetID = UploadQueue.getAPI() .uploadDataSet(Integer.parseInt(experimentNumber), jobj, nameOfSession); System.out.println("Data set ID from Upload is: " + dataSetID); } } catch (JSONException e) { } // } // break; // pictures and stuff // case PIC: // if (sid == -1) sid = QueueLayout.lastSID; // if (name.equals("")) { // success = UploadQueue.getRapi().uploadPictureToSession( // picture, eid, sid, "*Session Name Not Provided*", // "N/A"); // } else { // success = UploadQueue.getRapi().uploadPictureToSession( // picture, eid, sid, name, "N/A"); // } // // break; // // case BOTH: // if (sid == -1) { // // if (addr.equals("")) { // sid = UploadQueue.getRapi().createSession(eid, name, desc, // "N/A", "N/A", "United States"); // } else { // sid = UploadQueue.getRapi().createSession(eid, name, desc, // addr, city + ", " + state, country); // } // // if (sid == -1) { // success = false; // break; // } else QueueLayout.lastSID = sid; // } // // // Experiment Closed Checker // if (sid == -400) { // success = false; // break; // } else { // JSONArray dataJSON = prepDataForUpload(); // if (!(dataJSON.isNull(0))) { // // success = UploadQueue.getRapi().putSessionData(sid, eid, // dataJSON); // success = UploadQueue.getRapi().uploadPictureToSession( // picture, eid, sid, name, "N/A"); // // } // } // // break; // } return dataSetID; } public class UploadTask extends AsyncTask<Void, Integer, Void> { @Override protected void onPreExecute() { dia = new ProgressDialog(mContext); dia.setProgressStyle(ProgressDialog.STYLE_SPINNER); dia.setMessage("Please wait while your data are uploaded to iSENSE..."); dia.setCancelable(false); dia.show(); } @Override protected Void doInBackground(Void... voids) { uploader.run(); publishProgress(100); return null; } @Override protected void onPostExecute(Void voids) { dia.setMessage("Done"); if (dia != null && dia.isShowing()) dia.dismiss(); len = 0; len2 = 0; if (uploadSuccessful) { w.make("Data upload successful.", Waffle.LENGTH_SHORT, Waffle.IMAGE_CHECK); startActivity(new Intent(CarRampPhysicsV2.this, ViewData.class)); } else { w.make("Data saved.", Waffle.LENGTH_LONG, Waffle.IMAGE_CHECK); } OrientationManager.enableRotation(CarRampPhysicsV2.this); } } private class NoToastTwiceTask extends AsyncTask<Void, Integer, Void> { @Override protected void onPreExecute() { dontToastMeTwice = true; exitAppViaBack = true; } @Override protected Void doInBackground(Void... voids) { try { Thread.sleep(1500); exitAppViaBack = false; Thread.sleep(2000); } catch (InterruptedException e) { exitAppViaBack = false; e.printStackTrace(); } return null; } @Override protected void onPostExecute(Void voids) { dontToastMeTwice = false; } } private void manageUploadQueue() { if (!uq.emptyQueue()) { Intent i = new Intent().setClass(mContext, QueueLayout.class); i.putExtra(QueueLayout.PARENT_NAME, uq.getParentName()); startActivityForResult(i, QUEUE_UPLOAD_REQUESTED); } else { w.make("There are no data to upload!", Waffle.LENGTH_LONG, Waffle.IMAGE_X); } } public void createMessageDialog(String title, String message, int reqCode) { Intent i = new Intent(mContext, MessageDialogTemplate.class); i.putExtra("title", title); i.putExtra("message", message); startActivityForResult(i, reqCode); } public void createSingleInputDialog(String title, String message, int reqCode) { Intent i = new Intent(mContext, SingleInputDialogTemplate.class); i.putExtra("title", title); i.putExtra("message", message); startActivityForResult(i, reqCode); } @Override public void onProviderDisabled(String arg0) { } @Override public void onProviderEnabled(String arg0) { } @Override public void onStatusChanged(String arg0, int arg1, Bundle arg2) { } @Override public void onAccuracyChanged(Sensor arg0, int arg1) { } public class LoginTask extends AsyncTask<Void, Integer, Void> { boolean success; @Override protected Void doInBackground(Void... arg0) { final SharedPreferences mPrefs = new ObscuredSharedPreferences( CarRampPhysicsV2.mContext, CarRampPhysicsV2.mContext.getSharedPreferences(Login.PREFERENCES_KEY_OBSCURRED_USER_INFO, Context.MODE_PRIVATE)); success = api.createSession(mPrefs.getString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_USERNAME, ""), mPrefs.getString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_PASSWORD, "")); return null; } @Override protected void onPostExecute(Void voids) { if (success) { w.make("Login Successful", Waffle.LENGTH_SHORT, Waffle.IMAGE_CHECK); } else { if (api.hasConnectivity()) w.make("Login failed!", Waffle.LENGTH_SHORT, Waffle.IMAGE_X); } } } public class OnCreateLoginTask extends AsyncTask<Void, Integer, Void> { @Override protected Void doInBackground(Void... arg0) { if (api.hasConnectivity()) { final SharedPreferences mPrefs = new ObscuredSharedPreferences( CarRampPhysicsV2.mContext, CarRampPhysicsV2.mContext.getSharedPreferences( Login.PREFERENCES_KEY_OBSCURRED_USER_INFO, Context.MODE_PRIVATE)); api.createSession(mPrefs.getString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_USERNAME, ""), mPrefs.getString(Login.PREFERENCES_OBSCURRED_USER_INFO_SUBKEY_PASSWORD, "")); } return null; } } }
6cf035ce17ee2f797204da1783905acaddc3e28b
06cbbfaae8cfed20fd927bc7dc9c196bbb680abb
/src/br/com/staroski/recarga/ImagePanel.java
e84d576d042ac0ff6817d6a00665683540c64718
[]
no_license
staroski/recarga
1e295f47bc265b1522e0ba28942b8ad9c6ae8eb7
909ad22e7f9a22ebd0305cbc990f8572a055fd7f
refs/heads/master
2016-09-05T17:39:44.961030
2014-11-12T19:12:37
2014-11-12T19:12:37
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,514
java
package br.com.staroski.recarga; import java.awt.*; import java.awt.image.*; import javax.swing.*; public class ImagePanel extends JPanel { private boolean stretchEnabled; private static final long serialVersionUID = 1; private BufferedImage image; public ImagePanel() { stretchEnabled = true; } public BufferedImage getImage() { return image; } public boolean isStretchEnabled() { return stretchEnabled; } public void setImage(BufferedImage image) { this.image = image; } public void setStretchEnabled(boolean stretch) { this.stretchEnabled = stretch; } @Override protected void paintComponent(Graphics g) { if (image == null) { super.paintComponent(g); return; } int w = getWidth(); int h = getHeight(); if (stretchEnabled) { g.drawImage(image, 0, 0, w, h, this); return; } int iw = image.getWidth(); int ih = image.getHeight(); int colunas = w / iw; int linhas = h / ih; if (colunas * iw < w) { colunas++; } if (linhas * ih < h) { linhas++; } int offsetX = 0; for (int i = 0; i < linhas; i++) { int y = i * ih; if (y > h) { break; } for (int j = 0; j < colunas; j++) { int x = j * iw + offsetX; if (j == 0 && x > 0) { g.drawImage(image, -(iw - x), y, iw, ih, this); } if (j == colunas - 1 && x < w) { g.drawImage(image, x + iw, y, iw, ih, this); } if (x > w) { break; } if (x < -iw) { break; } g.drawImage(image, x, y, iw, ih, this); } } } }
1cc96d50852c3b2d5c9ec059e72dccca2cc330f7
f8fd386587403e43557e8e3e4431f12ffcdfa9b6
/src/main/java/org/jenkinsci/plugins/quarantine/QuarantineTestDataPublisher.java
f92fda470e2d62d0114dbfa49e06956c7dd07522
[ "MIT" ]
permissive
benypl/quarantine
23c208eb3f26cf95f3c766365bd8ec536b782cd8
1cc9d109a8d53b3ed05bc8f26811873790e7a3c5
refs/heads/master
2020-12-26T00:20:00.111255
2013-09-12T08:56:59
2013-09-12T08:56:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,249
java
package org.jenkinsci.plugins.quarantine; import hudson.Extension; import hudson.Launcher; import hudson.model.AbstractBuild; import hudson.model.BuildListener; import hudson.model.Descriptor; import hudson.model.Saveable; import hudson.tasks.junit.CaseResult; import hudson.tasks.junit.SuiteResult; import hudson.tasks.junit.TestAction; import hudson.tasks.junit.TestDataPublisher; import hudson.tasks.junit.TestObject; import hudson.tasks.junit.TestResult; import hudson.tasks.junit.TestResultAction; import java.io.IOException; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import org.kohsuke.stapler.DataBoundConstructor; public class QuarantineTestDataPublisher extends TestDataPublisher { @DataBoundConstructor public QuarantineTestDataPublisher() {} @Override public Data getTestData(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener, TestResult testResult) { Data data = new Data(build); for (SuiteResult suite: testResult.getSuites()) { for (CaseResult result: suite.getCases()) { QuarantineTestAction previousAction = null; CaseResult previous = result.getPreviousResult(); if (previous != null) { previousAction = previous.getTestAction(QuarantineTestAction.class); } // no immediate predecessor (e.g. because job failed or did not run), try and go back in build history while (previous == null && build != null) { build = build.getPreviousCompletedBuild(); if (build != null) { listener.getLogger(). println("no immediate predecessor, but found previous build " + build + ", now try and find " + result.getId()); hudson.tasks.test.TestResult tr = build.getTestResultAction().findCorrespondingResult(result.getId()); if (tr != null) { listener.getLogger(). println("it is " + tr.getDisplayName()); previousAction = tr.getTestAction(QuarantineTestAction.class); break; } } } if (previousAction != null && previousAction.isQuarantined()) { QuarantineTestAction action = new QuarantineTestAction(data, result.getId()); action.quarantine(previousAction); data.addQuarantine(result.getId(), action); } } } return data; } public static class Data extends TestResultAction.Data implements Saveable { private Map<String,QuarantineTestAction> quarantines = new HashMap<String,QuarantineTestAction>(); private final AbstractBuild<?,?> build; public Data(AbstractBuild<?,?> build) { this.build = build; } @Override public List<TestAction> getTestAction(TestObject testObject) { if (build.getParent().getPublishersList().get(QuarantinableJUnitResultArchiver.class) == null) { // only display if QuarantinableJUnitResultArchiver chosen, to avoid confusion System.out.println("not right publisher"); return Collections.emptyList(); } String id = testObject.getId(); QuarantineTestAction result = quarantines.get(id); if (result != null) { return Collections.<TestAction>singletonList(result); } if (testObject instanceof CaseResult) { return Collections.<TestAction>singletonList(new QuarantineTestAction(this, id)); } return Collections.emptyList(); } public boolean isLatestResult() { return build.getParent().getLastCompletedBuild() == build; } public hudson.tasks.test.TestResult getResultForTestId(String testObjectId) { TestResultAction action = build.getAction(TestResultAction.class); if (action != null && action.getResult() != null) { return action.getResult().findCorrespondingResult(testObjectId); } return null; } public void save() throws IOException { build.save(); } public void addQuarantine(String testObjectId, QuarantineTestAction quarantine) { quarantines.put(testObjectId, quarantine); } } @Extension public static class DescriptorImpl extends Descriptor<TestDataPublisher> { public String getHelpFile() { return "/plugin/quarantine/help.html"; } @Override public String getDisplayName() { return Messages.QuarantineTestDataPublisher_DisplayName(); } } }
1c3727e99be3fd4f2e9d64591bde7f3a2f0a4b83
be8a4c0db86205e9f5f29030897a90f10ef30702
/cibet-core/src/test/java/com/logitags/cibet/actuator/loadcontrol/MemoryMonitorTest.java
14d4ef0a675417537db9fa8aa6560d0d095b8ea3
[ "Apache-2.0" ]
permissive
Wolfgang-Winter/cibet
c07e60833ac192a142ace1ce5fb881a5e4787c25
02ad1ce5dcd69332bd3c0bef8aa1dea2c694247a
refs/heads/master
2023-07-20T10:10:39.171426
2023-07-13T07:08:58
2023-07-13T07:08:58
74,895,668
8
2
Apache-2.0
2022-10-12T19:52:08
2016-11-27T15:17:52
Java
UTF-8
Java
false
false
7,488
java
/* ******************************************************************************* * L O G I T A G S * Software and Programming * Dr. Wolfgang Winter * Germany * * All rights reserved * * Copyright 2014 Dr. Wolfgang Winter * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************* */ package com.logitags.cibet.actuator.loadcontrol; import java.lang.reflect.Field; import java.util.concurrent.atomic.AtomicInteger; import org.apache.log4j.Logger; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; import com.cibethelper.loadcontrol.MonitorTestClass; import com.cibethelper.loadcontrol.TAlarmExecution; import com.logitags.cibet.config.Configuration; public class MemoryMonitorTest { private static Logger log = Logger.getLogger(MemoryMonitorTest.class); private static final String SP = "SP2-javaMethod"; public static AtomicInteger shedCounter = new AtomicInteger(0); public static AtomicInteger valveCounter = new AtomicInteger(0); public static LoadControlData data; private VMLoadControlJMXBean vm = new VMLoadControlJMXBean(); @BeforeClass public static void beforeClass() throws Exception { Configuration.instance().close(); Field f = Configuration.class.getDeclaredField("instance"); f.setAccessible(true); f.set(null, null); Configuration.instance(); } @Test public void show() throws Exception { log.debug("start show()"); MonitorTestClass mon = new MonitorTestClass(); mon.cibetMem2(10000, null); double load = vm.getHeapMemoryUsagePercent(); log.debug("memory load=" + load); Assert.assertTrue(load > 0); load = vm.getTenuredGenCollectionUsagePercent(); log.debug("memory load=" + load); Assert.assertTrue(load >= 0); load = vm.getTenuredGenUsagePercent(); log.debug("memory load=" + load); Assert.assertTrue(load > 0); load = vm.getHeapMemoryUsage(); log.debug("memory load=" + load); Assert.assertTrue(load > 0); load = vm.getTenuredGenCollectionUsage(); log.debug("memory load=" + load); Assert.assertTrue(load >= 0); load = vm.getTenuredGenUsage(); log.debug("memory load=" + load); Assert.assertTrue(load > 0); } @Test public void processShed() throws Exception { log.debug("start processShed()"); LoadControlActuator act = (LoadControlActuator) Configuration.instance() .getActuator(LoadControlActuator.DEFAULTNAME); try { MonitorTestClass mon = new MonitorTestClass(); mon.cibetMem2(30000, null); act.getMemoryMonitor().setStatus(MonitorStatus.ON); act.setLoadControlCallback(new TAlarmExecution()); act.getMemoryMonitor().setCollectionUsageShedThreshold("4% "); act.getMemoryMonitor().setUsageShedThreshold("4% "); int max = 6; for (int i = 0; i < max; i++) { log.debug("vm.getHeapMemoryUsagePercent()=" + vm.getHeapMemoryUsagePercent()); log.debug("vm.getTenuredGenCollectionUsagePercent()=" + vm.getTenuredGenCollectionUsagePercent()); log.debug("vm.getTenuredGenUsagePercent()=" + vm.getTenuredGenUsagePercent()); String res = mon.cibetMem2(10000, null); Assert.assertNull(res); } log.debug("shedCounter=" + shedCounter.get()); Assert.assertEquals(6, shedCounter.get()); } finally { shedCounter.set(0); act.getMemoryMonitor().setCollectionUsageShedThreshold("-1 "); act.getMemoryMonitor().setUsageShedThreshold("-1"); act.getMemoryMonitor().setStatus(MonitorStatus.OFF); } } @Test public void valve() throws Exception { log.debug("start valve()"); LoadControlActuator act = (LoadControlActuator) Configuration.instance() .getActuator(LoadControlActuator.DEFAULTNAME); try { MonitorTestClass mon = new MonitorTestClass(); mon.cibetMem2(30000, null); act.getMemoryMonitor().setStatus(MonitorStatus.ON); act.setLoadControlCallback(new TAlarmExecution()); act.getMemoryMonitor().setCollectionUsageValveThreshold("4% "); act.getMemoryMonitor().setUsageValveThreshold("4% "); int max = 6; for (int i = 0; i < max; i++) { log.debug("vm.getHeapMemoryUsagePercent()=" + vm.getHeapMemoryUsagePercent()); log.debug("vm.getTenuredGenCollectionUsagePercent()=" + vm.getTenuredGenCollectionUsagePercent()); log.debug("vm.getTenuredGenUsagePercent()=" + vm.getTenuredGenUsagePercent()); log.debug("ThrottleCount: " + act.getMemoryMonitor().getThrottleCount(SP)); String res = mon.cibetMem2(10000, null); Assert.assertNull(res); Assert.assertTrue(data.getThrottleTime() > 500); data = null; } log.debug("shedCounter=" + shedCounter.get()); Assert.assertEquals(6, shedCounter.get()); } finally { valveCounter.set(0); act.getMemoryMonitor().setCollectionUsageValveThreshold("-1 "); act.getMemoryMonitor().setUsageValveThreshold("-1"); act.getMemoryMonitor().setStatus(MonitorStatus.OFF); } } @Test public void alarm() throws Exception { log.debug("start alarm()"); LoadControlActuator act = (LoadControlActuator) Configuration.instance() .getActuator(LoadControlActuator.DEFAULTNAME); try { MonitorTestClass mon = new MonitorTestClass(); mon.cibetMem2(30000, null); act.getMemoryMonitor().setStatus(MonitorStatus.ON); act.setLoadControlCallback(new TAlarmExecution()); act.getMemoryMonitor().setCollectionUsageAlarmThreshold("4% "); act.getMemoryMonitor().setUsageAlarmThreshold("4% "); int max = 4; for (int i = 0; i < max; i++) { log.debug("vm.getHeapMemoryUsagePercent()=" + vm.getHeapMemoryUsagePercent()); log.debug("vm.getTenuredGenCollectionUsagePercent()=" + vm.getTenuredGenCollectionUsagePercent()); log.debug("vm.getTenuredGenUsagePercent()=" + vm.getTenuredGenUsagePercent()); String res = mon.cibetMem2(10000, null); Assert.assertNotNull(res); } log.debug("valveCounter=" + valveCounter.get()); Assert.assertTrue(valveCounter.get() >= 2); } finally { shedCounter.set(0); valveCounter.set(0); act.getMemoryMonitor().setCollectionUsageAlarmThreshold("-1 "); act.getMemoryMonitor().setUsageAlarmThreshold("-1"); act.getMemoryMonitor().setStatus(MonitorStatus.OFF); } } }
0650421e6c39cd2e6b81b34748ffffcfc737243c
2848c5fe9573e16d300b86e1339856154bb0b458
/back-end/src/main/java/com/tracking/web/models/Apresentacao.java
d97448edd39336a44f7ac3637e6d0063101a8422
[]
no_license
MarceloRavache/insight-tracking-platform
36ea224f1e7fa86b07161b556507aaaf89ec00c4
988ebe3780ae1f1f650737ed011d2bb3316f2138
refs/heads/master
2022-12-07T10:14:16.563853
2020-08-16T22:45:38
2020-08-16T22:45:38
287,959,521
0
0
null
null
null
null
UTF-8
Java
false
false
1,033
java
package com.tracking.web.models; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import com.fasterxml.jackson.annotation.JsonIgnore; import com.sun.istack.NotNull; @Entity @Table(name="Apresentacao") public class Apresentacao{ @Id @GeneratedValue(strategy=GenerationType.IDENTITY) private long apresentacao_id; @NotNull private String nome; @JsonIgnore @ManyToOne @JoinColumn(name = "usuario_id", referencedColumnName="usuario_id") private Usuario usuario; public Usuario getUsuario() { return usuario; } public void setUsuario(Usuario usuario) { this.usuario = usuario; } public long getId() { return apresentacao_id; } public void setId(long id) { this.apresentacao_id = id; } public String getNome() { return nome; } public void setNome(String nome) { this.nome = nome; } }
20dd72d36037c15d735285c233245bcdfd0a1d06
9e4ca720678b152aa2fe20249963f1aecb9f369e
/simmetrics-core/src/main/java/org/simmetrics/metrics/NeedlemanWunch.java
c39698fdd8c380ab7e1f8bb7baef68bde89a50db
[ "Apache-2.0" ]
permissive
guilhermejccavalcanti/simmetrics
6cc864eb7bee5e3c78e8ea24c3480f817d9abf44
e842a219d1f6f004e8e601c1cf7038263d0474e8
refs/heads/master
2020-03-25T05:48:43.848709
2018-08-28T06:00:46
2018-08-28T06:00:46
143,466,931
0
0
null
2018-08-03T19:41:16
2018-08-03T19:41:16
null
UTF-8
Java
false
false
3,650
java
/* * #%L * Simmetrics Core * %% * Copyright (C) 2014 - 2015 Simmetrics Authors * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ package org.simmetrics.metrics; import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Preconditions.checkNotNull; import static java.lang.Math.max; import static java.lang.Math.min; import static org.simmetrics.metrics.Math.min; import java.util.Objects; import org.simmetrics.StringMetric; import org.simmetrics.metrics.functions.MatchMismatch; import org.simmetrics.metrics.functions.Substitution; /** * Needleman-Wunsch algorithm providing a similarity measure between two * strings. * <p> * Implementation uses linear space. * <p> * This class is immutable and thread-safe if its substitution function is. * * @see SmithWatermanGotoh * @see SmithWaterman * @see <a * href="https://en.wikipedia.org/wiki/Needleman%E2%80%93Wunsch_algorithm">Wikipedia * - Needleman-Wunsch algorithm</a> */ public class NeedlemanWunch implements StringMetric { private static final Substitution MATCH_0_MISMATCH_1 = new MatchMismatch( 0.0f, -1.0f); private final Substitution substitution; private final float gapValue; /** * Constructs a new Needleman-Wunch metric. Uses an gap of <code>-2.0</code> * a <code>-1.0</code> substitution penalty for mismatches, <code>0</code> * for matches. * */ public NeedlemanWunch() { this(-2.0f, MATCH_0_MISMATCH_1); } /** * Constructs a new Needleman-Wunch metric. * * @param gapValue * a non-positive penalty for gaps * @param substitution * a substitution function for mismatched characters */ public NeedlemanWunch(float gapValue, Substitution substitution) { checkArgument(gapValue <= 0.0f); checkNotNull(substitution); this.gapValue = gapValue; this.substitution = substitution; } @Override public float compare(String a, String b) { if (a.isEmpty() && b.isEmpty()) { return 1.0f; } float maxDistance = max(a.length(), b.length()) * max(substitution.max(), gapValue); float minDistance = max(a.length(), b.length()) * min(substitution.min(), gapValue); return (-needlemanWunch(a, b) - minDistance) / (maxDistance - minDistance); } private float needlemanWunch(final String s, final String t) { if (Objects.equals(s, t)) { return 0; } if (s.isEmpty()) { return -gapValue * t.length(); } if (t.isEmpty()) { return -gapValue * s.length(); } final float[] v0 = new float[t.length() + 1]; final float[] v1 = new float[t.length() + 1]; for (int j = 0; j < v0.length; j++) { v0[j] = j; } for (int i = 1; i < s.length() + 1; i++) { v1[0] = i; for (int j = 1; j < v0.length; j++) { v1[j] = min(v0[j] - gapValue, v1[j - 1] - gapValue, v0[j - 1] - substitution.compare(s, i - 1, t, j - 1)); } for (int j = 0; j < v0.length; j++) { v0[j] = v1[j]; } } return v1[v1.length - 1]; } @Override public String toString() { return "NeedlemanWunch [costFunction=" + substitution + ", gapCost=" + gapValue + "]"; } }
b8ea7844899e5697dcb20198a9dccea65a48a118
4c65b186f472f8a235effa6c54cfb39b513550e7
/orbbec/src/main/java/com/orbbec/obDepth2/HomeKeyListener.java
ee7600e52382eca15c7555e631705e6605c08f3a
[]
no_license
apm29/FaceSDKAndroidSampleBino
70b8fdc86da7b8b2b955e9cfe34661f4bf17e7ad
0d652f1bf066dbf00b829d71ce71a8d13e3e7a51
refs/heads/master
2020-05-04T21:15:27.022136
2019-04-20T07:30:15
2019-04-20T07:30:15
179,469,702
0
0
null
null
null
null
UTF-8
Java
false
false
3,065
java
package com.orbbec.obDepth2; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; /** * Created by linjx on 16-2-3. */ public class HomeKeyListener { static final String TAG = "HomeListener"; public static final String FINISH = "finish"; private Context mContext; private IntentFilter mHomeKeyFilter; private IntentFilter mFinishFilter; private OnHomePressedListener mListener; private InnerReceiver mReceiver; // 鍥炶皟鎺ュ彛 public interface OnHomePressedListener { public void onHomePressed(); public void onHomeLongPressed(); } public HomeKeyListener(Context context) { mContext = context; mHomeKeyFilter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS); mFinishFilter = new IntentFilter(); } /** * 璁剧疆鐩戝惉 * * @param listener */ public void setOnHomePressedListener(OnHomePressedListener listener) { mListener = listener; mReceiver = new InnerReceiver(); } /** * 寮�鐩戝惉锛屾敞鍐屽箍鎾� */ public void startWatch() { if (mReceiver != null) { mContext.registerReceiver(mReceiver, mHomeKeyFilter); } } /** * 鍋滄鐩戝惉锛屾敞閿�箍鎾� */ public void stopWatch() { if (mReceiver != null) { try { mContext.unregisterReceiver(mReceiver); } catch (Exception e) { } } } class InnerReceiver extends BroadcastReceiver { final String SYSTEM_DIALOG_REASON_KEY = "reason"; final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions"; final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps"; final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey"; @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if (action.equals(Intent.ACTION_CLOSE_SYSTEM_DIALOGS)) { String reason = intent.getStringExtra(SYSTEM_DIALOG_REASON_KEY); if (reason != null) { // Log.e(TAG, "action:" + action + ",reason:" + reason); if (mListener != null) { //TODO : see FutureBox if (reason.equals(SYSTEM_DIALOG_REASON_HOME_KEY)) { // mListener.onHomePressed(); }/* else if (reason .equals(SYSTEM_DIALOG_REASON_RECENT_APPS)) { mListener.onHomeLongPressed(); }*/ } } } else if (action.equals(FINISH)) { // mListener.onHomePressed(); } } } }
b3e0b2d44b70a61bfe6c6dd396ef3a0c89230a48
67d195485008b7e95cbc89bccbed1c06f8db8ec5
/src/axela/insurance/ManageInsurComp_Update.java
211ddc3416ff2474a41db942eb1e8732c2dab852
[]
no_license
pramod6019/axelaauto
901c44f2de5556a5145d3267e2a6788033732f37
968350900c902ee11ca0a8d6e09a5108e7df79a4
refs/heads/master
2022-12-26T09:47:09.186898
2020-10-01T03:10:40
2020-10-01T03:10:40
300,124,896
0
0
null
null
null
null
UTF-8
Java
false
false
8,246
java
package axela.insurance; /** * @author Dilip Kumar */ import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import javax.sql.rowset.CachedRowSet; import cloudify.connect.Connect; public class ManageInsurComp_Update extends Connect { public String add = ""; public String emp_id = "0"; public String comp_id = "0"; public String update = ""; public String deleteB = ""; public String addB = ""; public String updateB = ""; public String status = ""; public String StrSql = ""; public String msg = ""; public String inscomp_id = "0"; public String inscomp_name = ""; public String inscomp_active = "0"; public String inscomp_entry_id = "0"; public String entry_by = ""; public String inscomp_entry_date = ""; public String inscomp_modified_id = "0"; public String modified_by = ""; public String inscomp_modified_date = ""; public String entry_date = ""; public String modified_date = ""; public String QueryString = ""; public void doPost(HttpServletRequest request, HttpServletResponse response) { try { CheckSession(request, response); HttpSession session = request.getSession(true); comp_id = CNumeric(GetSession("comp_id", request)); CheckPerm(comp_id, "emp_role_id", request, response); if (!comp_id.equals("0")) { emp_id = CNumeric(GetSession("emp_id", request)); add = PadQuotes(request.getParameter("add")); update = PadQuotes(request.getParameter("update")); addB = PadQuotes(request.getParameter("add_button")); updateB = PadQuotes(request.getParameter("update_button")); deleteB = PadQuotes(request.getParameter("delete_button")); msg = PadQuotes(request.getParameter("msg")); inscomp_id = CNumeric(PadQuotes(request.getParameter("inscomp_id"))); QueryString = PadQuotes(request.getQueryString()); if (update.equals("yes")) { if (inscomp_id.equals("")) { response.sendRedirect(response.encodeRedirectURL("index.jsp")); } else if (inscomp_id.equals("0")) { response.sendRedirect(response.encodeRedirectURL("../portal/error.jsp?msg=Invalid Insurance Company!")); } } if (add.equals("yes")) { status = "Add Insurance "; } else if (update.equals("yes")) { status = "Update Insurance "; } if ("yes".equals(add)) { if (!"yes".equals(addB)) { inscomp_active = "1"; } else { GetValues(request, response); inscomp_entry_id = emp_id; inscomp_entry_date = ToLongDate(kknow()); AddFields(); if (!msg.equals("")) { msg = "Error!" + msg; } else { response.sendRedirect(response.encodeRedirectURL("manageinsurcomp.jsp?inscomp_id=" + inscomp_id + "&msg=Insurance Company added Successfully!")); } } } if ("yes".equals(update)) { if (!"yes".equals(updateB) && !"Delete Insurance Company".equals(deleteB)) { PopulateFields(response); } else if ("yes".equals(updateB) && !"Delete Insurance Company".equals(deleteB)) { GetValues(request, response); inscomp_modified_id = emp_id; inscomp_modified_date = ToLongDate(kknow()); UpdateFields(); if (!msg.equals("")) { msg = "Error!" + msg; } else { response.sendRedirect(response.encodeRedirectURL("manageinsurcomp.jsp?inscomp_id=" + inscomp_id + "&msg=Insurance Company updated Successfully!")); } } if ("Delete Insurance Company".equals(deleteB)) { GetValues(request, response); DeleteFields(); if (!msg.equals("")) { msg = "Error!" + msg; } else { response.sendRedirect(response.encodeRedirectURL("manageinsurcomp.jsp?msg=Insurance Company deleted Successfully!")); } } } } } catch (Exception ex) { SOPError("Axelaauto== " + this.getClass().getName()); SOPError("Error in " + new Exception().getStackTrace()[0].getMethodName() + ": " + ex); } } public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doPost(request, response); } protected void GetValues(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { inscomp_name = PadQuotes(request.getParameter("txt_inscomp_name")); inscomp_active = CheckBoxValue(PadQuotes(request.getParameter("chk_inscomp_active"))); entry_by = PadQuotes(request.getParameter("entry_by")); modified_by = PadQuotes(request.getParameter("modified_by")); entry_date = PadQuotes(request.getParameter("entry_date")); modified_date = PadQuotes(request.getParameter("modified_date")); } protected void CheckForm() { msg = ""; if (inscomp_name.equals("")) { msg = "<br>Enter Insurance Company Name!"; } else { StrSql = "SELECT inscomp_name FROM " + compdb(comp_id) + "axela_insurance_comp" + " WHERE inscomp_name = '" + inscomp_name + "'"; if (update.equals("yes")) { StrSql = StrSql + " AND inscomp_id != " + inscomp_id + ""; } if (!ExecuteQuery(StrSql).equals("")) { msg = msg + "<br>Similar Insurance Company found!"; } } } protected void AddFields() { CheckForm(); if (msg.equals("")) { inscomp_id = ExecuteQuery("SELECT COALESCE(MAX(inscomp_id),0)+1 AS inscomp_id" + " FROM " + compdb(comp_id) + "axela_insurance_comp"); StrSql = "INSERT into " + compdb(comp_id) + "axela_insurance_comp" + " (inscomp_id," + " inscomp_name," + " inscomp_active," + " inscomp_entry_id," + " inscomp_entry_date)" + " values" + " (" + inscomp_id + "," + " '" + inscomp_name + "'," + " '" + inscomp_active + "'," + " " + inscomp_entry_id + "," + " '" + inscomp_entry_date + "')"; updateQuery(StrSql); } } protected void PopulateFields(HttpServletResponse response) { try { StrSql = "SELECT * FROM " + compdb(comp_id) + "axela_insurance_comp" + " WHERE inscomp_id = " + inscomp_id + ""; CachedRowSet crs = processQuery(StrSql, 0); if (crs.isBeforeFirst()) { while (crs.next()) { inscomp_name = crs.getString("inscomp_name"); inscomp_active = crs.getString("inscomp_active"); inscomp_entry_id = crs.getString("inscomp_entry_id"); if (!inscomp_entry_id.equals("0")) { entry_by = Exename(comp_id, Integer.parseInt(inscomp_entry_id)); } entry_date = strToLongDate(crs.getString("inscomp_entry_date")); inscomp_modified_id = crs.getString("inscomp_modified_id"); if (!inscomp_modified_id.equals("0")) { modified_by = Exename(comp_id, Integer.parseInt(inscomp_modified_id)); } modified_date = strToLongDate(crs.getString("inscomp_modified_date")); } } else { response.sendRedirect(response.encodeRedirectURL("../portal/error.jsp?msg=Invalid Insurance Company!")); } crs.close(); } catch (Exception ex) { SOPError("Axelaauto== " + this.getClass().getName()); SOPError("Error in " + new Exception().getStackTrace()[0].getMethodName() + ": " + ex); } } protected void UpdateFields() { CheckForm(); if (msg.equals("")) { StrSql = "UPDATE " + compdb(comp_id) + "axela_insurance_comp" + " SET" + " inscomp_name = '" + inscomp_name + "'," + " inscomp_active = '" + inscomp_active + "'," + " inscomp_modified_id = " + inscomp_modified_id + "," + " inscomp_modified_date = '" + inscomp_modified_date + "'" + " WHERE inscomp_id = " + inscomp_id + ""; updateQuery(StrSql); } } protected void DeleteFields() { StrSql = "SELECT insurpolicy_inscomp_id FROM " + compdb(comp_id) + "axela_insurance_policy" + " where insurpolicy_inscomp_id = " + inscomp_id + ""; if (!ExecuteQuery(StrSql).equals("")) { msg = msg + "<br>Insurance Company is associated with Insurance!"; } if (msg.equals("")) { StrSql = "DELETE FROM " + compdb(comp_id) + "axela_insurance_comp" + " WHERE inscomp_id = " + inscomp_id + ""; updateQuery(StrSql); } } }
f0c439f8ddb3c2a3f0bceceb10908fcf63bc3c4b
8af1164bac943cef64e41bae312223c3c0e38114
/results-java/redisson--redisson/d112b5370f12226fe25573c89b90e6c32324865d/before/RedissonScriptTest.java
29e36125be758034bd39fd7319c92b343f8c0c4c
[]
no_license
fracz/refactor-extractor
3ae45c97cc63f26d5cb8b92003b12f74cc9973a9
dd5e82bfcc376e74a99e18c2bf54c95676914272
refs/heads/master
2021-01-19T06:50:08.211003
2018-11-30T13:00:57
2018-11-30T13:00:57
87,353,478
0
0
null
null
null
null
UTF-8
Java
false
false
4,572
java
package org.redisson; import io.netty.util.concurrent.Future; import java.util.Collections; import java.util.List; import org.hamcrest.MatcherAssert; import org.hamcrest.Matchers; import org.junit.Assert; import org.junit.Test; import org.redisson.api.RScript; import org.redisson.api.RScript.Mode; import org.redisson.client.RedisException; public class RedissonScriptTest extends BaseTest { @Test public void testEval() { RScript script = redisson.getScript(); List<Object> res = script.eval(RScript.Mode.READ_ONLY, "return {1,2,3.3333,'\"foo\"',nil,'bar'}", RScript.ReturnType.MULTI, Collections.emptyList()); MatcherAssert.assertThat(res, Matchers.<Object>contains(1L, 2L, 3L, "foo")); } @Test public void testEvalAsync() { RScript script = redisson.getScript(); Future<List<Object>> res = script.evalAsync(RScript.Mode.READ_ONLY, "return {1,2,3.3333,'\"foo\"',nil,'bar'}", RScript.ReturnType.MULTI, Collections.emptyList()); MatcherAssert.assertThat(res.awaitUninterruptibly().getNow(), Matchers.<Object>contains(1L, 2L, 3L, "foo")); } @Test public void testScriptExists() { RScript s = redisson.getScript(); String r = s.scriptLoad("return redis.call('get', 'foo')"); Assert.assertEquals("282297a0228f48cd3fc6a55de6316f31422f5d17", r); List<Boolean> r1 = s.scriptExists(r); Assert.assertEquals(1, r1.size()); Assert.assertTrue(r1.get(0)); s.scriptFlush(); List<Boolean> r2 = s.scriptExists(r); Assert.assertEquals(1, r2.size()); Assert.assertFalse(r2.get(0)); } @Test public void testScriptFlush() { redisson.getBucket("foo").set("bar"); String r = redisson.getScript().scriptLoad("return redis.call('get', 'foo')"); Assert.assertEquals("282297a0228f48cd3fc6a55de6316f31422f5d17", r); String r1 = redisson.getScript().evalSha(Mode.READ_ONLY, "282297a0228f48cd3fc6a55de6316f31422f5d17", RScript.ReturnType.VALUE, Collections.emptyList()); Assert.assertEquals("bar", r1); redisson.getScript().scriptFlush(); try { redisson.getScript().evalSha(Mode.READ_ONLY, "282297a0228f48cd3fc6a55de6316f31422f5d17", RScript.ReturnType.VALUE, Collections.emptyList()); } catch (Exception e) { Assert.assertEquals(RedisException.class, e.getClass()); } } @Test public void testScriptLoad() { redisson.getBucket("foo").set("bar"); String r = redisson.getScript().scriptLoad("return redis.call('get', 'foo')"); Assert.assertEquals("282297a0228f48cd3fc6a55de6316f31422f5d17", r); String r1 = redisson.getScript().evalSha(Mode.READ_ONLY, "282297a0228f48cd3fc6a55de6316f31422f5d17", RScript.ReturnType.VALUE, Collections.emptyList()); Assert.assertEquals("bar", r1); } @Test public void testScriptLoadAsync() { redisson.getBucket("foo").set("bar"); Future<String> r = redisson.getScript().scriptLoadAsync("return redis.call('get', 'foo')"); Assert.assertEquals("282297a0228f48cd3fc6a55de6316f31422f5d17", r.awaitUninterruptibly().getNow()); String r1 = redisson.getScript().evalSha(Mode.READ_ONLY, "282297a0228f48cd3fc6a55de6316f31422f5d17", RScript.ReturnType.VALUE, Collections.emptyList()); Assert.assertEquals("bar", r1); } @Test public void testEvalSha() { RScript s = redisson.getScript(); String res = s.scriptLoad("return redis.call('get', 'foo')"); Assert.assertEquals("282297a0228f48cd3fc6a55de6316f31422f5d17", res); redisson.getBucket("foo").set("bar"); String r1 = s.evalSha(Mode.READ_ONLY, "282297a0228f48cd3fc6a55de6316f31422f5d17", RScript.ReturnType.VALUE, Collections.emptyList()); Assert.assertEquals("bar", r1); } @Test public void testEvalshaAsync() { RScript s = redisson.getScript(); String res = s.scriptLoad("return redis.call('get', 'foo')"); Assert.assertEquals("282297a0228f48cd3fc6a55de6316f31422f5d17", res); redisson.getBucket("foo").set("bar"); String r = redisson.getScript().eval(Mode.READ_ONLY, "return redis.call('get', 'foo')", RScript.ReturnType.VALUE); Assert.assertEquals("bar", r); Future<Object> r1 = redisson.getScript().evalShaAsync(Mode.READ_ONLY, "282297a0228f48cd3fc6a55de6316f31422f5d17", RScript.ReturnType.VALUE, Collections.emptyList()); Assert.assertEquals("bar", r1.awaitUninterruptibly().getNow()); } }
f5b115927fefa53aef0a80ab6c9a7ebd111c2e8e
df0642fa97062d2ca82da7723139c5fac212e52f
/src/main/java/com/fakie/utils/expression/BinaryOperator.java
7fad1595e39f80780fba64fd5958673b2abf96ff
[]
no_license
escapar/fakie
ad519f25d9235934fc0bdf82c29dae8d3141ceb0
4310b53ad21eb2b8179b48a80071c74bec069e1c
refs/heads/master
2022-01-10T07:00:23.308928
2019-01-08T23:13:58
2019-01-08T23:13:58
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,433
java
package com.fakie.utils.expression; import com.fakie.utils.FakieUtils; import java.util.*; public abstract class BinaryOperator extends Operator { private final Expression left; private final Expression right; BinaryOperator(Expression.Type type, Expression left, Expression right, Law... laws) { super(type, FakieUtils.pair(left.id(), right.id()), laws); this.left = left; this.right = right; } public Expression getLeft() { return left; } public Expression getRight() { return right; } @Override public int arity() { return 2; } @Override public int depth() { return Math.max(left.depth(), right.depth()) + 1; } @Override public int size() { return left.size() + right.size() + 1; } @Override public int variables() { return left.variables() + right.variables(); } @Override public Collection<Expression> children() { return Arrays.asList(left, right); } @Override public Collection<Expression> depthFirstChildren() { List<Expression> children = new ArrayList<>(); children.add(left); children.addAll(left.depthFirstChildren()); children.add(right); children.addAll(right.depthFirstChildren()); return children; } @Override public Collection<Expression> breadthFirstChildren() { Deque<Expression> temp = new ArrayDeque<>(children()); List<Expression> children = new ArrayList<>(); while (!temp.isEmpty()) { Expression pop = temp.pop(); children.add(pop); temp.addAll(pop.children()); } return children; } public abstract BinaryOperator newInstance(Expression left, Expression right); @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; if (!super.equals(o)) return false; BinaryOperator that = (BinaryOperator) o; return Objects.equals(left, that.left) && Objects.equals(right, that.right); } @Override public int hashCode() { return Objects.hash(super.hashCode(), left, right); } @Override public String toString() { return "(" + left + getType() + right + ")"; } }
04381f6c6891b0ed173896e3c28c2590f0c5ba4d
6a6699b66c065b143441d6f272b06194f911deeb
/app/src/main/java/com/magiccube/exchange/hook/HookerPackageManager.java
245cebbf5e77c99c2b5eb90d41b304e5aeca1a5f
[]
no_license
Chen1989/admob17_1_1
707a2988b1f499cb471a2f03a025990a4ef2fd46
a5bc8b6b2d5d5f14dd6f88961b52de9978e48e7d
refs/heads/master
2020-04-13T18:04:39.348649
2019-01-19T08:41:02
2019-01-19T08:41:02
163,363,932
0
0
null
null
null
null
UTF-8
Java
false
false
10,351
java
package com.magiccube.exchange.hook; import android.content.Context; import android.content.pm.ApplicationInfo; import android.content.pm.PackageInfo; import android.content.pm.PackageManager; import android.content.pm.Signature; import android.text.TextUtils; import com.magiccube.exchange.util.Constant; import com.magiccube.exchange.util.Logger; import java.lang.reflect.Field; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; import java.util.Arrays; public class HookerPackageManager { public static void hook(Context context, String realpkg, final String newpkg, int versionCode, String versionName, String appLabel) { try { // 获取全局的ActivityThread对象 Class<?> activityThreadClass = Class.forName("android.app.ActivityThread"); Method currentActivityThreadMethod = activityThreadClass.getDeclaredMethod("currentActivityThread"); Object currentActivityThread = currentActivityThreadMethod.invoke(null); // 获取ActivityThread里面原始的 sPackageManager Field sPackageManagerField = activityThreadClass.getDeclaredField("sPackageManager"); sPackageManagerField.setAccessible(true); Object sPackageManager = sPackageManagerField.get(currentActivityThread); // 准备好代理对象, 用来替换原始的对象 Class<?> iPackageManagerInterface = Class.forName("android.content.pm.IPackageManager"); // 1. 替换掉ActivityThread里面的 sPackageManager 字段 sPackageManagerField.set(currentActivityThread, getActivityManagerProxy(sPackageManager,iPackageManagerInterface,context, realpkg, newpkg,versionCode,versionName,appLabel)); // 2. 替换 ApplicationPackageManager 里面的 mPM对象 PackageManager pm = context.getPackageManager(); PackageManager appPm = context.getApplicationContext().getPackageManager(); Field mPmField = pm.getClass().getDeclaredField("mPM"); mPmField.setAccessible(true); mPmField.set(pm, getActivityManagerProxy(sPackageManager,iPackageManagerInterface,context, realpkg, newpkg,versionCode,versionName,appLabel)); mPmField.set(appPm, getActivityManagerProxy(sPackageManager,iPackageManagerInterface,context, realpkg, newpkg,versionCode,versionName,appLabel)); } catch (Exception e) { e.printStackTrace(); } } private static Object getActivityManagerProxy(final Object host, Class<?> ia, final Context context, final String realpkg, final String newpkg, final int versionCode, final String versionName, final String appLabel) { return Proxy.newProxyInstance(ia.getClassLoader(), new Class<?>[]{ia}, new InvocationHandler() { @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { //所有的获取安装来源,一律使用com.android.vending if ("getInstallerPackageName".equals(method.getName())) { for (StackTraceElement element : Thread.currentThread().getStackTrace()) { if (element.toString().contains("com.facebook.ads.internal")){ return "com.android.vending"; } } } //mark admob的签名确认是不是开发 if ("getPackageInfo".equals(method.getName())) { for (StackTraceElement element : Thread.currentThread().getStackTrace()) { Logger.i("getPackageInfo = " + element.toString()); } Logger.i("getPackageInfo ============================== " + Arrays.asList(args).toString()); String name = "AZeroPlug"; if (("FSixPlug".equals(name) || ("AZeroPlug".equals(name))) && args[0] instanceof String) { if (newpkg.equals(args[0]) || realpkg.equals(args[0])) { args[0] = realpkg; PackageInfo packageInfo = (PackageInfo)method.invoke(host, args); if (packageInfo != null) { packageInfo.versionName = versionName; packageInfo.versionCode = versionCode; packageInfo.packageName = newpkg; String configSign = "FBSign"; if("AZeroPlug".equals(name)) { configSign = name + "Sign"; } String signatureStr = Constant._fakeSign; if (!TextUtils.isEmpty(signatureStr)) { Signature signature = new Signature(signatureStr); packageInfo.signatures = new Signature[]{signature}; } return packageInfo; } } } } if ("getInstallerPackageName".equals(method.getName())) { for (StackTraceElement element : Thread.currentThread().getStackTrace()) { Logger.i("getInstallerPackageName = " + element.toString()); } Logger.i("getInstallerPackageName ============================== " + args.toString()); } if ("checkPermission".equals(method.getName())) { for (StackTraceElement element : Thread.currentThread().getStackTrace()) { Logger.i("checkPermission = " + element.toString()); } Logger.i("checkPermission ============================== " + args.toString()); } if ("getApplicationLabel".equals(method.getName())) { for (StackTraceElement element : Thread.currentThread().getStackTrace()) { Logger.i("getApplicationLabel = " + element.toString()); } Logger.i("getApplicationLabel ============================== " + args.toString()); } if ("getApplicationInfo".equals(method.getName())) { for (StackTraceElement element : Thread.currentThread().getStackTrace()) { Logger.i("getApplicationInfo = " + element.toString()); } Logger.i("getApplicationInfo ============================== " + args.toString()); } if (!TextUtils.isEmpty(newpkg) && !newpkg.equals(realpkg)) { if ("getInstallerPackageName".equals(method.getName())) { for (StackTraceElement element : Thread.currentThread().getStackTrace()) { if (element.toString().contains("org.chromium.base.BuildInfo.getAll")){ return "com.android.vending"; } if (element.toString().contains("com.inmobi.commons.core.utilities.b.a")) { args[0] = realpkg; } } } if ("checkPermission".equals(method.getName())) { if (args.length >= 2) { Object arg1 = args[1]; if (arg1 instanceof String) { String str = (String) args[1]; if (newpkg.equals(str)) { args[1] = realpkg; return method.invoke(host, args); } } } } if ("getApplicationLabel".equals(method.getName())) { for (StackTraceElement element : Thread.currentThread().getStackTrace()) { if (element.getClassName().contains("com.facebook.ads.internal.l")) { return appLabel; } } } if ("getApplicationInfo".equals(method.getName())) { for (StackTraceElement element : Thread.currentThread().getStackTrace()) { if (element.toString().contains("com.facebook.ads.internal.l.b")) { for (int i = 0; i < args.length; i++) { if (args[i].equals(newpkg)) { args[i] = realpkg; ApplicationInfo invoke = (ApplicationInfo) method.invoke(host, args); if (invoke != null) { invoke.packageName = newpkg; invoke.name = appLabel; invoke.labelRes = 0; invoke.nonLocalizedLabel = null; return invoke; } } } } } ApplicationInfo invoke = (ApplicationInfo) method.invoke(host, args); if (invoke != null) { invoke.name = appLabel; invoke.labelRes = 0; invoke.nonLocalizedLabel = null; return invoke; } } } Object result = PackageManagerHooker.hook(host, method, args); if (result != null) { return result; } return method.invoke(host, args); } }); } }
61fa841845f96d5ebe53ea3aa928820961845fd0
990e22f5bf9cab690ac3c17484e5d86a5707ac0b
/src/main/java/ru/v1as/tg/autopoller/AbstractTgBot.java
268d673f311069db672f5a3905512652ef208a07
[]
no_license
v1as/autopoller-tg
33f67321dc93f8bfaf010f20b6c82c874803950a
1f5e1ada98f66e7d8998492872d03c369c6abb3b
refs/heads/master
2020-08-03T05:00:39.068520
2019-10-06T09:30:18
2019-10-06T17:41:16
211,631,482
0
0
null
null
null
null
UTF-8
Java
false
false
4,641
java
package ru.v1as.tg.autopoller; import static org.slf4j.LoggerFactory.getLogger; import static org.springframework.util.StringUtils.isEmpty; import static ru.v1as.tg.autopoller.model.UpdateUtils.getChat; import static ru.v1as.tg.autopoller.model.UpdateUtils.getUser; import java.io.Serializable; import java.lang.reflect.UndeclaredThrowableException; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import javax.annotation.PostConstruct; import lombok.SneakyThrows; import org.slf4j.Logger; import org.springframework.beans.factory.annotation.Value; import org.telegram.telegrambots.bots.TelegramLongPollingBot; import org.telegram.telegrambots.meta.api.methods.BotApiMethod; import org.telegram.telegrambots.meta.api.objects.CallbackQuery; import org.telegram.telegrambots.meta.api.objects.Chat; import org.telegram.telegrambots.meta.api.objects.Message; import org.telegram.telegrambots.meta.api.objects.Update; import org.telegram.telegrambots.meta.api.objects.User; import org.telegram.telegrambots.meta.bots.AbsSender; import org.telegram.telegrambots.meta.updateshandlers.SentCallback; import ru.v1as.tg.autopoller.commands.TgCommandRequest; import ru.v1as.tg.autopoller.tg.UnsafeAbsSender; public abstract class AbstractTgBot extends TelegramLongPollingBot implements UnsafeAbsSender { private final Logger log = getLogger(this.getClass()); private AbsSender sender = this; private Map<Long, Object> chatToMonitor = new ConcurrentHashMap<>(); @Value("${tg.bot.username}") private String botUsername; @Value("${tg.bot.token}") private String botToken; @PostConstruct public void init() { log.info( "Bean '{}' with username '{}' starting", this.getClass().getSimpleName(), botUsername); } @Override public void onUpdateReceived(Update update) { try { Chat chat = getChat(update); User user = getUser(update); if (chat == null || user == null) { log.warn("Such type updated does not supported '{}'", update); return; } synchronized (chatToMonitor.computeIfAbsent(chat.getId(), (id) -> chat.getId())) { before(update); if (update.hasMessage() && update.getMessage().isCommand()) { String text = update.getMessage().getText(); log.info("Command '{}' received.", text); TgCommandRequest command = TgCommandRequest.parse(text); command.setMessage(update.getMessage()); onUpdateCommand(command, chat, user); } else if (update.hasMessage()) { onUpdateMessage(update.getMessage(), chat, user); } else if (update.hasCallbackQuery()) { log.info("Callback received '{}'", update.getCallbackQuery().getData()); onUpdateCallbackQuery(update.getCallbackQuery(), chat, user); } else { log.debug("Unsupported update type: " + update); } } } catch (UndeclaredThrowableException ex) { Throwable t = ex.getUndeclaredThrowable(); if (!isEmpty(t.getMessage())) { log.warn(t.getLocalizedMessage(), t); } } catch (Exception e) { log.error("Something gone wrong ", e); } } protected abstract void onUpdateCommand(TgCommandRequest command, Chat chat, User user); protected abstract void before(Update update); protected abstract void onUpdateCallbackQuery( CallbackQuery callbackQuery, Chat chat, User user); protected abstract void onUpdateMessage(Message message, Chat chat, User user); @SneakyThrows @Override public < T extends Serializable, Method extends BotApiMethod<T>, Callback extends SentCallback<T>> void executeAsyncUnsafe(Method method, Callback callback) { log.debug(method.toString()); sender.executeAsync(method, callback); } @SneakyThrows @Override public <T extends Serializable, Method extends BotApiMethod<T>> T executeUnsafe(Method method) { log.debug(method.toString()); return sender.execute(method); } public void setSender(AbsSender sender) { this.sender = sender; } @Override public String getBotUsername() { return botUsername; } @Override public String getBotToken() { return botToken; } }
[ "KOLlok08" ]
KOLlok08
dbadad97ddfd8e59bd8f472e129e76e9b2cd6b6a
93625765b26eb4c7f0817cdb41a959f4ce95d685
/app/src/main/java/net/univr/pushi/jxatmosphere/feature/GdybGaoDeActivity1.java
f46b9e19fb40644ccc3bdf67bf5fa3aafad2dedd
[]
no_license
upclass/JXatmosphere
cf206b7786c2795e26082c11b1075ca7d1a61d0c
4596c907d4181f35232933e9fd5d9123a9604498
refs/heads/master
2021-07-03T22:52:34.950452
2019-02-16T07:26:46
2019-02-16T07:26:46
135,379,766
0
0
null
null
null
null
UTF-8
Java
false
false
28,368
java
package net.univr.pushi.jxatmosphere.feature; import android.app.Activity; import android.app.AlertDialog; import android.app.ProgressDialog; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.graphics.Color; import android.graphics.Point; import android.os.Bundle; import android.provider.Settings; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.text.Editable; import android.text.TextWatcher; import android.util.Log; import android.util.TypedValue; import android.view.View; import android.view.inputmethod.InputMethodManager; import android.widget.EditText; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; import com.amap.api.location.AMapLocation; import com.amap.api.location.AMapLocationClient; import com.amap.api.location.AMapLocationClientOption; import com.amap.api.location.AMapLocationListener; import com.amap.api.maps.AMap; import com.amap.api.maps.CameraUpdateFactory; import com.amap.api.maps.MapView; import com.amap.api.maps.Projection; import com.amap.api.maps.model.BitmapDescriptorFactory; import com.amap.api.maps.model.CameraPosition; import com.amap.api.maps.model.LatLng; import com.amap.api.maps.model.LatLngBounds; import com.amap.api.maps.model.Marker; import com.amap.api.maps.model.MarkerOptions; import com.amap.api.maps.model.MyLocationStyle; import com.amap.api.maps.model.PolylineOptions; import com.amap.api.services.core.AMapException; import com.amap.api.services.core.LatLonPoint; import com.amap.api.services.core.PoiItem; import com.amap.api.services.district.DistrictItem; import com.amap.api.services.district.DistrictResult; import com.amap.api.services.district.DistrictSearch; import com.amap.api.services.district.DistrictSearchQuery; import com.amap.api.services.geocoder.GeocodeResult; import com.amap.api.services.geocoder.GeocodeSearch; import com.amap.api.services.geocoder.RegeocodeQuery; import com.amap.api.services.geocoder.RegeocodeResult; import com.amap.api.services.poisearch.PoiResult; import com.amap.api.services.poisearch.PoiSearch; import com.blankj.utilcode.util.LogUtils; import com.blankj.utilcode.util.ToastUtils; import com.chad.library.adapter.base.BaseQuickAdapter; import net.univr.pushi.jxatmosphere.R; import net.univr.pushi.jxatmosphere.adapter.GdybAdapter; import net.univr.pushi.jxatmosphere.adapter.SimpleAdapter; import net.univr.pushi.jxatmosphere.base.BaseActivity; import net.univr.pushi.jxatmosphere.beens.GdybBeen1; import net.univr.pushi.jxatmosphere.beens.GdybSearchBeen; import net.univr.pushi.jxatmosphere.remote.RetrofitHelper; import net.univr.pushi.jxatmosphere.utils.ShipeiUtils; import net.univr.pushi.jxatmosphere.utils.ThreadUtil; import net.univr.pushi.jxatmosphere.utils.ViewUtil; import net.univr.pushi.jxatmosphere.widget.FloatingItemDecoration; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import butterknife.BindView; import rx.android.schedulers.AndroidSchedulers; import rx.schedulers.Schedulers; public class GdybGaoDeActivity1 extends BaseActivity implements View.OnClickListener, DistrictSearch.OnDistrictSearchListener, AMap.OnMapClickListener, GeocodeSearch.OnGeocodeSearchListener { ProgressDialog dialog = null; @BindView(R.id.gd_dizhi) EditText sousuo_tv; @BindView(R.id.search_info) TextView search_info; @BindView(R.id.province) TextView province; @BindView(R.id.city) TextView city; @BindView(R.id.town) TextView town; @BindView(R.id.back) ImageView back; @BindView(R.id.mapview) MapView mapView; @BindView(R.id.delete) ImageView delete; @BindView(R.id.search) LinearLayout search; public AMapLocationClient mlocationClient; public AMapLocationClientOption mLocationOption; private GeocodeSearch geocoderSearch; private MyLocationStyle myLocationStyle; String interval = "1"; Double x; Double y; int i = 0; @BindView(R.id.recyclerView_search) RecyclerView recyclerView_search; SimpleAdapter simpleAdapter; AMap mAMap; Marker marker; //poi搜索的条目是否点击了,点击文字覆盖在搜索框,不调用文字变化 Boolean selectItem = false; //是否点击了地图 Boolean clickMap = false; @BindView(R.id.content) LinearLayout content; @BindView(R.id.now_position) ImageView nowPosition; private int mMarkerX, mMarderY; @BindView(R.id.tq_recycleView) RecyclerView tq_recyclerView; private Map<Integer,String> keys=new HashMap<>();//存放所有标题的位置和内容 private List<GdybBeen1.DataBean.ContentBean> data =new ArrayList<>();//天气数据源 GdybAdapter gdybAdapter; String tempRiqi=""; @Override public int getLayoutId() { return R.layout.activity_gdyb_gao_de1; } @Override public void initViews(Bundle savedInstanceState) { super.initViews(savedInstanceState); initView(savedInstanceState); getJiangxiFanwei(); initLocation(); back.setOnClickListener(this); delete.setOnClickListener(this); search_info.setOnClickListener(this); nowPosition.setOnClickListener(this); } //手动加定位图标 // MarkerOptions markerOption = new MarkerOptions().icon(BitmapDescriptorFactory.fromResource(R.drawable.location)) // .position(latLng) // .draggable(false); // mAMap.addMarker(markerOption); private void initView(Bundle savedInstanceState) { search.getBackground().setAlpha(250); content.getBackground().setAlpha(250); mapView.onCreate(savedInstanceState); mAMap = mapView.getMap(); myLocationStyle = new MyLocationStyle(); mAMap.getUiSettings().setRotateGesturesEnabled(false); mAMap.getUiSettings().setZoomControlsEnabled(false); mAMap.setOnMapClickListener(this); geocoderSearch = new GeocodeSearch(this); geocoderSearch.setOnGeocodeSearchListener(this); sousuo_tv.addTextChangedListener(new TextWatcher() { @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { } @Override public void onTextChanged(CharSequence s, int start, int before, int count) { if (!selectItem) { String s1 = s.toString(); PoiSearch.Query query = new PoiSearch.Query(s1, "", "360000"); query.setPageSize(20); PoiSearch poiSearch = new PoiSearch(context, query); poiSearch.setOnPoiSearchListener(new PoiSearch.OnPoiSearchListener() { @Override public void onPoiSearched(PoiResult poiResult, int i) { List<GdybSearchBeen> data = new ArrayList<>(); ArrayList<PoiItem> pois = poiResult.getPois(); for (int j = 0; j < pois.size(); j++) { PoiItem poiItem = pois.get(j); LatLonPoint latLonPoint = poiItem.getLatLonPoint(); double latitude = latLonPoint.getLatitude(); double longitude = latLonPoint.getLongitude(); String s = poiItem.toString(); GdybSearchBeen gdybSearchBeen = new GdybSearchBeen(); gdybSearchBeen.setTitle(s); gdybSearchBeen.setLat(latitude); gdybSearchBeen.setLon(longitude); data.add(gdybSearchBeen); } getRecycleAdapter(); simpleAdapter.setNewData(data); recyclerView_search.setVisibility(View.VISIBLE); } @Override public void onPoiItemSearched(PoiItem poiItem, int i) { } }); poiSearch.searchPOIAsyn(); } } @Override public void afterTextChanged(Editable s) { } }); } public GdybAdapter getGdybAdapter(){ if(gdybAdapter==null){ gdybAdapter=new GdybAdapter(context,data); final FloatingItemDecoration floatingItemDecoration=new FloatingItemDecoration(this, getResources().getColor(R.color.black_yj),1,1); floatingItemDecoration.setKeys(keys); floatingItemDecoration.setmTitleHeight((int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,50,getResources().getDisplayMetrics())); tq_recyclerView.addItemDecoration(floatingItemDecoration); //设置布局管理器 LinearLayoutManager layoutManager=new LinearLayoutManager(this); layoutManager.setOrientation(1); tq_recyclerView.setLayoutManager(layoutManager); tq_recyclerView.setHasFixedSize(true); tq_recyclerView.setAdapter(gdybAdapter); } return gdybAdapter; } private void getTestdata() { dialog = ProgressDialog.show(context, "请稍等...", "获取数据中...", true); dialog.setCancelable(true); content.setVisibility(View.VISIBLE); if (ShipeiUtils.isLocationEnabled(context)) { ; } else { //取消定位蓝点 mAMap.setMyLocationEnabled(false); } RetrofitHelper.getWeatherMonitorAPI() .getGdyb1(String.valueOf(x), String.valueOf(y),"bd09ll", initForecastTime()) .compose(bindToLifecycle()) .subscribeOn(Schedulers.io()) .observeOn(AndroidSchedulers.mainThread()) .subscribe(gdybBeen1 -> { dialog.dismiss(); data.clear(); keys.clear(); province.setText(gdybBeen1.getLocation().getProvince()); city.setText(gdybBeen1.getLocation().getCity()); town.setText(gdybBeen1.getLocation().getDistrict()); GdybBeen1.DataBean retData = gdybBeen1.getData(); List<GdybBeen1.DataBean.ContentBean> oneH = retData.getOneH(); List<GdybBeen1.DataBean.ContentBean> threeH = retData.getThreeH(); List<GdybBeen1.DataBean.ContentBean> twelveH = retData.getTwelveH(); List<GdybBeen1.DataBean.ContentBean> twenty_fourH = retData.getTwenty_fourH(); initRetDataAndTitle(keys,data,oneH); initRetDataAndTitle(keys,data,threeH); initRetDataAndTitle(keys,data,twelveH); initRetDataAndTitle(keys,data,twenty_fourH); getGdybAdapter().setNewData(data); //点击地图位置设置在搜索框,切不触发文字监听 if (clickMap) { LatLonPoint latLonPoint = new LatLonPoint(y, x); getAddress(latLonPoint); } clickMap = false; }, throwable -> { dialog.dismiss(); LogUtils.e(throwable); ToastUtils.showShort(getString(R.string.getInfo_error_toast)); }); } private void initRetDataAndTitle(Map<Integer, String> keys, List<GdybBeen1.DataBean.ContentBean> contentBeans, List<GdybBeen1.DataBean.ContentBean> hourData) { //用于判断是否同放一天 for (int j = 0; j < hourData.size(); j++) { GdybBeen1.DataBean.ContentBean contentBean = hourData.get(j); String forecastTime = contentBean.getForecastTime(); SimpleDateFormat format=new SimpleDateFormat("yyyy/MM/dd HH:mm:ss"); Calendar calendar=Calendar.getInstance(); try { Date parse = format.parse(forecastTime); calendar.setTime(parse); } catch (ParseException e) { e.printStackTrace(); } String riqi = calendar.get(Calendar.YEAR)+"年"+(calendar.get(Calendar.MONTH)+1)+"月"+calendar.get(Calendar.DAY_OF_MONTH)+"日"; String dayHour = String.valueOf(calendar.get(Calendar.HOUR_OF_DAY))+":00"; contentBean.setForecastTime(dayHour); if(!riqi.equals(tempRiqi)) keys.put(contentBeans.size(),riqi);//日期不同加入悬浮头部 tempRiqi=riqi; contentBeans.add(contentBean); } } public int getResource(String imageName) { Context ctx = ((Activity) context).getBaseContext(); int resId = context.getResources().getIdentifier(imageName, "drawable", ctx.getPackageName()); //如果没有在"mipmap"下找到imageName,将会返回0 return resId; } private String initForecastTime() { String destTimeString; Date date = new Date(System.currentTimeMillis()); String datetime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date); int hour = date.getHours(); if (hour < 20) hour = 8; else hour = 20; if (hour == 8) destTimeString = datetime.substring(0, 10) + "0" + hour + ":00:00"; else destTimeString = datetime.substring(0, 10) + hour + ":00:00"; String riqiString = destTimeString.substring(0, 10); String shijianString = destTimeString.substring(destTimeString.length() - 8, destTimeString.length()); return riqiString + " " + shijianString; } @Override public void onClick(View v) { switch (v.getId()) { case R.id.back: finish(); break; case R.id.delete: content.setVisibility(View.GONE); break; case R.id.now_position: if (marker != null) marker.destroy(); initLocation(); break; case R.id.search_info: ((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(GdybGaoDeActivity1.this.getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); String key = sousuo_tv.getText().toString(); PoiSearch.Query query = new PoiSearch.Query(key, "", "360000"); query.setPageSize(20); PoiSearch poiSearch = new PoiSearch(context, query); poiSearch.setOnPoiSearchListener(new PoiSearch.OnPoiSearchListener() { @Override public void onPoiSearched(PoiResult poiResult, int i) { List<GdybSearchBeen> data = new ArrayList<>(); ArrayList<PoiItem> pois = poiResult.getPois(); for (int j = 0; j < pois.size(); j++) { PoiItem poiItem = pois.get(j); LatLonPoint latLonPoint = poiItem.getLatLonPoint(); double latitude = latLonPoint.getLatitude(); double longitude = latLonPoint.getLongitude(); String s = poiItem.toString(); GdybSearchBeen gdybSearchBeen = new GdybSearchBeen(); gdybSearchBeen.setTitle(s); gdybSearchBeen.setLat(latitude); gdybSearchBeen.setLon(longitude); data.add(gdybSearchBeen); } getRecycleAdapter(); simpleAdapter.setNewData(data); recyclerView_search.setVisibility(View.VISIBLE); } @Override public void onPoiItemSearched(PoiItem poiItem, int i) { } }); poiSearch.searchPOIAsyn(); break; } } SimpleAdapter getRecycleAdapter() { if (simpleAdapter == null) { List<GdybSearchBeen> data = new ArrayList<>(); simpleAdapter = new SimpleAdapter(data); simpleAdapter.setOnItemChildClickListener(new BaseQuickAdapter.OnItemChildClickListener() { @Override public void onItemChildClick(BaseQuickAdapter adapter, View view, int position) { selectItem = true; GdybSearchBeen gdybSearchBeen = (GdybSearchBeen) adapter.getData().get(position); sousuo_tv.setText(gdybSearchBeen.getTitle()); recyclerView_search.setVisibility(View.GONE); ViewUtil.hide_keyboard_from(context, sousuo_tv); sousuo_tv.clearFocus(); Double lat = gdybSearchBeen.getLat(); Double lon = gdybSearchBeen.getLon(); x = lon; y = lat; if (marker != null) marker.destroy(); addMarkersToMap(new LatLng(y, x)); getTestdata(); selectItem = false; myLocationStyle.myLocationIcon(BitmapDescriptorFactory.fromResource(R.drawable.gps_point)); mAMap.setMyLocationStyle(myLocationStyle.myLocationType(MyLocationStyle.LOCATION_TYPE_LOCATE)); } }); LinearLayoutManager manager = new LinearLayoutManager(context, LinearLayoutManager.VERTICAL, false); recyclerView_search.setLayoutManager(manager); recyclerView_search.setAdapter(simpleAdapter); } return simpleAdapter; } @Override public void onDistrictSearched(DistrictResult districtResult) { if (districtResult == null || districtResult.getDistrict() == null) { return; } //通过ErrorCode判断是否成功 if (districtResult.getAMapException() != null && districtResult.getAMapException().getErrorCode() == AMapException.CODE_AMAP_SUCCESS) { final DistrictItem item = districtResult.getDistrict().get(0); if (item == null) { return; } LatLonPoint centerLatLng = item.getCenter(); if (centerLatLng != null) { centerJiangxi(); } ThreadUtil.getInstance().execute(new Runnable() { @Override public void run() { String[] polyStr = item.districtBoundary(); if (polyStr == null || polyStr.length == 0) { return; } for (String str : polyStr) { String[] lat = str.split(";"); PolylineOptions polylineOption = new PolylineOptions(); boolean isFirst = true; LatLng firstLatLng = null; for (String latstr : lat) { String[] lats = latstr.split(","); if (isFirst) { isFirst = false; firstLatLng = new LatLng(Double .parseDouble(lats[1]), Double .parseDouble(lats[0])); } polylineOption.add(new LatLng(Double .parseDouble(lats[1]), Double .parseDouble(lats[0]))); } if (firstLatLng != null) { polylineOption.add(firstLatLng); } polylineOption.width(10).color(Color.BLUE); mAMap.addPolyline(polylineOption); } } }); } else { if (districtResult.getAMapException() != null) { ToastUtils.showShort(districtResult.getAMapException().getErrorCode()); } } } @Override public void onRegeocodeSearched(RegeocodeResult result, int rCode) { if (rCode == AMapException.CODE_AMAP_SUCCESS) { if (result != null && result.getRegeocodeAddress() != null && result.getRegeocodeAddress().getFormatAddress() != null) { selectItem = true; sousuo_tv.setText(result.getRegeocodeAddress().getTownship()); selectItem = false; } else { ToastUtils.showShort("没查询到位置"); } } else { ToastUtils.showShort(rCode); } } @Override public void onGeocodeSearched(GeocodeResult geocodeResult, int i) { } //得到江西省范围 private void getJiangxiFanwei() { DistrictSearch search = new DistrictSearch(getApplicationContext()); DistrictSearchQuery query = new DistrictSearchQuery(); query.setKeywords("江西省"); query.setShowBoundary(true); search.setQuery(query); search.setOnDistrictSearchListener(this); search.searchDistrictAsyn(); } /** * 方法必须重写 */ @Override protected void onResume() { super.onResume(); mapView.onResume(); } /** * 方法必须重写 */ @Override protected void onPause() { super.onPause(); mapView.onPause(); } /** * 方法必须重写 */ @Override protected void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); mapView.onSaveInstanceState(outState); } /** * 方法必须重写 */ @Override protected void onDestroy() { super.onDestroy(); if (mapView != null) mapView.onDestroy(); } private void initLocation() { if (ShipeiUtils.isLocationEnabled(context)) { myLocationStyle.myLocationIcon(BitmapDescriptorFactory.fromResource(R.drawable.gps_point)); mAMap.setMyLocationStyle(myLocationStyle.myLocationType(MyLocationStyle.LOCATION_TYPE_SHOW)); //启用定位蓝点 mAMap.setMyLocationEnabled(true); mlocationClient = new AMapLocationClient(this); mLocationOption = new AMapLocationClientOption(); //设置定位模式为高精度模式,Battery_Saving为低功耗模式,Device_Sensors是仅设备模式 mLocationOption.setLocationMode(AMapLocationClientOption.AMapLocationMode.Hight_Accuracy); //设置定位间隔,单位毫秒,默认为2000ms // mLocationOption.setInterval(1000); mLocationOption.setOnceLocation(true); mlocationClient.setLocationOption(mLocationOption); mlocationClient.startLocation(); //设置定位监听 mlocationClient.setLocationListener(new AMapLocationListener() { @Override public void onLocationChanged(AMapLocation aMapLocation) { if (aMapLocation != null) { if (aMapLocation.getErrorCode() == 0) { x = aMapLocation.getLongitude();//获取经度 y = aMapLocation.getLatitude();//获取纬度 LatLng latLng = new LatLng(y, x); getTestdata(); selectItem = true; sousuo_tv.setText(aMapLocation.getAoiName()); // Log.i("location",aMapLocation.toString()); selectItem = false; } else { //显示错误信息ErrCode是错误码,errInfo是错误信息,详见错误码表。 Log.e("AmapError", "location Error, ErrCode:" + aMapLocation.getErrorCode() + ", errInfo:" + aMapLocation.getErrorInfo()); } } } }); } else { //取消定位蓝点 // mAMap.setMyLocationEnabled(false); //移除之前的数据 province.setText(""); city.setText(""); town.setText(""); selectItem = true; sousuo_tv.setText(""); selectItem = false; AlertDialog alertDialog2 = new AlertDialog.Builder(this) .setMessage("是否开启位置信息") .setPositiveButton("是", new DialogInterface.OnClickListener() {//添加"Yes"按钮 @Override public void onClick(DialogInterface dialogInterface, int i) { Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS); startActivity(intent); } }) .setNegativeButton("否", new DialogInterface.OnClickListener() {//添加取消 @Override public void onClick(DialogInterface dialogInterface, int i) { } }) .create(); alertDialog2.show(); } } private void addMarkersToMap(LatLng point) { MarkerOptions markerOption = new MarkerOptions().icon(BitmapDescriptorFactory.fromResource(R.drawable.location)) .position(point) .draggable(false); marker = mAMap.addMarker(markerOption); } @Override public void onMapClick(LatLng point) { // LatLonPoint latLonPoint = new LatLonPoint(point.latitude, point.longitude); // getAddress(latLonPoint); // myLocationStyle.myLocationIcon(BitmapDescriptorFactory.fromResource(R.drawable.gps_point)); // mAMap.setMyLocationStyle(myLocationStyle.myLocationType(MyLocationStyle.LOCATION_TYPE_LOCATE)); if (marker != null) marker.destroy(); addMarkersToMap(point); x = point.longitude; y = point.latitude; clickMap = true; mAMap.moveCamera(CameraUpdateFactory.newCameraPosition(new CameraPosition(point, 7, 0, 0))); Projection projection = mAMap.getProjection(); Point center = projection.toScreenLocation(point); //当前(屏幕上的点 ) mMarkerX = center.x; mMarderY = center.y; int height = ShipeiUtils.getHeight(context) / 5; mMarderY = mMarderY + height; Point pointa = new Point(mMarkerX, mMarderY); LatLng latLng = projection.fromScreenLocation(pointa); mAMap.moveCamera(CameraUpdateFactory.newCameraPosition(new CameraPosition(latLng, 7, 0, 0))); getTestdata(); } /** * 响应逆地理编码 */ public void getAddress(final LatLonPoint latLonPoint) { RegeocodeQuery query = new RegeocodeQuery(latLonPoint, 200, GeocodeSearch.AMAP);// 第一个参数表示一个Latlng,第二参数表示范围多少米,第三个参数表示是火系坐标系还是GPS原生坐标系 geocoderSearch.getFromLocationAsyn(query);// 设置异步逆地理编码请求 } //江西省居中显示 private void centerJiangxi() { LatLngBounds bounds = new LatLngBounds.Builder() .include(new LatLng(24.43704147338867, 118.68101043701172)) .include(new LatLng(30.1299808502, 113.52340240478516)).build(); mAMap.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, 40)); } }
170c811ed7776881c0f2fb3448d083d8932cc419
e4e000db442e88dbad133dad4603521fea5f509e
/src/problems/binarysearch/SearchA2DMatrix.java
344472ef67e8b98320c28566706031227b5bd7bc
[]
no_license
XurajB/data_structure_algorithms
363669c2c4098a3e3bab5069a1d7ef11b8a899a2
3f7825d1bf68deaa13d08bd616ec4425a26e5ac9
refs/heads/master
2023-03-13T17:50:45.818163
2021-03-05T03:20:22
2021-03-05T03:20:22
223,202,201
0
1
null
null
null
null
UTF-8
Java
false
false
1,343
java
package problems.binarysearch; /** * Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: * Integers in each row are sorted from left to right. * The first integer of each row is greater than the last integer of the previous row. * https://leetcode.com/problems/search-a-2d-matrix/ */ public class SearchA2DMatrix { public static void main(String[] args) { int[][] matrix = {{1,3,5,7},{10,11,16,20},{23,30,34,50}}; System.out.println(searchMatrix(matrix, 30)); } // O(log(m*n)), O(1) private static boolean searchMatrix(int[][] matrix, int target) { // treat the matrix as a 1d array since they are sorted from left to right on all rows if (matrix == null || matrix.length == 0) { return false; } int m = matrix.length; int n = matrix[0].length; int left = 0; int right = m * n - 1; while (left <= right) { int mid = left + (right - left) / 2; int midElem = matrix[mid / n][mid % n]; if (midElem == target) { return true; } if (target < midElem){ right = mid - 1; } else { left = mid + 1; } } return false; } }
63f5c9a61c8d40c206e3e4e594ef18e77af7a66e
352a2f4cffbdc317c48a86fb3518504af83edf67
/src/Homework.java
4b0a6bf1ebf5f3cf3c0ffea4312c8a0118fbbdaa
[]
no_license
sgulban55/JavaClasses
0447806c181524cb76e41ca1731070c9bcada95e
0d6e2b4de409cb521d8417f7ec51d6c6cbbafdf4
refs/heads/master
2020-09-04T21:02:55.715277
2019-11-06T02:04:16
2019-11-06T02:04:16
219,891,332
0
0
null
null
null
null
UTF-8
Java
false
false
278
java
import java.util.Scanner; public class Homework { public static void main (String[] args) { Scanner input=new Scanner(System.in); System.out.println("Enter number of worked years"); int workedYears=input.nextInt(); System.out.println("Enter salary"); } }
e23af22630578e83f8f155f12c1d6cbd568bd0c6
abf7501f1bdf5f3e18b6b346cca64c6b6819aaf9
/second/代理模式/src/com/cn/proxy/Client.java
451ea880277ccd092573b568a20a30e3f9dc515b
[]
no_license
chenguowei/-
60d514924ea4516e880070f37f53eebc7e58cc1d
182d868420e65e7b8b9a46e2e8cd34755167e614
refs/heads/master
2019-01-02T00:42:55.690541
2015-05-19T05:29:56
2015-05-19T05:29:56
35,861,093
0
0
null
null
null
null
GB18030
Java
false
false
352
java
package com.cn.proxy; public class Client { public static void main(String[] args) { BeautifulGirl mm = new BeautifulGirl("嗨,美女"); /* * 送美女的舍友当代理人,代替我去送花,送巧克力,送书 */ HerChum hc = new HerChum(mm); hc.giveFlower(); hc.giveChololate(); hc.giveBook(); } }
c8c401234fec3ffefd6dbdccd587e56c1585f800
3209ddab2203990b4725dacbfd50684977618bdc
/src/main/java/com/cetian/module/learning/web/CategoryController.java
cdbc437ae26e3fc76a5f333b81ca1e62c8e84f17
[]
no_license
zangrong/learning
3066be6d9251269477a560d7f6704a95602a7f9d
128c80c65855375c4410b123c34d8121e79838a4
refs/heads/master
2021-09-10T05:45:55.213359
2018-03-21T08:06:59
2018-03-21T08:06:59
126,128,863
0
0
null
null
null
null
UTF-8
Java
false
false
2,532
java
/** * @Copyright: 2018 cetian.com Inc. All rights reserved. * @Title: CategoryController.java * @date 2018年3月21日 上午9:20:57 * @version V1.0 * @author zangrong */ package com.cetian.module.learning.web; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.cetian.base.entity.ResponseMessage; import com.cetian.module.learning.entity.Category; import com.cetian.module.learning.service.CategoryService; /** * @ClassName: CategoryController * @Description: 学习中心 分类 * @date: 2018年3月21日 上午9:20:57 * @author: zangrong * */ @RestController @RequestMapping("/category") public class CategoryController { @Autowired private CategoryService categoryService; /** * @Title: create * @Description: 创建分类 * @param category * @return: ResponseMessage * @throws: */ @PostMapping("/create") public ResponseMessage create(Category category) { ResponseMessage responseMessage = this.categoryService.create(category); return responseMessage; } /** * @Title: update * @Description: 更新分类 * @param id * @param name 分类名 * @param fullPath 路径 * @return: ResponseMessage * @throws: */ @PostMapping("/update") public ResponseMessage update(String id, String name, String fullPath) { ResponseMessage responseMessage = this.categoryService.update(id, name, fullPath); return responseMessage; } /** * @Title: delete * @Description: 根据id删除分类 * @param id * @return: ResponseMessage * @throws: */ @PostMapping("/delete") public ResponseMessage delete(String id) { ResponseMessage responseMessage = this.categoryService.delete(id); return responseMessage; } /** * @Title: get * @Description: 根据id获取分类 * @param id * @return: ResponseMessage * @throws: */ @GetMapping("/get") public ResponseMessage get(String id){ ResponseMessage responseMessage = categoryService.get(id); return responseMessage; } /** * @Title: list * @Description: 获取所有分类列表 * @return: ResponseMessage * @throws: */ @GetMapping("/list") public ResponseMessage list(){ ResponseMessage responseMessage = categoryService.list(); return responseMessage; } }
5696f861f9984b5a1c48e221e4d8589d2d5e65ba
febc20f42188e534faff83536be814c869fb315d
/src/day_18/GiveMeSum.java
8df582d928447ed0e17e8f901c1f5362114812c9
[]
no_license
Abdullah-Sinan/JavaPractice
a42c75d0f5929a4e0d4d111338d9333bf9247f36
b44197aab832285dd9e35b4e79fc1d7e5291f77b
refs/heads/master
2020-06-07T10:22:41.510870
2019-06-20T23:21:29
2019-06-20T23:21:29
192,998,157
0
0
null
null
null
null
UTF-8
Java
false
false
480
java
package day_18; public class GiveMeSum { public static void main(String[] args) { // how do we get the sum of number // starting from one till designed number // user input 5 --> 1+2+3+4+5 = 25 ; int sum = 0 ; // 1 + 0 = 1 // 2 + 1 = 3.... int count = 1 ; while ( count<=100) { sum = sum + count ; System.out.println("current sum :" + sum + " count is " + count ); //System.out.println(count); count++ ; } System.out.println(sum); } }
18f35c5555b3b17e6bdb9144233a41e3654f67e4
9c8c72e1cb53ab7a5e894043d1e473ee7c2cd578
/test/org/apache/catalina/realm/TesterPrincipalNonSerializable.java
02b0cc0d017617188d715bfd5062060a31a59dee
[ "Zlib", "LZMA-exception", "CPL-1.0", "bzip2-1.0.6", "Apache-2.0", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference", "EPL-2.0", "CDDL-1.0" ]
permissive
apache/tomcat
2588e7c8bc859ca20c0219588489aa0e1066d82c
ff53af8b692c179606404d00344511ea7ca8eae3
refs/heads/main
2023-09-05T16:00:56.632660
2023-09-05T14:46:21
2023-09-05T14:46:21
2,493,904
7,606
5,795
Apache-2.0
2023-09-14T16:03:26
2011-10-01T07:00:19
Java
UTF-8
Java
false
false
1,899
java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.catalina.realm; import java.security.Principal; public class TesterPrincipalNonSerializable implements Principal { private final String name; public TesterPrincipalNonSerializable(String name) { this.name = name; } @Override public String getName() { return name; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((name == null) ? 0 : name.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; } TesterPrincipalNonSerializable other = (TesterPrincipalNonSerializable) obj; if (name == null) { if (other.name != null) { return false; } } else if (!name.equals(other.name)) { return false; } return true; } }
6c1291d1f85a633285b1e24eeb3345e2769702b1
2e8a5f7f235da22d9a64152a079a679b1c6c93dd
/Factory/src/com/exmaples/threads/WorkerThread.java
592f05313d0a9971d1153e2fb520f5e4b4b2f6d1
[]
no_license
Evgeniy05/base
5c92572f200de636f09a2c8e16a0304cf89f15d1
c25d6f5d8085c74934dd3b3ae2aa9572a4f4541d
refs/heads/master
2021-01-12T05:48:48.295827
2017-03-18T04:20:58
2017-03-18T04:20:58
77,204,035
0
0
null
null
null
null
UTF-8
Java
false
false
4,236
java
package com.exmaples.threads; import com.exmaples.factory.Accessory; import com.exmaples.factory.Auto; import com.exmaples.factory.Body; import com.exmaples.factory.Engine; import com.exmaples.factory.WorkSpace; import com.exmaples.factory.Worker; public class WorkerThread implements Runnable { private ObjectSychronized obj; private WorkSpace work; private String command; private boolean on = false; private boolean off = false; public WorkerThread(WorkSpace work, String command, ObjectSychronized obj) { this.command = command; this.work = work; this.obj = obj; setOn(); } public void setOn() { on = true; off = false; } public void setOff() { on = false; off = true; } @Override public void run() { int count = 0; // System.out.println(work.factory.getHeadWorker().getListWorkers().size()); // while (on) { System.out.println(Thread.currentThread().getName() + " Start. Command = " + command); processCommand(); try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } System.out.println(Thread.currentThread().getName() + " End."); count++; } // } private void processCommand() { try { Worker worker = work.factory.getHeadWorker().getListWorkers().pollFirst(); work.factory.getHeadWorker().getListWorkers().addLast(worker); // System.out.println(work.factory.getStorageAuto().getValue()); setItem(worker); Auto car = worker.createCar(); addAuto(car); } catch (InterruptedException e) { e.printStackTrace(); } } public void addAuto(Auto car) throws InterruptedException { synchronized (this) { if (work.factory.getStorageAuto().getValue() == work.factory.getStorageAuto().getSize()) { synchronized (obj.getIsFullAuto()) { while (work.factory.getStorageAuto().getValue() >= work.factory.getStorageAuto().getSize()) { obj.getIsFullAuto().wait(); } } } work.factory.getStorageAuto().addItem(car); System.out.println(work.factory.getStorageAuto().getValue()); } synchronized (obj.getIsEmptyAuto()) { obj.getIsEmptyAuto().notify(); } } public void setItem(Worker worker) throws InterruptedException { System.out.println(work.factory.getStorageEngine().getValue()); System.out.println(work.factory.getStorageBody().getValue()); System.out.println(work.factory.getStorageAccessory().getValue()); synchronized (this) { if (work.factory.getStorageEngine().getValue() == 0) { synchronized (obj.getIsEmptyEngine()) { while (work.factory.getStorageEngine().getValue() < 1) { obj.getIsEmptyEngine().wait(); } } } if (work.factory.getStorageBody().getValue() == 0) { synchronized (obj.getIsEmptyBody()) { while (work.factory.getStorageBody().getValue() < 1) { obj.getIsEmptyBody().wait(); } } } if (work.factory.getStorageAccessory().getValue() == 0) { synchronized (obj.getIsEmptyAccessory()) { while (work.factory.getStorageAccessory().getValue() < 1) { obj.getIsEmptyAccessory().wait(); } } } final Engine value1 = work.factory.getStorageEngine().getItem(); System.out.println(value1); worker.setEngine(value1); final Body value2 = work.factory.getStorageBody().getItem(); System.out.println(value2); // valueB = work.factory.getStorageBody().getValue(); worker.setBody(value2); final Accessory value3 = work.factory.getStorageAccessory().getItem(); System.out.println(value3); worker.setAccessory(value3); System.out.println(work.factory.getStorageEngine().getValue()); System.out.println(work.factory.getStorageBody().getValue()); System.out.println(work.factory.getStorageAccessory().getValue()); } { synchronized (obj.getIsFullEngine()) { obj.getIsFullEngine().notifyAll(); } synchronized (obj.getIsFullBody()) { obj.getIsFullBody().notifyAll(); } synchronized (obj.getIsFullAccessory()) { obj.getIsFullAccessory().notifyAll(); } } } @Override public String toString() { return this.command; } }
8024d7c011362af9a43989ea7ec812100fef5764
96196a9b6c8d03fed9c5b4470cdcf9171624319f
/decompiled/com/androidplot/pie/PieRenderer.java
8e3de8bfc2b1d1a41654a7549252de6400752e29
[]
no_license
manciuszz/KTU-Asmens-Sveikatos-Ugdymas
8ef146712919b0fb9ad211f6cb7cbe550bca10f9
41e333937e8e62e1523b783cdb5aeedfa1c7fcc2
refs/heads/master
2020-04-27T03:40:24.436539
2019-03-05T22:39:08
2019-03-05T22:39:08
174,031,152
0
0
null
null
null
null
UTF-8
Java
false
false
7,578
java
package com.androidplot.pie; import android.graphics.Canvas; import android.graphics.Path; import android.graphics.Path.Direction; import android.graphics.PointF; import android.graphics.RectF; import android.graphics.Region.Op; import com.androidplot.exception.PlotRenderException; import com.androidplot.ui.SeriesRenderer; import com.google.android.gms.cast.TextTrackStyle; import java.util.Set; public class PieRenderer extends SeriesRenderer<PieChart, Segment, SegmentFormatter> { private DonutMode donutMode = DonutMode.PERCENT; private float donutSize = 0.5f; private float endDeg = 360.0f; private float startDeg = 0.0f; public enum DonutMode { PERCENT, DP, PIXELS } public PieRenderer(PieChart plot) { super(plot); } public float getRadius(RectF rect) { return rect.width() < rect.height() ? rect.width() / 2.0f : rect.height() / 2.0f; } public void onRender(Canvas canvas, RectF plotArea) throws PlotRenderException { float radius = getRadius(plotArea); PointF origin = new PointF(plotArea.centerX(), plotArea.centerY()); double[] values = getValues(); double scale = calculateScale(values); float offset = this.startDeg; Set<Segment> segments = ((PieChart) getPlot()).getSeriesSet(); RectF rec = new RectF(origin.x - radius, origin.y - radius, origin.x + radius, origin.y + radius); int i = 0; for (Segment segment : segments) { float lastOffset = offset; float sweep = (float) ((values[i] * scale) * 360.0d); offset += sweep; drawSegment(canvas, rec, segment, (SegmentFormatter) ((PieChart) getPlot()).getFormatter(segment, getClass()), radius, lastOffset, sweep); i++; } } protected void drawSegment(Canvas canvas, RectF bounds, Segment seg, SegmentFormatter f, float rad, float startAngle, float sweep) { float donutSizePx; canvas.save(); float cx = bounds.centerX(); float cy = bounds.centerY(); switch (this.donutMode) { case PERCENT: donutSizePx = this.donutSize * rad; break; case PIXELS: if (this.donutSize > 0.0f) { donutSizePx = this.donutSize; } else { donutSizePx = rad + this.donutSize; } break; default: throw new UnsupportedOperationException("Not yet implemented."); } if (Math.abs(sweep - 360.0f) > Float.MIN_VALUE) { PointF r1Outer = calculateLineEnd(cx, cy, rad, startAngle); PointF r1Inner = calculateLineEnd(cx, cy, donutSizePx, startAngle); PointF r2Outer = calculateLineEnd(cx, cy, rad, startAngle + sweep); PointF r2Inner = calculateLineEnd(cx, cy, donutSizePx, startAngle + sweep); Path clip = new Path(); clip.arcTo(new RectF(bounds.left - rad, bounds.top - rad, bounds.right + rad, bounds.bottom + rad), startAngle, sweep); clip.lineTo(cx, cy); clip.close(); canvas.clipPath(clip); Path p = new Path(); p.arcTo(bounds, startAngle, sweep); p.lineTo(r2Inner.x, r2Inner.y); Path path = p; path.arcTo(new RectF(cx - donutSizePx, cy - donutSizePx, cx + donutSizePx, cy + donutSizePx), startAngle + sweep, -sweep); p.close(); canvas.drawPath(p, f.getFillPaint()); canvas.drawLine(r1Inner.x, r1Inner.y, r1Outer.x, r1Outer.y, f.getRadialEdgePaint()); canvas.drawLine(r2Inner.x, r2Inner.y, r2Outer.x, r2Outer.y, f.getRadialEdgePaint()); } else { canvas.save(2); Path chart = new Path(); chart.addCircle(cx, cy, rad, Direction.CW); Path inside = new Path(); inside.addCircle(cx, cy, donutSizePx, Direction.CW); canvas.clipPath(inside, Op.DIFFERENCE); canvas.drawPath(chart, f.getFillPaint()); canvas.restore(); } canvas.drawCircle(cx, cy, donutSizePx, f.getInnerEdgePaint()); canvas.drawCircle(cx, cy, rad, f.getOuterEdgePaint()); canvas.restore(); drawSegmentLabel(canvas, calculateLineEnd(cx, cy, rad - ((rad - donutSizePx) / 2.0f), (sweep / 2.0f) + startAngle), seg, f); } protected void drawSegmentLabel(Canvas canvas, PointF origin, Segment seg, SegmentFormatter f) { canvas.drawText(seg.getTitle(), origin.x, origin.y, f.getLabelPaint()); } protected void doDrawLegendIcon(Canvas canvas, RectF rect, SegmentFormatter formatter) { throw new UnsupportedOperationException("Not yet implemented."); } protected double calculateScale(double[] values) { double total = 0.0d; for (double d : values) { total += d; } return 1.0d / total; } protected double[] getValues() { double[] result = new double[((PieChart) getPlot()).getSeriesSet().size()]; int i = 0; for (Segment seg : ((PieChart) getPlot()).getSeriesSet()) { result[i] = seg.getValue().doubleValue(); i++; } return result; } protected PointF calculateLineEnd(float x, float y, float rad, float deg) { return calculateLineEnd(new PointF(x, y), rad, deg); } protected PointF calculateLineEnd(PointF origin, float rad, float deg) { double radians = (((double) deg) * 3.141592653589793d) / 180.0d; return new PointF(origin.x + ((float) (((double) rad) * Math.cos(radians))), origin.y + ((float) (((double) rad) * Math.sin(radians)))); } public void setDonutSize(float size, DonutMode mode) { switch (mode) { case PERCENT: if (size < 0.0f || size > TextTrackStyle.DEFAULT_FONT_SCALE) { throw new IllegalArgumentException("Size parameter must be between 0 and 1 when operating in PERCENT mode."); } case PIXELS: break; default: throw new UnsupportedOperationException("Not yet implemented."); } this.donutMode = mode; this.donutSize = size; } public Segment getContainingSegment(PointF point) { RectF plotArea = ((PieChart) getPlot()).getPieWidget().getWidgetDimensions().marginatedRect; PointF origin = new PointF(plotArea.centerX(), plotArea.centerY()); double angle = Math.atan2((double) (point.y - origin.y), (double) (point.x - origin.x)) * 57.29577951308232d; if (angle < 0.0d) { angle += 360.0d; } Set<Segment> segments = ((PieChart) getPlot()).getSeriesSet(); int i = 0; double[] values = getValues(); double scale = calculateScale(values); float offset = this.startDeg; for (Segment segment : segments) { float lastOffset = offset; offset += (float) ((values[i] * scale) * 360.0d); if (angle >= ((double) lastOffset) && angle <= ((double) offset)) { return segment; } i++; } return null; } public void setStartDeg(float deg) { this.startDeg = deg; } public float getStartDeg() { return this.startDeg; } public void setEndDeg(float deg) { this.endDeg = deg; } public float getEndDeg() { return this.endDeg; } }
ecd7b674f3224cb9a9c99a768761037e2a59a661
647ec12ce50f06e7380fdbfb5b71e9e2d1ac03b4
/com.tencent.mm/classes.jar/com/tencent/mm/autogen/a/acx.java
3f558b0c8c36bfa9eb454b0a5612ef970437a797
[]
no_license
tsuzcx/qq_apk
0d5e792c3c7351ab781957bac465c55c505caf61
afe46ef5640d0ba6850cdefd3c11badbd725a3f6
refs/heads/main
2022-07-02T10:32:11.651957
2022-02-01T12:41:38
2022-02-01T12:41:38
453,860,108
36
9
null
2022-01-31T09:46:26
2022-01-31T02:43:22
Java
UTF-8
Java
false
false
960
java
package com.tencent.mm.autogen.a; import com.tencent.matrix.trace.core.AppMethodBeat; import com.tencent.mm.protocal.protobuf.dus; import com.tencent.mm.sdk.event.IEvent; public final class acx extends IEvent { public a igk; public b igl; public acx() { this((byte)0); } private acx(byte paramByte) { AppMethodBeat.i(91223); this.igk = new a(); this.igl = new b(); this.order = false; this.callback = null; AppMethodBeat.o(91223); } public static final class a { public Runnable callback; public String scene; } public static final class b { public String content; public String igm; public dus ign; public int type; public String url; } } /* Location: L:\local\mybackup\temp\qq_apk\com.tencent.mm\classes5.jar * Qualified Name: com.tencent.mm.autogen.a.acx * JD-Core Version: 0.7.0.1 */
f03f31379659ecb1a11ae3f0e95d4ecef6472560
ac16267736f9cf4fe3f0556ada25275888c440c1
/app/src/main/java/com/example/fragment/ui/dashboard/DashboardFragment.java
69077325fd574b82f8ce78aababdd6376467ef2b
[]
no_license
Rizkii024/Fragment
b8e92d492524433cd181334c34123442814fd7bc
49b343137ae9bd9f8a7b6c9b81b91566058aab58
refs/heads/master
2020-07-08T01:50:27.598703
2019-08-21T07:40:56
2019-08-21T07:40:56
203,532,730
0
0
null
null
null
null
UTF-8
Java
false
false
1,176
java
package com.example.fragment.ui.dashboard; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import androidx.annotation.Nullable; import androidx.annotation.NonNull; import androidx.fragment.app.Fragment; import androidx.lifecycle.Observer; import androidx.lifecycle.ViewModelProviders; import com.example.fragment.R; public class DashboardFragment extends Fragment { private DashboardViewModel dashboardViewModel; public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { dashboardViewModel = ViewModelProviders.of(this).get(DashboardViewModel.class); View root = inflater.inflate(R.layout.fragment_dashboard, container, false); final TextView textView = root.findViewById(R.id.text_dashboard); dashboardViewModel.getText().observe(this, new Observer<String>() { @Override public void onChanged(@Nullable String s) { textView.setText(s); } }); return root; } }
cac49e02d89d942aca7383e704dd5dce89e33545
4b321bc5dd32cb7bbfb5451b475432a55066053a
/src/_module2/les_07_161207/home_work/task1_cat/CatTest.java
8b349fc8799f0982a174b74da83dfbba9deab2c6
[]
no_license
Golovko-Vitalii/Java-1-course
ae3888fbd996f473fb39552fe4625715b916f338
aee48538c0c4173c81cf3211e1e513c08c562abe
refs/heads/master
2021-01-22T05:42:26.623550
2017-05-26T07:59:52
2017-05-26T07:59:52
92,486,819
0
0
null
null
null
null
UTF-8
Java
false
false
589
java
package _module2.les_07_161207.home_work.task1_cat; public class CatTest { public static void main(String[] args) { Cat cat1 = new Cat("Boss", "black", 6.5); Cat cat2 = new Cat("Jo", "grey", 4.5); Cat cat3 = new Cat("Liza", "white", 2.5); cat1.sound(); System.out.println(cat1.toString()); cat2.sound(); System.out.println(cat2); cat3.sound(); System.out.println(cat3); cat3.setWeight(15); System.out.println(cat3); System.out.println("cat3.getColor() = " + cat3.getColor()); } }
a6d812a42c5d3b03c3d531e2e5f593ffb7adb632
d77872efd60b3acd78f77a646043b0fd7c211998
/app/src/androidTest/java/www/seven/com/jenkinstest/ExampleInstrumentedTest.java
444e75ac0264af996e90df8ac25a8bddd8f6e771
[]
no_license
shiwen500/jenkinsTest
cce0eed94055b6de6e28023599c506af3e1011ac
fb6b9155ce76c65dc7a7744a3cbe41cca8b10190
refs/heads/master
2021-01-15T10:35:06.081406
2017-08-23T00:37:52
2017-08-23T00:37:52
99,589,557
2
1
null
null
null
null
UTF-8
Java
false
false
754
java
package www.seven.com.jenkinstest; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumentation test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() throws Exception { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("www.seven.com.jenkinstest", appContext.getPackageName()); } }
93ea233ca615e7714197220ed559b4d7dae18364
4d6753b95fcf481ec4df560f0d100d73811f7abd
/src/main/java/pl/coderslab/heymployment/domain/Company.java
3d0f39572d7c3c89fea3073de9c364b4cba7e0da
[]
no_license
mkazimie/heyMployment
2a22ba5b44f958026747e04428d8cde1fbeffcf8
dca55219b14c86767e975c11950e72b5e8d938a0
refs/heads/master
2022-12-28T23:21:25.769803
2020-10-17T11:25:18
2020-10-17T11:25:18
261,309,853
0
0
null
null
null
null
UTF-8
Java
false
false
1,128
java
package pl.coderslab.heymployment.domain; import lombok.*; import org.hibernate.validator.constraints.URL; import javax.persistence.*; import javax.validation.constraints.NotBlank; import javax.validation.constraints.Size; import java.util.HashSet; import java.util.Set; @Getter @Setter @NoArgsConstructor @AllArgsConstructor @Entity @Table(name = "companies") public class Company { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) @Column(name = "company_id") private long id; @NotBlank @Size(min = 2, max = 50) @Column(name = "company_name") private String name; @Size(max = 50, message = "* Location cannot contain more than 50 characters") @Column(name = "company_location") private String location; @Size(max = 5000, message = "* Description cannot contain more than 5000 characters") @Column(name = "company_description") private String description; @URL @Column(name = "company_website") private String website; @OneToMany(mappedBy = "company", cascade = CascadeType.REMOVE) private Set<JobOffer> jobOffers = new HashSet<>(); }
77961c35dd3baeb12e75a11f0085cc1205f0effa
67d85dd96b9ef391b1766e778c49d0bf3a175220
/app/src/main/java/com/example/navde/demodriver/MarkerAnimation.java
52d5b2dd1c1c6447a0a64861887de421a9e1a75b
[]
no_license
garewaljaspreet/DriverDemo
b743d0788bebf4cf3fa04463b28076cd1c4bc17a
84908a192b2455d4bb86792fae158a74c554ecd8
refs/heads/master
2021-01-23T02:16:17.930446
2018-02-20T00:39:35
2018-02-20T00:39:35
102,439,177
0
0
null
null
null
null
UTF-8
Java
false
false
7,084
java
package com.example.navde.demodriver; /** * Created by navdeepg on 11/17/2016. */ import android.animation.ObjectAnimator; import android.animation.TypeEvaluator; import android.animation.ValueAnimator; import android.annotation.TargetApi; import android.os.Build; import android.os.Handler; import android.os.SystemClock; import android.util.Property; import android.view.animation.AccelerateDecelerateInterpolator; import android.view.animation.Interpolator; import android.view.animation.LinearInterpolator; import com.google.android.gms.maps.model.LatLng; import com.google.android.gms.maps.model.Marker; /** * MarkerAnimation.java handles smooth animation of marker on map. * @author navdeepg * @version 1.5.1 * */ public class MarkerAnimation { static boolean isMarkerRotating=false; static void animateUserMarkerToGB(final Marker marker, final LatLng finalPosition, final MapsActivity fragment) { final LatLng startPosition = marker.getPosition(); final Handler handler = new Handler(); final long start = SystemClock.uptimeMillis(); final Interpolator interpolator = new AccelerateDecelerateInterpolator(); final float durationInMs = 3000; handler.post(new Runnable() { long elapsed; float t; float v; @Override public void run() { // Calculate progress using interpolator elapsed = SystemClock.uptimeMillis() - start; t = elapsed / durationInMs; v = interpolator.getInterpolation(t); marker.setPosition(new LatLngInterpolator.Spherical().interpolate(v, startPosition, finalPosition)); marker.setRotation(Float.parseFloat(String.valueOf(getBearing(startPosition, finalPosition)))); //rotateMarker(marker,Float.parseFloat(String.valueOf(getBearing(startPosition, finalPosition))),v,startPosition,finalPosition); // Repeat till progress is complete. if (t < 1) { // Post again 16ms later. handler.postDelayed(this, 16); } else { // fragment.IS_USER_ANIM=false; } } }); } static void animateDriverMarkerToGB(final Marker marker, final LatLng finalPosition, final MapsActivity fragment) { final LatLng startPosition = marker.getPosition(); final Handler handler = new Handler(); final long start = SystemClock.uptimeMillis(); final Interpolator interpolator = new AccelerateDecelerateInterpolator(); final float durationInMs = 3000; handler.post(new Runnable() { long elapsed; float t; float v; @Override public void run() { // Calculate progress using interpolator elapsed = SystemClock.uptimeMillis() - start; t = elapsed / durationInMs; v = interpolator.getInterpolation(t); marker.setPosition(new LatLngInterpolator.Spherical().interpolate(v, startPosition, finalPosition)); // Repeat till progress is complete. if (t < 1) { // Post again 16ms later. handler.postDelayed(this, 16); } else { // fragment.IS_DRIVER_ANIM=false; } } }); } @TargetApi(Build.VERSION_CODES.HONEYCOMB) static void animateMarkerToHC(final Marker marker, final LatLng finalPosition, final LatLngInterpolator latLngInterpolator) { final LatLng startPosition = marker.getPosition(); ValueAnimator valueAnimator = new ValueAnimator(); valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { @Override public void onAnimationUpdate(ValueAnimator animation) { float v = animation.getAnimatedFraction(); LatLng newPosition = latLngInterpolator.interpolate(v, startPosition, finalPosition); marker.setPosition(newPosition); } }); valueAnimator.setFloatValues(0, 1); // Ignored. valueAnimator.setDuration(3000); valueAnimator.start(); } @TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH) static void animateMarkerToICS(Marker marker, LatLng finalPosition, final LatLngInterpolator latLngInterpolator) { TypeEvaluator<LatLng> typeEvaluator = new TypeEvaluator<LatLng>() { @Override public LatLng evaluate(float fraction, LatLng startValue, LatLng endValue) { return latLngInterpolator.interpolate(fraction, startValue, endValue); } }; Property<Marker, LatLng> property = Property.of(Marker.class, LatLng.class, "position"); ObjectAnimator animator = ObjectAnimator.ofObject(marker, property, typeEvaluator, finalPosition); animator.setDuration(3000); animator.start(); } static void rotateMarker(final Marker marker, final float toRotation,final float v,final LatLng startNew,final LatLng end) { if(!isMarkerRotating) { final Handler handler = new Handler(); final long start = SystemClock.uptimeMillis(); final float startRotation = marker.getRotation(); final long duration = 1000; final Interpolator interpolator = new LinearInterpolator(); handler.post(new Runnable() { @Override public void run() { isMarkerRotating = true; long elapsed = SystemClock.uptimeMillis() - start; float t = interpolator.getInterpolation((float) elapsed / duration); float rot = t * toRotation + (1 - t) * startRotation; marker.setRotation(-rot > 180 ? rot / 2 : rot); marker.setPosition(new LatLngInterpolator.Spherical().interpolate(v, startNew, end)); if (t < 1.0) { // Post again 16ms later. handler.postDelayed(this, 16); } else { isMarkerRotating = false; } } }); } } static double getBearing(LatLng latLng1,LatLng latLng2) { double PI = 3.14159; double lat1 = latLng1.latitude * PI / 180; double long1 = latLng1.longitude * PI / 180; double lat2 = latLng2.latitude * PI / 180; double long2 = latLng2.longitude * PI / 180; double dLon = (long2 - long1); double y = Math.sin(dLon) * Math.cos(lat2); double x = Math.cos(lat1) * Math.sin(lat2) - Math.sin(lat1) * Math.cos(lat2) * Math.cos(dLon); double brng = Math.atan2(y, x); brng = Math.toDegrees(brng); brng = (brng + 360) % 360; return brng; } }
a8774f092dae836214ae8adcc18d0df27ae235dc
99265cb75c0e1bf75edc7cefb8caabd3e0d43939
/Uploader/src/main/java/com/barnas/uploadapp/storage/local/LocalFileStorage.java
17b63c3cd3d6a09656b5aeba169fb5c0f559b5ba
[]
no_license
barny175/uploader
0049ea1584c3329cfddc055f0656c50250578162
f773f880392006bd651950885bd63d3d277898ea
refs/heads/master
2023-02-20T21:07:26.343966
2021-01-26T07:49:17
2021-01-26T07:49:17
305,771,291
0
0
null
null
null
null
UTF-8
Java
false
false
1,824
java
package com.barnas.uploadapp.storage.local; import com.barnas.uploadapp.storage.FileStorage; import com.barnas.uploadapp.storage.StorageException; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Profile; import org.springframework.stereotype.Service; import java.io.*; /** * @author Martin Barnas ([email protected]) * @since 08.12.2020. */ @Service @Slf4j @Profile("local") public class LocalFileStorage implements FileStorage { private String folder; public LocalFileStorage(@Value("${local-file-storage.folder}") String folder) { this.folder = folder; checkFolderExists(folder); } private void checkFolderExists(String folder) { File file = new File(folder); if (!file.exists()) { file.mkdir(); } } @Override public void store(String id, byte[] bytes) { File file = getFile(id); try (FileOutputStream os = new FileOutputStream(file)) { os.write(bytes); } catch (IOException e) { log.error("Cannot save file " + id, e); throw new StorageException("Cannot save file " + id, e); } } @Override public InputStream get(String filename) { File file = getFile(filename); try { return new FileInputStream(file); } catch (FileNotFoundException e) { log.error("File " + filename + " not found.", e); throw new StorageException("File " + filename + " not found.", e); } } private File getFile(String filename) { return new File(folder, filename); } @Override public void remove(String filename) { File file = getFile(filename); file.delete(); } }
c5d6ee30f42da018bc00acc2a4a1711c35aea43c
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/6/6_109dcfd966b357a77d09061acde8a3614f350f98/QueueContainer/6_109dcfd966b357a77d09061acde8a3614f350f98_QueueContainer_t.java
b1c99c200a49fd4a6f2ca6c66513264a0e122612
[]
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
24,213
java
/* * Copyright (c) 2008-2013, Hazelcast, Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.hazelcast.queue; import com.hazelcast.config.QueueConfig; import com.hazelcast.config.QueueStoreConfig; import com.hazelcast.core.HazelcastException; import com.hazelcast.logging.ILogger; import com.hazelcast.monitor.impl.LocalQueueStatsImpl; import com.hazelcast.nio.ObjectDataInput; import com.hazelcast.nio.ObjectDataOutput; import com.hazelcast.nio.serialization.Data; import com.hazelcast.nio.serialization.IdentifiedDataSerializable; import com.hazelcast.spi.NodeEngine; import com.hazelcast.transaction.TransactionException; import com.hazelcast.util.Clock; import java.io.IOException; import java.util.*; /** * User: ali * Date: 11/22/12 * Time: 11:00 AM */ public class QueueContainer implements IdentifiedDataSerializable { private LinkedList<QueueItem> itemQueue = null; private HashMap<Long, QueueItem> backupMap = null; private final Map<Long, TxQueueItem> txMap = new HashMap<Long, TxQueueItem>(); private final HashMap<Long, Data> dataMap = new HashMap<Long, Data>(); private QueueConfig config; private QueueStoreWrapper store; private NodeEngine nodeEngine; private QueueService service; private ILogger logger; private long idGenerator = 0; private final QueueWaitNotifyKey pollWaitNotifyKey; private final QueueWaitNotifyKey offerWaitNotifyKey; private String name; private long minAge = Long.MAX_VALUE; private long maxAge = Long.MIN_VALUE; private long totalAge; private long totalAgedCount; private boolean isEvictionScheduled = false; public QueueContainer(String name) { this.name = name; pollWaitNotifyKey = new QueueWaitNotifyKey(name, "poll"); offerWaitNotifyKey = new QueueWaitNotifyKey(name, "offer"); } public QueueContainer(String name, QueueConfig config, NodeEngine nodeEngine, QueueService service) throws Exception { this(name); setConfig(config, nodeEngine, service); } public void init(boolean fromBackup){ if (!fromBackup && store.isEnabled()) { Set<Long> keys = store.loadAllKeys(); if (keys != null) { long maxId = -1; for (Long key : keys) { QueueItem item = new QueueItem(this, key, null); getItemQueue().offer(item); maxId = Math.max(maxId, key); } idGenerator = maxId + 1; } } } //TX Methods public boolean txnEnsureReserve(long itemId) { if (txMap.get(itemId) == null) { throw new TransactionException("No reserve for itemId: " + itemId); } return true; } //TX Poll public QueueItem txnPollReserve(long reservedOfferId, String transactionId) { QueueItem item = getItemQueue().peek(); if (item == null) { TxQueueItem txItem = txMap.remove(reservedOfferId); if (txItem == null){ return null; } item = new QueueItem(this, txItem.getItemId(), txItem.getData()); return item; } if (store.isEnabled() && item.getData() == null) { try { load(item); } catch (Exception e) { throw new HazelcastException(e); } } getItemQueue().poll(); txMap.put(item.getItemId(), new TxQueueItem(item).setPollOperation(true).setTransactionId(transactionId)); return item; } public boolean txnPollBackupReserve(long itemId, String transactionId) { QueueItem item = getBackupMap().remove(itemId); if (item == null) { throw new TransactionException("Backup reserve failed: " + itemId); } txMap.put(itemId, new TxQueueItem(item).setPollOperation(true).setTransactionId(transactionId)); return true; } public Data txnCommitPoll(long itemId) { final Data result = txnCommitPollBackup(itemId); scheduleEvictionIfEmpty(); return result; } public Data txnCommitPollBackup(long itemId) { TxQueueItem item = txMap.remove(itemId); if (item == null) { logger.warning("txnCommitPoll operation-> No txn item for itemId: " + itemId); return null; } if (store.isEnabled()) { try { store.delete(item.getItemId()); } catch (Exception e) { logger.severe("Error during store delete: " + item.getItemId(), e); } } return item.getData(); } public boolean txnRollbackPoll(long itemId, boolean backup) { QueueItem item = txMap.remove(itemId); if (item == null) { return false; } if (!backup) { getItemQueue().offerFirst(item); } cancelEvictionIfExists(); return true; } //TX Offer public long txnOfferReserve(String transactionId) { TxQueueItem item = new TxQueueItem(this, nextId(), null).setTransactionId(transactionId).setPollOperation(false); txMap.put(item.getItemId(), item); return item.getItemId(); } public void txnOfferBackupReserve(long itemId, String transactionId) { QueueItem item = new QueueItem(this, itemId, null); Object o = txMap.put(itemId, new TxQueueItem(item).setPollOperation(false).setTransactionId(transactionId)); if (o != null) { logger.severe("txnOfferBackupReserve operation-> Item exists already at txMap for itemId: " + itemId); } } public boolean txnCommitOffer(long itemId, Data data, boolean backup) { QueueItem item = txMap.remove(itemId); if (item == null && !backup) { throw new TransactionException("No reserve :" + itemId); } else if (item == null) { item = new QueueItem(this, itemId, data); } item.setData(data); if (!backup) { getItemQueue().offer(item); cancelEvictionIfExists(); } else{ getBackupMap().put(itemId, item); } if (store.isEnabled()) { try { store.store(item.getItemId(), data); } catch (Exception e) { logger.warning("Exception during store", e); } } return true; } public boolean txnRollbackOffer(long itemId) { final boolean result = txnRollbackOfferBackup(itemId); scheduleEvictionIfEmpty(); return result; } public boolean txnRollbackOfferBackup(long itemId) { QueueItem item = txMap.remove(itemId); if (item == null) { logger.warning("txnRollbackOffer operation-> No txn item for itemId: " + itemId); return false; } return true; } public QueueItem txnPeek(long offerId, String transactionId) { QueueItem item = getItemQueue().peek(); if (item == null) { if ( offerId == -1 ){ return null; } TxQueueItem txItem = txMap.get(offerId); if (txItem == null){ return null; } item = new QueueItem(this, txItem.getItemId(), txItem.getData()); return item; } if (store.isEnabled() && item.getData() == null) { try { load(item); } catch (Exception e) { throw new HazelcastException(e); } } return item; } //TX Methods Ends public long offer(Data data) { QueueItem item = new QueueItem(this, nextId(), null); if (store.isEnabled()) { try { store.store(item.getItemId(), data); } catch (Exception e) { throw new HazelcastException(e); } } if (!store.isEnabled() || store.getMemoryLimit() > getItemQueue().size()) { item.setData(data); } getItemQueue().offer(item); cancelEvictionIfExists(); return item.getItemId(); } public void offerBackup(Data data, long itemId) { QueueItem item = new QueueItem(this, itemId, null); if (!store.isEnabled() || store.getMemoryLimit() > getItemQueue().size()) { item.setData(data); } getBackupMap().put(itemId, item); } public Map<Long, Data> addAll(Collection<Data> dataList) { Map<Long, Data> map = new HashMap<Long, Data>(dataList.size()); List<QueueItem> list = new ArrayList<QueueItem>(dataList.size()); for (Data data : dataList) { QueueItem item = new QueueItem(this, nextId(), null); if (!store.isEnabled() || store.getMemoryLimit() > getItemQueue().size()) { item.setData(data); } map.put(item.getItemId(), data); list.add(item); } if (store.isEnabled() && !map.isEmpty()) { try { store.storeAll(map); } catch (Exception e) { throw new HazelcastException(e); } } if (!list.isEmpty()){ getItemQueue().addAll(list); cancelEvictionIfExists(); } return map; } public void addAllBackup(Map<Long, Data> dataMap) { for (Map.Entry<Long, Data> entry : dataMap.entrySet()) { QueueItem item = new QueueItem(this, entry.getKey(), null); if (!store.isEnabled() || store.getMemoryLimit() > getItemQueue().size()) { item.setData(entry.getValue()); } getBackupMap().put(item.getItemId(), item); } } public QueueItem peek() { QueueItem item = getItemQueue().peek(); if (item == null) { return null; } if (store.isEnabled() && item.getData() == null) { try { load(item); } catch (Exception e) { throw new HazelcastException(e); } } return item; } public QueueItem poll() { QueueItem item = peek(); if (item == null) { return null; } if (store.isEnabled()) { try { store.delete(item.getItemId()); } catch (Exception e) { throw new HazelcastException(e); } } getItemQueue().poll(); age(item, Clock.currentTimeMillis()); scheduleEvictionIfEmpty(); return item; } public void pollBackup(long itemId) { QueueItem item = getBackupMap().remove(itemId); if (item != null) { age(item, Clock.currentTimeMillis());//For Stats } } public Map<Long, Data> drain(int maxSize) { if (maxSize < 0 || maxSize > getItemQueue().size()) { maxSize = getItemQueue().size(); } LinkedHashMap<Long, Data> map = new LinkedHashMap<Long, Data>(maxSize); Iterator<QueueItem> iter = getItemQueue().iterator(); for (int i = 0; i < maxSize; i++) { QueueItem item = iter.next(); if (store.isEnabled() && item.getData() == null) { try { load(item); } catch (Exception e) { throw new HazelcastException(e); } } map.put(item.getItemId(), item.getData()); } if (store.isEnabled() && maxSize != 0) { try { store.deleteAll(map.keySet()); } catch (Exception e) { throw new HazelcastException(e); } } long current = Clock.currentTimeMillis(); for (int i = 0; i < maxSize; i++) { QueueItem item = getItemQueue().poll(); age(item, current); //For Stats } if (maxSize != 0){ scheduleEvictionIfEmpty(); } return map; } public void drainFromBackup(Set<Long> itemIdSet) { for (Long itemId : itemIdSet) { pollBackup(itemId); } dataMap.clear(); } public int size() { return Math.min(config.getMaxSize(),getItemQueue().size()); } public int backupSize(){ return getBackupMap().size(); } public Map<Long, Data> clear() { long current = Clock.currentTimeMillis(); LinkedHashMap<Long, Data> map = new LinkedHashMap<Long, Data>(getItemQueue().size()); for (QueueItem item : getItemQueue()) { map.put(item.getItemId(), item.getData()); age(item, current); // For stats } if (store.isEnabled() && !map.isEmpty()) { try { store.deleteAll(map.keySet()); } catch (Exception e) { throw new HazelcastException(e); } } getItemQueue().clear(); dataMap.clear(); scheduleEvictionIfEmpty(); return map; } public void clearBackup(Set<Long> itemIdSet) { drainFromBackup(itemIdSet); } /** * iterates all items, checks equality with data * This method does not trigger store load. */ public long remove(Data data) { Iterator<QueueItem> iter = getItemQueue().iterator(); while (iter.hasNext()) { QueueItem item = iter.next(); if (data.equals(item.getData())) { if (store.isEnabled()) { try { store.delete(item.getItemId()); } catch (Exception e) { throw new HazelcastException(e); } } iter.remove(); age(item, Clock.currentTimeMillis()); //For Stats scheduleEvictionIfEmpty(); return item.getItemId(); } } return -1; } public void removeBackup(long itemId) { getBackupMap().remove(itemId); } /** * This method does not trigger store load. */ public boolean contains(Collection<Data> dataSet) { for (Data data : dataSet) { boolean contains = false; for (QueueItem item : getItemQueue()) { if (item.getData() != null && item.getData().equals(data)){ contains = true; break; } } if (!contains){ return false; } } return true; } /** * This method triggers store load. */ public List<Data> getAsDataList() { List<Data> dataList = new ArrayList<Data>(getItemQueue().size()); for (QueueItem item : getItemQueue()) { if (store.isEnabled() && item.getData() == null) { try { load(item); } catch (Exception e) { throw new HazelcastException(e); } } dataList.add(item.getData()); } return dataList; } /** * This method triggers store load */ public Map<Long, Data> compareAndRemove(Collection<Data> dataList, boolean retain) { LinkedHashMap<Long, Data> map = new LinkedHashMap<Long, Data>(); for (QueueItem item : getItemQueue()) { if (item.getData() == null && store.isEnabled()) { try { load(item); } catch (Exception e) { throw new HazelcastException(e); } } boolean contains = dataList.contains(item.getData()); if ((retain && !contains) || (!retain && contains)) { map.put(item.getItemId(), item.getData()); } } if (map.size() > 0) { if (store.isEnabled()) { try { store.deleteAll(map.keySet()); } catch (Exception e) { throw new HazelcastException(e); } } Iterator<QueueItem> iter = getItemQueue().iterator(); while (iter.hasNext()) { QueueItem item = iter.next(); if (map.containsKey(item.getItemId())) { iter.remove(); age(item, Clock.currentTimeMillis());//For Stats } } scheduleEvictionIfEmpty(); } return map; } public void compareAndRemoveBackup(Set<Long> itemIdSet) { drainFromBackup(itemIdSet); } private void load(QueueItem item) throws Exception { int bulkLoad = store.getBulkLoad(); bulkLoad = Math.min(getItemQueue().size(), bulkLoad); if (bulkLoad == 1) { item.setData(store.load(item.getItemId())); } else if (bulkLoad > 1) { ListIterator<QueueItem> iter = getItemQueue().listIterator(); HashSet<Long> keySet = new HashSet<Long>(bulkLoad); for (int i = 0; i < bulkLoad; i++) { keySet.add(iter.next().getItemId()); } Map<Long, Data> values = store.loadAll(keySet); dataMap.putAll(values); item.setData(getDataFromMap(item.getItemId())); } } public boolean hasEnoughCapacity() { return hasEnoughCapacity(1); } public boolean hasEnoughCapacity(int delta) { return (getItemQueue().size() + delta) <= config.getMaxSize(); } LinkedList<QueueItem> getItemQueue() { if (itemQueue == null) { itemQueue = new LinkedList<QueueItem>(); if (backupMap != null && !backupMap.isEmpty()) { List<QueueItem> values = new ArrayList<QueueItem>(backupMap.values()); Collections.sort(values); itemQueue.addAll(values); backupMap.clear(); backupMap = null; } } return itemQueue; } Map<Long, QueueItem> getBackupMap(){ if (backupMap == null){ backupMap = new HashMap<Long, QueueItem>(); if (itemQueue != null){ for (QueueItem item: itemQueue){ backupMap.put(item.getItemId(), item); } itemQueue.clear(); itemQueue = null; } } return backupMap; } public Data getDataFromMap(long itemId) { return dataMap.remove(itemId); } public void setConfig(QueueConfig config, NodeEngine nodeEngine, QueueService service) { this.nodeEngine = nodeEngine; this.service = service; logger = nodeEngine.getLogger(QueueContainer.class); store = new QueueStoreWrapper(nodeEngine.getSerializationService()); this.config = new QueueConfig(config); QueueStoreConfig storeConfig = config.getQueueStoreConfig(); store.setConfig(storeConfig, name); } long nextId() { return idGenerator++; } void setId(long itemId) { idGenerator = Math.max(itemId+1, idGenerator); } public QueueWaitNotifyKey getPollWaitNotifyKey() { return pollWaitNotifyKey; } public QueueWaitNotifyKey getOfferWaitNotifyKey() { return offerWaitNotifyKey; } public QueueConfig getConfig() { return config; } private void age(QueueItem item, long currentTime) { long elapsed = currentTime - item.getCreationTime(); if (elapsed <= 0) { return;//elapsed time can not be a negative value, a system clock problem maybe. ignored } totalAgedCount++; totalAge += elapsed; minAge = Math.min(minAge, elapsed); maxAge = Math.max(maxAge, elapsed); } public void setStats(LocalQueueStatsImpl stats) { stats.setMinAge(minAge); stats.setMaxAge(maxAge); long totalAgedCountVal = Math.max(totalAgedCount, 1); stats.setAveAge(totalAge / totalAgedCountVal); } private void scheduleEvictionIfEmpty(){ final int emptyQueueTtl = config.getEmptyQueueTtl(); if (emptyQueueTtl < 0){ return; } if(getItemQueue().isEmpty() && txMap.isEmpty() && !isEvictionScheduled ){ if (emptyQueueTtl == 0){ nodeEngine.getProxyService().destroyDistributedObject(QueueService.SERVICE_NAME, name); } else if (emptyQueueTtl > 0){ service.scheduleEviction(name, emptyQueueTtl*1000); isEvictionScheduled = true; } } } public void cancelEvictionIfExists(){ if (isEvictionScheduled){ service.cancelEviction(name); isEvictionScheduled = false; } } public boolean isEvictable(){ return getItemQueue().isEmpty() && txMap.isEmpty(); } public void rollbackTransaction(String transactionId){ final Iterator<TxQueueItem> iterator = txMap.values().iterator(); while (iterator.hasNext()){ final TxQueueItem item = iterator.next(); if (transactionId.equals(item.getTransactionId())){ iterator.remove(); if (item.isPollOperation()){ getItemQueue().offerFirst(item); cancelEvictionIfExists(); } } } } public void writeData(ObjectDataOutput out) throws IOException { out.writeUTF(name); out.writeInt(getItemQueue().size()); for (QueueItem item : getItemQueue()) { item.writeData(out); } out.writeInt(txMap.size()); for (TxQueueItem item : txMap.values()) { item.writeData(out); } } public void readData(ObjectDataInput in) throws IOException { name = in.readUTF(); int size = in.readInt(); for (int j = 0; j < size; j++) { QueueItem item = new QueueItem(this, -1, null); item.readData(in); getItemQueue().offer(item); setId(item.getItemId()); } int txSize = in.readInt(); for (int j = 0; j < txSize; j++) { TxQueueItem item = new TxQueueItem(this, -1, null); item.readData(in); txMap.put(item.getItemId(), item); setId(item.getItemId()); } } public void destroy(){ if (itemQueue != null){ itemQueue.clear(); } if (backupMap != null){ backupMap.clear(); } txMap.clear(); dataMap.clear(); } public int getFactoryId() { return QueueDataSerializerHook.F_ID; } public int getId() { return QueueDataSerializerHook.QUEUE_CONTAINER; } }
4c70ae1e0ae55ed6c0653f2dbe2fc9995f36d597
2ef1dd02e0c00492b453195400dcfdfbd7f7e353
/sudoku/src/main/java/com/rafalwkot/sudoku/provider/impl/FileTextProvider.java
0cab418d0e90c61dbf5d48f0c58705a955406cb4
[]
no_license
RafalWKot/My-java-challenges
5b7894b188527f9f1d922a9a0a180804475e2816
91891543b848ed3000bb5f6658283ec69bc7dc60
refs/heads/master
2020-04-01T11:29:51.326932
2019-02-21T17:57:04
2019-02-21T17:57:04
153,164,879
0
0
null
null
null
null
UTF-8
Java
false
false
767
java
package com.rafalwkot.sudoku.provider.impl; import com.rafalwkot.sudoku.provider.TextProvider; import java.io.UnsupportedEncodingException; import java.util.HashMap; import java.util.Map; import java.util.ResourceBundle; import java.util.Set; public class FileTextProvider implements TextProvider { private Map<String, String> texts = new HashMap<>(); public String getText(String tag) { return texts.get(tag); } public void loadTexts(String fileName) throws UnsupportedEncodingException { ResourceBundle rb = ResourceBundle.getBundle(fileName); Set<String> tags = rb.keySet(); for (String key : tags) { texts.put(key, new String(rb.getString(key).getBytes("ISO-8859-1"), "UTF-8")); } } }
602a0666adedb74134b06860f8766e8bb3484f8a
24c2e74f0dd707481cc9181f60de9e6f1f7ff5b4
/src/main/java/com/carRental/CarRentalApplication.java
4d69357bb8a2e22c1b5a211a79ac3076d9393f7c
[]
no_license
hubertgorczynski/Car-Rental-Service-Backend
298f782685ab3babc70aba0415de1aa1a38ba88f
1ed4e9ede1fe297ff2ba06178c868f7f942b2e1f
refs/heads/master
2023-06-22T04:02:01.096599
2021-07-19T18:40:22
2021-07-19T18:40:22
292,913,758
2
1
null
null
null
null
UTF-8
Java
false
false
312
java
package com.carRental; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class CarRentalApplication { public static void main(String[] args) { SpringApplication.run(CarRentalApplication.class, args); } }
40297d090b188a0c78a24e1150d7b751203ec9ad
157d9dfb031fd1a413b75e81180ffff7e06f82d0
/src/main/java/com/example/design/mapper/sever/ServerUnitServicesParachuteFlightMapper.java
659581d844335d3f2700f271ae7f316e6c8c9f97
[]
no_license
wangjtkw/design
5035bd8f0b779b8c9ab11f9162b87fc4b3329b1a
a71470c5ca9a0f220d783fddfebc2a3119d12cc4
refs/heads/master
2023-05-27T20:09:43.434476
2021-06-11T08:55:53
2021-06-11T08:55:53
339,734,723
0
0
null
null
null
null
UTF-8
Java
false
false
710
java
package com.example.design.mapper.sever; import com.example.design.entity.server.ServerUnitServicesParachuteFlight; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface ServerUnitServicesParachuteFlightMapper { int deleteByPrimaryKey(Integer serverUnitServicesParachuteFlightId); int insert(ServerUnitServicesParachuteFlight record); ServerUnitServicesParachuteFlight selectByPrimaryKey(Integer serverUnitServicesParachuteFlightId); List<ServerUnitServicesParachuteFlight> selectAll(); int updateByPrimaryKey(ServerUnitServicesParachuteFlight record); int updateByPrimaryKeySelective(ServerUnitServicesParachuteFlight record); }
5ed586a4e91ae51ad7dca7e8c881decf64efa03a
455fe4a3751542cd882a46e602d83587ece4ed54
/Java/Java Arraylist/Solution.java
5498eae0eeaafd56c55c26195fe71ffa325289e3
[ "MIT" ]
permissive
hritikaggarwal2/HackerRankProblems
5bfd2ec163ed117690b0f75bf4a78da73787899d
edc10ec4cbda2d03bc7b9443cdd03b7272cea54a
refs/heads/master
2022-12-25T16:08:30.849110
2020-10-08T04:23:44
2020-10-08T04:23:44
252,270,893
0
0
null
null
null
null
UTF-8
Java
false
false
1,012
java
import java.util.*; public class Solution { private static final Scanner scanner = new Scanner(System.in); public static void main(String[] args) { List<ArrayList<Integer>> outerList = new ArrayList<ArrayList<Integer>>(); int rowCountA = scanner.nextInt(); for (int i = 0; i < rowCountA; i++) { ArrayList<Integer> innerList = new ArrayList<Integer>(); int colCount = scanner.nextInt(); for (int j = 0; j < colCount; j++) { innerList.add(scanner.nextInt()); } outerList.add(innerList); } int rowCountB = scanner.nextInt(); for (int i = 0; i < rowCountB; i++) { int a = scanner.nextInt(); int b = scanner.nextInt(); try { int num = outerList.get(a - 1).get(b - 1); System.out.println(num); } catch (Exception E) { System.out.println("ERROR!"); } } } }
6557bf20a21c49c078faeb6d11c9c26a8f520786
fdeba9d9d3afac265eaf43c2f08a5593362d7533
/test/jp/iwin/pds/xml2db/common/constant/PCTCodeType.java
ce33e5bd12e34519ca8580d673e70575b9b911ce
[]
no_license
song-chu/xproject
81fc5cbb4adee203b551ba4f3c3906e200840c88
db54fc519817ae07ede2db3e2a80b6f24dbfade0
refs/heads/master
2021-01-10T22:13:39.821726
2015-06-30T02:17:20
2015-06-30T02:17:20
38,280,967
0
0
null
null
null
null
SHIFT_JIS
Java
false
false
1,588
java
package jp.iwin.pds.xml2db.common.constant; /** * 内部Javaデータ型のタイプ定義。 * <DL> * <DT>使用目的/機能概要: * <DD>内部Javaデータ型のタイプを定義するenumクラス。 * <DT>最終開発リビジョン: * <DD>$Revision: 1037 $ * <DT>最終開発日時: * <DD>$Date: 2010-12-07 10:21:17 +0900 (轣ォ, 07 12 2010) $ * <DT>初版情報(作成日・作成者): * <DD>2011/12/01 EBS * <DT>変更履歴(変更日、変更者、変更内容): * <DD> * <UL> * <LI>2011/12/01 EBS 新規作成 * </UL> * </DL> * <P>Copyright(c)2011 Nissay Information Technology Co.,Ltd.</P> * @version 1.0 * @since 1.0 * @author $Author: seo.yi $ */ public enum PCTCodeType { /** * データ型:Integer */ INTEGER("java.lang.Integer"), /** * データ型:Boolean */ BOOLEAN("java.lang.Boolean"), ; /** * 対応させる内部Javaデータ型 */ private String value; /** * コンストラクタ。 * <DL> * <DT>使用目的/機能概要: * <DD>コンストラクタクラス。 * </DL> * @param value 対応させる内部Javaデータ型 */ private PCTCodeType(String value) { this.value = value; } /** * 内部Javaデータ型取得。 * <DL> * <DT>使用目的/機能概要: * <DD>文字列表現を対応する内部Javaデータ型を返す。 * </DL> * @return 内部Javaデータ型 */ @Override public String toString() { return this.value.intern(); } }
b7b6666eb17ff6be3d48c5a8a479bc0817aba9e1
3a87d409248095850c423125402147e6317b0d9e
/src/com/blog/dao/DisplayPostDao.java
3212c1a524ae6591ee5ee006a071b24c3a139014
[]
no_license
PartheOmkar/Dynamic-Blog
251e14bb993f8f22d02adae62ef7691ebe6f3d15
10b84d27d8575f71351d93455995881379321916
refs/heads/main
2023-04-25T04:00:37.565585
2021-05-12T07:15:41
2021-05-12T07:15:41
347,565,174
0
1
null
null
null
null
UTF-8
Java
false
false
3,353
java
package com.blog.dao; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.Statement; import java.sql.Timestamp; import java.util.ArrayList; import com.blog.entities.CreatePost; import com.blog.entities.DisplayPost; public class DisplayPostDao { private Connection con; public DisplayPostDao(Connection con) { super(); this.con = con; } public ArrayList<DisplayPost> getPostData(){ ArrayList<DisplayPost> list = new ArrayList<>(); try { String queary = "SELECT p.pid, p.pTitle, p.pDescription, p.pData, c.cName, u.name, p.pDate FROM post p INNER JOIN Category c ON p.cId = c.cId INNER JOIN user u ON p.uId = u.ID"; Statement st = this.con.createStatement(); ResultSet set = st.executeQuery(queary); while(set.next()) { int pid = set.getInt("pid"); String pName = set.getString("pTitle"); String pDescription = set.getString("pDescription"); String pData = set.getString("pData"); String uName = set.getString("name"); String cName = set.getString("cName"); Timestamp pDate = Timestamp.valueOf(set.getString("pDate")); DisplayPost displayPost = new DisplayPost(pid, pName, pDescription, pData, uName, cName, pDate); list.add(displayPost); } }catch(Exception e) { e.printStackTrace(); } return list; } public DisplayPost getPostDataById(int pid) { DisplayPost dp = null; try { String queary = "SELECT p.pid, p.pTitle, p.pDescription, p.pData, c.cName, u.name, p.pDate\n" + "FROM post p INNER JOIN Category c ON p.cId = c.cId\n" + "INNER JOIN user u ON p.uId = u.ID\n" + "WHERE p.pid= ?"; PreparedStatement pstmt = this.con.prepareStatement(queary); pstmt.setInt(1,pid); ResultSet res = pstmt.executeQuery(); while(res.next()) { dp = new DisplayPost(); dp.setPid(pid); dp.setpName(res.getString("pTitle")); dp.setpDescription(res.getString("pDescription")); dp.setpData(res.getString("pData")); dp.setuName(res.getString("name")); dp.setcName(res.getString("cName")); dp.setpDate(Timestamp.valueOf(res.getString("pDate"))); } }catch(Exception e) { e.printStackTrace(); } return dp; } public ArrayList<DisplayPost> getPostByCid(int cid){ ArrayList<DisplayPost> pbycid = new ArrayList<>(); DisplayPost dp = null; try { String qu = "SELECT p.pid, p.pTitle, p.pDescription, p.pData, c.cName, u.name, p.pDate\n" + "FROM post p INNER JOIN Category c ON p.cId = c.cId\n" + "INNER JOIN user u ON p.uId = u.ID\n" + "WHERE c.cId= ?"; PreparedStatement st = this.con.prepareStatement(qu); st.setInt(1, cid); ResultSet set = st.executeQuery(); while(set.next()) { int pid = set.getInt("pid"); String pName = set.getString("pTitle"); String pDescription = set.getString("pDescription"); String pData = set.getString("pData"); String uName = set.getString("name"); String cName = set.getString("cName"); Timestamp pDate = Timestamp.valueOf(set.getString("pDate")); dp = new DisplayPost(pid, pName, pDescription, pData, uName, cName, pDate); pbycid.add(dp); } }catch (Exception e) { e.printStackTrace(); } return pbycid; } }
daf637af36eabe55721a8541b383a19aa6a4696a
c2f6768c4a1bd4fea134e1b33acd238e2f84f70a
/app/src/main/java/com/ztesoft/mvparchitectureandroid/data/network/AppHttpHelper.java
8aeced78dd295646be1bbc409370688f8baf7e9e
[]
no_license
chen504554911/MvpArchitectureAndroid
f5a9d2d8b1b6e741b6350c56b5e8255ea4120010
6d0772abd69ff9085eda172a240f852ce36c1dec
refs/heads/master
2020-04-23T01:52:15.860456
2019-02-18T01:52:26
2019-02-18T01:52:26
170,827,020
1
0
null
null
null
null
UTF-8
Java
false
false
618
java
package com.ztesoft.mvparchitectureandroid.data.network; import com.ztesoft.mvparchitectureandroid.data.network.model.News; import javax.inject.Inject; import io.reactivex.Flowable; /** * @author chenyx * @class describe * @time 2019/1/14 18:58 * @chang time */ public class AppHttpHelper implements HttpHelper { private ApiRequest mApiRequest; @Inject public AppHttpHelper(ApiRequest apiRequest) { this.mApiRequest = apiRequest; } @Override public Flowable<NewsResponse<News>> getNews() { return mApiRequest.getNews("top", "c1f646b699352b695a35dc81a52fc996"); } }
41596159399c3cc6cb94966b001dcb6559dfe60a
25b5cccaf51f44d4116af8886128ade5ebf2b788
/Channel/app/src/main/java/com/zlove/act/independent/ActIndependentFindPwd.java
ff4f5f47329e8645970b9cffaf539db33e063d45
[]
no_license
ZLOVE320483/ChannelSpace
8f8e5668b335bda8a4bc48118d44c26f7d0b23d0
74610334b2b4b0bb65de3d4d9a5ff2c443ba6b37
refs/heads/master
2021-05-18T01:01:25.383994
2020-03-29T13:31:02
2020-03-29T13:31:02
251,036,899
0
0
null
null
null
null
UTF-8
Java
false
false
709
java
package com.zlove.act.independent; import android.os.Bundle; import com.zlove.base.ActChannelBase; import com.zlove.channel.R; import com.zlove.frag.independent.IndependentFindPwdFragment; public class ActIndependentFindPwd extends ActChannelBase { private IndependentFindPwdFragment fragment; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.common_act_fragment_container); fragment = new IndependentFindPwdFragment(); if (savedInstanceState == null) { getSupportFragmentManager().beginTransaction().replace(R.id.id_framework, fragment).commit(); } } }
a806740b522803591c25fb986d696d304abb474e
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/17/17_fde81b52e3894c070890f8a24f9bb8ddc0721fc8/ImageImpl/17_fde81b52e3894c070890f8a24f9bb8ddc0721fc8_ImageImpl_s.java
0d318ed6e12934f7be058d4d03333f9e7abc841a
[]
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
2,158
java
/* * This is a utility project for wide range of applications * * Copyright (C) 2010 Imran M Yousuf ([email protected]) * * 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 3 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. * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 10-1 USA */ package com.smartitengineering.util.opensearch.impl; import com.smartitengineering.util.opensearch.api.Image; import java.net.URI; import org.apache.commons.lang.StringUtils; /** * An implementation of {@link Image} * @author imyousuf */ class ImageImpl implements Image { private int height = -1, width = -1; private String mimeType = null; private URI imageUri; public ImageImpl(URI imageUri) { setImageUri(imageUri); } public void setHeight(int height) { if(height <= 0) { return; } this.height = height; } public void setImageUri(URI imageUri) { if(imageUri == null) { throw new IllegalArgumentException("Image URI can not be set to Null!"); } this.imageUri = imageUri; } public void setMimeType(String mimeType) { if(StringUtils.isBlank(mimeType)) { return; } this.mimeType = mimeType; } public void setWidth(int width) { if(width <= 0) { return; } this.width = width; } public int getHeight() { return height; } public int getWidth() { return width; } public String getMimeType() { return mimeType; } public URI getImageUri() { return imageUri; } }
ba1a2fb76b23a39b5603a5fa7c10926b3ce3e8f4
16fca6b9abd7772794a868cadadeea97182968ee
/level10/lesson11/home06/Solution.java
2985515dfa3e8c27278d11758dd9605ad68ff781
[]
no_license
aspernate/beginner
b6a5d25c8381cc1e59d8afd6cb09aa93f3e997a1
6da689eb9b6544aa1e0d1bb35795121a54984982
refs/heads/master
2021-01-11T08:17:49.001225
2016-11-29T14:08:16
2016-11-29T14:08:16
72,213,542
0
0
null
null
null
null
UTF-8
Java
false
false
1,967
java
package com.javarush.test.level10.lesson11.home06; /* Конструкторы класса Human Напиши класс Human с 6 полями. Придумай и реализуй 10 различных конструкторов для него. Каждый конструктор должен иметь смысл. */ public class Solution { public static void main(String[] args) { } public static class Human { String name; int age; boolean sex; String born; int weight; int height; public Human(String name) { this.name = name; } public Human(String name, int age) { this.name = name; this.age = age; } public Human(String name, boolean sex) { this.name = name; this.sex = sex; } public Human(String name, String born) { this.name = name; this.born = born; } public Human(String name, int age, boolean sex) { this.name = name; this.age = age; this.sex = sex; } public Human(String name, boolean sex, String born) { this.name = name; this.sex = sex; this.born = born; } public Human(String name, int weight, int height){ this.name = name; this.weight = weight; this.height = height; } public Human(int age, int weight, int height){ this.age = age; this.weight = weight; this.height = height; } public Human(boolean sex, int weight, int height){ this.sex = sex; this.weight = weight; this.height = height; } public Human(int weight, int height){ this.sex = sex; this.weight = weight; this.height = height; } } }
e38e609bb3420147dcb0ef467b0af5f81a16e70b
225894f059349c4a578d9c8c5286b71d2541ff82
/src/main/java/com/test/javanio/ThreadClient.java
8a614e2d0f69bf31d15b84e231cfbfa32ee4b124
[]
no_license
Mr2277/JavaNio
29a2dd2e2b7fc28fbbf847f56a05562c37db6c98
5a551bfab51662c913b43b4199e71f65f881947e
refs/heads/master
2020-03-10T21:04:23.040946
2018-04-17T06:44:45
2018-04-17T06:44:45
129,584,452
0
0
null
null
null
null
UTF-8
Java
false
false
512
java
package com.test.javanio; import java.io.IOException; public class ThreadClient implements Runnable{ private NIOClient nioClient; public ThreadClient(NIOClient nioClient){ this.nioClient=nioClient; } @Override public void run() { try { nioClient.initClient("localhost", 8989); nioClient.listen(); } catch (IOException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); } } }
ee18a6f9d2f7a21a5ede4d6f86f60a88d1047480
e736216623568e71ba1a824cf8b3480c87d58dc1
/src/main/java/br/com/claro/inexus/service/UsuarioAmazonService.java
2599af2731a461815109840401240d20d3b4f335
[]
no_license
danielbarcellos/inexus
2fc40273b1855365d4968d1acb649081e5e7442a
e1688bf0a78f164eaa550996c3174732ba36cace
refs/heads/master
2020-03-08T06:13:22.432806
2018-04-03T20:39:48
2018-04-03T20:39:48
127,965,980
0
0
null
null
null
null
UTF-8
Java
false
false
1,415
java
package br.com.claro.inexus.service; import java.math.BigDecimal; import java.util.Optional; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import br.com.claro.inexus.persistence.amazon.Usuario; import br.com.claro.inexus.persistence.amazon.repository.UsuarioAmazonRepository; @Service @Transactional("amazonTransactionManager") public class UsuarioAmazonService implements UsuarioService<Usuario> { @Autowired UsuarioAmazonRepository usuarioAmazonRepository; @Autowired JdbcTemplate amanzonJdbcTemplate; @Override public void createUsuario(Usuario usuario) { this.usuarioAmazonRepository.save(usuario); } @Override public Usuario buscarUsuarioPeloId(Long id) { Optional<Usuario> optional = this.usuarioAmazonRepository.findById(id); return optional.get(); } @Override public void createUsuario(String nome, BigDecimal idGrupoUsuario, BigDecimal idUsuarioSenha, boolean ativo, boolean trace) { final String INSERT = "INSERT INTO NETHITZ.USUARIO(ID_USUARIO, NM_USUARIO, ID_GRUPO_USUARIO, ID_USUARIO_SENHA, FC_ATIVO, FC_TRACE) VALUES (NETHITZ.SQ_USUARIO.NEXTVAL, ?, ?, ?, ?, ?)"; this.amanzonJdbcTemplate.update(INSERT, nome, idGrupoUsuario, idUsuarioSenha, ativo ? "S" : "N", trace ? "S" : "N"); } }
58fb76cfd73f0345ac6af0ad1aa89f4046abc681
66f3174237b3163ef879933348d2e6f80d985caa
/app/src/main/java/com/colpencil/redwood/model/CollectionModel.java
2b644384050f42f78518fe3fcec0bcf96b0d7e39
[]
no_license
zsj6102/hongmu2.0
77ce2b4a0b9db630c78baa3938cbe0046f6515a2
7e9ab54ecf47da19fd1f2415cda1dbc9ade30a73
refs/heads/master
2021-01-01T04:42:04.518022
2017-10-31T03:35:33
2017-10-31T03:35:36
97,228,220
0
0
null
null
null
null
UTF-8
Java
false
false
2,924
java
package com.colpencil.redwood.model; import com.colpencil.redwood.api.RedWoodApi; import com.colpencil.redwood.base.App; import com.colpencil.redwood.bean.EntityResult; import com.colpencil.redwood.bean.result.CommonResult; import com.colpencil.redwood.function.config.UrlConfig; import com.colpencil.redwood.model.imples.ICollectionModel; import com.property.colpencil.colpencilandroidlibrary.Function.MianCore.RetrofitManager; import com.property.colpencil.colpencilandroidlibrary.Function.Tools.SharedPreferencesUtil; import java.util.HashMap; import rx.Observable; import rx.Observer; import rx.android.schedulers.AndroidSchedulers; import rx.functions.Func1; import rx.schedulers.Schedulers; /** * Created by xiaobao on 2016/10/30. */ public class CollectionModel implements ICollectionModel { private Observable<CommonResult> share; private Observable<EntityResult<String>> record; @Override public void share(int ote_id) { share = RetrofitManager.getInstance(1, App.getInstance(), UrlConfig.PHILHARMONIC_HOST) .createApi(RedWoodApi.class) .postShare(ote_id, SharedPreferencesUtil.getInstance(App.getInstance()).getInt("member_id"), SharedPreferencesUtil.getInstance(App.getInstance()).getString("token")) .subscribeOn(Schedulers.io()) .map(new Func1<CommonResult, CommonResult>() { @Override public CommonResult call(CommonResult commonResult) { return commonResult; } }).observeOn(AndroidSchedulers.mainThread()); } @Override public void subShare(Observer<CommonResult> observer) { share.subscribe(observer); } @Override public void recordShare(int ote_id, String platform) { HashMap<String, String> params = new HashMap<>(); params.put("type", 1 + ""); params.put("platform", platform); params.put("id", ote_id + ""); params.put("member_id", SharedPreferencesUtil.getInstance(App.getInstance()).getInt("member_id") + ""); params.put("token", SharedPreferencesUtil.getInstance(App.getInstance()).getString("token")); record = RetrofitManager.getInstance(1, App.getInstance(), UrlConfig.PHILHARMONIC_HOST) .createApi(RedWoodApi.class) .addUpShare(params) .subscribeOn(Schedulers.io()) .map(new Func1<EntityResult<String>, EntityResult<String>>() { @Override public EntityResult<String> call(EntityResult<String> result) { return result; } }).observeOn(AndroidSchedulers.mainThread()); } @Override public void subRecord(Observer<EntityResult<String>> observer) { record.subscribe(observer); } }
f1f9e492ca1eea1c8985b04f9950d1a3986a1aa8
adf7bdd0e2b64deca72f208699a245328c696f15
/Microservice_WebClient/movie-catalog-service/src/main/java/com/example/moviecatalogservice/model/Movie.java
7563485da454b43a7ea24737df03868106c92324
[]
no_license
pratham0110/Microservice
93a93e163a3a8b3bc69ea64b40ade3cc8dc4e3a9
a74dddf499a40016b868550e624fc683488be89b
refs/heads/master
2022-11-13T01:38:25.749758
2020-07-08T11:15:52
2020-07-08T11:15:52
278,019,889
0
0
null
null
null
null
UTF-8
Java
false
false
599
java
package com.example.moviecatalogservice.model; public class Movie { private String movieId; private String movie_name; public Movie() {} public Movie(String movieId, String movie_name) { this.movieId = movieId; this.movie_name = movie_name; } public String getMovieId() { return movieId; } public void setMovieId(String movieId) { this.movieId = movieId; } public String getMovie_name() { return movie_name; } public void setMovie_name(String movie_name) { this.movie_name = movie_name; } }
66d37145df613896464ce1f7e72c305939405dcd
de7b44a84d26b894829c01d6414bffa345d79c2f
/example/java/org/drinkless/tdlib/Client.java
3ff95f46ceef9251fd24a38b5a7cf157511b5ed1
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference", "JSON" ]
permissive
ivk1800/td
ec9033df80f3940b15bc2669823060e8f0c8edca
1e1ab5d1b0e4811e6d9e1584a82da08448d0cada
refs/heads/master
2022-02-22T12:47:24.644957
2022-02-01T10:31:42
2022-02-01T10:31:42
443,288,775
1
0
BSL-1.0
2021-12-31T07:49:58
2021-12-31T07:49:58
null
UTF-8
Java
false
false
8,725
java
// // Copyright Aliaksei Levin ([email protected]), Arseny Smirnov ([email protected]) 2014-2022 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // package org.drinkless.tdlib; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.atomic.AtomicLong; /** * Main class for interaction with the TDLib. */ public final class Client { /** * Interface for handler for results of queries to TDLib and incoming updates from TDLib. */ public interface ResultHandler { /** * Callback called on result of query to TDLib or incoming update from TDLib. * * @param object Result of query or update of type TdApi.Update about new events. */ void onResult(TdApi.Object object); } /** * Interface for handler of exceptions thrown while invoking ResultHandler. * By default, all such exceptions are ignored. * All exceptions thrown from ExceptionHandler are ignored. */ public interface ExceptionHandler { /** * Callback called on exceptions thrown while invoking ResultHandler. * * @param e Exception thrown by ResultHandler. */ void onException(Throwable e); } /** * Sends a request to the TDLib. * * @param query Object representing a query to the TDLib. * @param resultHandler Result handler with onResult method which will be called with result * of the query or with TdApi.Error as parameter. If it is null, nothing * will be called. * @param exceptionHandler Exception handler with onException method which will be called on * exception thrown from resultHandler. If it is null, then * defaultExceptionHandler will be called. * @throws NullPointerException if query is null. */ public void send(TdApi.Function query, ResultHandler resultHandler, ExceptionHandler exceptionHandler) { long queryId = currentQueryId.incrementAndGet(); if (resultHandler != null) { handlers.put(queryId, new Handler(resultHandler, exceptionHandler)); } nativeClientSend(nativeClientId, queryId, query); } /** * Sends a request to the TDLib with an empty ExceptionHandler. * * @param query Object representing a query to the TDLib. * @param resultHandler Result handler with onResult method which will be called with result * of the query or with TdApi.Error as parameter. If it is null, then * defaultExceptionHandler will be called. * @throws NullPointerException if query is null. */ public void send(TdApi.Function query, ResultHandler resultHandler) { send(query, resultHandler, null); } /** * Synchronously executes a TDLib request. Only a few marked accordingly requests can be executed synchronously. * * @param query Object representing a query to the TDLib. * @return request result. * @throws NullPointerException if query is null. */ public static TdApi.Object execute(TdApi.Function query) { return nativeClientExecute(query); } /** * Creates new Client. * * @param updateHandler Handler for incoming updates. * @param updateExceptionHandler Handler for exceptions thrown from updateHandler. If it is null, exceptions will be iggnored. * @param defaultExceptionHandler Default handler for exceptions thrown from all ResultHandler. If it is null, exceptions will be iggnored. * @return created Client */ public static Client create(ResultHandler updateHandler, ExceptionHandler updateExceptionHandler, ExceptionHandler defaultExceptionHandler) { Client client = new Client(updateHandler, updateExceptionHandler, defaultExceptionHandler); synchronized (responseReceiver) { if (!responseReceiver.isRun) { responseReceiver.isRun = true; Thread receiverThread = new Thread(responseReceiver, "TDLib thread"); receiverThread.setDaemon(true); receiverThread.start(); } } return client; } private static class ResponseReceiver implements Runnable { public boolean isRun = false; @Override public void run() { while (true) { int resultN = nativeClientReceive(clientIds, eventIds, events, 100000.0 /*seconds*/); for (int i = 0; i < resultN; i++) { processResult(clientIds[i], eventIds[i], events[i]); events[i] = null; } } } private void processResult(int clientId, long id, TdApi.Object object) { boolean isClosed = false; if (id == 0 && object instanceof TdApi.UpdateAuthorizationState) { TdApi.AuthorizationState authorizationState = ((TdApi.UpdateAuthorizationState) object).authorizationState; if (authorizationState instanceof TdApi.AuthorizationStateClosed) { isClosed = true; } } Handler handler = id == 0 ? updateHandlers.get(clientId) : handlers.remove(id); if (handler != null) { try { handler.resultHandler.onResult(object); } catch (Throwable cause) { ExceptionHandler exceptionHandler = handler.exceptionHandler; if (exceptionHandler == null) { exceptionHandler = defaultExceptionHandlers.get(clientId); } if (exceptionHandler != null) { try { exceptionHandler.onException(cause); } catch (Throwable ignored) { } } } } if (isClosed) { updateHandlers.remove(clientId); // there will be no more updates defaultExceptionHandlers.remove(clientId); // ignore further exceptions clientCount.decrementAndGet(); } } private static final int MAX_EVENTS = 1000; private final int[] clientIds = new int[MAX_EVENTS]; private final long[] eventIds = new long[MAX_EVENTS]; private final TdApi.Object[] events = new TdApi.Object[MAX_EVENTS]; } private final int nativeClientId; private static final ConcurrentHashMap<Integer, ExceptionHandler> defaultExceptionHandlers = new ConcurrentHashMap<Integer, ExceptionHandler>(); private static final ConcurrentHashMap<Integer, Handler> updateHandlers = new ConcurrentHashMap<Integer, Handler>(); private static final ConcurrentHashMap<Long, Handler> handlers = new ConcurrentHashMap<Long, Handler>(); private static final AtomicLong currentQueryId = new AtomicLong(); private static final AtomicLong clientCount = new AtomicLong(); private static final ResponseReceiver responseReceiver = new ResponseReceiver(); private static class Handler { final ResultHandler resultHandler; final ExceptionHandler exceptionHandler; Handler(ResultHandler resultHandler, ExceptionHandler exceptionHandler) { this.resultHandler = resultHandler; this.exceptionHandler = exceptionHandler; } } private Client(ResultHandler updateHandler, ExceptionHandler updateExceptionHandler, ExceptionHandler defaultExceptionHandler) { clientCount.incrementAndGet(); nativeClientId = createNativeClient(); if (updateHandler != null) { updateHandlers.put(nativeClientId, new Handler(updateHandler, updateExceptionHandler)); } if (defaultExceptionHandler != null) { defaultExceptionHandlers.put(nativeClientId, defaultExceptionHandler); } send(new TdApi.GetOption("version"), null, null); } @Override protected void finalize() throws Throwable { send(new TdApi.Close(), null, null); } private static native int createNativeClient(); private static native void nativeClientSend(int nativeClientId, long eventId, TdApi.Function function); private static native int nativeClientReceive(int[] clientIds, long[] eventIds, TdApi.Object[] events, double timeout); private static native TdApi.Object nativeClientExecute(TdApi.Function function); }
4950631a9d438a1109a121888bfaf2e98e878a2e
aa0f04a7d87442da6f2d5cac2643c5ec79ee8d56
/src/java/LogJava.java
82bc74beb0dabdd3d21905dde4345e7a8550ff10
[]
no_license
santhosh-kadavy/TestApplication
767e2c459ed90021e01aae83e6fd506efe34b498
1346486dad35d28e0b1799274e8113168261df6c
refs/heads/master
2021-01-10T04:01:19.104173
2016-03-17T10:57:11
2016-03-17T10:57:11
54,111,157
0
0
null
null
null
null
UTF-8
Java
false
false
936
java
import java.io.IOException; import java.time.Clock; import java.util.logging.FileHandler; import java.util.logging.Handler; import java.util.logging.Level; import java.util.logging.Logger; import java.util.logging.SimpleFormatter; /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author itspe */ public class LogJava { public static Logger logger; public static void main(String args[]){ try { Handler fh = new FileHandler("/home/ubuntu/mq.log"); fh.setLevel (Level.FINE); logger = Logger.getLogger(LogJava.class.getName()); logger.addHandler(fh); } catch (IOException e) { e.printStackTrace(); } logger.log(Level.SEVERE, "Hi this is my first log"); System.out.print("you reached here"); } }
f624591468e63ff2a551548ac190f719a6ed97f4
235fe2ce9860ae3010a491bdcfde12791ffcd79c
/mingrui-shop-parent/mingrui-shop-basics/mingrui-shop-basics-zuul-server/src/main/java/com/baidu/filter/LoginFilter.java
c2fbbf63e470e5b67dda7b4dfcaf814c8160121b
[]
no_license
wangshanle97/mingrui
ae2b55d154576a1ae9f9f2f78f3d73353a8295c4
6e534e11d5187f257f3acfc0ac8337f6d74f188a
refs/heads/master
2023-01-20T16:10:49.835123
2020-11-13T11:51:03
2020-11-13T11:51:03
290,695,154
0
0
null
null
null
null
UTF-8
Java
false
false
2,334
java
package com.baidu.filter; import com.baidu.config.JwtConfig; import com.baidu.shop.utils.CookieUtils; import com.baidu.shop.utils.JwtUtil; import com.netflix.zuul.ZuulFilter; import com.netflix.zuul.context.RequestContext; import com.netflix.zuul.exception.ZuulException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.cloud.netflix.zuul.filters.support.FilterConstants; import org.springframework.stereotype.Component; import javax.servlet.http.HttpServletRequest; /** * @ClassName LoginFilter * @Description: TODO * @Author wangshanle * @Date 2020/10/16 * @Version V1.0 **/ @Component public class LoginFilter extends ZuulFilter { @Autowired private JwtConfig jwtConfig; private static final Logger logger = LoggerFactory.getLogger(LoginFilter.class); @Override public String filterType() { return FilterConstants.PRE_TYPE; } @Override public int filterOrder() { return 5; } @Override public boolean shouldFilter() { RequestContext currentContext = RequestContext.getCurrentContext(); HttpServletRequest request = currentContext.getRequest(); String requestURI = request.getRequestURI(); logger.debug("----------------"+requestURI); Boolean flag = true; for(String s : jwtConfig.getExcludesPath()){ flag = !(requestURI.indexOf(s) != -1); if(!flag) break; } return flag; //return !jwtConfig.getExcludesPath().contains(requestURI ); } @Override public Object run() throws ZuulException { RequestContext currentContext = RequestContext.getCurrentContext(); HttpServletRequest request = currentContext.getRequest(); logger.info("拦截到请求"+request.getRequestURI()); String token = CookieUtils.getCookieValue(request, jwtConfig.getCookieName()); logger.info("token信息"+token); try { JwtUtil.getInfoFromToken(token,jwtConfig.getPublicKey()); } catch (Exception e) { logger.info("解析失败,拦截"+token); currentContext.setSendZuulResponse(false); currentContext.setResponseStatusCode(403); } return null; } }
22fe65639e1740367f90d825932811771a393585
0735d7bb62b6cfb538985a278b77917685de3526
/io/fabric/sdk/android/services/concurrency/Dependency.java
ff6314286a09864343e4fd035a66750634206add
[]
no_license
Denoah/personaltrackerround
e18ceaad910f1393f2dd9f21e9055148cda57837
b38493ccc7efff32c3de8fe61704e767e5ac62b7
refs/heads/master
2021-05-20T03:34:17.333532
2020-04-02T14:47:31
2020-04-02T14:51:01
252,166,069
0
0
null
null
null
null
UTF-8
Java
false
false
280
java
package io.fabric.sdk.android.services.concurrency; import java.util.Collection; public abstract interface Dependency<T> { public abstract void addDependency(T paramT); public abstract boolean areDependenciesMet(); public abstract Collection<T> getDependencies(); }
21597d7936c126593e21a91104cb10b7a3d49551
fdd7ea31d12884ed175619c78db7cb7fe18d9ee4
/viewer/src/com/viewer/handlers/RequestHandler.java
ddf80f4d68a9fb2161994847443904518cfce8dd
[]
no_license
nicolaemorcov/haircut-app-1
421c79eb5800dac078123c7aba6b21be9a5f3e6b
b344a4516b20f90d24d5d23b11abe12069e73808
refs/heads/master
2020-03-08T06:03:10.859104
2018-05-20T09:36:44
2018-05-20T09:36:44
127,962,159
0
1
null
null
null
null
UTF-8
Java
false
false
1,407
java
package com.viewer.handlers; import java.net.URLDecoder; import java.util.ArrayList; import java.util.List; import java.util.Map; import javax.servlet.http.HttpServletRequest; public class RequestHandler { // // // ?param1=xxx&param2=yyy // private Map<String, String> urlParameters; // // // /page1/account/user // private List<String> pathParameters; // // // the request client did. the link user clicked // private String requestUri; // // private HttpServletRequest httpRequest; // // public ParsedRequest(HttpServletRequest httpRequest, // List<String> pathParameters) { // this.requestUri = httpRequest.getRequestURI(); // this.httpRequest = httpRequest; // // this.pathParameters = new ArrayList<String>(); // // // parse the following link by adding url params in a list. take all after the '?' mark // // http://www.java2s.com/query?pg=q&kl=XX&stype=stext&q=%2B%22Java+Programming%22&search.x=30&search.y=7"; // // result: [pq: 1, kl: xx, stype: stext] // // // // parse the following link and add to a list http://www.java2s.com/Tutorial/Java/0320__Network/URLDecoder2.htm // // result is [Tutorial, java, 030__Network,URLDecoder2. htm] // for (String param : pathParameters) { // try { // String value = URLDecoder.decode(param, "UTF-8"); // this.pathParameters.add(value); // } catch (Exception e) { // this.pathParameters.add(param); // } // } // } }
809fd5685b86af957a4d34d6642314abaeed5c2e
b05bcb55dc6d4158c95b415239de9fa5a9bf600f
/dnight-demo/src/test/java/com/dnight/test/OutputService.java
2b34042aa4b9efa878e875d9cd53a39b1aa7e9a4
[ "MIT" ]
permissive
zhong2peng/dnight-framework
7e27b82e10610b7e72cbd9ed1f95fc3386cc5470
cddfba6846cd16b9e1886bbb5b8acd1c919e7e54
refs/heads/master
2022-09-18T20:29:59.707407
2019-11-18T02:25:41
2019-11-18T02:25:41
180,572,814
0
0
null
2022-09-08T01:01:13
2019-04-10T12:03:44
Java
UTF-8
Java
false
false
149
java
package com.dnight.test; /** * @author ZHONGPENG769 * @date 2019/3/28 */ public interface OutputService { public void output(String msg); }
5def559a3c928a9965006aa37ac73d01029164f2
53359f83494d9cca10cb523805735be893543377
/octopus_entertainment2/app/src/main/java/com/youxi912/yule912/adapter/HotGameListAdapter.java
d3397ff1e0d71f8e2cd7ef6a5778b571a70fef9a
[]
no_license
Daryl01/myocto
c3ae276a93fd083983eff730200a807356e45d3b
5b2ff1c5a4c8e42c9007fec659ddb393dcd87307
refs/heads/master
2020-03-29T01:18:18.007088
2018-09-28T08:59:17
2018-09-28T08:59:17
149,382,070
0
0
null
null
null
null
UTF-8
Java
false
false
4,080
java
package com.youxi912.yule912.adapter; import android.content.Intent; import android.support.v7.widget.AppCompatImageView; import android.text.TextUtils; import android.view.View; import com.bumptech.glide.Glide; import com.bumptech.glide.request.RequestOptions; import com.chad.library.adapter.base.BaseQuickAdapter; import com.chad.library.adapter.base.BaseViewHolder; import com.vondear.rxtool.view.RxToast; import com.youxi912.yule912.R; import java.math.BigDecimal; import com.youxi912.yule912.home.GameDetailActivity; import com.youxi912.yule912.home.LiveListActivity; import com.youxi912.yule912.model.DataBean; import com.youxi912.yule912.view.GlideRoundTransform; import com.youxi912.yule912.web.H5Activity; public class HotGameListAdapter extends BaseQuickAdapter<DataBean, BaseViewHolder> { public HotGameListAdapter(int layoutResId) { super(layoutResId); } @Override protected void convert(BaseViewHolder helper, final DataBean item) { helper.setText(R.id.tv_name_item_game_list, item.getName()); helper.setText(R.id.size_item_game_list, item.getSize() + "MB"); helper.setText(R.id.tv_description_item_game_list, TextUtils.isEmpty(item.getContent()) ? "" : item.getContent()); helper.setText(R.id.tv_playerNum_item_game_list, change(item.getDownload_times())); AppCompatImageView imageView = helper.getView(R.id.icon_item_game_list); if (!TextUtils.isEmpty(item.getLogo())) Glide.with(mContext).load(item.getLogo()).apply( new RequestOptions().transform(new GlideRoundTransform(mContext, 5)).centerCrop()) .into(imageView); else Glide.with(mContext).load(R.mipmap.placeholder).into(imageView); if (item.getPrice().startsWith("0.") || item.getPay_status() == 1) helper.setText(R.id.btn_get_item_game_list, "打开"); else helper.setText(R.id.btn_get_item_game_list, "获取"); helper.getView(R.id.btn_get_item_game_list).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { if(18 == item.getCate_id()) { //直播 mContext.startActivity(new Intent(mContext, LiveListActivity.class)); return; } if (item.getPrice().startsWith("0.") || item.getPay_status() == 1) if (item.getVersion() == null || item.getVersion().getPc() == null || TextUtils.isEmpty(item.getVersion().getPc().getResource_url())) RxToast.error("获取游戏配置信息出错,晚点再来哦"); else H5Activity.toH5Activity(mContext, item.getVersion().getPc().getResource_url()); else GameDetailActivity.ToGameDetail(mContext, item.getId()); } }); } private String change(int value) { String s = ""; if (value < 1000) { s = String.valueOf(value) + " 在玩"; } else if (value < 10000) { double val = value * 1.0 / 1000; BigDecimal bigDecimal = new BigDecimal(val); s = bigDecimal.setScale(1, BigDecimal.ROUND_HALF_UP).toString() + "K 人在玩"; } else if (value < 100000) { double val = value * 1.0 / 10000; BigDecimal bigDecimal = new BigDecimal(val); s = bigDecimal.setScale(1, BigDecimal.ROUND_HALF_UP).toString() + "W 人在玩"; } else if (value < 1000000) { double val = value * 1.0 / 100000; BigDecimal bigDecimal = new BigDecimal(val); s = bigDecimal.setScale(1, BigDecimal.ROUND_HALF_UP).toString() + "W 人在玩"; } else if (value < 10000000) { double val = value * 1.0 / 1000000; BigDecimal bigDecimal = new BigDecimal(val); s = bigDecimal.setScale(1, BigDecimal.ROUND_HALF_UP).toString() + "W 人在玩"; } return s; } }
d3d5f2a237bb09eeda4a15517dd7a55198fa9bba
303a4124ed9d98ae8aeb82dac2b4faa4e1b98015
/src/com/design/pattern/singleton/BCPUtil.java
bc1e14dc55d790e3e477b38514210a1b9ac18ad3
[]
no_license
CoreJava-Kiran/CoreJavaPracticeForInterView
46b8567d95d844cea63b5d2e94b7f4d07266f694
ec9c64fff4081fc822aea1279cb4dfbff304d2fb
refs/heads/master
2021-06-29T03:18:28.042403
2017-09-17T19:21:21
2017-09-17T19:21:21
103,334,251
0
0
null
null
null
null
UTF-8
Java
false
false
274
java
package com.design.pattern.singleton; public class BCPUtil { //This is thread safe as we are creating at the class-load time private static BCPUtil instance = new BCPUtil(); protected BCPUtil(){ } public static BCPUtil getInstance(){ return instance; } }
8bb0fa59ad1a094faddad87d6b2f9498db2bee67
30bab31c0c99a6699a1d341625cdb5fa87f73962
/Java8InAction/src/main/java/lambdasinaction/appa/Book.java
3b3389c9baa000af966ceb2b164808ac958a243d
[ "MIT" ]
permissive
yjs2952/JAVAStudy
58eb65a82ee2246d89aebb930598ab2d78730fbd
94f09e070c720d44724a9ff1329efd3e40d341f0
refs/heads/master
2021-07-14T08:42:35.486791
2019-03-22T14:41:22
2019-03-22T14:41:22
149,575,669
0
0
null
null
null
null
UTF-8
Java
false
false
384
java
package lambdasinaction.appa; import java.util.Arrays; @Author(name = "Raoul") @Author(name = "Mario") @Author(name = "Alan") public class Book { public static void main(String[] args) { Author[] authors = Book.class.getAnnotationsByType(Author.class); Arrays.asList(authors).stream().forEach(a -> { System.out.println(a.name()); }); } }
e776d7e583a30871d2555abdfe7089203a1334f3
3ce71e426cb34c4dd4475116913eec8799d4f37d
/src/main/java/org/candle/decompiler/intermediate/expression/Switch.java
812f33cddfa9222c773dfa4d1a825f9273d0d795
[]
no_license
nbauma109/candle-decompiler
064544e4fa5a60e2a326642a4227b6f3c804a990
bd19099ebe244da1ca6f0e29056762836a24e2bf
refs/heads/master
2022-06-20T19:38:43.413312
2020-05-08T16:31:45
2020-05-08T16:31:45
262,372,544
0
0
null
2020-05-08T16:25:50
2020-05-08T16:25:49
null
UTF-8
Java
false
false
834
java
package org.candle.decompiler.intermediate.expression; import java.io.IOException; import java.io.Writer; import org.apache.bcel.generic.InstructionHandle; public class Switch extends Expression { private Expression expression; public Switch(InstructionHandle instructionHandle, Expression expression) { super(instructionHandle); this.expression = expression; } public Expression getExpression() { return expression; } public void setExpression(Expression expression) { this.expression = expression; } @Override public void visit(ASTListener listener) { listener.accept(this); if(getExpression() != null) { listener.accept(getExpression()); } } @Override public void write(Writer writer) throws IOException { writer.write("switch("); expression.write(writer); writer.append(")"); } }
6de32349f6b206afe441b986aed2dbbc34b0009f
91feacfea6bbcadd634dde42681dbba317e31f75
/src/main/java/com/creditharmony/fortune/deduct/dao/DeductLogDao.java
aeb0f148ab41a391709825bcc82a92369898289f
[]
no_license
sengeiou/chp-fortune
0d5ccc9b40568a622fa162dc609bd4ccfc358a9f
ac676cb5d8502269d2d44bf395206034f26b4e49
refs/heads/master
2020-05-16T02:53:13.475287
2017-07-06T07:31:26
2017-07-06T07:31:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
552
java
package com.creditharmony.fortune.deduct.dao; import com.creditharmony.core.persistence.CrudDao; import com.creditharmony.core.persistence.annotation.FortuneBatisDao; import com.creditharmony.fortune.deduct.entity.DeductLog; /** * 划扣申请dao * @Class Name DeductLogDao * @author 韩龙 * @Create In 2015年11月27日 */ @FortuneBatisDao public interface DeductLogDao extends CrudDao<DeductLog> { /** * 插入审批记录表 * 2015年12月1日 * By 韩龙 * @param deductLog */ public int insertSelective(DeductLog deductLog); }
4aabdeb4428f517907167a638c01352e9fb36288
f953749d033861a4595f1cd3456a808b1aa069d1
/src/main/java/com/ssi/ssi/resources/AutoCompleteResource.java
fe633e1f2d8230187d851e493f55033b2432e38b
[]
no_license
LICELIA/ssi-backend
1564dda6a17fc60ef24198ba85fa628a17ba5b05
0b5be689a805954bde88b97ce1913deccb40abe7
refs/heads/master
2020-03-19T01:02:02.261599
2018-05-30T03:04:05
2018-05-30T03:04:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
802
java
package com.ssi.ssi.resources; import com.ssi.ssi.domain.model.Person; public class AutoCompleteResource { private String ci; private String firsName; private String lastName; public AutoCompleteResource(Person person) { this.ci = person.getCi(); this.firsName = person.getFirstName(); this.lastName = person.getLastName(); } public String getCi() { return ci; } public void setCi(String ci) { this.ci = ci; } public String getFirsName() { return firsName; } public void setFirsName(String firsName) { this.firsName = firsName; } public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } }
0cfee240a752db1a8cde9effa7620492fc1d4a2b
d4e797120320113f9cb7fdc79ca1ea5007b04ea8
/integration-test/base/src/main/java/eu/drus/jpa/unit/test/AbstractCleanupCacheTest.java
88ca353c9085ff80c0fc7317819107ea4977eb9d
[ "Apache-2.0" ]
permissive
ArneLimburg/jpa-unit
c11266119735c36d0878569a9dffa23adc6f2658
6f0206397119751914ce231fd190c0ff848f7bc8
refs/heads/master
2020-09-20T23:48:29.602036
2019-11-28T10:30:26
2019-11-28T10:30:26
224,620,140
0
0
Apache-2.0
2019-11-28T09:44:24
2019-11-28T09:44:23
null
UTF-8
Java
false
false
2,909
java
package eu.drus.jpa.unit.test; import static org.hamcrest.CoreMatchers.equalTo; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertThat; import javax.persistence.CacheRetrieveMode; import javax.persistence.CacheStoreMode; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import org.junit.Before; import org.junit.FixMethodOrder; import org.junit.Test; import org.junit.runners.MethodSorters; import eu.drus.jpa.unit.api.Cleanup; import eu.drus.jpa.unit.api.CleanupCache; import eu.drus.jpa.unit.api.CleanupPhase; import eu.drus.jpa.unit.api.InitialDataSets; import eu.drus.jpa.unit.test.model.Depositor; @FixMethodOrder(MethodSorters.NAME_ASCENDING) public abstract class AbstractCleanupCacheTest { @PersistenceContext(unitName = "my-cache-unit") private EntityManager manager; @Before public void configureEntityManager() { // These are defaults but put here for documentation purposes manager.setProperty("javax.persistence.cache.storeMode", CacheStoreMode.USE); manager.setProperty("javax.persistence.cache.retrieveMode", CacheRetrieveMode.USE); } @Test @InitialDataSets("datasets/initial-data.json") public void test1() { final Depositor entity = manager.find(Depositor.class, 106L); assertNotNull(entity); entity.setName("David"); } @Test @Cleanup(phase = CleanupPhase.BEFORE) public void test2() { // Even the DB is explicitly deleted before the actual test start, we can still find our // entity thanks to the used second level cache final Depositor entity = manager.find(Depositor.class, 106L); assertNotNull(entity); assertThat(entity.getName(), equalTo("David")); } @Test @CleanupCache(phase = CleanupPhase.BEFORE) public void test3() { // Cleaning the second level cache will make it now impossible to find the entity final Depositor entity = manager.find(Depositor.class, 106L); assertNull(entity); } @Test @InitialDataSets("datasets/initial-data.json") public void test4() { final Depositor entity = manager.find(Depositor.class, 106L); assertNotNull(entity); } @Test @CleanupCache(phase = CleanupPhase.AFTER) public void test5() { // Even the DB is implicitly deleted after the previous test, we can still find our // entity thanks to the used second level cache final Depositor entity = manager.find(Depositor.class, 106L); assertNotNull(entity); // Cleaning the second level cache will make it impossible for the next test to find the // entity } @Test public void test6() { final Depositor entity = manager.find(Depositor.class, 106L); assertNull(entity); } }
b4bc8ee6f75c5f0917027b04a8afc768659566a6
de4f770873c518d45ee2ac739f830bc36a2692bd
/app/src/androidTest/java/com/bonya/musicapp/ExampleInstrumentedTest.java
3ba13a24993aa84832bc6798d9f4c3a7560a5b47
[]
no_license
BonyaO/music-structure-app
600cdc47d5edecf8674f5faef366f0a9cce36670
846e43186a53f1840a067e18c0dc6440fbe90134
refs/heads/master
2020-09-29T20:05:49.428670
2019-12-10T14:13:28
2019-12-10T14:13:28
227,111,740
0
0
null
null
null
null
UTF-8
Java
false
false
752
java
package com.bonya.musicapp; import android.content.Context; import androidx.test.platform.app.InstrumentationRegistry; import androidx.test.ext.junit.runners.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); assertEquals("com.bonya.musicapp", appContext.getPackageName()); } }
3d2fa6374a85667d69529cca9f5d1d2cd3d7c13f
19c577e57855ee27f193cc952202399b3c6a31ba
/test02/Q2/Main.java
df86e573977d83c982ebc7d661caf712e81d36b5
[]
no_license
tomo55555/paperTest
e441d01e77c643c20d67c0863651d4f6176ec619
3b104bb2cd78f2b233ea25c2de04a1acd77ea3ab
refs/heads/master
2021-01-05T06:04:17.889486
2020-02-16T14:50:59
2020-02-16T14:50:59
240,908,382
0
0
null
null
null
null
UTF-8
Java
false
false
208
java
public class Main{ public static void main(String[] args){ int[] data=new int[]{3,5,7}; int sum=0; for(int i=0;i<data.length;i++){ data[i]-=3; sum+=data[i]; } System.out.println(sum/4); } }
656965f4bd5bbee74b5d67e528281c3e08aa1369
cc793d96dd091a179a994908a5a77d281fc86cfb
/FileRulerWithDesign/src/fileruler/model/Song.java
b36f2fc64ef487d09c51b4666325e7e6f059902c
[]
no_license
VictorVangelov/FileRuler
c7c5bb116a623b38d2027f6ea9c7c5ef1fd795c1
01e178ad7b3161f916b7f4e8badf01600adb4537
refs/heads/master
2020-05-29T11:53:15.431263
2015-06-01T14:50:43
2015-06-01T14:50:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,591
java
package fileruler.model; import java.io.Serializable; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Entity public class Song implements Serializable{ private static final long serialVersionUID = 7933731804845334167L; @Id @GeneratedValue(strategy=GenerationType.AUTO) private Long id; private String title; private String author; private String album; private String genre; private String length; private String poster; private String filePath; public Song() { super(); // TODO Auto-generated constructor stub } public Song(String title, String author, String album, String genre, String length, String poster, String filePath) { super(); this.title = title; this.author = author; this.album = album; this.genre = genre; this.length = length; this.poster = poster; this.filePath = filePath; } public String getPoster() { return poster; } public void setPoster(String poster) { this.poster = poster; } public String getFilePath() { return filePath; } public void setFilePath(String filePath) { this.filePath = filePath; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String getAlbum() { return album; } public void setAlbum(String album) { this.album = album; } public String getGenre() { return genre; } public void setGenre(String genre) { this.genre = genre; } public String getLength() { return length; } public void setLength(String length) { this.length = length; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((id == null) ? 0 : id.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; Song other = (Song) obj; if (id == null) { if (other.id != null) return false; } else if (!id.equals(other.id)) return false; return true; } @Override public String toString() { return "Song [id=" + id + ", title=" + title + ", author=" + author + ", album=" + album + ", genre=" + genre + ", length=" + length + ", poster=" + poster + ", filePath=" + filePath + "]"; } }
ee1efdcbdd57a1543338fa5f665a75a9756e83a1
d7b871eaf4da9349f82fd1317a6b07b8ab1b12c5
/src/main/java/com/tool4us/net/http/ApiError.java
aaeaca10277e43815d2d4a6fb90873385a507311
[ "MIT" ]
permissive
love4rh/treat-db
33cef843a29f16333344aea81b131b150fe521cc
2ee5c8d6a7e12fe198751a455d7b1d4bd9010fd5
refs/heads/main
2023-04-07T11:52:44.960872
2021-04-14T00:07:10
2021-04-14T00:07:10
337,261,281
1
0
null
null
null
null
UTF-8
Java
false
false
1,429
java
package com.tool4us.net.http; /** * Definition of errors that can be occurred. * @author TurboK */ public enum ApiError { Success(0), Failed(1, "failed"), InvalidHeader(1001, "invalid header"), InvalidParameter(1002, "invalid parameter"), InvalidBody(1003, "invalid body"), MissingParameter(1004, "missing parameter"), MissingHeader(1005, "missing header"), InvalidAuthCode(2001, "invalid auth code"), InvalidEULA(2002, "invalid user agreements"), NotExistsResult(3001, "not exists the result"), OverCapacityLimit(3002, "over capacity limit"), NeedRerequest(9001, "need to request again"), ServerError(9999, "Server Error") ; private String _msg = null; private int _code = 0; private ApiError(int code) { this(code, ""); } private ApiError(int code, String msg) { _code = code; _msg = msg; } public String toJson() { StringBuilder sb = new StringBuilder(); sb.append("\"returnCode\":").append(_code); if( _msg != null && !_msg.isEmpty() ) { sb.append(", \"returnMessage\":\"").append(_msg).append("\""); } return sb.toString(); } @Override public String toString() { return _msg; } public int code() { return _code; } }
2eda7a009d7e7dcfd0528241ffa6c494e3abb252
403da16b37eabb5c942b0d29623376ed0af16b7a
/BaseStudyFromThinkingInJava/src/main/java/im/fenqi/study/chapter14/part01/ClassInitialization.java
6a86b7935e703a24a785c0072b6ba30b55868139
[]
no_license
spingcode/BaseStudyFromThinkingInJava
63ccd687b8487a7ef9367c7b2bd6b3c3d07be291
b693d88df75df548b0a8dee33aac030ea13ddcc8
refs/heads/master
2021-05-05T23:25:11.993796
2018-01-14T12:16:50
2018-01-14T12:16:50
116,704,420
0
0
null
2018-01-14T12:16:50
2018-01-08T17:03:25
Java
UTF-8
Java
false
false
1,426
java
package im.fenqi.study.chapter14.part01; import java.util.Random; /* * 14.2.1、类字面常量,什么情况下会触发初始化(对静态域的初始化) * 基本类型的Class:14.2.1 * * */ class Initable{ static final int staticFinal=47; static final int staticFinal2=new Random().nextInt(1000); static { System.out.println("Initialing Initable"); } } class Initable2{ static int staticNoFinal=47; static { System.out.println("Initialing Initable2"); } } class Initable3{ static int staticNoFinal=47; static { System.out.println("Initialing Initable3"); } } public class ClassInitialization { public static Random random = new Random(47); public static void main(String[] args) throws ClassNotFoundException { //不引发初始化,编译的时候检查 Class initable = Initable.class; //不引发初始化,因为调用的常数域,编译器常量 System.out.println(Initable.staticFinal); //引起初始化,调用静态域 System.out.println(Initable.staticFinal2); //引起初始化,调用静态域 System.out.println(Initable2.staticNoFinal); //引发初始化 Class initable3 = Class.forName("im.fenqi.study.chapter14.part01.Initable3"); //静态域只初始化一次 System.out.println(Initable3.staticNoFinal); } }
6a4ea962bd33e33274e300753effa1ec46e847cc
c16ea32a4cddb6b63ad3bacce3c6db0259d2bacd
/google/ads/googleads/v5/googleads-java/proto-googleads-java/src/main/java/com/google/ads/googleads/v5/resources/ParentalStatusViewName.java
48da38f156582d2bcc42a196fca7451c8825b6d4
[ "Apache-2.0" ]
permissive
dizcology/googleapis-gen
74a72b655fba2565233e5a289cfaea6dc7b91e1a
478f36572d7bcf1dc66038d0e76b9b3fa2abae63
refs/heads/master
2023-06-04T15:51:18.380826
2021-06-16T20:42:38
2021-06-16T20:42:38
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,968
java
/* * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.ads.googleads.v5.resources; import com.google.api.pathtemplate.PathTemplate; import com.google.api.resourcenames.ResourceName; import com.google.common.base.Preconditions; import com.google.common.collect.ImmutableMap; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Objects; import javax.annotation.Generated; // AUTO-GENERATED DOCUMENTATION AND CLASS. @Generated("by gapic-generator-java") public class ParentalStatusViewName implements ResourceName { private static final PathTemplate CUSTOMER_PARENTAL_STATUS_VIEW = PathTemplate.createWithoutUrlEncoding( "customers/{customer}/parentalStatusViews/{parental_status_view}"); private volatile Map<String, String> fieldValuesMap; private final String customer; private final String parentalStatusView; @Deprecated protected ParentalStatusViewName() { customer = null; parentalStatusView = null; } private ParentalStatusViewName(Builder builder) { customer = Preconditions.checkNotNull(builder.getCustomer()); parentalStatusView = Preconditions.checkNotNull(builder.getParentalStatusView()); } public String getCustomer() { return customer; } public String getParentalStatusView() { return parentalStatusView; } public static Builder newBuilder() { return new Builder(); } public Builder toBuilder() { return new Builder(this); } public static ParentalStatusViewName of(String customer, String parentalStatusView) { return newBuilder().setCustomer(customer).setParentalStatusView(parentalStatusView).build(); } public static String format(String customer, String parentalStatusView) { return newBuilder() .setCustomer(customer) .setParentalStatusView(parentalStatusView) .build() .toString(); } public static ParentalStatusViewName parse(String formattedString) { if (formattedString.isEmpty()) { return null; } Map<String, String> matchMap = CUSTOMER_PARENTAL_STATUS_VIEW.validatedMatch( formattedString, "ParentalStatusViewName.parse: formattedString not in valid format"); return of(matchMap.get("customer"), matchMap.get("parental_status_view")); } public static List<ParentalStatusViewName> parseList(List<String> formattedStrings) { List<ParentalStatusViewName> list = new ArrayList<>(formattedStrings.size()); for (String formattedString : formattedStrings) { list.add(parse(formattedString)); } return list; } public static List<String> toStringList(List<ParentalStatusViewName> values) { List<String> list = new ArrayList<>(values.size()); for (ParentalStatusViewName value : values) { if (value == null) { list.add(""); } else { list.add(value.toString()); } } return list; } public static boolean isParsableFrom(String formattedString) { return CUSTOMER_PARENTAL_STATUS_VIEW.matches(formattedString); } @Override public Map<String, String> getFieldValuesMap() { if (fieldValuesMap == null) { synchronized (this) { if (fieldValuesMap == null) { ImmutableMap.Builder<String, String> fieldMapBuilder = ImmutableMap.builder(); if (customer != null) { fieldMapBuilder.put("customer", customer); } if (parentalStatusView != null) { fieldMapBuilder.put("parental_status_view", parentalStatusView); } fieldValuesMap = fieldMapBuilder.build(); } } } return fieldValuesMap; } public String getFieldValue(String fieldName) { return getFieldValuesMap().get(fieldName); } @Override public String toString() { return CUSTOMER_PARENTAL_STATUS_VIEW.instantiate( "customer", customer, "parental_status_view", parentalStatusView); } @Override public boolean equals(Object o) { if (o == this) { return true; } if (o != null || getClass() == o.getClass()) { ParentalStatusViewName that = ((ParentalStatusViewName) o); return Objects.equals(this.customer, that.customer) && Objects.equals(this.parentalStatusView, that.parentalStatusView); } return false; } @Override public int hashCode() { int h = 1; h *= 1000003; h ^= Objects.hashCode(customer); h *= 1000003; h ^= Objects.hashCode(parentalStatusView); return h; } /** Builder for customers/{customer}/parentalStatusViews/{parental_status_view}. */ public static class Builder { private String customer; private String parentalStatusView; protected Builder() {} public String getCustomer() { return customer; } public String getParentalStatusView() { return parentalStatusView; } public Builder setCustomer(String customer) { this.customer = customer; return this; } public Builder setParentalStatusView(String parentalStatusView) { this.parentalStatusView = parentalStatusView; return this; } private Builder(ParentalStatusViewName parentalStatusViewName) { this.customer = parentalStatusViewName.customer; this.parentalStatusView = parentalStatusViewName.parentalStatusView; } public ParentalStatusViewName build() { return new ParentalStatusViewName(this); } } }
[ "bazel-bot-development[bot]@users.noreply.github.com" ]
bazel-bot-development[bot]@users.noreply.github.com
4eb47366189400fb7fc576c04e2df0c227b5c4e5
46bd805fedaeebba1ee90dc95b7d7476aeb05020
/StrategyTitForTwoTats.java
526843393613a94684e07b942bd2d5a89f5cdb65
[]
no_license
BRobersonO/iteratedPrisonersDilemma
c3a0c8585b94c20770cc0cc2cc9c9011d23f9fed
c18bcb3a29521b476d463cc8ff6aae568c115284
refs/heads/master
2023-03-25T12:43:05.654490
2021-03-20T02:46:19
2021-03-20T02:46:19
346,126,704
0
1
null
null
null
null
UTF-8
Java
false
false
791
java
/** * Class containing the tit-for-two-tats strategy. * @author 081028AW */ public class StrategyTitForTwoTats extends Strategy { /** * Encoding for tit-for-tat strategy. */ int numDefects; // 0 = defect, 1 = cooperate public StrategyTitForTwoTats() { name = "Tit for Two Tats"; opponentLastMove = 1; numDefects = 0; } /* StrategyTitForTwoTats */ public int nextMove() { if (opponentLastMove == 0) numDefects++; if (opponentLastMove == 1) { numDefects = 0; return 1; } else { if (opponentLastMove == 0 && numDefects < 2) return 1; else { return 0; } } } /* nextMove */ } /* class StrategyTitForTwoTats */
67f297127bdf86e9ab661eb99f48744919ce302e
fcd0851e9691a88ba61d75dfbc97c6798c74dfeb
/src/main/java/org/srcm/heartfulness/model/json/request/EventAdminChangeRequest.java
c9552674552451b20471b13e863b1c6a751be0ca
[]
no_license
hpoliset/pmp-excel-ingestor
d80cc2eceb0434b5acb4af68e99265ea5b534dfd
9785f786dec6f2627faa424b95747eba3e262cb7
refs/heads/master
2021-09-05T18:21:09.512564
2018-01-30T06:09:06
2018-01-30T06:09:06
46,621,628
0
0
null
null
null
null
UTF-8
Java
false
false
2,802
java
package org.srcm.heartfulness.model.json.request; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; /** * This class is the request for changing the admin for the event. * * @author himasreev * */ @JsonIgnoreProperties(ignoreUnknown = true) public class EventAdminChangeRequest { @JsonIgnore private int id; private String eventId; @JsonIgnore private String oldCoordinatorEmail; @JsonIgnore private int programId; private String newCoordinatorEmail; private String coordinatorName; private String coordinatorMobile; @JsonIgnore private String createdBy; public EventAdminChangeRequest() { super(); } public EventAdminChangeRequest(int id, String eventId, String oldCoordinatorEmail, int programId, String newCoordinatorEmail, String coordinatorName, String coordinatorMobile, String createdBy) { super(); this.id = id; this.eventId = eventId; this.oldCoordinatorEmail = oldCoordinatorEmail; this.programId = programId; this.newCoordinatorEmail = newCoordinatorEmail; this.coordinatorName = coordinatorName; this.coordinatorMobile = coordinatorMobile; this.createdBy = createdBy; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getEventId() { return eventId; } public void setEventId(String eventId) { this.eventId = eventId; } public String getOldCoordinatorEmail() { return oldCoordinatorEmail; } public void setOldCoordinatorEmail(String oldCoordinatorEmail) { this.oldCoordinatorEmail = oldCoordinatorEmail; } public int getProgramId() { return programId; } public void setProgramId(int programId) { this.programId = programId; } public String getNewCoordinatorEmail() { return newCoordinatorEmail; } public void setNewCoordinatorEmail(String newCoordinatorEmail) { this.newCoordinatorEmail = newCoordinatorEmail; } public String getCoordinatorName() { return coordinatorName; } public void setCoordinatorName(String coordinatorName) { this.coordinatorName = coordinatorName; } public String getCoordinatorMobile() { return coordinatorMobile; } public void setCoordinatorMobile(String coordinatorMobile) { this.coordinatorMobile = coordinatorMobile; } public String getCreatedBy() { return createdBy; } public void setCreatedBy(String createdBy) { this.createdBy = createdBy; } @Override public String toString() { return "EventAdminChangeRequest [id=" + id + ", eventId=" + eventId + ", oldCoordinatorEmail=" + oldCoordinatorEmail + ", programId=" + programId + ", newCoordinatorEmail=" + newCoordinatorEmail + ", coordinatorName=" + coordinatorName + ", coordinatorMobile=" + coordinatorMobile + ", createdBy=" + createdBy + "]"; } }
efa9ea948df94e616b934e1437f6733eef141cfd
18cbee8429e92281a09ef0e72f70edcecd87d3f4
/znypt/src/gaogaoyanjiu/com/utils/serialPort/serialException/StringToHex.java
aab78f6017d1876d62de04544e9cae051aedda3a
[]
no_license
gaogaoyanjiu/gaogaoyanjiu.code
59a8a7af1eab2c8b823059389870dd4d33e38c48
45060c80d693de4255438710ecadf063fef81962
refs/heads/master
2020-12-23T20:18:31.677249
2017-06-15T11:43:06
2017-06-15T11:43:06
92,572,858
0
0
null
null
null
null
UTF-8
Java
false
false
896
java
package gaogaoyanjiu.com.utils.serialPort.serialException; import java.util.ArrayList; import java.util.List; /** * 由于读出过程中,遇到了乱码问题,上网搜了许多资料,最终解决了乱码问题。 * 从相应串口读出的数据,不要进行其他处理,直接进行十六进制转换,就不会出现乱码问题。 * @author Administrator * */ public class StringToHex { public static List<String> printHexString( byte[] b) { List<String> list = new ArrayList<>(); for (int i = 0; i < b.length; i++) { String hex = Integer.toHexString(b[i] & 0xFF)+" "; if (hex.length() == 2) { hex = '0' + hex; } //System.out.print(hex.toUpperCase()); //转成大写 list.add(hex.toUpperCase()); } //System.out.println("\t\n"); //回车换行 return list; } }
[ "Administrator@XB-20170405RMKL" ]
Administrator@XB-20170405RMKL
abe4a0d186ae80d1fb8937cce338980b9c4532ff
aebd8e5e01ec537fa68641ecb4d3f4aeeb8c8790
/SyntaxAnalyzer/src/main/java/me/khudyakov/labs/translators/syntaxanalyzer/util/CodeParserException.java
cbc24894428ef1610d352f0186752480326bc5ca
[]
no_license
KonstantinHudyakov/CompilersLabs
db71f618e338e889ecccc53de1230894bb8cb1ca
7153945cf436b0d88f4b36f222e2af318a816e4a
refs/heads/master
2022-04-19T00:39:45.917448
2020-04-11T15:25:33
2020-04-11T15:25:33
254,895,410
0
0
null
null
null
null
UTF-8
Java
false
false
618
java
package me.khudyakov.labs.translators.syntaxanalyzer.util; public class CodeParserException extends Exception { public CodeParserException() { } public CodeParserException(String message) { super(message); } public CodeParserException(String message, Throwable cause) { super(message, cause); } public CodeParserException(Throwable cause) { super(cause); } public CodeParserException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }
f29eef18b8b9a07ec2df03b2bcc96564024bae40
66a7d3e6e66aa4a1c37bf7a25f2a6c2eae327c04
/Reproductor/src/test/java/Disco.java
fd7468cada87416f6e034896a346172dd45a7ad6
[]
no_license
rodriguezm07/191801045-Moises-Rodriguez-Hernandez
d3f059d8cad5987704dd1dbb105abf78dbfa7c3e
86b378c0daaa5f35a61e9265e8036375e4ce5d94
refs/heads/master
2023-04-22T00:01:53.769564
2021-05-18T04:40:12
2021-05-18T04:40:12
332,236,924
0
0
null
null
null
null
UTF-8
Java
false
false
548
java
import java.util.ArrayList; public class Disco { public static void main(String[] args) { Cancion laChona = new Cancion("La chona", 3.35, 1); Cancion amorProhibido = new Cancion("Amor prohibido", 3.10, 2); Cancion ramitoDeVioletas = new Cancion("Ramito de violetas", 3.45, 3); ArrayList<Cancion> lista1 = new ArrayList(); lista1.add(laChona); lista1.add(amorProhibido); lista1.add(ramitoDeVioletas); Disco loMejorDelAño = new Disco() } }
2f8bf91a2777aff50d49e0b63e1ae84ada3786f1
ad90d434559a7073c1f2f0846daeb47c8d5a830c
/JAVA学习/(3.30)kafkamessage/src/main/java/com/example/kafkamessage/kafkaclear/getdatafrommongo/Test.java
5fb29d60de97fcb47b4524004e3ac02ff140463f
[]
no_license
MaidDragonlol/repo1
508b85d32c352a84c97bbc7feedcb67b9df08ca7
e44509644ea9f972f58cb62d9e46d1ac22e1801a
refs/heads/master
2022-12-25T14:14:36.572283
2020-07-24T01:57:16
2020-07-24T01:57:16
238,593,932
0
0
null
2022-12-12T19:36:40
2020-02-06T02:45:41
Java
UTF-8
Java
false
false
1,164
java
package com.example.kafkamessage.kafkaclear.getdatafrommongo; import java.text.ParseException; public class Test { public static void main(String[] args) throws ParseException, IllegalAccessException { /*每段时间日志量*/ DataSearchUtils getInstence = new DataSearchUtils(); String result = getInstence.logCountStartByTime("2019-02-28 04:10:53"); System.out.println(result); /*一段时间的method统计*/ String result2 = getInstence.MethodTimesByTime("2019-02-28 04:10:53","2022-02-28 04:10:53"); System.out.println(result2); /*一段时间的ota接口统计*/ String result3 = getInstence.OtaTimesByTime("2019-02-28 04:10:53","2022-02-28 04:10:53"); System.out.println(result3); /*一段时间的route航线统计*/ String result4 = getInstence.RouteTimesByTime("2019-02-28 04:10:53","2022-02-28 04:10:53"); System.out.println(result4); /*一段时间的route航线错误率统计*/ String result5 = getInstence.RouteErroFrequncyByTime("2019-02-28 04:10:53","2022-02-28 04:10:53"); System.out.println(result5); } }
d350033d5604998d1407ced9e64fce7dbbf25912
3146c7eef4ea44a13b2cba2bea6d8893e7c3dca6
/SpringJPA/src/main/java/com/spring/springbootstarter/topic/TopicRepository.java
848594f97fe65ab7bdaf4b6c1ab56d89f3085482
[]
no_license
trainig2020/Ezhilarasi_SpringBoot
e014f3cbdf6ec6dc3c6a00e538daf4af85de34cc
b16af900d47a71245612d6d2fedab72ef3e152a9
refs/heads/master
2022-12-14T03:24:12.200453
2020-08-19T15:36:46
2020-08-19T15:36:46
288,235,624
0
0
null
null
null
null
UTF-8
Java
false
false
188
java
package com.spring.springbootstarter.topic; import org.springframework.data.repository.CrudRepository; public interface TopicRepository extends CrudRepository<Topic, String>{ }
110510b619f454b63b1018415bd15e9f1c4fb919
e14a378b9c583c7b6f56a3d86ea17f6948074da3
/app/src/androidTest/java/com/funny/read/ExampleInstrumentedTest.java
ca507fc729ab08bd23038a63f3e12b781eac6c8e
[]
no_license
FunnyLee/EasyRead
7a00904dd66120865bcdff6a36f580e47b7fb9dd
9710f71e1e2dbb1909c01995dd3c3865d67bff62
refs/heads/master
2020-08-23T01:32:36.651250
2019-11-27T06:20:34
2019-11-27T06:20:34
216,516,098
0
0
null
null
null
null
UTF-8
Java
false
false
712
java
package com.funny.read; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("com.funny.read", appContext.getPackageName()); } }
5865a8625ca512268d20ad5cd440448c4c36d32d
3dda0fe272106bbd64001a6d300247739e76ba80
/Sum.java
3a70d7f96eac83e18e8083f015c6e6961dad9d43
[]
no_license
tsangjustin/LargeSum
7dea66156fe742960b716fd868c2290f9926713c
aef159b3f75437ea541aa1405f0df5fbdb39c527
refs/heads/master
2021-01-10T01:59:00.231858
2016-02-07T20:26:35
2016-02-07T20:26:35
51,048,902
0
0
null
null
null
null
UTF-8
Java
false
false
8,142
java
public class Sum { public static final short SPLIT = 17; public static String addLargeNumbers(String first, String second) { if(first == "0") return second; if(second == "0") return first; String result = ""; short carry = 0, firstLength = (short) first.length(), secondLength = (short) second.length(); short max = (short) Math.max(firstLength, secondLength); short min = (short) Math.min(firstLength, secondLength); for(int i = 0; i < Math.ceil((float) min / SPLIT); ++i) { int pos = i * SPLIT, pos2 = (i + 1) * SPLIT; String firstpart = first.substring(Math.max(0, firstLength - pos2), firstLength - pos); String secondpart = second.substring(Math.max(0, secondLength - pos2), secondLength - pos); long sum = Long.parseLong(firstpart) + Long.parseLong(secondpart) + carry; String part = String.valueOf(sum); while(pos2 > pos) { short firstloc = (short) (firstLength - pos2); short secondloc = (short) (secondLength - pos2); if(firstloc < 0 && secondloc < 0) { pos2--; continue; } if((secondloc < 0 && first.substring(firstloc,firstloc+1).equals("0")) || (firstloc < 0 && second.substring(secondloc,secondloc+1).equals("0")) || (secondloc >= 0 && firstloc >= 0 && first.substring(firstloc,firstloc+1).equals("0") && second.substring(secondloc,secondloc+1).equals("0"))) { part = "0" + part; pos2--; } else break; } if(part.length() > SPLIT) { carry = Short.parseShort(part.substring(0, 1)); part = part.substring(1, SPLIT + 1); } else carry = 0; result = part + result; } if((max - 1) / SPLIT != (min - 1) / SPLIT) { int end = (int) (Math.ceil((float) min / SPLIT) * SPLIT); if(firstLength > secondLength) result = addLargeNumbers(String.valueOf(carry), first.substring(0, firstLength - end)) + result; else result = addLargeNumbers(String.valueOf(carry), second.substring(0, secondLength - end)) + result; } else if(carry != 0) result = String.valueOf(carry) + result; return result; } public static void main(String [ ] args) { String [] arr = {"37107287533902102798797998220837590246510135740250", "46376937677490009712648124896970078050417018260538", "74324986199524741059474233309513058123726617309629", "91942213363574161572522430563301811072406154908250", "23067588207539346171171980310421047513778063246676", "89261670696623633820136378418383684178734361726757", "28112879812849979408065481931592621691275889832738", "44274228917432520321923589422876796487670272189318", "47451445736001306439091167216856844588711603153276", "70386486105843025439939619828917593665686757934951", "62176457141856560629502157223196586755079324193331", "64906352462741904929101432445813822663347944758178", "92575867718337217661963751590579239728245598838407", "58203565325359399008402633568948830189458628227828", "80181199384826282014278194139940567587151170094390", "35398664372827112653829987240784473053190104293586", "86515506006295864861532075273371959191420517255829", "71693888707715466499115593487603532921714970056938", "54370070576826684624621495650076471787294438377604", "53282654108756828443191190634694037855217779295145", "36123272525000296071075082563815656710885258350721", "45876576172410976447339110607218265236877223636045", "17423706905851860660448207621209813287860733969412", "81142660418086830619328460811191061556940512689692", "51934325451728388641918047049293215058642563049483", "62467221648435076201727918039944693004732956340691", "15732444386908125794514089057706229429197107928209", "55037687525678773091862540744969844508330393682126", "18336384825330154686196124348767681297534375946515", "80386287592878490201521685554828717201219257766954", "78182833757993103614740356856449095527097864797581", "16726320100436897842553539920931837441497806860984", "48403098129077791799088218795327364475675590848030", "87086987551392711854517078544161852424320693150332", "59959406895756536782107074926966537676326235447210", "69793950679652694742597709739166693763042633987085", "41052684708299085211399427365734116182760315001271", "65378607361501080857009149939512557028198746004375", "35829035317434717326932123578154982629742552737307", "94953759765105305946966067683156574377167401875275", "88902802571733229619176668713819931811048770190271", "25267680276078003013678680992525463401061632866526", "36270218540497705585629946580636237993140746255962", "24074486908231174977792365466257246923322810917141", "91430288197103288597806669760892938638285025333403", "34413065578016127815921815005561868836468420090470", "23053081172816430487623791969842487255036638784583", "11487696932154902810424020138335124462181441773470", "63783299490636259666498587618221225225512486764533", "67720186971698544312419572409913959008952310058822", "95548255300263520781532296796249481641953868218774", "76085327132285723110424803456124867697064507995236", "37774242535411291684276865538926205024910326572967", "23701913275725675285653248258265463092207058596522", "29798860272258331913126375147341994889534765745501", "18495701454879288984856827726077713721403798879715", "38298203783031473527721580348144513491373226651381", "34829543829199918180278916522431027392251122869539", "40957953066405232632538044100059654939159879593635", "29746152185502371307642255121183693803580388584903", "41698116222072977186158236678424689157993532961922", "62467957194401269043877107275048102390895523597457", "23189706772547915061505504953922979530901129967519", "86188088225875314529584099251203829009407770775672", "11306739708304724483816533873502340845647058077308", "82959174767140363198008187129011875491310547126581", "97623331044818386269515456334926366572897563400500", "42846280183517070527831839425882145521227251250327", "55121603546981200581762165212827652751691296897789", "32238195734329339946437501907836945765883352399886", "75506164965184775180738168837861091527357929701337", "62177842752192623401942399639168044983993173312731", "32924185707147349566916674687634660915035914677504", "99518671430235219628894890102423325116913619626622", "73267460800591547471830798392868535206946944540724", "76841822524674417161514036427982273348055556214818", "97142617910342598647204516893989422179826088076852", "87783646182799346313767754307809363333018982642090", "10848802521674670883215120185883543223812876952786", "71329612474782464538636993009049310363619763878039", "62184073572399794223406235393808339651327408011116", "66627891981488087797941876876144230030984490851411", "60661826293682836764744779239180335110989069790714", "85786944089552990653640447425576083659976645795096", "66024396409905389607120198219976047599490197230297", "64913982680032973156037120041377903785566085089252", "16730939319872750275468906903707539413042652315011", "94809377245048795150954100921645863754710598436791", "78639167021187492431995700641917969777599028300699", "15368713711936614952811305876380278410754449733078", "40789923115535562561142322423255033685442488917353", "44889911501440648020369068063960672322193204149535", "41503128880339536053299340368006977710650566631954", "81234880673210146739058568557934581403627822703280", "82616570773948327592232845941706525094512325230608", "22918802058777319719839450180888072429661980811197", "77158542502016545090413245809786882778948721859617", "72107838435069186155435662884062257473692284509516", "20849603980134001723930671666823555245252804609722", "53503534226472524250874054075591789781264330331690", }; String result = "0"; for(int i = 0; i < 100; ++i) result = addLargeNumbers(result, arr[i]); System.out.println(result); } }
c480d432a369f41cdb216a4f50e0ce1b8ae8a00f
1032ada7f74b7f518458a05f02704ff0faa45940
/app/src/main/java/com/ycxt/pos/activity/ContactICCardActivity.java
5aff56e0501736952797498e963852f15cfc6cc3
[]
no_license
jiangslee/Pos
7d064c8549b19ed9c844f5849848b8203a101d9e
57c0976ddbb1cb4ebc790e267e2a670428def27a
refs/heads/master
2021-06-07T16:06:08.476736
2016-10-19T08:07:04
2016-10-19T08:07:04
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,567
java
package com.ycxt.pos.activity; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.util.Log; import android.view.Menu; import android.view.View; import android.widget.EditText; import android.widget.Toast; import com.landicorp.android.eptapi.card.InsertCpuCardDriver; import com.ycxt.pos.R; import com.ycxt.pos.contans.Contans; import com.ycxt.pos.device.ContactICCardSample; import com.ycxt.pos.device.card.ContactCpuCard; import com.ycxt.pos.framework.utils.utils.IntentUtils; import com.ycxt.pos.socket.Socket_Android; import com.ycxt.pos.utils.Changliang; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.InetSocketAddress; import java.net.Socket; import java.net.URLDecoder; /** * There are all contact IC card operations samples in this Activity. * @author chenwei * */ public class ContactICCardActivity extends BaseActivity { /** * Contact IC card sample. */ private ContactICCardSample contactICSample; private ContactCpuCard contactCpuCard=new ContactCpuCard(new InsertCpuCardDriver(),this) { @Override protected void showErrorMessage(String msg) { } @Override public void showFinalMessage(String msg) { } @Override protected void onServiceCrash() { ContactICCardActivity.this.onDeviceServiceCrash(); } }; private Handler handler=new Handler(){ @Override public void handleMessage(Message msg) { switch(msg.what){ } } }; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.contact_ic_card); // Create all samples contactCpuCard=new ContactCpuCard(new InsertCpuCardDriver(),this) { @Override protected void showErrorMessage(String msg) { } @Override public void showFinalMessage(String msg) { displayInfo(msg); } @Override protected void onServiceCrash() { } }; contactICSample = new ContactICCardSample(this) { @Override protected void onDeviceServiceCrash() { // Handle in 'ContactICCardActivity' ContactICCardActivity.this.onDeviceServiceCrash(); } @Override protected void displayICInfo(String cardInfo) { // Handle in 'ContactICCardActivity' ContactICCardActivity.this.displayInfo(cardInfo); } }; // Create all listener to listen user input findViewById(R.id.button_search_cpu_card_and_read).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { displayInfo(" ------------ start search ------------ "); Changliang.a=1; contactICSample.searchCpuCard(); contactCpuCard.OperationCard(); } }); findViewById(R.id.button_stop_search).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { IntentUtils.openActivity(ContactICCardActivity.this,Socket_Android.class); // displayInfo(" ### stop search ### \n\n"); // contactICSample.stopSearch(); } }); findViewById(R.id.button_read_psam).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { displayInfo(" ------------ start read ------------ "); contactICSample.readPSAMCard(); } }); // Mode radio buttons // Powerup mode and vol is used on deferent cards. findViewById(R.id.radioButton_emv).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { contactICSample.setToEMVMode(); } }); findViewById(R.id.radioButton_shb).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { contactICSample.setToSHBMode(); } }); findViewById(R.id.radioButton_bps192).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { contactICSample.setToBPS19200Mode(); } }); // Vol radio buttons findViewById(R.id.radioButton_vol5).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { contactICSample.setTo5VOL(); } }); findViewById(R.id.radioButton_vol3).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { contactICSample.setTo3VOL(); } }); findViewById(R.id.radioButton_vol18).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { contactICSample.setTo1_8VOL(); } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.activity_main, menu); return true; } @Override protected void onResume() { super.onResume(); bindDeviceService(); } /** * Sometimes you need to release the right of using device before other application 'onStart'. */ @Override protected void onPause() { super.onPause(); unbindDeviceService(); } /** * If device service crashed, quit application or try to relogin service again. */ public void onDeviceServiceCrash() { bindDeviceService(); } /** * All device operation result infomation will be displayed by this method. * @param info */ public void displayInfo(String info) { EditText infoEditText = (EditText) findViewById(R.id.info_text); String text = infoEditText.getText().toString(); if(text.isEmpty()) { infoEditText.setText(info); } else { infoEditText.setText(text + "\n" + info); } infoEditText.setSelection(infoEditText.length()); } }
c62ef13470ec812a2bb2445345a715cfb22a2e74
db94a3ccb056586eee99560c3efcd2788d93e106
/meinian_interface/src/main/java/com/atguigu/service/SetmealService.java
eaab19625a56ade30cbd947d8fa960ac7079e490
[]
no_license
xiaojinwei19991107/github1021
b041991a70f547701bb02026bed77bbcddbf4c77
24119a188ed395a8cc622ad5fc663fe56565ea07
refs/heads/master
2023-07-31T15:12:14.799288
2021-10-03T08:46:14
2021-10-03T08:46:14
412,963,489
0
0
null
null
null
null
UTF-8
Java
false
false
571
java
package com.atguigu.service; import com.atguigu.entity.PageResult; import com.atguigu.entity.QueryPageBean; import com.atguigu.pojo.Setmeal; import java.util.List; import java.util.Map; /** * SetmealService * * @Author: 马伟奇 * @CreateTime: 2020-03-27 * @Description: */ public interface SetmealService { PageResult findPage(QueryPageBean queryPageBean); void add(Setmeal setmeal, Integer[] travelgroupIds); List getSetmeal(); Setmeal findById(Integer id); Setmeal getsetmealById(Integer id); List<Map> getSetmealAndValue(); }
759429b372f8c45277169d2a1b57cc4875c05deb
17e8438486cb3e3073966ca2c14956d3ba9209ea
/dso/branches/dev5888/code/base/common/tests.unit/com/tc/util/TCPropertiesConstsTest.java
824f89bac4042c8aeeb8c0f0c6f1e74882834c01
[]
no_license
sirinath/Terracotta
fedfc2c4f0f06c990f94b8b6c3b9c93293334345
00a7662b9cf530dfdb43f2dd821fa559e998c892
refs/heads/master
2021-01-23T05:41:52.414211
2015-07-02T15:21:54
2015-07-02T15:21:54
38,613,711
1
0
null
null
null
null
UTF-8
Java
false
false
4,296
java
/* * All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved. */ package com.tc.util; import com.tc.properties.TCPropertiesConsts; import com.tc.properties.TCPropertiesImpl; import com.tc.test.TCTestCase; import java.io.IOException; import java.io.InputStream; import java.lang.reflect.Field; import java.util.HashSet; import java.util.Iterator; import java.util.Properties; import java.util.Set; public class TCPropertiesConstsTest extends TCTestCase { // This file resides in src.resource/com/tc/properties directory private static final String DEFAULT_TC_PROPERTIES_FILE = "tc.properties"; private static final Set<String> exemptedProperties = new HashSet<String>(); private final Properties props = new Properties(); @Override protected void setUp() { loadDefaults(DEFAULT_TC_PROPERTIES_FILE); exemptedProperties.add(TCPropertiesConsts.LICENSE_PATH); exemptedProperties.add(TCPropertiesConsts.PRODUCTKEY_PATH); exemptedProperties.add(TCPropertiesConsts.PRODUCTKEY_RESOURCE_PATH); exemptedProperties.add(TCPropertiesConsts.L2_CACHEMANAGER_THRESHOLD); exemptedProperties.add(TCPropertiesConsts.L2_CACHEMANAGER_CRITICALTHRESHOLD); exemptedProperties.add(TCPropertiesConsts.L2_OFFHEAP_SKIP_JVMARG_CHECK); exemptedProperties.add(TCPropertiesConsts.L2_OFFHEAP_OBJECT_CACHE_CONCURRENCY); exemptedProperties.add(TCPropertiesConsts.L2_OFFHEAP_OBJECT_CACHE_INITIAL_DATASIZE); exemptedProperties.add(TCPropertiesConsts.L2_OFFHEAP_OBJECT_CACHE_TABLESIZE); exemptedProperties.add(TCPropertiesConsts.L2_SEDA_FAULTSTAGE_THREADS); exemptedProperties.add(TCPropertiesConsts.L2_SEDA_FLUSHSTAGE_THREADS); exemptedProperties.add(TCPropertiesConsts.L2_SEDA_MANAGEDOBJECTREQUESTSTAGE_THREADS); exemptedProperties.add(TCPropertiesConsts.L2_SEDA_MANAGEDOBJECTRESPONSESTAGE_THREADS); exemptedProperties.add(TCPropertiesConsts.L2_NHA_TCGROUPCOMM_RECONNECT_L2PROXY_TO_PORT); exemptedProperties.add(TCPropertiesConsts.L2_OFFHEAP_CACHE_MAX_CHUNK_SIZE); exemptedProperties.add(TCPropertiesConsts.L2_OFFHEAP_CACHE_MIN_CHUNK_SIZE); } private void loadDefaults(String propFile) { InputStream in = TCPropertiesImpl.class.getResourceAsStream(propFile); if (in == null) { throw new AssertionError("TC Property file " + propFile + " not Found"); } try { System.out.println("Loading default properties from " + propFile); props.load(in); } catch (IOException e) { throw new AssertionError(e); } } public void testAllConstsDeclared() { Set<String> tcPropertiesConsts = new HashSet<String>(); Field[] fields = TCPropertiesConsts.class.getDeclaredFields(); for (Field field : fields) { try { tcPropertiesConsts.add(field.get(null).toString()); } catch (Exception e) { throw new AssertionError(e); } } tcPropertiesConsts.remove(TCPropertiesConsts.OLD_PROPERTIES.toString()); Set tcProperties = props.keySet(); for (Iterator<String> iter = tcProperties.iterator(); iter.hasNext();) { String tcProperty = iter.next(); Assert .assertTrue("There is no constant declared for " + tcProperty + " in " + TCPropertiesConsts.class.getName(), tcPropertiesConsts.contains(tcProperty)); } for (String tcProperty : tcPropertiesConsts) { // TCPropertiesConsts.L2_NHA_TCGROUPCOMM_RECONNECT_L2PROXY_TO_PORT is added only for internal testing purposes if (!exemptedProperties.contains(tcProperty) && !tcProperties.contains(tcProperty)) { int index; for (index = 0; index < TCPropertiesConsts.OLD_PROPERTIES.length; index++) { if (TCPropertiesConsts.OLD_PROPERTIES[index].equals(tcProperty)) { break; } } if (index == TCPropertiesConsts.OLD_PROPERTIES.length) { Assert.fail(tcProperty + " is defined in " + TCPropertiesConsts.class.getName() + " but is not present in tc.properties file. " + " Plesase remove it from " + TCPropertiesConsts.class.getName() + " and add it to " + TCPropertiesConsts.class.getName() + " OLD_PROPERTIES field"); } } } } }
[ "teck@7fc7bbf3-cf45-46d4-be06-341739edd864" ]
teck@7fc7bbf3-cf45-46d4-be06-341739edd864
6158da21f191d26fb41942d9ff729c80e9ac3c10
de8fd61a378d5791a1ac17fd60783e6d1af449c7
/Test/src/test/TestRottingOranges.java
2bf55fb581ab17193bdc0cdf2a1d7ebcb82ba8b0
[]
no_license
XiaoxingCheng/TestForLeetCode
4cac9247b4645285760ffd4dff118f45ef9a1107
68d9dab9495f57b512bd384dd563bf518b341ab1
refs/heads/master
2021-05-18T15:49:52.838699
2020-03-30T13:16:39
2020-03-30T13:16:39
251,303,906
0
0
null
null
null
null
UTF-8
Java
false
false
1,290
java
package test; import java.util.LinkedList; import java.util.Queue; public class TestRottingOranges { public static void main(String[] args) { int[][] grid = {{2,1,1},{1,1,0},{0,1,1}}; System.out.println(orangesRotting(grid)); } public static int orangesRotting(int[][] grid) { if (grid == null || grid.length == 0) { return -1; } int good = 0; int[][] dirs = { { 0, 1 }, { 1, 0 }, { 0, -1 }, { -1, 0 } }; Queue<int[]> queue = new LinkedList<>(); for (int i = 0; i < grid.length; i++) { for (int j = 0; j < grid[0].length; j++) { if (grid[i][j] == 2) { queue.offer(new int[] { i, j }); } else if (grid[i][j] == 1) { good++; } } } if (good == 0) { return 0; } int res = 0; while (!queue.isEmpty()) { int size = queue.size(); for (int i = 0; i < size; i++) { int[] q = queue.poll(); for (int j = 0; j < 4; j++) { int newX = q[0] + dirs[j][0]; int newY = q[1] + dirs[j][1]; if (newX >= 0 && newX < grid[0].length && newY >= 0 && newY < grid.length && grid[newX][newY] == 1) { queue.offer(new int[] { newX, newY }); grid[newX][newY] = 2; good--; } } } if (queue.size() != 0) { res++; } else { break; } } return good == 0 ? res : -1; } }
9e97fc7e3a425c3e6fa555907c9e72e5f6fedf9c
bcfd3401b363d4e430a8e7d167e697c3e550455a
/productViewServiceRibbon/src/main/java/cn/rabbit/ProductViewServiceRibbonApplication.java
8120a0efefc359a7df611ac39a05e666c2387b97
[]
no_license
rabbitwei/SpringCloud
33b2720be19565c4f15bc31bb5047be7be492591
e480d91ab754ae938111a16b1a353c610056608a
refs/heads/master
2021-07-16T05:50:33.257268
2019-10-23T09:22:07
2019-10-23T09:22:07
216,519,243
0
0
null
2020-10-13T16:55:31
2019-10-21T08:42:51
Java
UTF-8
Java
false
false
1,211
java
package cn.rabbit; import cn.hutool.core.util.NetUtil; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.cloud.client.loadbalancer.LoadBalanced; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; import org.springframework.context.annotation.Bean; import org.springframework.web.client.RestTemplate; /** * Hello world! * */ @SpringBootApplication @EnableEurekaClient @EnableDiscoveryClient //表示用于发现eureka 注册中心的微服务。 public class ProductViewServiceRibbonApplication { public static void main( String[] args ) { int port = 8010; if(!NetUtil.isUsableLocalPort(port)) { System.err.printf("端口%d被占用了,无法启动%n", port ); System.exit(1); } new SpringApplicationBuilder(ProductViewServiceRibbonApplication.class).run(args); } //表示用 restTemplate 这个工具来做负载均衡 @Bean @LoadBalanced RestTemplate restTemplate() { return new RestTemplate(); } }
37ee23fc3372087c4945d7071f5fa3768dc15b86
209ec7dc85bde88f1f62c52bb46ef27467918875
/app/build/generated/source/r/debug/com/registree/registree/R.java
89cb19c01acef3a38f5c806ecb4f81d3255c7b2b
[]
no_license
matheuspiaui/RegisTree2
6d34d6a6a41d4757453f867133e1a68bfac238db
d1dad02c09dc1e9fc30c06fec288b0c490a91852
refs/heads/master
2021-08-23T12:54:22.560450
2017-12-05T00:16:53
2017-12-05T00:16:54
null
0
0
null
null
null
null
UTF-8
Java
false
false
746,148
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.registree.registree; 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 class animator { public static final int design_appbar_state_list_animator=0x7f060000; } public static final class array { public static final int categoria=0x7f0d0000; } 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=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 actionBarItemBackground=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 actionBarPopupTheme=0x7f01006c; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=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 actionBarSplitStyle=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 actionBarStyle=0x7f01006d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionBarTabBarStyle=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 actionBarTabStyle=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 actionBarTabTextStyle=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 actionBarTheme=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 actionBarWidgetTheme=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 actionButtonStyle=0x7f01008d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionDropDownStyle=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 actionLayout=0x7f010107; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010074; /** <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=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 actionModeBackground=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 actionModeCloseButtonStyle=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 actionModeCloseDrawable=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 actionModeCopyDrawable=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 actionModeCutDrawable=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 actionModeFindDrawable=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 actionModePasteDrawable=0x7f01007d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModePopupWindowStyle=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 actionModeSelectAllDrawable=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 actionModeShareDrawable=0x7f01007f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int actionModeSplitBackground=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 actionModeStyle=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 actionModeWebSearchDrawable=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 actionOverflowButtonStyle=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 actionOverflowMenuStyle=0x7f01006b; /** <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=0x7f010109; /** <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=0x7f010108; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 alertDialogButtonGroupStyle=0x7f0100b9; /** <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=0x7f0100ba; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 alertDialogTheme=0x7f0100bb; /** <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=0x7f0100d1; /** <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=0x7f0100e3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100f5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100f6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int autoCompleteTextViewStyle=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 background=0x7f010038; /** <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=0x7f01003a; /** <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=0x7f010039; /** <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=0x7f010171; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int backgroundTintMode=0x7f010172; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100f7; /** <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=0x7f0100fe; /** <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=0x7f0100cf; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_overlapTop=0x7f010122; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100ce; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int behavior_skipCollapsed=0x7f0100d0; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int borderWidth=0x7f0100fc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010092; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 bottomSheetStyle=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 buttonBarButtonStyle=0x7f01008f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int buttonBarNegativeButtonStyle=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 buttonBarNeutralButtonStyle=0x7f0100bf; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 buttonBarStyle=0x7f01008e; /** <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=0x7f010166; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004d; /** <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 one of the following constant values.</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>standard</code></td><td>0</td><td></td></tr> <tr><td><code>wide</code></td><td>1</td><td></td></tr> <tr><td><code>icon_only</code></td><td>2</td><td></td></tr> </table> */ public static final int buttonSize=0x7f010130; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 buttonStyleSmall=0x7f0100c2; /** <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=0x7f0100e4; /** <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> */ public static final int buttonTintMode=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 checkboxStyle=0x7f0100c3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int checkedTextViewStyle=0x7f0100c4; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int circleCrop=0x7f010105; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 closeItemLayout=0x7f01004a; /** <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=0x7f010168; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010167; /** <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=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 collapsedTitleTextAppearance=0x7f0100d8; /** <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=0x7f0100f1; /** <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=0x7f0100b0; /** <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=0x7f0100b7; /** <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=0x7f0100b4; /** <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=0x7f0100b2; /** <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=0x7f0100b3; /** <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=0x7f0100b1; /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int colorPrimary=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 colorPrimaryDark=0x7f0100af; /** <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 one of the following constant values.</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>dark</code></td><td>0</td><td></td></tr> <tr><td><code>light</code></td><td>1</td><td></td></tr> <tr><td><code>auto</code></td><td>2</td><td></td></tr> </table> */ public static final int colorScheme=0x7f010131; /** <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=0x7f0100b5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int commitIcon=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 constraintSet=0x7f010000; /** <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=0x7f01010a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetEnd=0x7f010043; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010047; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetLeft=0x7f010044; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int contentInsetRight=0x7f010045; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010042; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010046; /** <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=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 controlBackground=0x7f0100b6; /** <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=0x7f010153; /** <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=0x7f010154; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 counterTextAppearance=0x7f010155; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01003b; /** <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=0x7f010126; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010087; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dialogTheme=0x7f010086; /** <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=0x7f010031; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010037; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerHorizontal=0x7f010094; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010102; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int dividerVertical=0x7f010093; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100f3; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010001; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 dropdownListPreferredItemHeight=0x7f01008a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextBackground=0x7f01009b; /** <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=0x7f01009a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int editTextStyle=0x7f0100c5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010048; /** <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=0x7f010151; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int errorTextAppearance=0x7f010152; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01004c; /** <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=0x7f010053; /** <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=0x7f0100df; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100d2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 expandedTitleMarginEnd=0x7f0100d5; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 expandedTitleMarginTop=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 expandedTitleTextAppearance=0x7f0100d7; /** <p>Must be one of the following constant values.</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=0x7f0100fa; /** <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=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 fastScrollHorizontalThumbDrawable=0x7f01011f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010120; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int fastScrollVerticalThumbDrawable=0x7f01011d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01011e; /** <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=0x7f0100ff; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100f4; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int goIcon=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 headerLayout=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 height=0x7f010002; /** <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=0x7f010041; /** <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=0x7f010157; /** <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=0x7f010150; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int hintTextAppearance=0x7f01014f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01008c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int homeLayout=0x7f01003c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010035; /** <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=0x7f010124; /** <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 imageAspectRatio=0x7f010104; /** <p>Must be one of the following constant values.</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>adjust_width</code></td><td>1</td><td></td></tr> <tr><td><code>adjust_height</code></td><td>2</td><td></td></tr> </table> */ public static final int imageAspectRatioAdjust=0x7f010103; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int imageButtonStyle=0x7f01009c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int indeterminateProgressStyle=0x7f01003e; /** <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=0x7f01004b; /** <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=0x7f010121; /** <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=0x7f010003; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010111; /** <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=0x7f01010f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010040; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010112; /** <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=0x7f010110; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int keylines=0x7f0100e6; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout=0x7f010123; /** <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=0x7f010118; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_anchor=0x7f0100e9; /** <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=0x7f0100eb; /** <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=0x7f0100e8; /** <p>Must be one of the following constant values.</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=0x7f0100e1; /** <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=0x7f0100e2; /** <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_constraintBaseline_creator=0x7f010004; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintBaseline_toBaselineOf=0x7f010005; /** <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_constraintBottom_creator=0x7f010006; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintBottom_toBottomOf=0x7f010007; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintBottom_toTopOf=0x7f010008; /** <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_constraintDimensionRatio=0x7f010009; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintEnd_toEndOf=0x7f01000a; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintEnd_toStartOf=0x7f01000b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_constraintGuide_begin=0x7f01000c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_constraintGuide_end=0x7f01000d; /** <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_constraintGuide_percent=0x7f01000e; /** <p>Must be one of the following constant values.</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>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> */ public static final int layout_constraintHeight_default=0x7f01000f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_constraintHeight_max=0x7f010010; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_constraintHeight_min=0x7f010011; /** <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_constraintHorizontal_bias=0x7f010012; /** <p>Must be one of the following constant values.</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>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> */ public static final int layout_constraintHorizontal_chainStyle=0x7f010013; /** <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_constraintHorizontal_weight=0x7f010014; /** <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_constraintLeft_creator=0x7f010015; /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <p>May be one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintLeft_toLeftOf=0x7f010016; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintLeft_toRightOf=0x7f010017; /** <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_constraintRight_creator=0x7f010018; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintRight_toLeftOf=0x7f010019; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintRight_toRightOf=0x7f01001a; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintStart_toEndOf=0x7f01001b; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintStart_toStartOf=0x7f01001c; /** <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_constraintTop_creator=0x7f01001d; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintTop_toBottomOf=0x7f01001e; /** <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 one of the following constant values.</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>parent</code></td><td>0</td><td></td></tr> </table> */ public static final int layout_constraintTop_toTopOf=0x7f01001f; /** <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_constraintVertical_bias=0x7f010020; /** <p>Must be one of the following constant values.</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>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> */ public static final int layout_constraintVertical_chainStyle=0x7f010021; /** <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_constraintVertical_weight=0x7f010022; /** <p>Must be one of the following constant values.</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>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> */ public static final int layout_constraintWidth_default=0x7f010023; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_constraintWidth_max=0x7f010024; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_constraintWidth_min=0x7f010025; /** <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=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 layout_editor_absoluteX=0x7f010026; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_editor_absoluteY=0x7f010027; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_goneMarginBottom=0x7f010028; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_goneMarginEnd=0x7f010029; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_goneMarginLeft=0x7f01002a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_goneMarginRight=0x7f01002b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int layout_goneMarginStart=0x7f01002c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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_goneMarginTop=0x7f01002d; /** <p>Must be one of the following constant values.</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=0x7f0100ec; /** <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=0x7f0100ea; /** <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>1</td><td></td></tr> <tr><td><code>all</code></td><td>2</td><td></td></tr> <tr><td><code>basic</code></td><td>4</td><td></td></tr> <tr><td><code>chains</code></td><td>8</td><td></td></tr> </table> */ public static final int layout_optimizationLevel=0x7f01002e; /** <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=0x7f010056; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int layout_scrollInterpolator=0x7f010057; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listChoiceBackgroundIndicator=0x7f0100ad; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listDividerAlertDialog=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 listItemLayout=0x7f010051; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listLayout=0x7f01004e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int listMenuViewStyle=0x7f0100cd; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100a7; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100a1; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int listPreferredItemHeightLarge=0x7f0100a3; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100a2; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100a4; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100a5; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int logo=0x7f010036; /** <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=0x7f01016b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010133; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int maxButtonHeight=0x7f010165; /** <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=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 menu=0x7f01010e; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int multiChoiceItemLayout=0x7f01004f; /** <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=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 navigationIcon=0x7f010169; /** <p>Must be one of the following constant values.</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=0x7f010030; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int overlapAnchor=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 paddingBottomNoButtons=0x7f010116; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01016f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01016e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010117; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100aa; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int panelMenuListTheme=0x7f0100ac; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100ab; /** <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=0x7f01015a; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int passwordToggleDrawable=0x7f010159; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int passwordToggleEnabled=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 passwordToggleTint=0x7f01015b; /** <p>Must be one of the following constant values.</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=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 popupMenuStyle=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 popupTheme=0x7f010049; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int popupWindowStyle=0x7f010099; /** <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=0x7f01010c; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100fb; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int progressBarPadding=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 progressBarStyle=0x7f01003d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01012e; /** <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=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 radioButtonStyle=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 ratingBarStyle=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 ratingBarStyleIndicator=0x7f0100c8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int ratingBarStyleSmall=0x7f0100c9; /** <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=0x7f01011a; /** <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=0x7f0100f9; /** <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 string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. */ public static final int scopeUris=0x7f010132; /** <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=0x7f0100dd; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100dc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 searchIcon=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 searchViewStyle=0x7f0100a0; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int seekBarStyle=0x7f0100ca; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int selectableItemBackground=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 selectableItemBackgroundBorderless=0x7f010091; /** <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=0x7f010106; /** <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=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 showText=0x7f01013e; /** <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=0x7f010052; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int singleChoiceItemLayout=0x7f010050; /** <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=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 spinBars=0x7f0100f2; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int spinnerDropDownItemStyle=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 spinnerStyle=0x7f0100cb; /** <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=0x7f01013d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int srcCompat=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 stackFromEnd=0x7f01011b; /** <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=0x7f010115; /** <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=0x7f010054; /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>". <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int state_collapsible=0x7f010055; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int statusBarBackground=0x7f0100e7; /** <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=0x7f0100da; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 submitBackground=0x7f01012f; /** <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=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 subtitleTextAppearance=0x7f01015e; /** <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=0x7f01016d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010034; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 switchMinWidth=0x7f01013b; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01013c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f0100cc; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int switchTextAppearance=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 tabBackground=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 tabContentStart=0x7f010141; /** <p>Must be one of the following constant values.</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=0x7f010144; /** <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=0x7f01013f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010140; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>") containing a value of this type. */ public static final int tabMaxWidth=0x7f010146; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010145; /** <p>Must be one of the following constant values.</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=0x7f010143; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01014e; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=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 tabPaddingEnd=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 tabPaddingStart=0x7f01014a; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f01014b; /** <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=0x7f010149; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int tabTextAppearance=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 tabTextColor=0x7f010148; /** <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=0x7f01005c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceLargePopupMenu=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 textAppearanceListItem=0x7f0100a8; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceListItemSmall=0x7f0100a9; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearancePopupMenuHeader=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 textAppearanceSearchResultSubtitle=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 textAppearanceSearchResultTitle=0x7f01009d; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int textAppearanceSmallPopupMenu=0x7f010084; /** <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=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 textColorError=0x7f0100f0; /** <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=0x7f01009f; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". */ public static final int theme=0x7f010170; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f0100f8; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010139; /** <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=0x7f010134; /** <p>Must be one of the following constant values.</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=0x7f010135; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f010059; /** <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=0x7f01005a; /** <p>Must be one of the following constant values.</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=0x7f01005b; /** <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=0x7f01002f; /** <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=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 titleMargin=0x7f01015f; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010163; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010161; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010160; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010162; /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>". Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), in (inches), mm (millimeters). <p>This may also be a reference to a resource (in the form "<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or theme attribute (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=0x7f010164; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=0x7f01015d; /** <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=0x7f01016c; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 toolbarId=0x7f0100db; /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></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=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 toolbarStyle=0x7f010096; /** <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=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 track=0x7f010136; /** <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=0x7f010137; /** <p>Must be one of the following constant values.</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=0x7f010138; /** <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=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 voiceIcon=0x7f01012b; /** <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=0x7f01005d; /** <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=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 windowActionModeOverlay=0x7f010060; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010064; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010062; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010061; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=0x7f010063; /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.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=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>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=0x7f010066; /** <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=0x7f01005e; } public static final class bool { public static final int abc_action_bar_embed_tabs=0x7f0a0000; public static final int abc_allow_stacked_button_bar=0x7f0a0001; public static final int abc_config_actionMenuItemAllCaps=0x7f0a0002; public static final int abc_config_closeDialogWhenTouchOutside=0x7f0a0003; public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0004; } public static final class color { public static final int abc_background_cache_hint_selector_material_dark=0x7f0c005a; public static final int abc_background_cache_hint_selector_material_light=0x7f0c005b; public static final int abc_btn_colored_borderless_text_material=0x7f0c005c; public static final int abc_btn_colored_text_material=0x7f0c005d; public static final int abc_color_highlight_material=0x7f0c005e; public static final int abc_hint_foreground_material_dark=0x7f0c005f; public static final int abc_hint_foreground_material_light=0x7f0c0060; public static final int abc_input_method_navigation_guard=0x7f0c0001; public static final int abc_primary_text_disable_only_material_dark=0x7f0c0061; public static final int abc_primary_text_disable_only_material_light=0x7f0c0062; public static final int abc_primary_text_material_dark=0x7f0c0063; public static final int abc_primary_text_material_light=0x7f0c0064; public static final int abc_search_url_text=0x7f0c0065; public static final int abc_search_url_text_normal=0x7f0c0002; public static final int abc_search_url_text_pressed=0x7f0c0003; public static final int abc_search_url_text_selected=0x7f0c0004; public static final int abc_secondary_text_material_dark=0x7f0c0066; public static final int abc_secondary_text_material_light=0x7f0c0067; public static final int abc_tint_btn_checkable=0x7f0c0068; public static final int abc_tint_default=0x7f0c0069; public static final int abc_tint_edittext=0x7f0c006a; public static final int abc_tint_seek_thumb=0x7f0c006b; public static final int abc_tint_spinner=0x7f0c006c; public static final int abc_tint_switch_thumb=0x7f0c006d; public static final int abc_tint_switch_track=0x7f0c006e; public static final int accent_material_dark=0x7f0c0005; public static final int accent_material_light=0x7f0c0006; public static final int background_floating_material_dark=0x7f0c0007; public static final int background_floating_material_light=0x7f0c0008; public static final int background_material_dark=0x7f0c0009; public static final int background_material_light=0x7f0c000a; public static final int bright_foreground_disabled_material_dark=0x7f0c000b; public static final int bright_foreground_disabled_material_light=0x7f0c000c; public static final int bright_foreground_inverse_material_dark=0x7f0c000d; public static final int bright_foreground_inverse_material_light=0x7f0c000e; public static final int bright_foreground_material_dark=0x7f0c000f; public static final int bright_foreground_material_light=0x7f0c0010; public static final int button_material_dark=0x7f0c0011; public static final int button_material_light=0x7f0c0012; public static final int colorAccent=0x7f0c0013; public static final int colorPrimary=0x7f0c0014; public static final int colorPrimaryDark=0x7f0c0015; public static final int common_action_bar_splitter=0x7f0c0016; public static final int common_google_signin_btn_text_dark=0x7f0c006f; public static final int common_google_signin_btn_text_dark_default=0x7f0c0017; public static final int common_google_signin_btn_text_dark_disabled=0x7f0c0018; public static final int common_google_signin_btn_text_dark_focused=0x7f0c0019; public static final int common_google_signin_btn_text_dark_pressed=0x7f0c001a; public static final int common_google_signin_btn_text_light=0x7f0c0070; public static final int common_google_signin_btn_text_light_default=0x7f0c001b; public static final int common_google_signin_btn_text_light_disabled=0x7f0c001c; public static final int common_google_signin_btn_text_light_focused=0x7f0c001d; public static final int common_google_signin_btn_text_light_pressed=0x7f0c001e; public static final int common_plus_signin_btn_text_dark=0x7f0c0071; public static final int common_plus_signin_btn_text_dark_default=0x7f0c001f; public static final int common_plus_signin_btn_text_dark_disabled=0x7f0c0020; public static final int common_plus_signin_btn_text_dark_focused=0x7f0c0021; public static final int common_plus_signin_btn_text_dark_pressed=0x7f0c0022; public static final int common_plus_signin_btn_text_light=0x7f0c0072; public static final int common_plus_signin_btn_text_light_default=0x7f0c0023; public static final int common_plus_signin_btn_text_light_disabled=0x7f0c0024; public static final int common_plus_signin_btn_text_light_focused=0x7f0c0025; public static final int common_plus_signin_btn_text_light_pressed=0x7f0c0026; public static final int design_bottom_navigation_shadow_color=0x7f0c0027; public static final int design_error=0x7f0c0073; public static final int design_fab_shadow_end_color=0x7f0c0028; public static final int design_fab_shadow_mid_color=0x7f0c0029; public static final int design_fab_shadow_start_color=0x7f0c002a; public static final int design_fab_stroke_end_inner_color=0x7f0c002b; public static final int design_fab_stroke_end_outer_color=0x7f0c002c; public static final int design_fab_stroke_top_inner_color=0x7f0c002d; public static final int design_fab_stroke_top_outer_color=0x7f0c002e; public static final int design_snackbar_background_color=0x7f0c002f; public static final int design_textinput_error_color_dark=0x7f0c0030; public static final int design_textinput_error_color_light=0x7f0c0031; public static final int design_tint_password_toggle=0x7f0c0074; public static final int dim_foreground_disabled_material_dark=0x7f0c0032; public static final int dim_foreground_disabled_material_light=0x7f0c0033; public static final int dim_foreground_material_dark=0x7f0c0034; public static final int dim_foreground_material_light=0x7f0c0035; public static final int foreground_material_dark=0x7f0c0036; public static final int foreground_material_light=0x7f0c0037; public static final int highlighted_text_material_dark=0x7f0c0038; public static final int highlighted_text_material_light=0x7f0c0039; public static final int material_blue_grey_800=0x7f0c003a; public static final int material_blue_grey_900=0x7f0c003b; public static final int material_blue_grey_950=0x7f0c003c; public static final int material_deep_teal_200=0x7f0c003d; public static final int material_deep_teal_500=0x7f0c003e; public static final int material_grey_100=0x7f0c003f; public static final int material_grey_300=0x7f0c0040; public static final int material_grey_50=0x7f0c0041; public static final int material_grey_600=0x7f0c0042; public static final int material_grey_800=0x7f0c0043; public static final int material_grey_850=0x7f0c0044; public static final int material_grey_900=0x7f0c0045; public static final int notification_action_color_filter=0x7f0c0000; public static final int notification_icon_bg_color=0x7f0c0046; public static final int notification_material_background_media_default_color=0x7f0c0047; public static final int primary_dark_material_dark=0x7f0c0048; public static final int primary_dark_material_light=0x7f0c0049; public static final int primary_material_dark=0x7f0c004a; public static final int primary_material_light=0x7f0c004b; public static final int primary_text_default_material_dark=0x7f0c004c; public static final int primary_text_default_material_light=0x7f0c004d; public static final int primary_text_disabled_material_dark=0x7f0c004e; public static final int primary_text_disabled_material_light=0x7f0c004f; public static final int ripple_material_dark=0x7f0c0050; public static final int ripple_material_light=0x7f0c0051; public static final int secondary_text_default_material_dark=0x7f0c0052; public static final int secondary_text_default_material_light=0x7f0c0053; public static final int secondary_text_disabled_material_dark=0x7f0c0054; public static final int secondary_text_disabled_material_light=0x7f0c0055; public static final int switch_thumb_disabled_material_dark=0x7f0c0056; public static final int switch_thumb_disabled_material_light=0x7f0c0057; public static final int switch_thumb_material_dark=0x7f0c0075; public static final int switch_thumb_material_light=0x7f0c0076; public static final int switch_thumb_normal_material_dark=0x7f0c0058; public static final int switch_thumb_normal_material_light=0x7f0c0059; } public static final class dimen { public static final int abc_action_bar_content_inset_material=0x7f08000c; public static final int abc_action_bar_content_inset_with_nav=0x7f08000d; public static final int abc_action_bar_default_height_material=0x7f080001; public static final int abc_action_bar_default_padding_end_material=0x7f08000e; public static final int abc_action_bar_default_padding_start_material=0x7f08000f; public static final int abc_action_bar_elevation_material=0x7f08001d; public static final int abc_action_bar_icon_vertical_padding_material=0x7f08001e; public static final int abc_action_bar_overflow_padding_end_material=0x7f08001f; public static final int abc_action_bar_overflow_padding_start_material=0x7f080020; public static final int abc_action_bar_progress_bar_size=0x7f080002; public static final int abc_action_bar_stacked_max_height=0x7f080021; public static final int abc_action_bar_stacked_tab_max_width=0x7f080022; public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f080023; public static final int abc_action_bar_subtitle_top_margin_material=0x7f080024; public static final int abc_action_button_min_height_material=0x7f080025; public static final int abc_action_button_min_width_material=0x7f080026; public static final int abc_action_button_min_width_overflow_material=0x7f080027; public static final int abc_alert_dialog_button_bar_height=0x7f080000; public static final int abc_button_inset_horizontal_material=0x7f080028; public static final int abc_button_inset_vertical_material=0x7f080029; public static final int abc_button_padding_horizontal_material=0x7f08002a; public static final int abc_button_padding_vertical_material=0x7f08002b; public static final int abc_cascading_menus_min_smallest_width=0x7f08002c; public static final int abc_config_prefDialogWidth=0x7f080005; public static final int abc_control_corner_material=0x7f08002d; public static final int abc_control_inset_material=0x7f08002e; public static final int abc_control_padding_material=0x7f08002f; public static final int abc_dialog_fixed_height_major=0x7f080006; public static final int abc_dialog_fixed_height_minor=0x7f080007; public static final int abc_dialog_fixed_width_major=0x7f080008; public static final int abc_dialog_fixed_width_minor=0x7f080009; public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f080030; public static final int abc_dialog_list_padding_top_no_title=0x7f080031; public static final int abc_dialog_min_width_major=0x7f08000a; public static final int abc_dialog_min_width_minor=0x7f08000b; public static final int abc_dialog_padding_material=0x7f080032; public static final int abc_dialog_padding_top_material=0x7f080033; public static final int abc_dialog_title_divider_material=0x7f080034; public static final int abc_disabled_alpha_material_dark=0x7f080035; public static final int abc_disabled_alpha_material_light=0x7f080036; public static final int abc_dropdownitem_icon_width=0x7f080037; public static final int abc_dropdownitem_text_padding_left=0x7f080038; public static final int abc_dropdownitem_text_padding_right=0x7f080039; public static final int abc_edit_text_inset_bottom_material=0x7f08003a; public static final int abc_edit_text_inset_horizontal_material=0x7f08003b; public static final int abc_edit_text_inset_top_material=0x7f08003c; public static final int abc_floating_window_z=0x7f08003d; public static final int abc_list_item_padding_horizontal_material=0x7f08003e; public static final int abc_panel_menu_list_width=0x7f08003f; public static final int abc_progress_bar_height_material=0x7f080040; public static final int abc_search_view_preferred_height=0x7f080041; public static final int abc_search_view_preferred_width=0x7f080042; public static final int abc_seekbar_track_background_height_material=0x7f080043; public static final int abc_seekbar_track_progress_height_material=0x7f080044; public static final int abc_select_dialog_padding_start_material=0x7f080045; public static final int abc_switch_padding=0x7f080019; public static final int abc_text_size_body_1_material=0x7f080046; public static final int abc_text_size_body_2_material=0x7f080047; public static final int abc_text_size_button_material=0x7f080048; public static final int abc_text_size_caption_material=0x7f080049; public static final int abc_text_size_display_1_material=0x7f08004a; public static final int abc_text_size_display_2_material=0x7f08004b; public static final int abc_text_size_display_3_material=0x7f08004c; public static final int abc_text_size_display_4_material=0x7f08004d; public static final int abc_text_size_headline_material=0x7f08004e; public static final int abc_text_size_large_material=0x7f08004f; public static final int abc_text_size_medium_material=0x7f080050; public static final int abc_text_size_menu_header_material=0x7f080051; public static final int abc_text_size_menu_material=0x7f080052; public static final int abc_text_size_small_material=0x7f080053; public static final int abc_text_size_subhead_material=0x7f080054; public static final int abc_text_size_subtitle_material_toolbar=0x7f080003; public static final int abc_text_size_title_material=0x7f080055; public static final int abc_text_size_title_material_toolbar=0x7f080004; public static final int activity_horizontal_margin=0x7f080056; public static final int activity_vertical_margin=0x7f080057; public static final int design_appbar_elevation=0x7f080058; public static final int design_bottom_navigation_active_item_max_width=0x7f080059; public static final int design_bottom_navigation_active_text_size=0x7f08005a; public static final int design_bottom_navigation_elevation=0x7f08005b; public static final int design_bottom_navigation_height=0x7f08005c; public static final int design_bottom_navigation_item_max_width=0x7f08005d; public static final int design_bottom_navigation_item_min_width=0x7f08005e; public static final int design_bottom_navigation_margin=0x7f08005f; public static final int design_bottom_navigation_shadow_height=0x7f080060; public static final int design_bottom_navigation_text_size=0x7f080061; public static final int design_bottom_sheet_modal_elevation=0x7f080062; public static final int design_bottom_sheet_peek_height_min=0x7f080063; public static final int design_fab_border_width=0x7f080064; public static final int design_fab_elevation=0x7f080065; public static final int design_fab_image_size=0x7f080066; public static final int design_fab_size_mini=0x7f080067; public static final int design_fab_size_normal=0x7f080068; public static final int design_fab_translation_z_pressed=0x7f080069; public static final int design_navigation_elevation=0x7f08006a; public static final int design_navigation_icon_padding=0x7f08006b; public static final int design_navigation_icon_size=0x7f08006c; public static final int design_navigation_max_width=0x7f080010; public static final int design_navigation_padding_bottom=0x7f08006d; public static final int design_navigation_separator_vertical_padding=0x7f08006e; public static final int design_snackbar_action_inline_max_width=0x7f080011; public static final int design_snackbar_background_corner_radius=0x7f080012; public static final int design_snackbar_elevation=0x7f08006f; public static final int design_snackbar_extra_spacing_horizontal=0x7f080013; public static final int design_snackbar_max_width=0x7f080014; public static final int design_snackbar_min_width=0x7f080015; public static final int design_snackbar_padding_horizontal=0x7f080070; public static final int design_snackbar_padding_vertical=0x7f080071; public static final int design_snackbar_padding_vertical_2lines=0x7f080016; public static final int design_snackbar_text_size=0x7f080072; public static final int design_tab_max_width=0x7f080073; public static final int design_tab_scrollable_min_width=0x7f080017; public static final int design_tab_text_size=0x7f080074; public static final int design_tab_text_size_2line=0x7f080075; public static final int disabled_alpha_material_dark=0x7f080076; public static final int disabled_alpha_material_light=0x7f080077; public static final int fastscroll_default_thickness=0x7f080078; public static final int fastscroll_margin=0x7f080079; public static final int fastscroll_minimum_range=0x7f08007a; public static final int highlight_alpha_material_colored=0x7f08007b; public static final int highlight_alpha_material_dark=0x7f08007c; public static final int highlight_alpha_material_light=0x7f08007d; public static final int hint_alpha_material_dark=0x7f08007e; public static final int hint_alpha_material_light=0x7f08007f; public static final int hint_pressed_alpha_material_dark=0x7f080080; public static final int hint_pressed_alpha_material_light=0x7f080081; public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f080082; public static final int item_touch_helper_swipe_escape_max_velocity=0x7f080083; public static final int item_touch_helper_swipe_escape_velocity=0x7f080084; public static final int notification_action_icon_size=0x7f080085; public static final int notification_action_text_size=0x7f080086; public static final int notification_big_circle_margin=0x7f080087; public static final int notification_content_margin_start=0x7f08001a; public static final int notification_large_icon_height=0x7f080088; public static final int notification_large_icon_width=0x7f080089; public static final int notification_main_column_padding_top=0x7f08001b; public static final int notification_media_narrow_margin=0x7f08001c; public static final int notification_right_icon_size=0x7f08008a; public static final int notification_right_side_padding_top=0x7f080018; public static final int notification_small_icon_background_padding=0x7f08008b; public static final int notification_small_icon_size_as_large=0x7f08008c; public static final int notification_subtext_size=0x7f08008d; public static final int notification_top_pad=0x7f08008e; public static final int notification_top_pad_large_text=0x7f08008f; } 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=0x7f020096; public static final int avd_hide_password_2=0x7f020097; public static final int avd_hide_password_3=0x7f020098; public static final int avd_show_password=0x7f020054; public static final int avd_show_password_1=0x7f020099; public static final int avd_show_password_2=0x7f02009a; public static final int avd_show_password_3=0x7f02009b; public static final int common_full_open_on_phone=0x7f020055; public static final int common_google_signin_btn_icon_dark=0x7f020056; public static final int common_google_signin_btn_icon_dark_disabled=0x7f020057; public static final int common_google_signin_btn_icon_dark_focused=0x7f020058; public static final int common_google_signin_btn_icon_dark_normal=0x7f020059; public static final int common_google_signin_btn_icon_dark_pressed=0x7f02005a; public static final int common_google_signin_btn_icon_light=0x7f02005b; public static final int common_google_signin_btn_icon_light_disabled=0x7f02005c; public static final int common_google_signin_btn_icon_light_focused=0x7f02005d; public static final int common_google_signin_btn_icon_light_normal=0x7f02005e; public static final int common_google_signin_btn_icon_light_pressed=0x7f02005f; public static final int common_google_signin_btn_text_dark=0x7f020060; public static final int common_google_signin_btn_text_dark_disabled=0x7f020061; public static final int common_google_signin_btn_text_dark_focused=0x7f020062; public static final int common_google_signin_btn_text_dark_normal=0x7f020063; public static final int common_google_signin_btn_text_dark_pressed=0x7f020064; public static final int common_google_signin_btn_text_light=0x7f020065; public static final int common_google_signin_btn_text_light_disabled=0x7f020066; public static final int common_google_signin_btn_text_light_focused=0x7f020067; public static final int common_google_signin_btn_text_light_normal=0x7f020068; public static final int common_google_signin_btn_text_light_pressed=0x7f020069; public static final int common_ic_googleplayservices=0x7f02006a; public static final int common_plus_signin_btn_icon_dark=0x7f02006b; public static final int common_plus_signin_btn_icon_dark_disabled=0x7f02006c; public static final int common_plus_signin_btn_icon_dark_focused=0x7f02006d; public static final int common_plus_signin_btn_icon_dark_normal=0x7f02006e; public static final int common_plus_signin_btn_icon_dark_pressed=0x7f02006f; public static final int common_plus_signin_btn_icon_light=0x7f020070; public static final int common_plus_signin_btn_icon_light_disabled=0x7f020071; public static final int common_plus_signin_btn_icon_light_focused=0x7f020072; public static final int common_plus_signin_btn_icon_light_normal=0x7f020073; public static final int common_plus_signin_btn_icon_light_pressed=0x7f020074; public static final int common_plus_signin_btn_text_dark=0x7f020075; public static final int common_plus_signin_btn_text_dark_disabled=0x7f020076; public static final int common_plus_signin_btn_text_dark_focused=0x7f020077; public static final int common_plus_signin_btn_text_dark_normal=0x7f020078; public static final int common_plus_signin_btn_text_dark_pressed=0x7f020079; public static final int common_plus_signin_btn_text_light=0x7f02007a; public static final int common_plus_signin_btn_text_light_disabled=0x7f02007b; public static final int common_plus_signin_btn_text_light_focused=0x7f02007c; public static final int common_plus_signin_btn_text_light_normal=0x7f02007d; public static final int common_plus_signin_btn_text_light_pressed=0x7f02007e; public static final int design_bottom_navigation_item_background=0x7f02007f; public static final int design_fab_background=0x7f020080; public static final int design_ic_visibility=0x7f020081; public static final int design_ic_visibility_off=0x7f020082; public static final int design_password_eye=0x7f020083; public static final int design_snackbar_background=0x7f020084; public static final int ic_dashboard_black_24dp=0x7f020085; public static final int ic_done_black_1024dp_2x=0x7f020086; public static final int ic_home_black_24dp=0x7f020087; public static final int ic_notifications_black_24dp=0x7f020088; public static final int navigation_empty_icon=0x7f020089; public static final int notification_action_background=0x7f02008a; public static final int notification_bg=0x7f02008b; public static final int notification_bg_low=0x7f02008c; public static final int notification_bg_low_normal=0x7f02008d; public static final int notification_bg_low_pressed=0x7f02008e; public static final int notification_bg_normal=0x7f02008f; public static final int notification_bg_normal_pressed=0x7f020090; public static final int notification_icon_background=0x7f020091; public static final int notification_template_icon_bg=0x7f020094; public static final int notification_template_icon_low_bg=0x7f020095; public static final int notification_tile_bg=0x7f020092; public static final int notify_panel_notification_icon_bg=0x7f020093; } public static final class id { public static final int action0=0x7f0e00a6; public static final int action_bar=0x7f0e0073; public static final int action_bar_activity_content=0x7f0e0000; public static final int action_bar_container=0x7f0e0072; public static final int action_bar_root=0x7f0e006e; public static final int action_bar_spinner=0x7f0e0001; public static final int action_bar_subtitle=0x7f0e0051; public static final int action_bar_title=0x7f0e0050; public static final int action_container=0x7f0e00a3; public static final int action_context_bar=0x7f0e0074; public static final int action_divider=0x7f0e00aa; public static final int action_image=0x7f0e00a4; public static final int action_menu_divider=0x7f0e0002; public static final int action_menu_presenter=0x7f0e0003; public static final int action_mode_bar=0x7f0e0070; public static final int action_mode_bar_stub=0x7f0e006f; public static final int action_mode_close_button=0x7f0e0052; public static final int action_text=0x7f0e00a5; public static final int actions=0x7f0e00b3; public static final int activity_chooser_view_content=0x7f0e0053; public static final int add=0x7f0e0027; public static final int adjust_height=0x7f0e0042; public static final int adjust_width=0x7f0e0043; public static final int alertTitle=0x7f0e0067; public static final int all=0x7f0e0015; public static final int always=0x7f0e0044; public static final int auto=0x7f0e002e; public static final int basic=0x7f0e0016; public static final int beginning=0x7f0e0040; public static final int bottom=0x7f0e002f; public static final int btnConfirmarDenuncia=0x7f0e0095; public static final int btnFinalizar=0x7f0e0090; public static final int btnFoto=0x7f0e008f; public static final int btnGaleria=0x7f0e008e; public static final int btnTela1=0x7f0e0084; public static final int btnTela2=0x7f0e0087; public static final int btnTela3=0x7f0e008c; public static final int buttonPanel=0x7f0e005a; public static final int cancel_action=0x7f0e00a7; public static final int center=0x7f0e0030; public static final int center_horizontal=0x7f0e0031; public static final int center_vertical=0x7f0e0032; public static final int chains=0x7f0e0017; public static final int checkbox=0x7f0e006a; public static final int chronometer=0x7f0e00af; public static final int clip_horizontal=0x7f0e003b; public static final int clip_vertical=0x7f0e003c; public static final int collapseActionView=0x7f0e0045; public static final int contentPanel=0x7f0e005d; public static final int custom=0x7f0e0064; public static final int customPanel=0x7f0e0063; public static final int dark=0x7f0e004c; public static final int decor_content_parent=0x7f0e0071; public static final int default_activity_button=0x7f0e0056; public static final int design_bottom_sheet=0x7f0e009a; public static final int design_menu_item_action_area=0x7f0e00a1; public static final int design_menu_item_action_area_stub=0x7f0e00a0; public static final int design_menu_item_text=0x7f0e009f; public static final int design_navigation_view=0x7f0e009e; public static final int disableHome=0x7f0e001c; public static final int edit_query=0x7f0e0075; public static final int end=0x7f0e0033; public static final int end_padder=0x7f0e00b9; public static final int enterAlways=0x7f0e0022; public static final int enterAlwaysCollapsed=0x7f0e0023; public static final int exitUntilCollapsed=0x7f0e0024; public static final int expand_activities_button=0x7f0e0054; public static final int expanded_menu=0x7f0e0069; public static final int fill=0x7f0e003d; public static final int fill_horizontal=0x7f0e003e; public static final int fill_vertical=0x7f0e0034; public static final int fixed=0x7f0e004e; public static final int home=0x7f0e0004; public static final int homeAsUp=0x7f0e001d; public static final int icon=0x7f0e0058; public static final int icon_group=0x7f0e00b4; public static final int icon_only=0x7f0e0049; public static final int ifRoom=0x7f0e0046; public static final int image=0x7f0e0055; public static final int imageViewFoto=0x7f0e008d; public static final int info=0x7f0e00b0; public static final int item_touch_helper_previous_elevation=0x7f0e0005; public static final int largeLabel=0x7f0e0098; public static final int left=0x7f0e0035; public static final int light=0x7f0e004d; public static final int line1=0x7f0e00b5; public static final int line3=0x7f0e00b7; public static final int listMode=0x7f0e0019; public static final int list_item=0x7f0e0057; public static final int masked=0x7f0e00bb; public static final int media_actions=0x7f0e00a9; public static final int middle=0x7f0e0041; public static final int mini=0x7f0e003f; public static final int multiply=0x7f0e0028; public static final int navigation_dashboard=0x7f0e00bd; public static final int navigation_header_container=0x7f0e009d; public static final int navigation_home=0x7f0e00bc; public static final int navigation_notifications=0x7f0e00be; public static final int never=0x7f0e0047; public static final int none=0x7f0e0018; public static final int normal=0x7f0e001a; public static final int notification_background=0x7f0e00b1; public static final int notification_main_column=0x7f0e00ac; public static final int notification_main_column_container=0x7f0e00ab; public static final int packed=0x7f0e0013; public static final int parallax=0x7f0e0039; public static final int parent=0x7f0e0010; public static final int parentPanel=0x7f0e005c; public static final int pin=0x7f0e003a; public static final int progress_circular=0x7f0e0006; public static final int progress_horizontal=0x7f0e0007; public static final int radio=0x7f0e006c; public static final int right=0x7f0e0036; public static final int right_icon=0x7f0e00b2; public static final int right_side=0x7f0e00ad; public static final int screen=0x7f0e0029; public static final int scroll=0x7f0e0025; public static final int scrollIndicatorDown=0x7f0e0062; public static final int scrollIndicatorUp=0x7f0e005e; public static final int scrollView=0x7f0e005f; public static final int scrollable=0x7f0e004f; public static final int search_badge=0x7f0e0077; public static final int search_bar=0x7f0e0076; public static final int search_button=0x7f0e0078; public static final int search_close_btn=0x7f0e007d; public static final int search_edit_frame=0x7f0e0079; public static final int search_go_btn=0x7f0e007f; public static final int search_mag_icon=0x7f0e007a; public static final int search_plate=0x7f0e007b; public static final int search_src_text=0x7f0e007c; public static final int search_voice_btn=0x7f0e0080; public static final int select_dialog_listview=0x7f0e0081; public static final int shortcut=0x7f0e006b; public static final int showCustom=0x7f0e001e; public static final int showHome=0x7f0e001f; public static final int showTitle=0x7f0e0020; public static final int smallLabel=0x7f0e0097; public static final int snackbar_action=0x7f0e009c; public static final int snackbar_text=0x7f0e009b; public static final int snap=0x7f0e0026; public static final int spacer=0x7f0e005b; public static final int spinCategoria=0x7f0e0083; public static final int split_action_bar=0x7f0e0008; public static final int spread=0x7f0e0011; public static final int spread_inside=0x7f0e0014; public static final int src_atop=0x7f0e002a; public static final int src_in=0x7f0e002b; public static final int src_over=0x7f0e002c; public static final int standard=0x7f0e004a; public static final int start=0x7f0e0037; public static final int status_bar_latest_event_content=0x7f0e00a8; public static final int submenuarrow=0x7f0e006d; public static final int submit_area=0x7f0e007e; public static final int tabMode=0x7f0e001b; public static final int text=0x7f0e00b8; public static final int text2=0x7f0e00b6; public static final int textBairro=0x7f0e0088; public static final int textDescicao=0x7f0e0086; public static final int textNumero=0x7f0e008a; public static final int textReferencia=0x7f0e008b; public static final int textRua=0x7f0e0089; public static final int textSpacerNoButtons=0x7f0e0061; public static final int textSpacerNoTitle=0x7f0e0060; public static final int textTitulo=0x7f0e0085; public static final int textView=0x7f0e0082; public static final int textView3=0x7f0e0096; public static final int textViewCategoria=0x7f0e0091; public static final int textViewDescricao=0x7f0e0094; public static final int textViewEndereco=0x7f0e0093; public static final int textViewTitulo=0x7f0e0092; public static final int text_input_password_toggle=0x7f0e00a2; public static final int textinput_counter=0x7f0e0009; public static final int textinput_error=0x7f0e000a; public static final int time=0x7f0e00ae; public static final int title=0x7f0e0059; public static final int titleDividerNoCustom=0x7f0e0068; public static final int title_template=0x7f0e0066; public static final int top=0x7f0e0038; public static final int topPanel=0x7f0e0065; public static final int touch_outside=0x7f0e0099; public static final int transition_current_scene=0x7f0e000b; public static final int transition_layout_save=0x7f0e000c; public static final int transition_scene_layoutid_cache=0x7f0e000d; public static final int up=0x7f0e000e; public static final int useLogo=0x7f0e0021; public static final int view_offset_helper=0x7f0e000f; public static final int visible=0x7f0e00ba; public static final int wide=0x7f0e004b; public static final int withText=0x7f0e0048; public static final int wrap=0x7f0e0012; public static final int wrap_content=0x7f0e002d; } public static final class integer { public static final int abc_config_activityDefaultDur=0x7f0b0001; public static final int abc_config_activityShortDur=0x7f0b0002; public static final int app_bar_elevation_anim_duration=0x7f0b0003; public static final int bottom_sheet_slide_duration=0x7f0b0004; public static final int cancel_button_image_alpha=0x7f0b0005; public static final int design_snackbar_text_max_lines=0x7f0b0000; public static final int google_play_services_version=0x7f0b0006; public static final int hide_password_duration=0x7f0b0007; public static final int show_password_duration=0x7f0b0008; public static final int status_bar_notification_info_maxnum=0x7f0b0009; } public static final class layout { public static final int abc_action_bar_title_item=0x7f040000; public static final int abc_action_bar_up_container=0x7f040001; public static final int abc_action_bar_view_list_nav_layout=0x7f040002; public static final int abc_action_menu_item_layout=0x7f040003; public static final int abc_action_menu_layout=0x7f040004; public static final int abc_action_mode_bar=0x7f040005; public static final int abc_action_mode_close_item_material=0x7f040006; public static final int abc_activity_chooser_view=0x7f040007; public static final int abc_activity_chooser_view_list_item=0x7f040008; public static final int abc_alert_dialog_button_bar_material=0x7f040009; public static final int abc_alert_dialog_material=0x7f04000a; public static final int abc_alert_dialog_title_material=0x7f04000b; public static final int abc_dialog_title_material=0x7f04000c; public static final int abc_expanded_menu_layout=0x7f04000d; public static final int abc_list_menu_item_checkbox=0x7f04000e; public static final int abc_list_menu_item_icon=0x7f04000f; public static final int abc_list_menu_item_layout=0x7f040010; public static final int abc_list_menu_item_radio=0x7f040011; public static final int abc_popup_menu_header_item_layout=0x7f040012; public static final int abc_popup_menu_item_layout=0x7f040013; public static final int abc_screen_content_include=0x7f040014; public static final int abc_screen_simple=0x7f040015; public static final int abc_screen_simple_overlay_action_mode=0x7f040016; public static final int abc_screen_toolbar=0x7f040017; public static final int abc_search_dropdown_item_icons_2line=0x7f040018; public static final int abc_search_view=0x7f040019; public static final int abc_select_dialog_material=0x7f04001a; public static final int activity_main=0x7f04001b; public static final int activity_main2=0x7f04001c; public static final int activity_main3=0x7f04001d; public static final int activity_main4=0x7f04001e; public static final int activity_main5=0x7f04001f; public static final int activity_main6=0x7f040020; public static final int design_bottom_navigation_item=0x7f040021; public static final int design_bottom_sheet_dialog=0x7f040022; public static final int design_layout_snackbar=0x7f040023; public static final int design_layout_snackbar_include=0x7f040024; public static final int design_layout_tab_icon=0x7f040025; public static final int design_layout_tab_text=0x7f040026; public static final int design_menu_item_action_area=0x7f040027; public static final int design_navigation_item=0x7f040028; public static final int design_navigation_item_header=0x7f040029; public static final int design_navigation_item_separator=0x7f04002a; public static final int design_navigation_item_subheader=0x7f04002b; public static final int design_navigation_menu=0x7f04002c; public static final int design_navigation_menu_item=0x7f04002d; public static final int design_text_input_password_icon=0x7f04002e; public static final int notification_action=0x7f04002f; public static final int notification_action_tombstone=0x7f040030; public static final int notification_media_action=0x7f040031; public static final int notification_media_cancel_action=0x7f040032; public static final int notification_template_big_media=0x7f040033; public static final int notification_template_big_media_custom=0x7f040034; public static final int notification_template_big_media_narrow=0x7f040035; public static final int notification_template_big_media_narrow_custom=0x7f040036; public static final int notification_template_custom_big=0x7f040037; public static final int notification_template_icon_group=0x7f040038; public static final int notification_template_lines_media=0x7f040039; public static final int notification_template_media=0x7f04003a; public static final int notification_template_media_custom=0x7f04003b; public static final int notification_template_part_chronometer=0x7f04003c; public static final int notification_template_part_time=0x7f04003d; public static final int select_dialog_item_material=0x7f04003e; public static final int select_dialog_multichoice_material=0x7f04003f; public static final int select_dialog_singlechoice_material=0x7f040040; public static final int support_simple_spinner_dropdown_item=0x7f040041; } public static final class menu { public static final int navigation=0x7f0f0000; } public static final class mipmap { public static final int ic_launcher=0x7f030000; public static final int ic_launcher_round=0x7f030001; } public static final class string { public static final int abc_action_bar_home_description=0x7f070000; public static final int abc_action_bar_home_description_format=0x7f070001; public static final int abc_action_bar_home_subtitle_description_format=0x7f070002; public static final int abc_action_bar_up_description=0x7f070003; public static final int abc_action_menu_overflow_description=0x7f070004; public static final int abc_action_mode_done=0x7f070005; public static final int abc_activity_chooser_view_see_all=0x7f070006; public static final int abc_activitychooserview_choose_application=0x7f070007; public static final int abc_capital_off=0x7f070008; public static final int abc_capital_on=0x7f070009; public static final int abc_font_family_body_1_material=0x7f070034; public static final int abc_font_family_body_2_material=0x7f070035; public static final int abc_font_family_button_material=0x7f070036; public static final int abc_font_family_caption_material=0x7f070037; public static final int abc_font_family_display_1_material=0x7f070038; public static final int abc_font_family_display_2_material=0x7f070039; public static final int abc_font_family_display_3_material=0x7f07003a; public static final int abc_font_family_display_4_material=0x7f07003b; public static final int abc_font_family_headline_material=0x7f07003c; public static final int abc_font_family_menu_material=0x7f07003d; public static final int abc_font_family_subhead_material=0x7f07003e; public static final int abc_font_family_title_material=0x7f07003f; public static final int abc_search_hint=0x7f07000a; public static final int abc_searchview_description_clear=0x7f07000b; public static final int abc_searchview_description_query=0x7f07000c; public static final int abc_searchview_description_search=0x7f07000d; public static final int abc_searchview_description_submit=0x7f07000e; public static final int abc_searchview_description_voice=0x7f07000f; public static final int abc_shareactionprovider_share_with=0x7f070010; public static final int abc_shareactionprovider_share_with_application=0x7f070011; public static final int abc_toolbar_collapse_description=0x7f070012; public static final int app_name=0x7f070040; public static final int appbar_scrolling_view_behavior=0x7f070041; public static final int bottom_sheet_behavior=0x7f070042; public static final int character_counter_pattern=0x7f070043; public static final int common_google_play_services_api_unavailable_text=0x7f070013; public static final int common_google_play_services_enable_button=0x7f070014; public static final int common_google_play_services_enable_text=0x7f070015; public static final int common_google_play_services_enable_title=0x7f070016; public static final int common_google_play_services_install_button=0x7f070017; public static final int common_google_play_services_install_text_phone=0x7f070018; public static final int common_google_play_services_install_text_tablet=0x7f070019; public static final int common_google_play_services_install_title=0x7f07001a; public static final int common_google_play_services_invalid_account_text=0x7f07001b; public static final int common_google_play_services_invalid_account_title=0x7f07001c; public static final int common_google_play_services_network_error_text=0x7f07001d; public static final int common_google_play_services_network_error_title=0x7f07001e; public static final int common_google_play_services_notification_ticker=0x7f07001f; public static final int common_google_play_services_resolution_required_text=0x7f070020; public static final int common_google_play_services_resolution_required_title=0x7f070021; public static final int common_google_play_services_restricted_profile_text=0x7f070022; public static final int common_google_play_services_restricted_profile_title=0x7f070023; public static final int common_google_play_services_sign_in_failed_text=0x7f070024; public static final int common_google_play_services_sign_in_failed_title=0x7f070025; public static final int common_google_play_services_unknown_issue=0x7f070026; public static final int common_google_play_services_unsupported_text=0x7f070027; public static final int common_google_play_services_unsupported_title=0x7f070028; public static final int common_google_play_services_update_button=0x7f070029; public static final int common_google_play_services_update_text=0x7f07002a; public static final int common_google_play_services_update_title=0x7f07002b; public static final int common_google_play_services_updating_text=0x7f07002c; public static final int common_google_play_services_updating_title=0x7f07002d; public static final int common_google_play_services_wear_update_text=0x7f07002e; public static final int common_open_on_phone=0x7f07002f; public static final int common_signin_button_text=0x7f070030; public static final int common_signin_button_text_long=0x7f070031; public static final int default_web_client_id=0x7f070044; public static final int firebase_database_url=0x7f070045; public static final int gcm_defaultSenderId=0x7f070046; public static final int google_api_key=0x7f070047; public static final int google_app_id=0x7f070048; public static final int google_crash_reporting_api_key=0x7f070049; public static final int google_storage_bucket=0x7f07004a; public static final int password_toggle_content_description=0x7f07004b; public static final int path_password_eye=0x7f07004c; public static final int path_password_eye_mask_strike_through=0x7f07004d; public static final int path_password_eye_mask_visible=0x7f07004e; public static final int path_password_strike_through=0x7f07004f; public static final int project_id=0x7f070050; public static final int search_menu_title=0x7f070032; public static final int status_bar_notification_info_overflow=0x7f070033; public static final int title_activity_main_voltar1=0x7f070051; public static final int title_dashboard=0x7f070052; public static final int title_home=0x7f070053; public static final int title_notifications=0x7f070054; } public static final class style { public static final int AlertDialog_AppCompat=0x7f0900a1; public static final int AlertDialog_AppCompat_Light=0x7f0900a2; public static final int Animation_AppCompat_Dialog=0x7f0900a3; public static final int Animation_AppCompat_DropDownUp=0x7f0900a4; public static final int Animation_Design_BottomSheetDialog=0x7f0900a5; public static final int AppTheme=0x7f0900a6; public static final int Base_AlertDialog_AppCompat=0x7f0900a7; public static final int Base_AlertDialog_AppCompat_Light=0x7f0900a8; public static final int Base_Animation_AppCompat_Dialog=0x7f0900a9; public static final int Base_Animation_AppCompat_DropDownUp=0x7f0900aa; public static final int Base_DialogWindowTitle_AppCompat=0x7f0900ab; public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0900ac; public static final int Base_TextAppearance_AppCompat=0x7f090040; public static final int Base_TextAppearance_AppCompat_Body1=0x7f090041; public static final int Base_TextAppearance_AppCompat_Body2=0x7f090042; public static final int Base_TextAppearance_AppCompat_Button=0x7f090028; public static final int Base_TextAppearance_AppCompat_Caption=0x7f090043; public static final int Base_TextAppearance_AppCompat_Display1=0x7f090044; public static final int Base_TextAppearance_AppCompat_Display2=0x7f090045; public static final int Base_TextAppearance_AppCompat_Display3=0x7f090046; public static final int Base_TextAppearance_AppCompat_Display4=0x7f090047; public static final int Base_TextAppearance_AppCompat_Headline=0x7f090048; public static final int Base_TextAppearance_AppCompat_Inverse=0x7f09000c; public static final int Base_TextAppearance_AppCompat_Large=0x7f090049; public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f09000d; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f09004a; public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f09004b; public static final int Base_TextAppearance_AppCompat_Medium=0x7f09004c; public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f09000e; public static final int Base_TextAppearance_AppCompat_Menu=0x7f09004d; public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0900ad; public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f09004e; public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f09004f; public static final int Base_TextAppearance_AppCompat_Small=0x7f090050; public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f09000f; public static final int Base_TextAppearance_AppCompat_Subhead=0x7f090051; public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f090010; public static final int Base_TextAppearance_AppCompat_Title=0x7f090052; public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f090011; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f090096; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f090053; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f090054; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f090055; public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f090056; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f090057; public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f090058; public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f090059; public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f09009d; public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f09009e; public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f090097; public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900ae; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f09005a; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f09005b; public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f09005c; public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f09005d; public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f09005e; public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0900af; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f09005f; public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f090060; public static final int Base_Theme_AppCompat=0x7f090061; public static final int Base_Theme_AppCompat_CompactMenu=0x7f0900b0; public static final int Base_Theme_AppCompat_Dialog=0x7f090012; public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f090013; public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0900b1; public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f090014; public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f090002; public static final int Base_Theme_AppCompat_Light=0x7f090062; public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0900b2; public static final int Base_Theme_AppCompat_Light_Dialog=0x7f090015; public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f090016; public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0900b3; public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f090017; public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f090003; public static final int Base_ThemeOverlay_AppCompat=0x7f0900b4; public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0900b5; public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0900b6; public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0900b7; public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f090018; public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f090019; public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0900b8; public static final int Base_V11_Theme_AppCompat_Dialog=0x7f09001a; public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f09001b; public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f09001c; public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f090024; public static final int Base_V12_Widget_AppCompat_EditText=0x7f090025; public static final int Base_V21_Theme_AppCompat=0x7f090063; public static final int Base_V21_Theme_AppCompat_Dialog=0x7f090064; public static final int Base_V21_Theme_AppCompat_Light=0x7f090065; public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f090066; public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f090067; public static final int Base_V22_Theme_AppCompat=0x7f090094; public static final int Base_V22_Theme_AppCompat_Light=0x7f090095; public static final int Base_V23_Theme_AppCompat=0x7f090098; public static final int Base_V23_Theme_AppCompat_Light=0x7f090099; public static final int Base_V7_Theme_AppCompat=0x7f0900b9; public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0900ba; public static final int Base_V7_Theme_AppCompat_Light=0x7f0900bb; public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0900bc; public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0900bd; public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0900be; public static final int Base_V7_Widget_AppCompat_EditText=0x7f0900bf; public static final int Base_Widget_AppCompat_ActionBar=0x7f0900c0; public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0900c1; public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0900c2; public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f090068; public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f090069; public static final int Base_Widget_AppCompat_ActionButton=0x7f09006a; public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f09006b; public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f09006c; public static final int Base_Widget_AppCompat_ActionMode=0x7f0900c3; public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0900c4; public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f090026; public static final int Base_Widget_AppCompat_Button=0x7f09006d; public static final int Base_Widget_AppCompat_Button_Borderless=0x7f09006e; public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f09006f; public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0900c5; public static final int Base_Widget_AppCompat_Button_Colored=0x7f09009a; public static final int Base_Widget_AppCompat_Button_Small=0x7f090070; public static final int Base_Widget_AppCompat_ButtonBar=0x7f090071; public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0900c6; public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f090072; public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f090073; public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0900c7; public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f090000; public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0900c8; public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f090074; public static final int Base_Widget_AppCompat_EditText=0x7f090027; public static final int Base_Widget_AppCompat_ImageButton=0x7f090075; public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0900c9; public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0900ca; public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0900cb; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f090076; public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f090077; public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f090078; public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f090079; public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f09007a; public static final int Base_Widget_AppCompat_ListMenuView=0x7f0900cc; public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f09007b; public static final int Base_Widget_AppCompat_ListView=0x7f09007c; public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f09007d; public static final int Base_Widget_AppCompat_ListView_Menu=0x7f09007e; public static final int Base_Widget_AppCompat_PopupMenu=0x7f09007f; public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f090080; public static final int Base_Widget_AppCompat_PopupWindow=0x7f0900cd; public static final int Base_Widget_AppCompat_ProgressBar=0x7f09001d; public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f09001e; public static final int Base_Widget_AppCompat_RatingBar=0x7f090081; public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f09009b; public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f09009c; public static final int Base_Widget_AppCompat_SearchView=0x7f0900ce; public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0900cf; public static final int Base_Widget_AppCompat_SeekBar=0x7f090082; public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0900d0; public static final int Base_Widget_AppCompat_Spinner=0x7f090083; public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f090004; public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f090084; public static final int Base_Widget_AppCompat_Toolbar=0x7f0900d1; public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f090085; public static final int Base_Widget_Design_AppBarLayout=0x7f0900d2; public static final int Base_Widget_Design_TabLayout=0x7f0900d3; public static final int Platform_AppCompat=0x7f09001f; public static final int Platform_AppCompat_Light=0x7f090020; public static final int Platform_ThemeOverlay_AppCompat=0x7f090086; public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f090087; public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f090088; public static final int Platform_V11_AppCompat=0x7f090021; public static final int Platform_V11_AppCompat_Light=0x7f090022; public static final int Platform_V14_AppCompat=0x7f090029; public static final int Platform_V14_AppCompat_Light=0x7f09002a; public static final int Platform_V21_AppCompat=0x7f090089; public static final int Platform_V21_AppCompat_Light=0x7f09008a; public static final int Platform_V25_AppCompat=0x7f09009f; public static final int Platform_V25_AppCompat_Light=0x7f0900a0; public static final int Platform_Widget_AppCompat_Spinner=0x7f090023; public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f090032; public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f090033; public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f090034; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f090035; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f090036; public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f090037; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f090038; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f090039; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f09003a; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f09003b; public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f09003c; public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f09003d; public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f09003e; public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f09003f; public static final int TextAppearance_AppCompat=0x7f0900d4; public static final int TextAppearance_AppCompat_Body1=0x7f0900d5; public static final int TextAppearance_AppCompat_Body2=0x7f0900d6; public static final int TextAppearance_AppCompat_Button=0x7f0900d7; public static final int TextAppearance_AppCompat_Caption=0x7f0900d8; public static final int TextAppearance_AppCompat_Display1=0x7f0900d9; public static final int TextAppearance_AppCompat_Display2=0x7f0900da; public static final int TextAppearance_AppCompat_Display3=0x7f0900db; public static final int TextAppearance_AppCompat_Display4=0x7f0900dc; public static final int TextAppearance_AppCompat_Headline=0x7f0900dd; public static final int TextAppearance_AppCompat_Inverse=0x7f0900de; public static final int TextAppearance_AppCompat_Large=0x7f0900df; public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0900e0; public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0900e1; public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0900e2; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0900e3; public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0900e4; public static final int TextAppearance_AppCompat_Medium=0x7f0900e5; public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0900e6; public static final int TextAppearance_AppCompat_Menu=0x7f0900e7; public static final int TextAppearance_AppCompat_Notification=0x7f09002b; public static final int TextAppearance_AppCompat_Notification_Info=0x7f09008b; public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f09008c; public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0900e8; public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0900e9; public static final int TextAppearance_AppCompat_Notification_Media=0x7f09008d; public static final int TextAppearance_AppCompat_Notification_Time=0x7f09008e; public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f09008f; public static final int TextAppearance_AppCompat_Notification_Title=0x7f09002c; public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f090090; public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0900ea; public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0900eb; public static final int TextAppearance_AppCompat_Small=0x7f0900ec; public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0900ed; public static final int TextAppearance_AppCompat_Subhead=0x7f0900ee; public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0900ef; public static final int TextAppearance_AppCompat_Title=0x7f0900f0; public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0900f1; public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0900f2; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0900f3; public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0900f4; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0900f5; public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0900f6; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0900f7; public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0900f8; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0900f9; public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0900fa; public static final int TextAppearance_AppCompat_Widget_Button=0x7f0900fb; public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0900fc; public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0900fd; public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0900fe; public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0900ff; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f090100; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f090101; public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f090102; public static final int TextAppearance_AppCompat_Widget_Switch=0x7f090103; public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f090104; public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f090105; public static final int TextAppearance_Design_Counter=0x7f090106; public static final int TextAppearance_Design_Counter_Overflow=0x7f090107; public static final int TextAppearance_Design_Error=0x7f090108; public static final int TextAppearance_Design_Hint=0x7f090109; public static final int TextAppearance_Design_Snackbar_Message=0x7f09010a; public static final int TextAppearance_Design_Tab=0x7f09010b; public static final int TextAppearance_StatusBar_EventContent=0x7f09002d; public static final int TextAppearance_StatusBar_EventContent_Info=0x7f09002e; public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f09002f; public static final int TextAppearance_StatusBar_EventContent_Time=0x7f090030; public static final int TextAppearance_StatusBar_EventContent_Title=0x7f090031; public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f09010c; public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f09010d; public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f09010e; public static final int Theme_AppCompat=0x7f09010f; public static final int Theme_AppCompat_CompactMenu=0x7f090110; public static final int Theme_AppCompat_DayNight=0x7f090005; public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f090006; public static final int Theme_AppCompat_DayNight_Dialog=0x7f090007; public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f090008; public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f090009; public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f09000a; public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f09000b; public static final int Theme_AppCompat_Dialog=0x7f090111; public static final int Theme_AppCompat_Dialog_Alert=0x7f090112; public static final int Theme_AppCompat_Dialog_MinWidth=0x7f090113; public static final int Theme_AppCompat_DialogWhenLarge=0x7f090114; public static final int Theme_AppCompat_Light=0x7f090115; public static final int Theme_AppCompat_Light_DarkActionBar=0x7f090116; public static final int Theme_AppCompat_Light_Dialog=0x7f090117; public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f090118; public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f090119; public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f09011a; public static final int Theme_AppCompat_Light_NoActionBar=0x7f09011b; public static final int Theme_AppCompat_NoActionBar=0x7f09011c; public static final int Theme_Design=0x7f09011d; public static final int Theme_Design_BottomSheetDialog=0x7f09011e; public static final int Theme_Design_Light=0x7f09011f; public static final int Theme_Design_Light_BottomSheetDialog=0x7f090120; public static final int Theme_Design_Light_NoActionBar=0x7f090121; public static final int Theme_Design_NoActionBar=0x7f090122; public static final int ThemeOverlay_AppCompat=0x7f090123; public static final int ThemeOverlay_AppCompat_ActionBar=0x7f090124; public static final int ThemeOverlay_AppCompat_Dark=0x7f090125; public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f090126; public static final int ThemeOverlay_AppCompat_Dialog=0x7f090127; public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f090128; public static final int ThemeOverlay_AppCompat_Light=0x7f090129; public static final int Widget_AppCompat_ActionBar=0x7f09012a; public static final int Widget_AppCompat_ActionBar_Solid=0x7f09012b; public static final int Widget_AppCompat_ActionBar_TabBar=0x7f09012c; public static final int Widget_AppCompat_ActionBar_TabText=0x7f09012d; public static final int Widget_AppCompat_ActionBar_TabView=0x7f09012e; public static final int Widget_AppCompat_ActionButton=0x7f09012f; public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f090130; public static final int Widget_AppCompat_ActionButton_Overflow=0x7f090131; public static final int Widget_AppCompat_ActionMode=0x7f090132; public static final int Widget_AppCompat_ActivityChooserView=0x7f090133; public static final int Widget_AppCompat_AutoCompleteTextView=0x7f090134; public static final int Widget_AppCompat_Button=0x7f090135; public static final int Widget_AppCompat_Button_Borderless=0x7f090136; public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f090137; public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f090138; public static final int Widget_AppCompat_Button_Colored=0x7f090139; public static final int Widget_AppCompat_Button_Small=0x7f09013a; public static final int Widget_AppCompat_ButtonBar=0x7f09013b; public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f09013c; public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f09013d; public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f09013e; public static final int Widget_AppCompat_CompoundButton_Switch=0x7f09013f; public static final int Widget_AppCompat_DrawerArrowToggle=0x7f090140; public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f090141; public static final int Widget_AppCompat_EditText=0x7f090142; public static final int Widget_AppCompat_ImageButton=0x7f090143; public static final int Widget_AppCompat_Light_ActionBar=0x7f090144; public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f090145; public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f090146; public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f090147; public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f090148; public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f090149; public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f09014a; public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f09014b; public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f09014c; public static final int Widget_AppCompat_Light_ActionButton=0x7f09014d; public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f09014e; public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f09014f; public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f090150; public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f090151; public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f090152; public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f090153; public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f090154; public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f090155; public static final int Widget_AppCompat_Light_PopupMenu=0x7f090156; public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f090157; public static final int Widget_AppCompat_Light_SearchView=0x7f090158; public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f090159; public static final int Widget_AppCompat_ListMenuView=0x7f09015a; public static final int Widget_AppCompat_ListPopupWindow=0x7f09015b; public static final int Widget_AppCompat_ListView=0x7f09015c; public static final int Widget_AppCompat_ListView_DropDown=0x7f09015d; public static final int Widget_AppCompat_ListView_Menu=0x7f09015e; public static final int Widget_AppCompat_NotificationActionContainer=0x7f090091; public static final int Widget_AppCompat_NotificationActionText=0x7f090092; public static final int Widget_AppCompat_PopupMenu=0x7f09015f; public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f090160; public static final int Widget_AppCompat_PopupWindow=0x7f090161; public static final int Widget_AppCompat_ProgressBar=0x7f090162; public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f090163; public static final int Widget_AppCompat_RatingBar=0x7f090164; public static final int Widget_AppCompat_RatingBar_Indicator=0x7f090165; public static final int Widget_AppCompat_RatingBar_Small=0x7f090166; public static final int Widget_AppCompat_SearchView=0x7f090167; public static final int Widget_AppCompat_SearchView_ActionBar=0x7f090168; public static final int Widget_AppCompat_SeekBar=0x7f090169; public static final int Widget_AppCompat_SeekBar_Discrete=0x7f09016a; public static final int Widget_AppCompat_Spinner=0x7f09016b; public static final int Widget_AppCompat_Spinner_DropDown=0x7f09016c; public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f09016d; public static final int Widget_AppCompat_Spinner_Underlined=0x7f09016e; public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f09016f; public static final int Widget_AppCompat_Toolbar=0x7f090170; public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f090171; public static final int Widget_Design_AppBarLayout=0x7f090093; public static final int Widget_Design_BottomNavigationView=0x7f090172; public static final int Widget_Design_BottomSheet_Modal=0x7f090173; public static final int Widget_Design_CollapsingToolbar=0x7f090174; public static final int Widget_Design_CoordinatorLayout=0x7f090175; public static final int Widget_Design_FloatingActionButton=0x7f090176; public static final int Widget_Design_NavigationView=0x7f090177; public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f090178; public static final int Widget_Design_Snackbar=0x7f090179; public static final int Widget_Design_TabLayout=0x7f090001; public static final int Widget_Design_TextInputLayout=0x7f09017a; } 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.registree.registree:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundSplit com.registree.registree:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_backgroundStacked com.registree.registree:backgroundStacked}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEnd com.registree.registree:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetEndWithActions com.registree.registree:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetLeft com.registree.registree:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetRight com.registree.registree:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStart com.registree.registree:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation com.registree.registree:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_customNavigationLayout com.registree.registree:customNavigationLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_displayOptions com.registree.registree:displayOptions}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_divider com.registree.registree:divider}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_elevation com.registree.registree:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_height com.registree.registree:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_hideOnContentScroll com.registree.registree:hideOnContentScroll}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeAsUpIndicator com.registree.registree:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_homeLayout com.registree.registree:homeLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_icon com.registree.registree:icon}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.registree.registree:indeterminateProgressStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_itemPadding com.registree.registree:itemPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_logo com.registree.registree:logo}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_navigationMode com.registree.registree:navigationMode}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_popupTheme com.registree.registree:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarPadding com.registree.registree:progressBarPadding}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_progressBarStyle com.registree.registree:progressBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitle com.registree.registree:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_subtitleTextStyle com.registree.registree:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_title com.registree.registree:title}</code></td><td></td></tr> <tr><td><code>{@link #ActionBar_titleTextStyle com.registree.registree: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 = { 0x7f010002, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01008c }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:background */ public static final int ActionBar_background = 10; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetEnd */ public static final int ActionBar_contentInsetEnd = 21; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetEndWithActions */ public static final int ActionBar_contentInsetEndWithActions = 25; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetLeft */ public static final int ActionBar_contentInsetLeft = 22; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetRight */ public static final int ActionBar_contentInsetRight = 23; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetStart */ public static final int ActionBar_contentInsetStart = 20; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetStartWithNavigation */ public static final int ActionBar_contentInsetStartWithNavigation = 24; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:displayOptions */ public static final int ActionBar_displayOptions = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:divider */ public static final int ActionBar_divider = 9; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:elevation */ public static final int ActionBar_elevation = 26; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:height */ public static final int ActionBar_height = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:hideOnContentScroll */ public static final int ActionBar_hideOnContentScroll = 19; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:homeAsUpIndicator */ public static final int ActionBar_homeAsUpIndicator = 28; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:homeLayout */ public static final int ActionBar_homeLayout = 14; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:icon */ public static final int ActionBar_icon = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:itemPadding */ public static final int ActionBar_itemPadding = 18; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:logo */ public static final int ActionBar_logo = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:navigationMode */ public static final int ActionBar_navigationMode = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:popupTheme */ public static final int ActionBar_popupTheme = 27; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:subtitle */ public static final int ActionBar_subtitle = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:title */ public static final int ActionBar_title = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:background}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_backgroundSplit com.registree.registree:backgroundSplit}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_closeItemLayout com.registree.registree:closeItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_height com.registree.registree:height}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_subtitleTextStyle com.registree.registree:subtitleTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #ActionMode_titleTextStyle com.registree.registree: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 = { 0x7f010002, 0x7f010033, 0x7f010034, 0x7f010038, 0x7f01003a, 0x7f01004a }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:background */ public static final int ActionMode_background = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:closeItemLayout */ public static final int ActionMode_closeItemLayout = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:height */ public static final int ActionMode_height = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:expandActivityOverflowButtonDrawable}</code></td><td></td></tr> <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.registree.registree:initialActivityCount}</code></td><td></td></tr> </table> @see #ActivityChooserView_expandActivityOverflowButtonDrawable @see #ActivityChooserView_initialActivityCount */ public static final int[] ActivityChooserView = { 0x7f01004b, 0x7f01004c }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:buttonPanelSideLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listItemLayout com.registree.registree:listItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_listLayout com.registree.registree:listLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout com.registree.registree:multiChoiceItemLayout}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_showTitle com.registree.registree:showTitle}</code></td><td></td></tr> <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout com.registree.registree: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, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052 }; /** <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.registree.registree.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.registree.registree:buttonPanelSideLayout */ public static final int AlertDialog_buttonPanelSideLayout = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:listItemLayout */ public static final int AlertDialog_listItemLayout = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:listLayout */ public static final int AlertDialog_listLayout = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:multiChoiceItemLayout */ public static final int AlertDialog_multiChoiceItemLayout = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:showTitle */ public static final int AlertDialog_showTitle = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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_elevation com.registree.registree:elevation}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_expanded com.registree.registree:expanded}</code></td><td></td></tr> </table> @see #AppBarLayout_android_background @see #AppBarLayout_elevation @see #AppBarLayout_expanded */ public static final int[] AppBarLayout = { 0x010100d4, 0x7f010048, 0x7f010053 }; /** <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 com.registree.registree.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.registree.registree:elevation */ public static final int AppBarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:expanded */ public static final int AppBarLayout_expanded = 2; /** 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.registree.registree:state_collapsed}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayoutStates_state_collapsible com.registree.registree:state_collapsible}</code></td><td></td></tr> </table> @see #AppBarLayoutStates_state_collapsed @see #AppBarLayoutStates_state_collapsible */ public static final int[] AppBarLayoutStates = { 0x7f010054, 0x7f010055 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:state_collapsed */ public static final int AppBarLayoutStates_state_collapsed = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:layout_scrollFlags}</code></td><td></td></tr> <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator com.registree.registree:layout_scrollInterpolator}</code></td><td></td></tr> </table> @see #AppBarLayout_Layout_layout_scrollFlags @see #AppBarLayout_Layout_layout_scrollInterpolator */ public static final int[] AppBarLayout_Layout = { 0x7f010056, 0x7f010057 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:layout_scrollFlags */ public static final int AppBarLayout_Layout_layout_scrollFlags = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:srcCompat}</code></td><td></td></tr> </table> @see #AppCompatImageView_android_src @see #AppCompatImageView_srcCompat */ public static final int[] AppCompatImageView = { 0x01010119, 0x7f010058 }; /** <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.registree.registree.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.registree.registree:srcCompat */ public static final int AppCompatImageView_srcCompat = 1; /** 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.registree.registree:tickMark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint com.registree.registree:tickMarkTint}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode com.registree.registree: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, 0x7f010059, 0x7f01005a, 0x7f01005b }; /** <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.registree.registree.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.registree.registree:tickMark */ public static final int AppCompatSeekBar_tickMark = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tickMarkTint */ public static final int AppCompatSeekBar_tickMarkTint = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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_textAllCaps com.registree.registree:textAllCaps}</code></td><td></td></tr> </table> @see #AppCompatTextView_android_textAppearance @see #AppCompatTextView_textAllCaps */ public static final int[] AppCompatTextView = { 0x01010034, 0x7f01005c }; /** <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.registree.registree.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.registree.registree: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.registree.registree:actionBarDivider}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground com.registree.registree:actionBarItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme com.registree.registree:actionBarPopupTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSize com.registree.registree:actionBarSize}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle com.registree.registree:actionBarSplitStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarStyle com.registree.registree:actionBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle com.registree.registree:actionBarTabBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle com.registree.registree:actionBarTabStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle com.registree.registree:actionBarTabTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarTheme com.registree.registree:actionBarTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme com.registree.registree:actionBarWidgetTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionButtonStyle com.registree.registree:actionButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle com.registree.registree:actionDropDownStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance com.registree.registree:actionMenuTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor com.registree.registree:actionMenuTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeBackground com.registree.registree:actionModeBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle com.registree.registree:actionModeCloseButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable com.registree.registree:actionModeCloseDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable com.registree.registree:actionModeCopyDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable com.registree.registree:actionModeCutDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable com.registree.registree:actionModeFindDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable com.registree.registree:actionModePasteDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle com.registree.registree:actionModePopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable com.registree.registree:actionModeSelectAllDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable com.registree.registree:actionModeShareDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground com.registree.registree:actionModeSplitBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeStyle com.registree.registree:actionModeStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable com.registree.registree:actionModeWebSearchDrawable}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle com.registree.registree:actionOverflowButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle com.registree.registree:actionOverflowMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle com.registree.registree:activityChooserViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle com.registree.registree:alertDialogButtonGroupStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons com.registree.registree:alertDialogCenterButtons}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogStyle com.registree.registree:alertDialogStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_alertDialogTheme com.registree.registree: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.registree.registree:autoCompleteTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle com.registree.registree:borderlessButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle com.registree.registree:buttonBarButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.registree.registree:buttonBarNegativeButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.registree.registree:buttonBarNeutralButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.registree.registree:buttonBarPositiveButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonBarStyle com.registree.registree:buttonBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyle com.registree.registree:buttonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall com.registree.registree:buttonStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkboxStyle com.registree.registree:checkboxStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle com.registree.registree:checkedTextViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorAccent com.registree.registree:colorAccent}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating com.registree.registree:colorBackgroundFloating}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorButtonNormal com.registree.registree:colorButtonNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlActivated com.registree.registree:colorControlActivated}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlHighlight com.registree.registree:colorControlHighlight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorControlNormal com.registree.registree:colorControlNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimary com.registree.registree:colorPrimary}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark com.registree.registree:colorPrimaryDark}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal com.registree.registree:colorSwitchThumbNormal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_controlBackground com.registree.registree:controlBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding com.registree.registree:dialogPreferredPadding}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dialogTheme com.registree.registree:dialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerHorizontal com.registree.registree:dividerHorizontal}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dividerVertical com.registree.registree:dividerVertical}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle com.registree.registree:dropDownListViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight com.registree.registree:dropdownListPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextBackground com.registree.registree:editTextBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextColor com.registree.registree:editTextColor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_editTextStyle com.registree.registree:editTextStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator com.registree.registree:homeAsUpIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_imageButtonStyle com.registree.registree:imageButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator com.registree.registree:listChoiceBackgroundIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog com.registree.registree:listDividerAlertDialog}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle com.registree.registree:listMenuViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle com.registree.registree:listPopupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight com.registree.registree:listPreferredItemHeight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge com.registree.registree:listPreferredItemHeightLarge}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall com.registree.registree:listPreferredItemHeightSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft com.registree.registree:listPreferredItemPaddingLeft}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight com.registree.registree:listPreferredItemPaddingRight}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelBackground com.registree.registree:panelBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme com.registree.registree:panelMenuListTheme}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth com.registree.registree:panelMenuListWidth}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupMenuStyle com.registree.registree:popupMenuStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_popupWindowStyle com.registree.registree:popupWindowStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_radioButtonStyle com.registree.registree:radioButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyle com.registree.registree:ratingBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator com.registree.registree:ratingBarStyleIndicator}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall com.registree.registree:ratingBarStyleSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_searchViewStyle com.registree.registree:searchViewStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_seekBarStyle com.registree.registree:seekBarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackground com.registree.registree:selectableItemBackground}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless com.registree.registree:selectableItemBackgroundBorderless}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle com.registree.registree:spinnerDropDownItemStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_spinnerStyle com.registree.registree:spinnerStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_switchStyle com.registree.registree:switchStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu com.registree.registree:textAppearanceLargePopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem com.registree.registree:textAppearanceListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall com.registree.registree:textAppearanceListItemSmall}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader com.registree.registree:textAppearancePopupMenuHeader}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.registree.registree:textAppearanceSearchResultSubtitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle com.registree.registree:textAppearanceSearchResultTitle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.registree.registree:textAppearanceSmallPopupMenu}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem com.registree.registree:textColorAlertDialogListItem}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl com.registree.registree:textColorSearchUrl}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle com.registree.registree:toolbarNavigationButtonStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_toolbarStyle com.registree.registree:toolbarStyle}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBar com.registree.registree:windowActionBar}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay com.registree.registree:windowActionBarOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay com.registree.registree:windowActionModeOverlay}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor com.registree.registree:windowFixedHeightMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor com.registree.registree:windowFixedHeightMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor com.registree.registree:windowFixedWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor com.registree.registree:windowFixedWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor com.registree.registree:windowMinWidthMajor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor com.registree.registree:windowMinWidthMinor}</code></td><td></td></tr> <tr><td><code>{@link #AppCompatTheme_windowNoTitle com.registree.registree: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_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_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_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, 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, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionBarDivider */ public static final int AppCompatTheme_actionBarDivider = 23; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionBarItemBackground */ public static final int AppCompatTheme_actionBarItemBackground = 24; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionBarPopupTheme */ public static final int AppCompatTheme_actionBarPopupTheme = 17; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionBarSize */ public static final int AppCompatTheme_actionBarSize = 22; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionBarSplitStyle */ public static final int AppCompatTheme_actionBarSplitStyle = 19; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionBarStyle */ public static final int AppCompatTheme_actionBarStyle = 18; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionBarTabBarStyle */ public static final int AppCompatTheme_actionBarTabBarStyle = 13; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionBarTabStyle */ public static final int AppCompatTheme_actionBarTabStyle = 12; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionBarTabTextStyle */ public static final int AppCompatTheme_actionBarTabTextStyle = 14; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionBarTheme */ public static final int AppCompatTheme_actionBarTheme = 20; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionBarWidgetTheme */ public static final int AppCompatTheme_actionBarWidgetTheme = 21; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionButtonStyle */ public static final int AppCompatTheme_actionButtonStyle = 50; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionDropDownStyle */ public static final int AppCompatTheme_actionDropDownStyle = 46; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionMenuTextAppearance */ public static final int AppCompatTheme_actionMenuTextAppearance = 25; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionMenuTextColor */ public static final int AppCompatTheme_actionMenuTextColor = 26; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModeBackground */ public static final int AppCompatTheme_actionModeBackground = 29; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModeCloseButtonStyle */ public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModeCloseDrawable */ public static final int AppCompatTheme_actionModeCloseDrawable = 31; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModeCopyDrawable */ public static final int AppCompatTheme_actionModeCopyDrawable = 33; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModeCutDrawable */ public static final int AppCompatTheme_actionModeCutDrawable = 32; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModeFindDrawable */ public static final int AppCompatTheme_actionModeFindDrawable = 37; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModePasteDrawable */ public static final int AppCompatTheme_actionModePasteDrawable = 34; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModePopupWindowStyle */ public static final int AppCompatTheme_actionModePopupWindowStyle = 39; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModeSelectAllDrawable */ public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModeShareDrawable */ public static final int AppCompatTheme_actionModeShareDrawable = 36; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModeSplitBackground */ public static final int AppCompatTheme_actionModeSplitBackground = 30; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModeStyle */ public static final int AppCompatTheme_actionModeStyle = 27; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionModeWebSearchDrawable */ public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionOverflowButtonStyle */ public static final int AppCompatTheme_actionOverflowButtonStyle = 15; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionOverflowMenuStyle */ public static final int AppCompatTheme_actionOverflowMenuStyle = 16; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:activityChooserViewStyle */ public static final int AppCompatTheme_activityChooserViewStyle = 58; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:alertDialogButtonGroupStyle */ public static final int AppCompatTheme_alertDialogButtonGroupStyle = 94; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:alertDialogCenterButtons */ public static final int AppCompatTheme_alertDialogCenterButtons = 95; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:alertDialogStyle */ public static final int AppCompatTheme_alertDialogStyle = 93; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:alertDialogTheme */ public static final int AppCompatTheme_alertDialogTheme = 96; /** <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.registree.registree.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.registree.registree:autoCompleteTextViewStyle */ public static final int AppCompatTheme_autoCompleteTextViewStyle = 101; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:borderlessButtonStyle */ public static final int AppCompatTheme_borderlessButtonStyle = 55; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:buttonBarButtonStyle */ public static final int AppCompatTheme_buttonBarButtonStyle = 52; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:buttonBarNegativeButtonStyle */ public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 99; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:buttonBarNeutralButtonStyle */ public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 100; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:buttonBarPositiveButtonStyle */ public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 98; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:buttonBarStyle */ public static final int AppCompatTheme_buttonBarStyle = 51; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:buttonStyle */ public static final int AppCompatTheme_buttonStyle = 102; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:buttonStyleSmall */ public static final int AppCompatTheme_buttonStyleSmall = 103; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:checkboxStyle */ public static final int AppCompatTheme_checkboxStyle = 104; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:checkedTextViewStyle */ public static final int AppCompatTheme_checkedTextViewStyle = 105; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:colorAccent */ public static final int AppCompatTheme_colorAccent = 85; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:colorBackgroundFloating */ public static final int AppCompatTheme_colorBackgroundFloating = 92; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:colorButtonNormal */ public static final int AppCompatTheme_colorButtonNormal = 89; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:colorControlActivated */ public static final int AppCompatTheme_colorControlActivated = 87; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:colorControlHighlight */ public static final int AppCompatTheme_colorControlHighlight = 88; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:colorControlNormal */ public static final int AppCompatTheme_colorControlNormal = 86; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:colorPrimary */ public static final int AppCompatTheme_colorPrimary = 83; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:colorPrimaryDark */ public static final int AppCompatTheme_colorPrimaryDark = 84; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:colorSwitchThumbNormal */ public static final int AppCompatTheme_colorSwitchThumbNormal = 90; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:controlBackground */ public static final int AppCompatTheme_controlBackground = 91; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:dialogPreferredPadding */ public static final int AppCompatTheme_dialogPreferredPadding = 44; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:dialogTheme */ public static final int AppCompatTheme_dialogTheme = 43; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:dividerHorizontal */ public static final int AppCompatTheme_dividerHorizontal = 57; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:dividerVertical */ public static final int AppCompatTheme_dividerVertical = 56; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:dropDownListViewStyle */ public static final int AppCompatTheme_dropDownListViewStyle = 75; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:dropdownListPreferredItemHeight */ public static final int AppCompatTheme_dropdownListPreferredItemHeight = 47; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:editTextBackground */ public static final int AppCompatTheme_editTextBackground = 64; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:editTextColor */ public static final int AppCompatTheme_editTextColor = 63; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:editTextStyle */ public static final int AppCompatTheme_editTextStyle = 106; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:homeAsUpIndicator */ public static final int AppCompatTheme_homeAsUpIndicator = 49; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:imageButtonStyle */ public static final int AppCompatTheme_imageButtonStyle = 65; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:listChoiceBackgroundIndicator */ public static final int AppCompatTheme_listChoiceBackgroundIndicator = 82; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:listDividerAlertDialog */ public static final int AppCompatTheme_listDividerAlertDialog = 45; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:listMenuViewStyle */ public static final int AppCompatTheme_listMenuViewStyle = 114; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:listPopupWindowStyle */ public static final int AppCompatTheme_listPopupWindowStyle = 76; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:listPreferredItemHeight */ public static final int AppCompatTheme_listPreferredItemHeight = 70; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:listPreferredItemHeightLarge */ public static final int AppCompatTheme_listPreferredItemHeightLarge = 72; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:listPreferredItemHeightSmall */ public static final int AppCompatTheme_listPreferredItemHeightSmall = 71; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:listPreferredItemPaddingLeft */ public static final int AppCompatTheme_listPreferredItemPaddingLeft = 73; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:listPreferredItemPaddingRight */ public static final int AppCompatTheme_listPreferredItemPaddingRight = 74; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:panelBackground */ public static final int AppCompatTheme_panelBackground = 79; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:panelMenuListTheme */ public static final int AppCompatTheme_panelMenuListTheme = 81; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:panelMenuListWidth */ public static final int AppCompatTheme_panelMenuListWidth = 80; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:popupMenuStyle */ public static final int AppCompatTheme_popupMenuStyle = 61; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:popupWindowStyle */ public static final int AppCompatTheme_popupWindowStyle = 62; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:radioButtonStyle */ public static final int AppCompatTheme_radioButtonStyle = 107; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:ratingBarStyle */ public static final int AppCompatTheme_ratingBarStyle = 108; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:ratingBarStyleIndicator */ public static final int AppCompatTheme_ratingBarStyleIndicator = 109; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:ratingBarStyleSmall */ public static final int AppCompatTheme_ratingBarStyleSmall = 110; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:searchViewStyle */ public static final int AppCompatTheme_searchViewStyle = 69; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:seekBarStyle */ public static final int AppCompatTheme_seekBarStyle = 111; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:selectableItemBackground */ public static final int AppCompatTheme_selectableItemBackground = 53; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:selectableItemBackgroundBorderless */ public static final int AppCompatTheme_selectableItemBackgroundBorderless = 54; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:spinnerDropDownItemStyle */ public static final int AppCompatTheme_spinnerDropDownItemStyle = 48; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:spinnerStyle */ public static final int AppCompatTheme_spinnerStyle = 112; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:switchStyle */ public static final int AppCompatTheme_switchStyle = 113; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:textAppearanceLargePopupMenu */ public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:textAppearanceListItem */ public static final int AppCompatTheme_textAppearanceListItem = 77; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:textAppearanceListItemSmall */ public static final int AppCompatTheme_textAppearanceListItemSmall = 78; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:textAppearancePopupMenuHeader */ public static final int AppCompatTheme_textAppearancePopupMenuHeader = 42; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:textAppearanceSearchResultSubtitle */ public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:textAppearanceSearchResultTitle */ public static final int AppCompatTheme_textAppearanceSearchResultTitle = 66; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:textAppearanceSmallPopupMenu */ public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:textColorAlertDialogListItem */ public static final int AppCompatTheme_textColorAlertDialogListItem = 97; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:textColorSearchUrl */ public static final int AppCompatTheme_textColorSearchUrl = 68; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:toolbarNavigationButtonStyle */ public static final int AppCompatTheme_toolbarNavigationButtonStyle = 60; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:toolbarStyle */ public static final int AppCompatTheme_toolbarStyle = 59; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:windowActionBar */ public static final int AppCompatTheme_windowActionBar = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:windowActionBarOverlay */ public static final int AppCompatTheme_windowActionBarOverlay = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:windowActionModeOverlay */ public static final int AppCompatTheme_windowActionModeOverlay = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:windowFixedHeightMajor */ public static final int AppCompatTheme_windowFixedHeightMajor = 9; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:windowFixedHeightMinor */ public static final int AppCompatTheme_windowFixedHeightMinor = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:windowFixedWidthMajor */ public static final int AppCompatTheme_windowFixedWidthMajor = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:windowFixedWidthMinor */ public static final int AppCompatTheme_windowFixedWidthMinor = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:windowMinWidthMajor */ public static final int AppCompatTheme_windowMinWidthMajor = 10; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:windowMinWidthMinor */ public static final int AppCompatTheme_windowMinWidthMinor = 11; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:elevation}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemBackground com.registree.registree:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemIconTint com.registree.registree:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_itemTextColor com.registree.registree:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #BottomNavigationView_menu com.registree.registree: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 = { 0x7f010048, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:elevation */ public static final int BottomNavigationView_elevation = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:itemBackground */ public static final int BottomNavigationView_itemBackground = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:itemIconTint */ public static final int BottomNavigationView_itemIconTint = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:itemTextColor */ public static final int BottomNavigationView_itemTextColor = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:behavior_hideable}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight com.registree.registree:behavior_peekHeight}</code></td><td></td></tr> <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed com.registree.registree: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 = { 0x7f0100ce, 0x7f0100cf, 0x7f0100d0 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:behavior_hideable */ public static final int BottomSheetBehavior_Layout_behavior_hideable = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:behavior_peekHeight */ public static final int BottomSheetBehavior_Layout_behavior_peekHeight = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:allowStacking}</code></td><td></td></tr> </table> @see #ButtonBarLayout_allowStacking */ public static final int[] ButtonBarLayout = { 0x7f0100d1 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:allowStacking */ public static final int ButtonBarLayout_allowStacking = 0; /** Attributes that can be used with a CollapsingToolbarLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity com.registree.registree:collapsedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.registree.registree:collapsedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim com.registree.registree:contentScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity com.registree.registree:expandedTitleGravity}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin com.registree.registree:expandedTitleMargin}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.registree.registree:expandedTitleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.registree.registree:expandedTitleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.registree.registree:expandedTitleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.registree.registree:expandedTitleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.registree.registree:expandedTitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration com.registree.registree:scrimAnimationDuration}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger com.registree.registree:scrimVisibleHeightTrigger}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim com.registree.registree:statusBarScrim}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_title com.registree.registree:title}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled com.registree.registree:titleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId com.registree.registree: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 = { 0x7f01002f, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:collapsedTitleGravity */ public static final int CollapsingToolbarLayout_collapsedTitleGravity = 13; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:collapsedTitleTextAppearance */ public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentScrim */ public static final int CollapsingToolbarLayout_contentScrim = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:expandedTitleGravity */ public static final int CollapsingToolbarLayout_expandedTitleGravity = 14; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:expandedTitleMargin */ public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:expandedTitleMarginBottom */ public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:expandedTitleMarginEnd */ public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:expandedTitleMarginStart */ public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:expandedTitleMarginTop */ public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:expandedTitleTextAppearance */ public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:scrimAnimationDuration */ public static final int CollapsingToolbarLayout_scrimAnimationDuration = 12; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:scrimVisibleHeightTrigger */ public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:statusBarScrim */ public static final int CollapsingToolbarLayout_statusBarScrim = 9; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:title */ public static final int CollapsingToolbarLayout_title = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:titleEnabled */ public static final int CollapsingToolbarLayout_titleEnabled = 15; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:layout_collapseMode}</code></td><td></td></tr> <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier com.registree.registree:layout_collapseParallaxMultiplier}</code></td><td></td></tr> </table> @see #CollapsingToolbarLayout_Layout_layout_collapseMode @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier */ public static final int[] CollapsingToolbarLayout_Layout = { 0x7f0100e1, 0x7f0100e2 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:layout_collapseMode */ public static final int CollapsingToolbarLayout_Layout_layout_collapseMode = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree: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, 0x7f0100e3 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:buttonTint}</code></td><td></td></tr> <tr><td><code>{@link #CompoundButton_buttonTintMode com.registree.registree:buttonTintMode}</code></td><td></td></tr> </table> @see #CompoundButton_android_button @see #CompoundButton_buttonTint @see #CompoundButton_buttonTintMode */ public static final int[] CompoundButton = { 0x01010107, 0x7f0100e4, 0x7f0100e5 }; /** <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.registree.registree.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.registree.registree:buttonTint */ public static final int CompoundButton_buttonTint = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#buttonTintMode} attribute's value can be found in the {@link #CompoundButton} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.registree.registree:buttonTintMode */ public static final int CompoundButton_buttonTintMode = 2; /** Attributes that can be used with a ConstraintLayout_Layout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ConstraintLayout_Layout_android_maxHeight android:maxHeight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_android_maxWidth android:maxWidth}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_android_minHeight android:minHeight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_android_minWidth android:minWidth}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_constraintSet com.registree.registree:constraintSet}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_creator com.registree.registree:layout_constraintBaseline_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf com.registree.registree:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_creator com.registree.registree:layout_constraintBottom_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf com.registree.registree:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintBottom_toTopOf com.registree.registree:layout_constraintBottom_toTopOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintDimensionRatio com.registree.registree:layout_constraintDimensionRatio}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toEndOf com.registree.registree:layout_constraintEnd_toEndOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintEnd_toStartOf com.registree.registree:layout_constraintEnd_toStartOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_begin com.registree.registree:layout_constraintGuide_begin}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_end com.registree.registree:layout_constraintGuide_end}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintGuide_percent com.registree.registree:layout_constraintGuide_percent}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_default com.registree.registree:layout_constraintHeight_default}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_max com.registree.registree:layout_constraintHeight_max}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHeight_min com.registree.registree:layout_constraintHeight_min}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_bias com.registree.registree:layout_constraintHorizontal_bias}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle com.registree.registree:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintHorizontal_weight com.registree.registree:layout_constraintHorizontal_weight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_creator com.registree.registree:layout_constraintLeft_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf com.registree.registree:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintLeft_toRightOf com.registree.registree:layout_constraintLeft_toRightOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_creator com.registree.registree:layout_constraintRight_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toLeftOf com.registree.registree:layout_constraintRight_toLeftOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintRight_toRightOf com.registree.registree:layout_constraintRight_toRightOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toEndOf com.registree.registree:layout_constraintStart_toEndOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintStart_toStartOf com.registree.registree:layout_constraintStart_toStartOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_creator com.registree.registree:layout_constraintTop_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toBottomOf com.registree.registree:layout_constraintTop_toBottomOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintTop_toTopOf com.registree.registree:layout_constraintTop_toTopOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_bias com.registree.registree:layout_constraintVertical_bias}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_chainStyle com.registree.registree:layout_constraintVertical_chainStyle}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintVertical_weight com.registree.registree:layout_constraintVertical_weight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_default com.registree.registree:layout_constraintWidth_default}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_max com.registree.registree:layout_constraintWidth_max}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_constraintWidth_min com.registree.registree:layout_constraintWidth_min}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteX com.registree.registree:layout_editor_absoluteX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_editor_absoluteY com.registree.registree:layout_editor_absoluteY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginBottom com.registree.registree:layout_goneMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginEnd com.registree.registree:layout_goneMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginLeft com.registree.registree:layout_goneMarginLeft}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginRight com.registree.registree:layout_goneMarginRight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginStart com.registree.registree:layout_goneMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_goneMarginTop com.registree.registree:layout_goneMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintLayout_Layout_layout_optimizationLevel com.registree.registree:layout_optimizationLevel}</code></td><td></td></tr> </table> @see #ConstraintLayout_Layout_android_maxHeight @see #ConstraintLayout_Layout_android_maxWidth @see #ConstraintLayout_Layout_android_minHeight @see #ConstraintLayout_Layout_android_minWidth @see #ConstraintLayout_Layout_android_orientation @see #ConstraintLayout_Layout_constraintSet @see #ConstraintLayout_Layout_layout_constraintBaseline_creator @see #ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf @see #ConstraintLayout_Layout_layout_constraintBottom_creator @see #ConstraintLayout_Layout_layout_constraintBottom_toBottomOf @see #ConstraintLayout_Layout_layout_constraintBottom_toTopOf @see #ConstraintLayout_Layout_layout_constraintDimensionRatio @see #ConstraintLayout_Layout_layout_constraintEnd_toEndOf @see #ConstraintLayout_Layout_layout_constraintEnd_toStartOf @see #ConstraintLayout_Layout_layout_constraintGuide_begin @see #ConstraintLayout_Layout_layout_constraintGuide_end @see #ConstraintLayout_Layout_layout_constraintGuide_percent @see #ConstraintLayout_Layout_layout_constraintHeight_default @see #ConstraintLayout_Layout_layout_constraintHeight_max @see #ConstraintLayout_Layout_layout_constraintHeight_min @see #ConstraintLayout_Layout_layout_constraintHorizontal_bias @see #ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle @see #ConstraintLayout_Layout_layout_constraintHorizontal_weight @see #ConstraintLayout_Layout_layout_constraintLeft_creator @see #ConstraintLayout_Layout_layout_constraintLeft_toLeftOf @see #ConstraintLayout_Layout_layout_constraintLeft_toRightOf @see #ConstraintLayout_Layout_layout_constraintRight_creator @see #ConstraintLayout_Layout_layout_constraintRight_toLeftOf @see #ConstraintLayout_Layout_layout_constraintRight_toRightOf @see #ConstraintLayout_Layout_layout_constraintStart_toEndOf @see #ConstraintLayout_Layout_layout_constraintStart_toStartOf @see #ConstraintLayout_Layout_layout_constraintTop_creator @see #ConstraintLayout_Layout_layout_constraintTop_toBottomOf @see #ConstraintLayout_Layout_layout_constraintTop_toTopOf @see #ConstraintLayout_Layout_layout_constraintVertical_bias @see #ConstraintLayout_Layout_layout_constraintVertical_chainStyle @see #ConstraintLayout_Layout_layout_constraintVertical_weight @see #ConstraintLayout_Layout_layout_constraintWidth_default @see #ConstraintLayout_Layout_layout_constraintWidth_max @see #ConstraintLayout_Layout_layout_constraintWidth_min @see #ConstraintLayout_Layout_layout_editor_absoluteX @see #ConstraintLayout_Layout_layout_editor_absoluteY @see #ConstraintLayout_Layout_layout_goneMarginBottom @see #ConstraintLayout_Layout_layout_goneMarginEnd @see #ConstraintLayout_Layout_layout_goneMarginLeft @see #ConstraintLayout_Layout_layout_goneMarginRight @see #ConstraintLayout_Layout_layout_goneMarginStart @see #ConstraintLayout_Layout_layout_goneMarginTop @see #ConstraintLayout_Layout_layout_optimizationLevel */ public static final int[] ConstraintLayout_Layout = { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f010000, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e }; /** <p>This symbol is the offset where the {@link android.R.attr#maxHeight} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. @attr name android:maxHeight */ public static final int ConstraintLayout_Layout_android_maxHeight = 2; /** <p>This symbol is the offset where the {@link android.R.attr#maxWidth} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. @attr name android:maxWidth */ public static final int ConstraintLayout_Layout_android_maxWidth = 1; /** <p>This symbol is the offset where the {@link android.R.attr#minHeight} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. @attr name android:minHeight */ public static final int ConstraintLayout_Layout_android_minHeight = 4; /** <p>This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. @attr name android:minWidth */ public static final int ConstraintLayout_Layout_android_minWidth = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. @attr name android:orientation */ public static final int ConstraintLayout_Layout_android_orientation = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#constraintSet} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:constraintSet */ public static final int ConstraintLayout_Layout_constraintSet = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintBaseline_creator} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintBaseline_creator */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_creator = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintBaseline_toBaselineOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintBottom_creator} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintBottom_creator */ public static final int ConstraintLayout_Layout_layout_constraintBottom_creator = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintBottom_toBottomOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintBottom_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf = 9; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintBottom_toTopOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintBottom_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintBottom_toTopOf = 10; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintDimensionRatio} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintDimensionRatio */ public static final int ConstraintLayout_Layout_layout_constraintDimensionRatio = 11; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintEnd_toEndOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintEnd_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toEndOf = 12; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintEnd_toStartOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintEnd_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintEnd_toStartOf = 13; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintGuide_begin} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintGuide_begin */ public static final int ConstraintLayout_Layout_layout_constraintGuide_begin = 14; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintGuide_end} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintGuide_end */ public static final int ConstraintLayout_Layout_layout_constraintGuide_end = 15; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintGuide_percent} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintGuide_percent */ public static final int ConstraintLayout_Layout_layout_constraintGuide_percent = 16; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHeight_default} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintHeight_default */ public static final int ConstraintLayout_Layout_layout_constraintHeight_default = 17; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHeight_max} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintHeight_max */ public static final int ConstraintLayout_Layout_layout_constraintHeight_max = 18; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHeight_min} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintHeight_min */ public static final int ConstraintLayout_Layout_layout_constraintHeight_min = 19; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHorizontal_bias} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintHorizontal_bias */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_bias = 20; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHorizontal_chainStyle} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintHorizontal_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle = 21; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHorizontal_weight} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintHorizontal_weight */ public static final int ConstraintLayout_Layout_layout_constraintHorizontal_weight = 22; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintLeft_creator} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintLeft_creator */ public static final int ConstraintLayout_Layout_layout_constraintLeft_creator = 23; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintLeft_toLeftOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintLeft_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf = 24; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintLeft_toRightOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintLeft_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintLeft_toRightOf = 25; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintRight_creator} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintRight_creator */ public static final int ConstraintLayout_Layout_layout_constraintRight_creator = 26; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintRight_toLeftOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintRight_toLeftOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toLeftOf = 27; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintRight_toRightOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintRight_toRightOf */ public static final int ConstraintLayout_Layout_layout_constraintRight_toRightOf = 28; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintStart_toEndOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintStart_toEndOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toEndOf = 29; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintStart_toStartOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintStart_toStartOf */ public static final int ConstraintLayout_Layout_layout_constraintStart_toStartOf = 30; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintTop_creator} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintTop_creator */ public static final int ConstraintLayout_Layout_layout_constraintTop_creator = 31; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintTop_toBottomOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintTop_toBottomOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toBottomOf = 32; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintTop_toTopOf} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintTop_toTopOf */ public static final int ConstraintLayout_Layout_layout_constraintTop_toTopOf = 33; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintVertical_bias} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintVertical_bias */ public static final int ConstraintLayout_Layout_layout_constraintVertical_bias = 34; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintVertical_chainStyle} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintVertical_chainStyle */ public static final int ConstraintLayout_Layout_layout_constraintVertical_chainStyle = 35; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintVertical_weight} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintVertical_weight */ public static final int ConstraintLayout_Layout_layout_constraintVertical_weight = 36; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintWidth_default} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintWidth_default */ public static final int ConstraintLayout_Layout_layout_constraintWidth_default = 37; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintWidth_max} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintWidth_max */ public static final int ConstraintLayout_Layout_layout_constraintWidth_max = 38; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintWidth_min} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_constraintWidth_min */ public static final int ConstraintLayout_Layout_layout_constraintWidth_min = 39; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_editor_absoluteX} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_editor_absoluteX */ public static final int ConstraintLayout_Layout_layout_editor_absoluteX = 40; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_editor_absoluteY} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_editor_absoluteY */ public static final int ConstraintLayout_Layout_layout_editor_absoluteY = 41; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginBottom} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_goneMarginBottom */ public static final int ConstraintLayout_Layout_layout_goneMarginBottom = 42; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginEnd} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_goneMarginEnd */ public static final int ConstraintLayout_Layout_layout_goneMarginEnd = 43; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginLeft} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_goneMarginLeft */ public static final int ConstraintLayout_Layout_layout_goneMarginLeft = 44; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginRight} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_goneMarginRight */ public static final int ConstraintLayout_Layout_layout_goneMarginRight = 45; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginStart} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_goneMarginStart */ public static final int ConstraintLayout_Layout_layout_goneMarginStart = 46; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginTop} attribute's value can be found in the {@link #ConstraintLayout_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.registree.registree:layout_goneMarginTop */ public static final int ConstraintLayout_Layout_layout_goneMarginTop = 47; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_optimizationLevel} attribute's value can be found in the {@link #ConstraintLayout_Layout} array. <p>Must be one or more (separated by '|') of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>none</code></td><td>1</td><td></td></tr> <tr><td><code>all</code></td><td>2</td><td></td></tr> <tr><td><code>basic</code></td><td>4</td><td></td></tr> <tr><td><code>chains</code></td><td>8</td><td></td></tr> </table> @attr name com.registree.registree:layout_optimizationLevel */ public static final int ConstraintLayout_Layout_layout_optimizationLevel = 48; /** Attributes that can be used with a ConstraintSet. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #ConstraintSet_android_alpha android:alpha}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_elevation android:elevation}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_height android:layout_height}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginBottom android:layout_marginBottom}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginEnd android:layout_marginEnd}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginLeft android:layout_marginLeft}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginRight android:layout_marginRight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginStart android:layout_marginStart}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_marginTop android:layout_marginTop}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_layout_width android:layout_width}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_orientation android:orientation}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_rotationX android:rotationX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_rotationY android:rotationY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_scaleX android:scaleX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_scaleY android:scaleY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_transformPivotX android:transformPivotX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_transformPivotY android:transformPivotY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_translationX android:translationX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_translationY android:translationY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_translationZ android:translationZ}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_android_visibility android:visibility}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_creator com.registree.registree:layout_constraintBaseline_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintBaseline_toBaselineOf com.registree.registree:layout_constraintBaseline_toBaselineOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_creator com.registree.registree:layout_constraintBottom_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toBottomOf com.registree.registree:layout_constraintBottom_toBottomOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintBottom_toTopOf com.registree.registree:layout_constraintBottom_toTopOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintDimensionRatio com.registree.registree:layout_constraintDimensionRatio}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toEndOf com.registree.registree:layout_constraintEnd_toEndOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintEnd_toStartOf com.registree.registree:layout_constraintEnd_toStartOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_begin com.registree.registree:layout_constraintGuide_begin}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_end com.registree.registree:layout_constraintGuide_end}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintGuide_percent com.registree.registree:layout_constraintGuide_percent}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_default com.registree.registree:layout_constraintHeight_default}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_max com.registree.registree:layout_constraintHeight_max}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHeight_min com.registree.registree:layout_constraintHeight_min}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_bias com.registree.registree:layout_constraintHorizontal_bias}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_chainStyle com.registree.registree:layout_constraintHorizontal_chainStyle}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintHorizontal_weight com.registree.registree:layout_constraintHorizontal_weight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_creator com.registree.registree:layout_constraintLeft_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toLeftOf com.registree.registree:layout_constraintLeft_toLeftOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintLeft_toRightOf com.registree.registree:layout_constraintLeft_toRightOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintRight_creator com.registree.registree:layout_constraintRight_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toLeftOf com.registree.registree:layout_constraintRight_toLeftOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintRight_toRightOf com.registree.registree:layout_constraintRight_toRightOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toEndOf com.registree.registree:layout_constraintStart_toEndOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintStart_toStartOf com.registree.registree:layout_constraintStart_toStartOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintTop_creator com.registree.registree:layout_constraintTop_creator}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toBottomOf com.registree.registree:layout_constraintTop_toBottomOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintTop_toTopOf com.registree.registree:layout_constraintTop_toTopOf}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_bias com.registree.registree:layout_constraintVertical_bias}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_chainStyle com.registree.registree:layout_constraintVertical_chainStyle}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintVertical_weight com.registree.registree:layout_constraintVertical_weight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_default com.registree.registree:layout_constraintWidth_default}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_max com.registree.registree:layout_constraintWidth_max}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_constraintWidth_min com.registree.registree:layout_constraintWidth_min}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteX com.registree.registree:layout_editor_absoluteX}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_editor_absoluteY com.registree.registree:layout_editor_absoluteY}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginBottom com.registree.registree:layout_goneMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginEnd com.registree.registree:layout_goneMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginLeft com.registree.registree:layout_goneMarginLeft}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginRight com.registree.registree:layout_goneMarginRight}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginStart com.registree.registree:layout_goneMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #ConstraintSet_layout_goneMarginTop com.registree.registree:layout_goneMarginTop}</code></td><td></td></tr> </table> @see #ConstraintSet_android_alpha @see #ConstraintSet_android_elevation @see #ConstraintSet_android_id @see #ConstraintSet_android_layout_height @see #ConstraintSet_android_layout_marginBottom @see #ConstraintSet_android_layout_marginEnd @see #ConstraintSet_android_layout_marginLeft @see #ConstraintSet_android_layout_marginRight @see #ConstraintSet_android_layout_marginStart @see #ConstraintSet_android_layout_marginTop @see #ConstraintSet_android_layout_width @see #ConstraintSet_android_orientation @see #ConstraintSet_android_rotationX @see #ConstraintSet_android_rotationY @see #ConstraintSet_android_scaleX @see #ConstraintSet_android_scaleY @see #ConstraintSet_android_transformPivotX @see #ConstraintSet_android_transformPivotY @see #ConstraintSet_android_translationX @see #ConstraintSet_android_translationY @see #ConstraintSet_android_translationZ @see #ConstraintSet_android_visibility @see #ConstraintSet_layout_constraintBaseline_creator @see #ConstraintSet_layout_constraintBaseline_toBaselineOf @see #ConstraintSet_layout_constraintBottom_creator @see #ConstraintSet_layout_constraintBottom_toBottomOf @see #ConstraintSet_layout_constraintBottom_toTopOf @see #ConstraintSet_layout_constraintDimensionRatio @see #ConstraintSet_layout_constraintEnd_toEndOf @see #ConstraintSet_layout_constraintEnd_toStartOf @see #ConstraintSet_layout_constraintGuide_begin @see #ConstraintSet_layout_constraintGuide_end @see #ConstraintSet_layout_constraintGuide_percent @see #ConstraintSet_layout_constraintHeight_default @see #ConstraintSet_layout_constraintHeight_max @see #ConstraintSet_layout_constraintHeight_min @see #ConstraintSet_layout_constraintHorizontal_bias @see #ConstraintSet_layout_constraintHorizontal_chainStyle @see #ConstraintSet_layout_constraintHorizontal_weight @see #ConstraintSet_layout_constraintLeft_creator @see #ConstraintSet_layout_constraintLeft_toLeftOf @see #ConstraintSet_layout_constraintLeft_toRightOf @see #ConstraintSet_layout_constraintRight_creator @see #ConstraintSet_layout_constraintRight_toLeftOf @see #ConstraintSet_layout_constraintRight_toRightOf @see #ConstraintSet_layout_constraintStart_toEndOf @see #ConstraintSet_layout_constraintStart_toStartOf @see #ConstraintSet_layout_constraintTop_creator @see #ConstraintSet_layout_constraintTop_toBottomOf @see #ConstraintSet_layout_constraintTop_toTopOf @see #ConstraintSet_layout_constraintVertical_bias @see #ConstraintSet_layout_constraintVertical_chainStyle @see #ConstraintSet_layout_constraintVertical_weight @see #ConstraintSet_layout_constraintWidth_default @see #ConstraintSet_layout_constraintWidth_max @see #ConstraintSet_layout_constraintWidth_min @see #ConstraintSet_layout_editor_absoluteX @see #ConstraintSet_layout_editor_absoluteY @see #ConstraintSet_layout_goneMarginBottom @see #ConstraintSet_layout_goneMarginEnd @see #ConstraintSet_layout_goneMarginLeft @see #ConstraintSet_layout_goneMarginRight @see #ConstraintSet_layout_goneMarginStart @see #ConstraintSet_layout_goneMarginTop */ public static final int[] ConstraintSet = { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d }; /** <p>This symbol is the offset where the {@link android.R.attr#alpha} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:alpha */ public static final int ConstraintSet_android_alpha = 9; /** <p>This symbol is the offset where the {@link android.R.attr#elevation} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:elevation */ public static final int ConstraintSet_android_elevation = 21; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:id */ public static final int ConstraintSet_android_id = 1; /** <p>This symbol is the offset where the {@link android.R.attr#layout_height} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_height */ public static final int ConstraintSet_android_layout_height = 4; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginBottom} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginBottom */ public static final int ConstraintSet_android_layout_marginBottom = 8; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginEnd} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginEnd */ public static final int ConstraintSet_android_layout_marginEnd = 19; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginLeft} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginLeft */ public static final int ConstraintSet_android_layout_marginLeft = 5; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginRight} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginRight */ public static final int ConstraintSet_android_layout_marginRight = 7; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginStart} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginStart */ public static final int ConstraintSet_android_layout_marginStart = 18; /** <p>This symbol is the offset where the {@link android.R.attr#layout_marginTop} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_marginTop */ public static final int ConstraintSet_android_layout_marginTop = 6; /** <p>This symbol is the offset where the {@link android.R.attr#layout_width} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:layout_width */ public static final int ConstraintSet_android_layout_width = 3; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:orientation */ public static final int ConstraintSet_android_orientation = 0; /** <p>This symbol is the offset where the {@link android.R.attr#rotationX} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:rotationX */ public static final int ConstraintSet_android_rotationX = 16; /** <p>This symbol is the offset where the {@link android.R.attr#rotationY} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:rotationY */ public static final int ConstraintSet_android_rotationY = 17; /** <p>This symbol is the offset where the {@link android.R.attr#scaleX} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:scaleX */ public static final int ConstraintSet_android_scaleX = 14; /** <p>This symbol is the offset where the {@link android.R.attr#scaleY} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:scaleY */ public static final int ConstraintSet_android_scaleY = 15; /** <p>This symbol is the offset where the {@link android.R.attr#transformPivotX} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:transformPivotX */ public static final int ConstraintSet_android_transformPivotX = 10; /** <p>This symbol is the offset where the {@link android.R.attr#transformPivotY} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:transformPivotY */ public static final int ConstraintSet_android_transformPivotY = 11; /** <p>This symbol is the offset where the {@link android.R.attr#translationX} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:translationX */ public static final int ConstraintSet_android_translationX = 12; /** <p>This symbol is the offset where the {@link android.R.attr#translationY} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:translationY */ public static final int ConstraintSet_android_translationY = 13; /** <p>This symbol is the offset where the {@link android.R.attr#translationZ} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:translationZ */ public static final int ConstraintSet_android_translationZ = 20; /** <p>This symbol is the offset where the {@link android.R.attr#visibility} attribute's value can be found in the {@link #ConstraintSet} array. @attr name android:visibility */ public static final int ConstraintSet_android_visibility = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintBaseline_creator} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintBaseline_creator */ public static final int ConstraintSet_layout_constraintBaseline_creator = 22; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintBaseline_toBaselineOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintBaseline_toBaselineOf */ public static final int ConstraintSet_layout_constraintBaseline_toBaselineOf = 23; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintBottom_creator} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintBottom_creator */ public static final int ConstraintSet_layout_constraintBottom_creator = 24; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintBottom_toBottomOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintBottom_toBottomOf */ public static final int ConstraintSet_layout_constraintBottom_toBottomOf = 25; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintBottom_toTopOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintBottom_toTopOf */ public static final int ConstraintSet_layout_constraintBottom_toTopOf = 26; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintDimensionRatio} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintDimensionRatio */ public static final int ConstraintSet_layout_constraintDimensionRatio = 27; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintEnd_toEndOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintEnd_toEndOf */ public static final int ConstraintSet_layout_constraintEnd_toEndOf = 28; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintEnd_toStartOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintEnd_toStartOf */ public static final int ConstraintSet_layout_constraintEnd_toStartOf = 29; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintGuide_begin} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintGuide_begin */ public static final int ConstraintSet_layout_constraintGuide_begin = 30; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintGuide_end} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintGuide_end */ public static final int ConstraintSet_layout_constraintGuide_end = 31; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintGuide_percent} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintGuide_percent */ public static final int ConstraintSet_layout_constraintGuide_percent = 32; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHeight_default} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintHeight_default */ public static final int ConstraintSet_layout_constraintHeight_default = 33; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHeight_max} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintHeight_max */ public static final int ConstraintSet_layout_constraintHeight_max = 34; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHeight_min} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintHeight_min */ public static final int ConstraintSet_layout_constraintHeight_min = 35; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHorizontal_bias} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintHorizontal_bias */ public static final int ConstraintSet_layout_constraintHorizontal_bias = 36; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHorizontal_chainStyle} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintHorizontal_chainStyle */ public static final int ConstraintSet_layout_constraintHorizontal_chainStyle = 37; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintHorizontal_weight} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintHorizontal_weight */ public static final int ConstraintSet_layout_constraintHorizontal_weight = 38; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintLeft_creator} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintLeft_creator */ public static final int ConstraintSet_layout_constraintLeft_creator = 39; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintLeft_toLeftOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintLeft_toLeftOf */ public static final int ConstraintSet_layout_constraintLeft_toLeftOf = 40; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintLeft_toRightOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintLeft_toRightOf */ public static final int ConstraintSet_layout_constraintLeft_toRightOf = 41; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintRight_creator} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintRight_creator */ public static final int ConstraintSet_layout_constraintRight_creator = 42; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintRight_toLeftOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintRight_toLeftOf */ public static final int ConstraintSet_layout_constraintRight_toLeftOf = 43; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintRight_toRightOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintRight_toRightOf */ public static final int ConstraintSet_layout_constraintRight_toRightOf = 44; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintStart_toEndOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintStart_toEndOf */ public static final int ConstraintSet_layout_constraintStart_toEndOf = 45; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintStart_toStartOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintStart_toStartOf */ public static final int ConstraintSet_layout_constraintStart_toStartOf = 46; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintTop_creator} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintTop_creator */ public static final int ConstraintSet_layout_constraintTop_creator = 47; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintTop_toBottomOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintTop_toBottomOf */ public static final int ConstraintSet_layout_constraintTop_toBottomOf = 48; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintTop_toTopOf} attribute's value can be found in the {@link #ConstraintSet} array. <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>" or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>". <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>parent</code></td><td>0</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintTop_toTopOf */ public static final int ConstraintSet_layout_constraintTop_toTopOf = 49; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintVertical_bias} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintVertical_bias */ public static final int ConstraintSet_layout_constraintVertical_bias = 50; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintVertical_chainStyle} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>spread_inside</code></td><td>1</td><td></td></tr> <tr><td><code>packed</code></td><td>2</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintVertical_chainStyle */ public static final int ConstraintSet_layout_constraintVertical_chainStyle = 51; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintVertical_weight} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintVertical_weight */ public static final int ConstraintSet_layout_constraintVertical_weight = 52; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintWidth_default} attribute's value can be found in the {@link #ConstraintSet} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>spread</code></td><td>0</td><td></td></tr> <tr><td><code>wrap</code></td><td>1</td><td></td></tr> </table> @attr name com.registree.registree:layout_constraintWidth_default */ public static final int ConstraintSet_layout_constraintWidth_default = 53; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintWidth_max} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintWidth_max */ public static final int ConstraintSet_layout_constraintWidth_max = 54; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_constraintWidth_min} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_constraintWidth_min */ public static final int ConstraintSet_layout_constraintWidth_min = 55; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_editor_absoluteX} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_editor_absoluteX */ public static final int ConstraintSet_layout_editor_absoluteX = 56; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_editor_absoluteY} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_editor_absoluteY */ public static final int ConstraintSet_layout_editor_absoluteY = 57; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginBottom} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_goneMarginBottom */ public static final int ConstraintSet_layout_goneMarginBottom = 58; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginEnd} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_goneMarginEnd */ public static final int ConstraintSet_layout_goneMarginEnd = 59; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginLeft} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_goneMarginLeft */ public static final int ConstraintSet_layout_goneMarginLeft = 60; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginRight} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_goneMarginRight */ public static final int ConstraintSet_layout_goneMarginRight = 61; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginStart} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_goneMarginStart */ public static final int ConstraintSet_layout_goneMarginStart = 62; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#layout_goneMarginTop} attribute's value can be found in the {@link #ConstraintSet} 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.registree.registree:layout_goneMarginTop */ public static final int ConstraintSet_layout_goneMarginTop = 63; /** 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.registree.registree:keylines}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_statusBarBackground com.registree.registree:statusBarBackground}</code></td><td></td></tr> </table> @see #CoordinatorLayout_keylines @see #CoordinatorLayout_statusBarBackground */ public static final int[] CoordinatorLayout = { 0x7f0100e6, 0x7f0100e7 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:keylines */ public static final int CoordinatorLayout_keylines = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:layout_anchor}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity com.registree.registree:layout_anchorGravity}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior com.registree.registree:layout_behavior}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges com.registree.registree:layout_dodgeInsetEdges}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge com.registree.registree:layout_insetEdge}</code></td><td></td></tr> <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline com.registree.registree: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, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed }; /** <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.registree.registree.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.registree.registree:layout_anchor */ public static final int CoordinatorLayout_Layout_layout_anchor = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:layout_anchorGravity */ public static final int CoordinatorLayout_Layout_layout_anchorGravity = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:layout_behavior */ public static final int CoordinatorLayout_Layout_layout_behavior = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:layout_dodgeInsetEdges */ public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:layout_insetEdge */ public static final int CoordinatorLayout_Layout_layout_insetEdge = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:bottomSheetDialogTheme}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_bottomSheetStyle com.registree.registree:bottomSheetStyle}</code></td><td></td></tr> <tr><td><code>{@link #DesignTheme_textColorError com.registree.registree:textColorError}</code></td><td></td></tr> </table> @see #DesignTheme_bottomSheetDialogTheme @see #DesignTheme_bottomSheetStyle @see #DesignTheme_textColorError */ public static final int[] DesignTheme = { 0x7f0100ee, 0x7f0100ef, 0x7f0100f0 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:bottomSheetDialogTheme */ public static final int DesignTheme_bottomSheetDialogTheme = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:bottomSheetStyle */ public static final int DesignTheme_bottomSheetStyle = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#textColorError} attribute's value can be found in the {@link #DesignTheme} 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.registree.registree: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.registree.registree:arrowHeadLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength com.registree.registree:arrowShaftLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_barLength com.registree.registree:barLength}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_color com.registree.registree:color}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_drawableSize com.registree.registree:drawableSize}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars com.registree.registree:gapBetweenBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_spinBars com.registree.registree:spinBars}</code></td><td></td></tr> <tr><td><code>{@link #DrawerArrowToggle_thickness com.registree.registree: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 = { 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:arrowHeadLength */ public static final int DrawerArrowToggle_arrowHeadLength = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:arrowShaftLength */ public static final int DrawerArrowToggle_arrowShaftLength = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:barLength */ public static final int DrawerArrowToggle_barLength = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:color */ public static final int DrawerArrowToggle_color = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:drawableSize */ public static final int DrawerArrowToggle_drawableSize = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:gapBetweenBars */ public static final int DrawerArrowToggle_gapBetweenBars = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:spinBars */ public static final int DrawerArrowToggle_spinBars = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_backgroundTintMode com.registree.registree:backgroundTintMode}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_borderWidth com.registree.registree:borderWidth}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_elevation com.registree.registree:elevation}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_fabSize com.registree.registree:fabSize}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ com.registree.registree:pressedTranslationZ}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_rippleColor com.registree.registree:rippleColor}</code></td><td></td></tr> <tr><td><code>{@link #FloatingActionButton_useCompatPadding com.registree.registree: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 = { 0x7f010048, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f010171, 0x7f010172 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:backgroundTint */ public static final int FloatingActionButton_backgroundTint = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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> </table> @attr name com.registree.registree:backgroundTintMode */ public static final int FloatingActionButton_backgroundTintMode = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:borderWidth */ public static final int FloatingActionButton_borderWidth = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:elevation */ public static final int FloatingActionButton_elevation = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:fabSize */ public static final int FloatingActionButton_fabSize = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:pressedTranslationZ */ public static final int FloatingActionButton_pressedTranslationZ = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:rippleColor */ public static final int FloatingActionButton_rippleColor = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:useCompatPadding */ public static final int FloatingActionButton_useCompatPadding = 5; /** 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.registree.registree:behavior_autoHide}</code></td><td></td></tr> </table> @see #FloatingActionButton_Behavior_Layout_behavior_autoHide */ public static final int[] FloatingActionButton_Behavior_Layout = { 0x7f0100fe }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:behavior_autoHide */ public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0; /** 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.registree.registree: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, 0x7f0100ff }; /** <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.registree.registree.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.registree.registree:foregroundInsidePadding */ public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; /** Attributes that can be used with a LinearConstraintLayout. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearConstraintLayout_android_orientation android:orientation}</code></td><td></td></tr> </table> @see #LinearConstraintLayout_android_orientation */ public static final int[] LinearConstraintLayout = { 0x010100c4 }; /** <p>This symbol is the offset where the {@link android.R.attr#orientation} attribute's value can be found in the {@link #LinearConstraintLayout} array. @attr name android:orientation */ public static final int LinearConstraintLayout_android_orientation = 0; /** Attributes that can be used with a LinearLayoutCompat. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LinearLayoutCompat_android_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.registree.registree:divider}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_dividerPadding com.registree.registree:dividerPadding}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild com.registree.registree:measureWithLargestChild}</code></td><td></td></tr> <tr><td><code>{@link #LinearLayoutCompat_showDividers com.registree.registree: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, 0x7f010037, 0x7f010100, 0x7f010101, 0x7f010102 }; /** <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.registree.registree.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.registree.registree:divider */ public static final int LinearLayoutCompat_divider = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:dividerPadding */ public static final int LinearLayoutCompat_dividerPadding = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:measureWithLargestChild */ public static final int LinearLayoutCompat_measureWithLargestChild = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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 LoadingImageView. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #LoadingImageView_circleCrop com.registree.registree:circleCrop}</code></td><td></td></tr> <tr><td><code>{@link #LoadingImageView_imageAspectRatio com.registree.registree:imageAspectRatio}</code></td><td></td></tr> <tr><td><code>{@link #LoadingImageView_imageAspectRatioAdjust com.registree.registree:imageAspectRatioAdjust}</code></td><td></td></tr> </table> @see #LoadingImageView_circleCrop @see #LoadingImageView_imageAspectRatio @see #LoadingImageView_imageAspectRatioAdjust */ public static final int[] LoadingImageView = { 0x7f010103, 0x7f010104, 0x7f010105 }; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#circleCrop} attribute's value can be found in the {@link #LoadingImageView} 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.registree.registree:circleCrop */ public static final int LoadingImageView_circleCrop = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#imageAspectRatio} attribute's value can be found in the {@link #LoadingImageView} 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.registree.registree:imageAspectRatio */ public static final int LoadingImageView_imageAspectRatio = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#imageAspectRatioAdjust} attribute's value can be found in the {@link #LoadingImageView} 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>adjust_width</code></td><td>1</td><td></td></tr> <tr><td><code>adjust_height</code></td><td>2</td><td></td></tr> </table> @attr name com.registree.registree:imageAspectRatioAdjust */ public static final int LoadingImageView_imageAspectRatioAdjust = 0; /** 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.registree.registree:actionLayout}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionProviderClass com.registree.registree:actionProviderClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_actionViewClass com.registree.registree:actionViewClass}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_contentDescription com.registree.registree:contentDescription}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_showAsAction com.registree.registree:showAsAction}</code></td><td></td></tr> <tr><td><code>{@link #MenuItem_tooltipText com.registree.registree:tooltipText}</code></td><td></td></tr> </table> @see #MenuItem_actionLayout @see #MenuItem_actionProviderClass @see #MenuItem_actionViewClass @see #MenuItem_android_alphabeticShortcut @see #MenuItem_android_checkable @see #MenuItem_android_checked @see #MenuItem_android_enabled @see #MenuItem_android_icon @see #MenuItem_android_id @see #MenuItem_android_menuCategory @see #MenuItem_android_numericShortcut @see #MenuItem_android_onClick @see #MenuItem_android_orderInCategory @see #MenuItem_android_title @see #MenuItem_android_titleCondensed @see #MenuItem_android_visible @see #MenuItem_contentDescription @see #MenuItem_showAsAction @see #MenuItem_tooltipText */ public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionLayout */ public static final int MenuItem_actionLayout = 14; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:actionViewClass */ public static final int MenuItem_actionViewClass = 15; /** <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /** <p>This symbol is the offset where the {@link android.R.attr#checkable} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /** <p>This symbol is the offset where the {@link android.R.attr#checked} attribute's value can be found in the {@link #MenuItem} array. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /** <p>This symbol is the offset where the {@link android.R.attr#enabled} attribute's value can be found in the {@link #MenuItem} array. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /** <p>This symbol is the offset where the {@link android.R.attr#icon} attribute's value can be found in the {@link #MenuItem} array. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /** <p>This symbol is the offset where the {@link android.R.attr#id} attribute's value can be found in the {@link #MenuItem} array. @attr name android:id */ public static final int MenuItem_android_id = 2; /** <p>This symbol is the offset where the {@link android.R.attr#menuCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /** <p>This symbol is the offset where the {@link android.R.attr#numericShortcut} attribute's value can be found in the {@link #MenuItem} array. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /** <p>This symbol is the offset where the {@link android.R.attr#onClick} attribute's value can be found in the {@link #MenuItem} array. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /** <p>This symbol is the offset where the {@link android.R.attr#orderInCategory} attribute's value can be found in the {@link #MenuItem} array. @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory = 6; /** <p>This symbol is the offset where the {@link android.R.attr#title} attribute's value can be found in the {@link #MenuItem} array. @attr name android:title */ public static final int MenuItem_android_title = 7; /** <p>This symbol is the offset where the {@link android.R.attr#titleCondensed} attribute's value can be found in the {@link #MenuItem} array. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /** <p>This symbol is the offset where the {@link android.R.attr#visible} attribute's value can be found in the {@link #MenuItem} array. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentDescription */ public static final int MenuItem_contentDescription = 17; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:showAsAction */ public static final int MenuItem_showAsAction = 13; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tooltipText */ public static final int MenuItem_tooltipText = 18; /** 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.registree.registree:preserveIconSpacing}</code></td><td></td></tr> <tr><td><code>{@link #MenuView_subMenuArrow com.registree.registree: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, 0x7f01010c, 0x7f01010d }; /** <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.registree.registree.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.registree.registree:preserveIconSpacing */ public static final int MenuView_preserveIconSpacing = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:elevation}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_headerLayout com.registree.registree:headerLayout}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemBackground com.registree.registree:itemBackground}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemIconTint com.registree.registree:itemIconTint}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextAppearance com.registree.registree:itemTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_itemTextColor com.registree.registree:itemTextColor}</code></td><td></td></tr> <tr><td><code>{@link #NavigationView_menu com.registree.registree: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, 0x7f010048, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113 }; /** <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.registree.registree.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.registree.registree:elevation */ public static final int NavigationView_elevation = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:headerLayout */ public static final int NavigationView_headerLayout = 9; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:itemBackground */ public static final int NavigationView_itemBackground = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:itemIconTint */ public static final int NavigationView_itemIconTint = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:itemTextAppearance */ public static final int NavigationView_itemTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:itemTextColor */ public static final int NavigationView_itemTextColor = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree: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, 0x7f010114 }; /** <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.registree.registree.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.registree.registree: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.registree.registree:state_above_anchor}</code></td><td></td></tr> </table> @see #PopupWindowBackgroundState_state_above_anchor */ public static final int[] PopupWindowBackgroundState = { 0x7f010115 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:paddingBottomNoButtons}</code></td><td></td></tr> <tr><td><code>{@link #RecycleListView_paddingTopNoTitle com.registree.registree:paddingTopNoTitle}</code></td><td></td></tr> </table> @see #RecycleListView_paddingBottomNoButtons @see #RecycleListView_paddingTopNoTitle */ public static final int[] RecycleListView = { 0x7f010116, 0x7f010117 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:paddingBottomNoButtons */ public static final int RecycleListView_paddingBottomNoButtons = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:fastScrollEnabled}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable com.registree.registree:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable com.registree.registree:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable com.registree.registree:fastScrollVerticalThumbDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable com.registree.registree:fastScrollVerticalTrackDrawable}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_layoutManager com.registree.registree:layoutManager}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_reverseLayout com.registree.registree:reverseLayout}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_spanCount com.registree.registree:spanCount}</code></td><td></td></tr> <tr><td><code>{@link #RecyclerView_stackFromEnd com.registree.registree: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, 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f, 0x7f010120 }; /** <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.registree.registree.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.registree.registree:fastScrollEnabled */ public static final int RecyclerView_fastScrollEnabled = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:fastScrollHorizontalThumbDrawable */ public static final int RecyclerView_fastScrollHorizontalThumbDrawable = 9; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:fastScrollHorizontalTrackDrawable */ public static final int RecyclerView_fastScrollHorizontalTrackDrawable = 10; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:fastScrollVerticalThumbDrawable */ public static final int RecyclerView_fastScrollVerticalThumbDrawable = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:fastScrollVerticalTrackDrawable */ public static final int RecyclerView_fastScrollVerticalTrackDrawable = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:layoutManager */ public static final int RecyclerView_layoutManager = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:reverseLayout */ public static final int RecyclerView_reverseLayout = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:spanCount */ public static final int RecyclerView_spanCount = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:insetForeground}</code></td><td></td></tr> </table> @see #ScrimInsetsFrameLayout_insetForeground */ public static final int[] ScrimInsetsFrameLayout = { 0x7f010121 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:behavior_overlapTop}</code></td><td></td></tr> </table> @see #ScrollingViewBehavior_Layout_behavior_overlapTop */ public static final int[] ScrollingViewBehavior_Layout = { 0x7f010122 }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:closeIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_commitIcon com.registree.registree:commitIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_defaultQueryHint com.registree.registree:defaultQueryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_goIcon com.registree.registree:goIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_iconifiedByDefault com.registree.registree:iconifiedByDefault}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_layout com.registree.registree:layout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryBackground com.registree.registree:queryBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_queryHint com.registree.registree:queryHint}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchHintIcon com.registree.registree:searchHintIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_searchIcon com.registree.registree:searchIcon}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_submitBackground com.registree.registree:submitBackground}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_suggestionRowLayout com.registree.registree:suggestionRowLayout}</code></td><td></td></tr> <tr><td><code>{@link #SearchView_voiceIcon com.registree.registree: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, 0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126, 0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f }; /** <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.registree.registree.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.registree.registree:closeIcon */ public static final int SearchView_closeIcon = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:commitIcon */ public static final int SearchView_commitIcon = 13; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:defaultQueryHint */ public static final int SearchView_defaultQueryHint = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:goIcon */ public static final int SearchView_goIcon = 9; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:layout */ public static final int SearchView_layout = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:queryBackground */ public static final int SearchView_queryBackground = 15; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:queryHint */ public static final int SearchView_queryHint = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:searchHintIcon */ public static final int SearchView_searchHintIcon = 11; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:searchIcon */ public static final int SearchView_searchIcon = 10; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:submitBackground */ public static final int SearchView_submitBackground = 16; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:suggestionRowLayout */ public static final int SearchView_suggestionRowLayout = 14; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:voiceIcon */ public static final int SearchView_voiceIcon = 12; /** Attributes that can be used with a SignInButton. <p>Includes the following attributes:</p> <table> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Attribute</th><th>Description</th></tr> <tr><td><code>{@link #SignInButton_buttonSize com.registree.registree:buttonSize}</code></td><td></td></tr> <tr><td><code>{@link #SignInButton_colorScheme com.registree.registree:colorScheme}</code></td><td></td></tr> <tr><td><code>{@link #SignInButton_scopeUris com.registree.registree:scopeUris}</code></td><td></td></tr> </table> @see #SignInButton_buttonSize @see #SignInButton_colorScheme @see #SignInButton_scopeUris */ public static final int[] SignInButton = { 0x7f010130, 0x7f010131, 0x7f010132 }; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#buttonSize} attribute's value can be found in the {@link #SignInButton} 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 one of the following constant values.</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>standard</code></td><td>0</td><td></td></tr> <tr><td><code>wide</code></td><td>1</td><td></td></tr> <tr><td><code>icon_only</code></td><td>2</td><td></td></tr> </table> @attr name com.registree.registree:buttonSize */ public static final int SignInButton_buttonSize = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#colorScheme} attribute's value can be found in the {@link #SignInButton} 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 one of the following constant values.</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>dark</code></td><td>0</td><td></td></tr> <tr><td><code>light</code></td><td>1</td><td></td></tr> <tr><td><code>auto</code></td><td>2</td><td></td></tr> </table> @attr name com.registree.registree:colorScheme */ public static final int SignInButton_colorScheme = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#scopeUris} attribute's value can be found in the {@link #SignInButton} 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 string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. @attr name com.registree.registree:scopeUris */ public static final int SignInButton_scopeUris = 2; /** 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.registree.registree:elevation}</code></td><td></td></tr> <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth com.registree.registree:maxActionInlineWidth}</code></td><td></td></tr> </table> @see #SnackbarLayout_android_maxWidth @see #SnackbarLayout_elevation @see #SnackbarLayout_maxActionInlineWidth */ public static final int[] SnackbarLayout = { 0x0101011f, 0x7f010048, 0x7f010133 }; /** <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.registree.registree.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.registree.registree:elevation */ public static final int SnackbarLayout_elevation = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree: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, 0x7f010049 }; /** <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.registree.registree.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.registree.registree: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.registree.registree:showText}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_splitTrack com.registree.registree:splitTrack}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchMinWidth com.registree.registree:switchMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchPadding com.registree.registree:switchPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_switchTextAppearance com.registree.registree:switchTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTextPadding com.registree.registree:thumbTextPadding}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTint com.registree.registree:thumbTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_thumbTintMode com.registree.registree:thumbTintMode}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_track com.registree.registree:track}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTint com.registree.registree:trackTint}</code></td><td></td></tr> <tr><td><code>{@link #SwitchCompat_trackTintMode com.registree.registree: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, 0x7f010134, 0x7f010135, 0x7f010136, 0x7f010137, 0x7f010138, 0x7f010139, 0x7f01013a, 0x7f01013b, 0x7f01013c, 0x7f01013d, 0x7f01013e }; /** <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.registree.registree.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.registree.registree:showText */ public static final int SwitchCompat_showText = 13; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:splitTrack */ public static final int SwitchCompat_splitTrack = 12; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:switchMinWidth */ public static final int SwitchCompat_switchMinWidth = 10; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:switchPadding */ public static final int SwitchCompat_switchPadding = 11; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:switchTextAppearance */ public static final int SwitchCompat_switchTextAppearance = 9; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:thumbTextPadding */ public static final int SwitchCompat_thumbTextPadding = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:thumbTint */ public static final int SwitchCompat_thumbTint = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:thumbTintMode */ public static final int SwitchCompat_thumbTintMode = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:track */ public static final int SwitchCompat_track = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:trackTint */ public static final int SwitchCompat_trackTint = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:tabBackground}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabContentStart com.registree.registree:tabContentStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabGravity com.registree.registree:tabGravity}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorColor com.registree.registree:tabIndicatorColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabIndicatorHeight com.registree.registree:tabIndicatorHeight}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMaxWidth com.registree.registree:tabMaxWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMinWidth com.registree.registree:tabMinWidth}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabMode com.registree.registree:tabMode}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPadding com.registree.registree:tabPadding}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingBottom com.registree.registree:tabPaddingBottom}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingEnd com.registree.registree:tabPaddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingStart com.registree.registree:tabPaddingStart}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabPaddingTop com.registree.registree:tabPaddingTop}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabSelectedTextColor com.registree.registree:tabSelectedTextColor}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextAppearance com.registree.registree:tabTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TabLayout_tabTextColor com.registree.registree: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 = { 0x7f01013f, 0x7f010140, 0x7f010141, 0x7f010142, 0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146, 0x7f010147, 0x7f010148, 0x7f010149, 0x7f01014a, 0x7f01014b, 0x7f01014c, 0x7f01014d, 0x7f01014e }; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabBackground */ public static final int TabLayout_tabBackground = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabContentStart */ public static final int TabLayout_tabContentStart = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabGravity */ public static final int TabLayout_tabGravity = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabIndicatorColor */ public static final int TabLayout_tabIndicatorColor = 0; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabIndicatorHeight */ public static final int TabLayout_tabIndicatorHeight = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabMaxWidth */ public static final int TabLayout_tabMaxWidth = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabMinWidth */ public static final int TabLayout_tabMinWidth = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabMode */ public static final int TabLayout_tabMode = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabPadding */ public static final int TabLayout_tabPadding = 15; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabPaddingBottom */ public static final int TabLayout_tabPaddingBottom = 14; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabPaddingEnd */ public static final int TabLayout_tabPaddingEnd = 13; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabPaddingStart */ public static final int TabLayout_tabPaddingStart = 11; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabPaddingTop */ public static final int TabLayout_tabPaddingTop = 12; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabSelectedTextColor */ public static final int TabLayout_tabSelectedTextColor = 10; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:tabTextAppearance */ public static final int TabLayout_tabTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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_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_textSize android:textSize}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr> <tr><td><code>{@link #TextAppearance_textAllCaps com.registree.registree:textAllCaps}</code></td><td></td></tr> </table> @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_textSize @see #TextAppearance_android_textStyle @see #TextAppearance_android_typeface @see #TextAppearance_textAllCaps */ public static final int[] TextAppearance = { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f01005c }; /** <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 = 5; /** <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 = 6; /** <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 = 7; /** <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 = 8; /** <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#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.registree.registree.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.registree.registree:textAllCaps */ public static final int TextAppearance_textAllCaps = 9; /** 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.registree.registree:counterEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterMaxLength com.registree.registree:counterMaxLength}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance com.registree.registree:counterOverflowTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_counterTextAppearance com.registree.registree:counterTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorEnabled com.registree.registree:errorEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_errorTextAppearance com.registree.registree:errorTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled com.registree.registree:hintAnimationEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintEnabled com.registree.registree:hintEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_hintTextAppearance com.registree.registree:hintTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription com.registree.registree:passwordToggleContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable com.registree.registree:passwordToggleDrawable}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled com.registree.registree:passwordToggleEnabled}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTint com.registree.registree:passwordToggleTint}</code></td><td></td></tr> <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode com.registree.registree: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, 0x7f01014f, 0x7f010150, 0x7f010151, 0x7f010152, 0x7f010153, 0x7f010154, 0x7f010155, 0x7f010156, 0x7f010157, 0x7f010158, 0x7f010159, 0x7f01015a, 0x7f01015b, 0x7f01015c }; /** <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.registree.registree.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.registree.registree:counterEnabled */ public static final int TextInputLayout_counterEnabled = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:counterMaxLength */ public static final int TextInputLayout_counterMaxLength = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:counterOverflowTextAppearance */ public static final int TextInputLayout_counterOverflowTextAppearance = 9; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:counterTextAppearance */ public static final int TextInputLayout_counterTextAppearance = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:errorEnabled */ public static final int TextInputLayout_errorEnabled = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:errorTextAppearance */ public static final int TextInputLayout_errorTextAppearance = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:hintAnimationEnabled */ public static final int TextInputLayout_hintAnimationEnabled = 10; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:hintEnabled */ public static final int TextInputLayout_hintEnabled = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:hintTextAppearance */ public static final int TextInputLayout_hintTextAppearance = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:passwordToggleContentDescription */ public static final int TextInputLayout_passwordToggleContentDescription = 13; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:passwordToggleDrawable */ public static final int TextInputLayout_passwordToggleDrawable = 12; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:passwordToggleEnabled */ public static final int TextInputLayout_passwordToggleEnabled = 11; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:passwordToggleTint */ public static final int TextInputLayout_passwordToggleTint = 14; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:buttonGravity}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseContentDescription com.registree.registree:collapseContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_collapseIcon com.registree.registree:collapseIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEnd com.registree.registree:contentInsetEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetEndWithActions com.registree.registree:contentInsetEndWithActions}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetLeft com.registree.registree:contentInsetLeft}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetRight com.registree.registree:contentInsetRight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStart com.registree.registree:contentInsetStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation com.registree.registree:contentInsetStartWithNavigation}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logo com.registree.registree:logo}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_logoDescription com.registree.registree:logoDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_maxButtonHeight com.registree.registree:maxButtonHeight}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationContentDescription com.registree.registree:navigationContentDescription}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_navigationIcon com.registree.registree:navigationIcon}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_popupTheme com.registree.registree:popupTheme}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitle com.registree.registree:subtitle}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextAppearance com.registree.registree:subtitleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_subtitleTextColor com.registree.registree:subtitleTextColor}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_title com.registree.registree:title}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargin com.registree.registree:titleMargin}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginBottom com.registree.registree:titleMarginBottom}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginEnd com.registree.registree:titleMarginEnd}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginStart com.registree.registree:titleMarginStart}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMarginTop com.registree.registree:titleMarginTop}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleMargins com.registree.registree:titleMargins}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextAppearance com.registree.registree:titleTextAppearance}</code></td><td></td></tr> <tr><td><code>{@link #Toolbar_titleTextColor com.registree.registree: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, 0x7f01002f, 0x7f010032, 0x7f010036, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010049, 0x7f01015d, 0x7f01015e, 0x7f01015f, 0x7f010160, 0x7f010161, 0x7f010162, 0x7f010163, 0x7f010164, 0x7f010165, 0x7f010166, 0x7f010167, 0x7f010168, 0x7f010169, 0x7f01016a, 0x7f01016b, 0x7f01016c, 0x7f01016d }; /** <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.registree.registree.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.registree.registree:buttonGravity */ public static final int Toolbar_buttonGravity = 21; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:collapseContentDescription */ public static final int Toolbar_collapseContentDescription = 23; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:collapseIcon */ public static final int Toolbar_collapseIcon = 22; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetEnd */ public static final int Toolbar_contentInsetEnd = 6; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetEndWithActions */ public static final int Toolbar_contentInsetEndWithActions = 10; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetLeft */ public static final int Toolbar_contentInsetLeft = 7; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetRight */ public static final int Toolbar_contentInsetRight = 8; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetStart */ public static final int Toolbar_contentInsetStart = 5; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:contentInsetStartWithNavigation */ public static final int Toolbar_contentInsetStartWithNavigation = 9; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:logo */ public static final int Toolbar_logo = 4; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:logoDescription */ public static final int Toolbar_logoDescription = 26; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:maxButtonHeight */ public static final int Toolbar_maxButtonHeight = 20; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:navigationContentDescription */ public static final int Toolbar_navigationContentDescription = 25; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:navigationIcon */ public static final int Toolbar_navigationIcon = 24; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:popupTheme */ public static final int Toolbar_popupTheme = 11; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:subtitle */ public static final int Toolbar_subtitle = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:subtitleTextAppearance */ public static final int Toolbar_subtitleTextAppearance = 13; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:subtitleTextColor */ public static final int Toolbar_subtitleTextColor = 28; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:title */ public static final int Toolbar_title = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:titleMargin */ public static final int Toolbar_titleMargin = 14; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:titleMarginBottom */ public static final int Toolbar_titleMarginBottom = 18; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:titleMarginEnd */ public static final int Toolbar_titleMarginEnd = 16; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:titleMarginStart */ public static final int Toolbar_titleMarginStart = 15; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:titleMarginTop */ public static final int Toolbar_titleMarginTop = 17; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:titleMargins */ public static final int Toolbar_titleMargins = 19; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:titleTextAppearance */ public static final int Toolbar_titleTextAppearance = 12; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:paddingEnd}</code></td><td></td></tr> <tr><td><code>{@link #View_paddingStart com.registree.registree:paddingStart}</code></td><td></td></tr> <tr><td><code>{@link #View_theme com.registree.registree: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, 0x7f01016e, 0x7f01016f, 0x7f010170 }; /** <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.registree.registree.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.registree.registree:paddingEnd */ public static final int View_paddingEnd = 3; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree:paddingStart */ public static final int View_paddingStart = 2; /** <p>This symbol is the offset where the {@link com.registree.registree.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.registree.registree: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.registree.registree:backgroundTint}</code></td><td></td></tr> <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode com.registree.registree:backgroundTintMode}</code></td><td></td></tr> </table> @see #ViewBackgroundHelper_android_background @see #ViewBackgroundHelper_backgroundTint @see #ViewBackgroundHelper_backgroundTintMode */ public static final int[] ViewBackgroundHelper = { 0x010100d4, 0x7f010171, 0x7f010172 }; /** <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.registree.registree.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.registree.registree:backgroundTint */ public static final int ViewBackgroundHelper_backgroundTint = 1; /** <p>This symbol is the offset where the {@link com.registree.registree.R.attr#backgroundTintMode} attribute's value can be found in the {@link #ViewBackgroundHelper} array. <p>Must be one of the following constant values.</p> <table> <colgroup align="left" /> <colgroup align="left" /> <colgroup align="left" /> <tr><th>Constant</th><th>Value</th><th>Description</th></tr> <tr><td><code>src_over</code></td><td>3</td><td></td></tr> <tr><td><code>src_in</code></td><td>5</td><td></td></tr> <tr><td><code>src_atop</code></td><td>9</td><td></td></tr> <tr><td><code>multiply</code></td><td>14</td><td></td></tr> <tr><td><code>screen</code></td><td>15</td><td></td></tr> </table> @attr name com.registree.registree: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; }; }
178c9e92d97865227ae69e04e7fd96a5e5161db9
9c04b4f90e3d7151fe6afa8cfc8794ebaab7f3b4
/src/main/java/io/pivotal/edge/keys/filters/ClientIdentityErrorFilter.java
56f9d6e6f427dc41301e97d213fc184d4898c602
[]
no_license
kkester/spring-edge-service
2ce819684c8c2f3a1fbedcead8e3316c97a0707b
4bf1600d8f505f2539530130e3f7a01e99e35e7a
refs/heads/master
2020-05-17T03:30:57.994562
2019-05-21T15:05:57
2019-05-21T15:05:57
183,482,451
0
0
null
null
null
null
UTF-8
Java
false
false
2,052
java
package io.pivotal.edge.keys.filters; import com.netflix.zuul.ZuulFilter; import com.netflix.zuul.context.RequestContext; import io.pivotal.edge.routing.EdgeRequestContext; import io.pivotal.edge.events.EventPublisher; import io.pivotal.edge.events.ClientIdentifiedEvent; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang.StringUtils; import org.springframework.stereotype.Component; import java.util.Objects; import static io.pivotal.edge.EdgeApplicationConstants.EDGE_REQUEST_CONTEXT; import static org.springframework.cloud.netflix.zuul.filters.support.FilterConstants.ERROR_TYPE; @Component @Slf4j public class ClientIdentityErrorFilter extends ZuulFilter { private ClientIdentityService clientIdentityService; private EventPublisher eventPublisher; public ClientIdentityErrorFilter(ClientIdentityService clientIdentityService, EventPublisher eventPublisher) { this.clientIdentityService = clientIdentityService; this.eventPublisher = eventPublisher; } @Override public String filterType() { return ERROR_TYPE; } @Override public int filterOrder() { return 210; } @Override public boolean shouldFilter() { return true; } @Override public Object run() { log.info("Executing Security Error Filter"); RequestContext ctx = RequestContext.getCurrentContext(); EdgeRequestContext edgeRequestContext = (EdgeRequestContext)ctx.get(EDGE_REQUEST_CONTEXT); if (Objects.isNull(edgeRequestContext)) { edgeRequestContext = this.clientIdentityService.createEdgeRequestContextFrom(ctx); } if (StringUtils.isNotBlank(edgeRequestContext.getClientId())) { eventPublisher.publishEvent(ClientIdentifiedEvent.builder() .request(ctx.getRequest()) .requestId(edgeRequestContext.getRequestId()) .clientKey(edgeRequestContext.getClientId()) .build()); } return null; } }
ff555c249ae411d5f5bcfa032fe0106a6cc8e9c6
128eb90ce7b21a7ce621524dfad2402e5e32a1e8
/laravel-converted/src/main/java/com/project/convertedCode/servlets/vendor/psy/psysh/src/Command/ListCommand/servlet_PropertyEnumerator_php.java
c115079e8c175068aeada038d662a5d28841a5e7
[ "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
RuntimeConverter/RuntimeConverterLaravelJava
657b4c73085b4e34fe4404a53277e056cf9094ba
7ae848744fbcd993122347ffac853925ea4ea3b9
refs/heads/master
2020-04-12T17:22:30.345589
2018-12-22T10:32:34
2018-12-22T10:32:34
162,642,356
0
0
null
null
null
null
UTF-8
Java
false
false
1,191
java
package com.project.convertedCode.servlets.vendor.psy.psysh.src.Command.ListCommand; import com.runtimeconverter.runtime.includes.RuntimeIncludable; import com.runtimeconverter.runtime.includes.RuntimeConverterServlet; import com.runtimeconverter.runtime.RuntimeEnv; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.annotation.WebServlet; @WebServlet("/vendor/psy/psysh/src/Command/ListCommand/PropertyEnumerator.php") public class servlet_PropertyEnumerator_php extends RuntimeConverterServlet { protected final RuntimeIncludable getInclude() { return com.project .convertedCode .includes .vendor .psy .psysh .src .Command .ListCommand .file_PropertyEnumerator_php .instance; } protected final RuntimeEnv getRuntimeEnv( String httpRequestType, HttpServletRequest req, HttpServletResponse resp) { return new com.project.convertedCode.main.ConvertedProjectRuntimeEnv( req, resp, this.getInclude()); } }
035aeafd55bb9b2a5cb8c3f1bc5b2450b1340c09
497866c6a7fbd8eb4da5748f3685813c1a01c37a
/vintage/Java/src/gbmvdd/bse/testing/TestConversion.java
e2ca4a96775bb431393e73e22542ff74561626de
[]
no_license
georgevdd/curious-george
b554a3b459610d573a0fb3bcb26d378da7101f0a
e985503100f2fc673c02eb76f1bbabb4a824e9e9
refs/heads/master
2022-12-09T23:41:00.081583
2022-12-02T17:40:27
2022-12-02T17:41:04
35,895,334
0
0
null
null
null
null
UTF-8
Java
false
false
6,640
java
package gbmvdd.bse.testing; import java.io.*; import java.util.*; import antlr.*; import gbmvdd.bse.*; public class TestConversion { static Properties props; static String getStringSetting( String key, String defaultValue, PrintStream errPrintStream ) { String str = props.getProperty( key ); if( str == null ) { if( errPrintStream != null ) errPrintStream.println( "Using default value (" + defaultValue + ") for " + key + "." ); return defaultValue; } return str; } static int getIntSetting( String key, int defaultValue, PrintStream errPrintStream ) { String strNum = props.getProperty( key ); if( strNum == null ) { if( errPrintStream != null ) errPrintStream.println( "Using default value (" + defaultValue + ") for " + key + "." ); return defaultValue; } try { return Integer.parseInt( strNum ); } catch( NumberFormatException e ) { if( errPrintStream != null ) errPrintStream.println( "Bad number (\"" + strNum + "\") for " + key + ". Using default value (" + defaultValue + ")." ); return defaultValue; } } static boolean getBooleanSetting( String key, boolean defaultValue, PrintStream errPrintStream ) { String strBool = props.getProperty( key ); if( strBool != null ) { if( strBool.equals( "false" ) ) return false; if( strBool.equals( "true" ) ) return true; } if( errPrintStream != null ) errPrintStream.println( "Using default value (" + defaultValue + ") for " + key + ((strBool == null) ? "" : (" - configured value (" + strBool + ") is neither true nor false")) + "." ); return defaultValue; } public static void main( String[] args ) { String configFilename; if( args.length < 1 ) configFilename = null; else configFilename = args[0]; props = new Properties(); if( configFilename != null ) { File configFile = new File( configFilename ); if( !configFile.exists() ) { System.err.println( "Configuration file \"" + configFilename + "\" does not exist." ); System.exit( 1 ); } try { InputStream configInputStream = new FileInputStream( configFile ); props.load( configInputStream ); configInputStream.close(); } catch( IOException e ) { System.err.println( "Unable to load settings from \"" + configFilename + "\"." ); System.exit( 2 ); } } else System.err.println( "Using default settings..." ); String languageName = getStringSetting( "language", "gbmvdd.bse.tinyc.TinyC", System.err ) + "Language"; Class languageClass = null; try { languageClass = Class.forName( languageName ); } catch( ClassNotFoundException e ) { try { languageClass = Class.forName( "gbmvdd.bse." + languageName ); } catch( ClassNotFoundException e2 ) { System.err.println( "Class file for \"" + languageName + "\" not found." ); System.exit( 2 ); } } System.out.println( "Language definition: " + languageClass ); String sourceFilename = getStringSetting( "source", "TinyCParser.java", System.err ); File sourceFile = new File( sourceFilename ); if( !sourceFile.exists() ) { System.err.println( "Source file \"" + sourceFilename + "\" does not exist." ); System.exit( 3 ); } int numRuns = getIntSetting( "runs", 500, System.err ); System.out.println( "Trials: " + numRuns ); Language language = null; try { language = (Language)languageClass.newInstance(); } catch( Exception e ) { System.err.println( "Failed to instantiate language class." ); System.exit( 4 ); } int forcedLocation = getIntSetting( "forcedLocation", -1, System.err ); if( forcedLocation != -1 ) numRuns = 1; boolean printInput = getBooleanSetting( "printInput", false, System.err ); boolean printOutput = getBooleanSetting( "printOutput", false, System.err ); ParseTree parseTree = null; try { InputStream inputStream = new FileInputStream( sourceFile ); Reader inputReader = new InputStreamReader( inputStream ); BufferedReader bufReader = new BufferedReader( new NewlineConvertingReader( inputReader ) ); // Turn the input into a parse tree. CharScanner lexer = language.createLexer( bufReader ); lexer.setTokenObjectClass( "gbmvdd.bse.BSEToken" ); WhitespaceCollapsingTokenFilter wsFilter = new WhitespaceCollapsingTokenFilter( lexer ); BSEParser parser = language.createParser( wsFilter ); wsFilter.hide( parser.getIgnoredTokens() ); parseTree = parser.parseEntireStream(); bufReader.close(); inputReader.close(); inputStream.close(); } catch( IOException e ) { System.err.println( "Error reading from source file." ); System.exit( 5 ); } long maxLen = sourceFile.length(); System.out.println( "maxLen = " + maxLen + "; parseTree has " + parseTree.getCharCount() + " characters in." ); int run = 0; int offset = -2; int line = -2; int lineOffset = -2; int lineOffsetLine = -2; int lineOffsetLineOffset = -2; try { for( run = 0; run < numRuns; run++ ) { offset = (forcedLocation == -1) ? (int)(Math.random() * maxLen) : forcedLocation; line = parseTree.getLineNumberForOffset( offset ); lineOffset = parseTree.getOffsetForLineNumber( line ); lineOffsetLine = parseTree.getLineNumberForOffset( lineOffset ); lineOffsetLineOffset = parseTree.getOffsetForLineNumber( lineOffsetLine ); boolean passed = (line != -1) && (lineOffset != -1 ) && (line == lineOffsetLine) && (lineOffset == lineOffsetLineOffset) && true; if( !passed ) { System.err.println( "Run " + run + " failed:" ); System.err.println( "offset = " + offset ); System.err.println( "line = " + line ); System.err.println( "lineOffset = " + lineOffset ); System.err.println( "lineOffsetLine = " + lineOffsetLine ); System.err.println( "lineOffsetLineOffset = " + lineOffsetLineOffset ); } else System.out.print( "." ); } } catch( RuntimeException e ) { System.err.println( "Error on run " + run + ":" ); System.err.println( "offset = " + offset ); System.err.println( "line = " + line ); System.err.println( "lineOffset = " + lineOffset ); System.err.println( "lineOffsetLine = " + lineOffsetLine ); System.err.println( "lineOffsetLineOffset = " + lineOffsetLineOffset ); throw e; } } }
c7c1600fe1c05620f820a9d32194162c8958d74e
24b9ac462c36136877f2965557920eeed4301578
/advanced/core/src/main/java/rx/practice/advanced/javapuzzlers/loopypuzzlers/CurseOfLooper.java
112926372b881abb4526e6359a761098686c3b81
[]
no_license
rxue/java8-harjoitus
dfed65564cd853dab7f7c571d832a47696d006b8
21a5590d887a4871a1c34ecb5509e08013b729ee
refs/heads/master
2023-01-14T12:40:26.466152
2022-12-23T20:54:35
2022-12-23T20:54:35
96,301,980
0
0
null
null
null
null
UTF-8
Java
false
false
308
java
package rx.practice.advanced.javapuzzlers.loopypuzzlers; public class CurseOfLooper { public static void main(String[] args) { Integer i = new Integer(0); Integer j = new Integer(0); while(i<=j && j>=i && i != j) { System.out.println("endless :D"); } } }
a682aad37bdfb784edbccc5c85af9cecadf3cfa7
06d5029e6f3c084d35e5e190b01f20bbe94db663
/coursesupport/blts/Die.java
70ad153f6cb3eaead3c5d16217cc8b4b18777ba9
[]
no_license
Edward-Aidi/cse131-Java
877833eb8e0726f63f4a6a78de85780966eec441
c0e470abda5207c85ffc9857323bbeac4e202e63
refs/heads/master
2020-03-26T15:49:45.964135
2018-08-17T03:48:42
2018-08-17T03:48:42
145,066,850
1
0
null
null
null
null
UTF-8
Java
false
false
460
java
package blts; public class Die { public static void main(String[] args) { double t = Math.random(); // choose only once if (t < 1.0/6.0) { System.out.println("1"); } else if (t < 2.0/6.0) { System.out.println("2"); } else if (t < 3.0/6.0){ System.out.println("3"); } else if (t < 4.0/6.0) { System.out.println("4"); } else if (t < 5.0/6.0) { System.out.println("5"); } else { System.out.println("6"); } } }
009731b94eb9ced583a867d8a8937ce045ed0122
36073e09d6a12a275cc85901317159e7fffa909e
/OpenNMS_opennms/modifiedFiles/52/old/OtrsTicketerPlugin.java
e2d16763ff7835b3f7022464705c1b3807ce1bf0
[]
no_license
monperrus/bug-fixes-saner16
a867810451ddf45e2aaea7734d6d0c25db12904f
9ce6e057763db3ed048561e954f7aedec43d4f1a
refs/heads/master
2020-03-28T16:00:18.017068
2018-11-14T13:48:57
2018-11-14T13:48:57
148,648,848
3
0
null
null
null
null
UTF-8
Java
false
false
15,105
java
/* * This file is part of the OpenNMS(R) Application. * * OpenNMS(R) is Copyright (C) 2007 The OpenNMS Group, Inc. All rights reserved. * OpenNMS(R) is a derivative work, containing both original code, included code and modified * code that was published under the GNU General Public License. Copyrights for modified * and included code are below. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * Modifications: * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * For more information contact: * OpenNMS Licensing <[email protected]> * http://www.opennms.org/ * http://www.opennms.com/ */ package org.opennms.netmgt.ticketer.otrs; import java.rmi.RemoteException; import javax.xml.rpc.ServiceException; import org.apache.log4j.Category; import org.opennms.core.utils.ThreadCategory; import org.opennms.integration.otrs.ticketservice.Article; import org.opennms.integration.otrs.ticketservice.ArticleCore; import org.opennms.integration.otrs.ticketservice.Credentials; import org.opennms.integration.otrs.ticketservice.TicketCore; import org.opennms.integration.otrs.ticketservice.TicketIDAndNumber; import org.opennms.integration.otrs.ticketservice.TicketServiceLocator; import org.opennms.integration.otrs.ticketservice.TicketServicePort_PortType; import org.opennms.integration.otrs.ticketservice.TicketStateUpdate; import org.opennms.integration.otrs.ticketservice.TicketWithArticles; import org.opennms.netmgt.eventd.EventIpcManager; import org.opennms.netmgt.eventd.EventIpcManagerFactory; import org.opennms.netmgt.model.events.EventBuilder; import org.opennms.api.integration.ticketing.*; import org.opennms.netmgt.xml.event.Event; /** * OpenNMS Trouble Ticket Plugin API implementation for OTRS * * @author <a href="mailto:[email protected]">Jonathan Sartin</a> * */ public class OtrsTicketerPlugin implements Plugin { static final String COMMS_ERROR_UEI = "uei.opennms.org/troubleTicket/communicationError"; // TODO: Springify this EventIpcManager m_eventIpcManager; private DefaultOtrsConfigDao m_configDao; public OtrsTicketerPlugin() { m_configDao = new DefaultOtrsConfigDao(); m_eventIpcManager = EventIpcManagerFactory.getIpcManager(); } public Ticket get(String ticketId) { TicketWithArticles ticketWithArticles = null; long otrsTicketNumber = Long.parseLong(ticketId.trim()); TicketServiceLocator service = new TicketServiceLocator(); service.setTicketServicePortEndpointAddress(m_configDao.getEndpoint()); TicketServicePort_PortType port = null; try { port = service.getTicketServicePort(); } catch (ServiceException e) { log().error("Failed initialzing OTRS TicketServicePort" + e); m_eventIpcManager.sendNow(createEvent("Failed initialzing OTRS TicketServicePort")); } Ticket opennmsTicket = new Ticket(); if (port != null) { Credentials creds = new Credentials(); creds.setUser(m_configDao.getUserName()); creds.setPass(m_configDao.getPassword()); // get the ticket from OTRS system try { ticketWithArticles = port.getByNumber(otrsTicketNumber, creds); } catch (RemoteException e) { log().error("Failed to retrieve OTRS ticket" + e); m_eventIpcManager.sendNow(createEvent("Failed to retrieve OTRS ticket")); } } // construct an opennms ticket from the returned OTRS ticket and articles if (ticketWithArticles != null) { // add ticket basics from the OTRS ticket log().debug( "Adding Ticket details from OTRS ticket # " + ticketWithArticles.getTicket().getTicketNumber()); opennmsTicket.setId(ticketWithArticles.getTicket().getTicketNumber().toString()); opennmsTicket.setSummary(ticketWithArticles.getTicket().getTitle()); // Note that we user "Owner" from the OTRS ticket here. There is nothing to ensure // That this is a valid OpenNMS user opennmsTicket.setUser(ticketWithArticles.getTicket().getOwner()); opennmsTicket.setState(otrsToOpenNMSState(ticketWithArticles.getTicket().getStateID())); log().debug("Retrieved ticket state : " + otrsToOpenNMSState(ticketWithArticles.getTicket().getStateID())); // add all the article details from the OTRS ticket String opennmsTicketDetails = ""; for (Article article : ticketWithArticles.getArticles()) { log().debug( "Adding Article details from OTRS article ID " + article.getArticleID()); opennmsTicketDetails = opennmsTicketDetails + "\n" + "From: " + article.getFrom() + "\n" + "Subject: " + article.getSubject() + "\n" + "Body:\n" + article.getBody() + "\n"; } opennmsTicket.setDetails(opennmsTicketDetails); } return opennmsTicket; } public void saveOrUpdate(Ticket newTicket) { TicketIDAndNumber idAndNumber = null; TicketServiceLocator service = new TicketServiceLocator(); TicketServicePort_PortType port = null; Ticket currentTicket = null; Credentials creds = new Credentials(); creds.setUser(m_configDao.getUserName()); creds.setPass(m_configDao.getPassword()); try { port = service.getTicketServicePort(); } catch (ServiceException e) { log().error("Failed initialzing OTRS TicketServicePort" + e); m_eventIpcManager.sendNow(createEvent("Failed initialzing OTRS TicketServicePort")); } if (newTicket.getId() != null) { currentTicket = get(newTicket.getId()); } try { if (currentTicket == null) { idAndNumber = newOTRSTicket(newTicket, port, creds); log().debug("creating new ticket : " + idAndNumber.getTicketNumber()); newTicket.setId(String.valueOf(idAndNumber.getTicketNumber())); log().debug("Ticket ID is " + newTicket.getId()); newOTRSArticle(idAndNumber.getTicketNumber(), newTicket, port, creds); } else { log().debug("updating existing ticket : " + currentTicket.getId()); if (currentTicket.getState() != newTicket.getState()) { updateOTRSState(newTicket, port, creds); updateOTRSArticle(Long.parseLong(currentTicket.getId()), newTicket, port, creds); } else { // There is no else at the moment // Tickets are _only_ updated with new state } } } catch (RemoteException e) { log().error("Failed to create or update OTRS ticket" + e); createEvent("Failed to create or update OTRS ticket"); } } private Event createEvent(String reason) { EventBuilder bldr = new EventBuilder(COMMS_ERROR_UEI, "Ticketd"); bldr.addParam("reason", reason); return bldr.getEvent(); } private void updateOTRSState(Ticket ticket, TicketServicePort_PortType port, Credentials creds) throws RemoteException { Integer otrsStateId = openNMSToOTRSState(ticket.getState()); TicketStateUpdate stateUpdate = new TicketStateUpdate(); stateUpdate.setStateID(otrsStateId); stateUpdate.setTicketNumber(Long.parseLong(ticket.getId())); if (ticket.getUser() != null) { stateUpdate.setUser(ticket.getUser()); } else { stateUpdate.setUser(m_configDao.getDefaultUser()); } log().debug("Updating ticket with new state"); log().debug("Ticket ID: " + ticket.getId()); log().debug("OpenNMS State: " + ticket.getState().toString()); log().debug("OTRS state: " + otrsStateId.toString()); port.ticketStateUpdate(stateUpdate, creds); } private TicketIDAndNumber newOTRSTicket(Ticket newTicket, TicketServicePort_PortType port, Credentials creds) throws RemoteException { TicketIDAndNumber idAndNumber = null; TicketCore newOtrsTicket = new TicketCore(); newOtrsTicket.setTitle(newTicket.getSummary()); // TODO: Could remove this once we have the userid reliably in the the ticket if (newTicket.getUser() != null) { newOtrsTicket.setUser(newTicket.getUser()); } else { newOtrsTicket.setUser(m_configDao.getDefaultUser()); } newOtrsTicket.setStateID(openNMSToOTRSState(newTicket.getState())); // All OTRS ticket fields from defaults newOtrsTicket.setQueue(m_configDao.getQueue()); newOtrsTicket.setPriority(m_configDao.getPriority()); newOtrsTicket.setLock(m_configDao.getLock()); newOtrsTicket.setOwnerID(m_configDao.getOwnerID()); idAndNumber = port.ticketCreate(newOtrsTicket, creds); return idAndNumber; } private void newOTRSArticle(Long otrsTicketNumber, Ticket newTicket, TicketServicePort_PortType port, Credentials creds) throws RemoteException { ArticleCore newOtrsArticle = new ArticleCore(); // All OTRS article fields from ticket log().debug("Adding a new article to ticket: " + otrsTicketNumber); newOtrsArticle.setBody(newTicket.getDetails()); newOtrsArticle.setTicketNumber(otrsTicketNumber); // TODO: Could remove this once we have the userid reliably in the the ticket newOtrsArticle.setFrom(m_configDao.getArticleFrom()); if (newTicket.getUser() != null) { newOtrsArticle.setUser(newTicket.getUser()); } else { newOtrsArticle.setUser(m_configDao.getDefaultUser()); } newOtrsArticle.setSubject(newTicket.getSummary()); // All OTRS article fields from defaults newOtrsArticle.setArticleType(m_configDao.getArticleType()); newOtrsArticle.setSenderType(m_configDao.getArticleSenderType()); newOtrsArticle.setContentType(m_configDao.getArticleContentType()); newOtrsArticle.setHistoryType(m_configDao.getArticleHistoryType()); newOtrsArticle.setHistoryComment(m_configDao.getArticleHistoryComment()); port.articleCreate(newOtrsArticle, creds); } private void updateOTRSArticle(Long otrsTicketNumber, Ticket newTicket, TicketServicePort_PortType port, Credentials creds) throws RemoteException { ArticleCore newOtrsArticle = new ArticleCore(); // All OTRS article fields from ticket log().debug("Adding a new article to ticket: " + otrsTicketNumber); switch (newTicket.getState()) { case OPEN: // ticket is new newOtrsArticle.setBody(m_configDao.getTicketOpenedMessage()); break; case CANCELLED: // not sure how often we see this newOtrsArticle.setBody(m_configDao.getTicketCancelledMessage()); break; case CLOSED: // closed successful newOtrsArticle.setBody(m_configDao.getTicketClosedMessage()); break; default: log().debug("No valid OpenNMS state on ticket"); newOtrsArticle.setBody(m_configDao.getTicketUpdatedMessage()); } newOtrsArticle.setTicketNumber(otrsTicketNumber); // TODO: Could remove this once we have the userid reliably in the the ticket newOtrsArticle.setFrom(m_configDao.getArticleFrom()); if (newTicket.getUser() != null) { newOtrsArticle.setUser(newTicket.getUser()); } else { newOtrsArticle.setUser(m_configDao.getDefaultUser()); } newOtrsArticle.setSubject(m_configDao.getArticleUpdateSubject()); // All OTRS article fields from defaults newOtrsArticle.setArticleType(m_configDao.getArticleType()); newOtrsArticle.setSenderType(m_configDao.getArticleSenderType()); newOtrsArticle.setContentType(m_configDao.getArticleContentType()); newOtrsArticle.setHistoryType(m_configDao.getArticleHistoryType()); newOtrsArticle.setHistoryComment(m_configDao.getArticleHistoryComment()); port.articleCreate(newOtrsArticle, creds); } /** * Convenience method for converting OpenNMS enumerated ticket states to * OTRS ticket StateID. * * TODO: Convert this to something parameterised * * @param state * @return an Integer representing the OTRS StateID. */ private Integer openNMSToOTRSState(Ticket.State state) { Integer otrsStateId; log().debug("getting otrs state from OpenNMS State " + state.toString()); switch (state) { case OPEN: // ticket is new otrsStateId = m_configDao.getOpenStateId(); break; case CANCELLED: // not sure how often we see this otrsStateId = m_configDao.getCancelledStateId(); break; case CLOSED: // closed successful otrsStateId = m_configDao.getClosedStateId(); break; default: log().debug("No valid OpenNMS state on ticket"); otrsStateId = m_configDao.getOpenStateId(); } log().debug("OpenNMS state was " + state.toString()); log().debug("setting OTRS state ID to " + otrsStateId.toString()); return otrsStateId; } /** * Convenience method for converting OTRS ticket StateID to * OpenNMS enumerated ticket states. * * @param otrsStateID * @return the converted <code>org.opennms.netmgt.ticketd.Ticket.State</code> */ private Ticket.State otrsToOpenNMSState(Integer otrsStateId ) { Ticket.State openNMSState; if (m_configDao.getValidOpenStateId().contains(otrsStateId)) { log().debug("OTRS state ID " + otrsStateId.toString() + " matched OpenNMS state Open"); openNMSState = Ticket.State.OPEN; } else if (m_configDao.getValidClosedStateId().contains(otrsStateId)) { log().debug("OTRS state ID " + otrsStateId.toString() + " matched OpenNMS state Closed"); openNMSState = Ticket.State.CLOSED; } else if (m_configDao.getValidCancelledStateId().contains(otrsStateId)) { log().debug("OTRS state ID " + otrsStateId.toString() + " matched OpenNMS state Cancelled"); openNMSState = Ticket.State.CANCELLED; } else { log().debug("OTRS state ID " + otrsStateId.toString() + " has no matching OpenNMS state"); // we dont know what it is, so default to keeping it open. openNMSState = Ticket.State.OPEN; } return openNMSState; } /** * Covenience logging. * * @return a log4j Category for this class */ Category log() { return ThreadCategory.getInstance(getClass()); } public EventIpcManager getEventIpcManager() { return m_eventIpcManager; } public void setEventIpcManager(EventIpcManager ipcManager) { m_eventIpcManager = ipcManager; } }
a2ab44796b2be06b61c37682c646bb809e0eebab
b55a67b22ca55d52826fd9d1d4166b683f0d6d3d
/src/br/com/caelum/notasfiscais/mb/UsuarioLogadoBean.java
4fbb32cb3ecebd7326c8b024752aed2a439e65b9
[]
no_license
Pacalexandre/fj26-notas-fiscais
33d4981217f5dcdf8becece7f25eda2f8adbf19c
69c7b21019c54a544fef20787852fd3f3c4df531
refs/heads/master
2021-01-22T01:55:00.400112
2014-09-05T00:37:01
2014-09-05T00:37:01
null
0
0
null
null
null
null
UTF-8
Java
false
false
635
java
package br.com.caelum.notasfiscais.mb; import java.io.Serializable; import javax.enterprise.context.RequestScoped; import javax.enterprise.context.SessionScoped; import javax.inject.Named; import br.com.caelum.notasfiscais.modelo.Usuario; @Named @SessionScoped public class UsuarioLogadoBean implements Serializable { private static final long serialVersionUID = 1L; private Usuario usuario; public void logar(Usuario usuario){ this.usuario = usuario; } public void deslogar(){ this.usuario = null; } public Usuario getUsuario(){ return usuario; } public boolean isLogado(){ return usuario!=null; } }
[ "jsf4420@caelum-20121024-1.(none)" ]
jsf4420@caelum-20121024-1.(none)
32635ef139917a767ffc0877734e171832c90155
13c2d3db2d49c40c74c2e6420a9cd89377f1c934
/program_data/JavaProgramData/63/911.java
12a19b6fefbba7ffc253a0b7c9f648ede97a3ba2
[ "MIT" ]
permissive
qiuchili/ggnn_graph_classification
c2090fefe11f8bf650e734442eb96996a54dc112
291ff02404555511b94a4f477c6974ebd62dcf44
refs/heads/master
2021-10-18T14:54:26.154367
2018-10-21T23:34:14
2018-10-21T23:34:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,665
java
package <missing>; public class GlobalMembers { public static void Main() { int[][] a = new int[200][200]; int[][] b = new int[200][200]; int[][] c = new int[200][200]; int i; int j; int temp = 0; int x1; int x2; int y1; int y2; int count; int q; String tempVar = ConsoleInput.scanfRead(); if (tempVar != null) { x1 = Integer.parseInt(tempVar); } String tempVar2 = ConsoleInput.scanfRead(" "); if (tempVar2 != null) { y1 = Integer.parseInt(tempVar2); } count = 0; for (i = 0;i <= x1 - 1;i++) { for (j = 0;j <= y1 - 1;j++) { String tempVar3 = ConsoleInput.scanfRead(); if (tempVar3 != null) { temp = Integer.parseInt(tempVar3); } a[i][j] = temp; } } String tempVar4 = ConsoleInput.scanfRead(); if (tempVar4 != null) { x2 = Integer.parseInt(tempVar4); } String tempVar5 = ConsoleInput.scanfRead(" "); if (tempVar5 != null) { y2 = Integer.parseInt(tempVar5); } for (i = 0;i <= x2 - 1;i++) { for (j = 0;j <= y2 - 1;j++) { String tempVar6 = ConsoleInput.scanfRead(); if (tempVar6 != null) { temp = Integer.parseInt(tempVar6); } b[i][j] = temp; } } i = 0; j = 0; while (i <= x1 - 1) { while (j <= y2 - 1) { for (q = 0;q <= y1 - 1;q++) { count = count + a[i][q] * b[q][j]; } c[i][j] = count; count = 0; j++; } i++; j = 0; } for (i = 0;i <= x1 - 1;i++) { for (j = 0;j <= y2 - 1;j++) { if (j < y2 - 1) { System.out.printf("%d ",c[i][j]); } else if (j == (y2 - 1)) { System.out.printf("%d\n",c[i][j]); } } } } }
a9db36dfb5a673216509ae29ed4f83f20dd52784
690af223252ae96f036347f981142000e18085e2
/src/java/com/pan/EightSorts/InsertSort.java
bf781723ec9333146aeb2f10cf6c690c06c8337b
[]
no_license
FantasticPan/AlgorithmExercises
eb659433d1f31a9325b3d93b4550936b4795c2fe
df2dadbd9e81388dc15fe63f5544a60b5d007ea3
refs/heads/master
2020-04-02T08:56:53.103164
2019-02-19T14:10:59
2019-02-19T14:10:59
154,097,319
0
0
null
null
null
null
UTF-8
Java
false
false
2,512
java
package com.pan.EightSorts; /** * 插入排序 * Created by FantasticPan on 2019/1/24. */ public class InsertSort { public static void main(String[] args) { int[] x = {2, 4, 1, 8, 5, 6, 3, 0, 7, 9}; new InsertSort().insertSort(x); System.out.println(); new InsertSort().twoInsertSort(x); System.out.println(); new InsertSort().shellSort(x); } /** * 直接插入排序 * * @param array */ public void insertSort(int[] array) { //第1个数肯定是有序的,从第2个数开始遍历,依次插入有序序列 for (int i = 1; i < array.length; i++) { int temp = array[i]; int j; //将有序数组中比要插入的数大的数右移 for (j = i - 1; j >= 0 && array[j] > temp; j--) { array[j + 1] = array[j]; } array[j + 1] = temp; } for (int x : array) { System.out.print(x + " "); } } /** * 二分插入排序 * * @param array */ public void twoInsertSort(int[] array) { for (int i = 0; i < array.length; i++) { int temp = array[i]; int left = 0; int right = i - 1; int mid; //二分查找 while (left <= right) { mid = (left + right) >> 1; if (temp < array[mid]) { right = mid - 1; } else { left = mid + 1; } } //插入排序,有序数组中比要插入的数大的数右移 for (int j = i - 1; j >= left; j--) { array[j + 1] = array[j]; } //将left位置赋值为要插入的数 array[left] = temp; } for (int x : array) { System.out.print(x + " "); } } /** * 希尔排序 * * @param array */ public void shellSort(int[] array) { for (int gap = array.length >> 1; gap >= 1; gap >>= 1) { for (int i = gap; i < array.length; i++) { int temp = array[i]; int j; for (j = i - gap; j >= 0 && array[j] > temp; j -= gap) { array[j + gap] = array[j]; } array[j + gap] = temp; } } for (int x : array) { System.out.print(x + " "); } } }
2796f3ed6c45f5dbccebeb0436033f31b5b4039b
7643330748ca684f0cf91e3c3847161434db227f
/MovieRecommendationSystemFinal/src/com/wzfuji/db/entity/RatingId.java
0fb5b98f874ed919cb306426944f4db20f45b7e0
[]
no_license
lucafuji/Movie-Recommendation-System
c082d2d85b4b737c471790592e72407d7ee16da0
7ca8ae4384de9847ec29838ec94eec3155750bd4
refs/heads/master
2016-09-06T03:36:04.463342
2012-05-12T00:51:40
2012-05-12T00:51:40
3,077,288
0
1
null
null
null
null
UTF-8
Java
false
false
1,262
java
package com.wzfuji.db.entity; // Generated May 9, 2012 3:14:09 PM by Hibernate Tools 3.4.0.CR1 import javax.persistence.Column; import javax.persistence.Embeddable; /** * RatingId generated by hbm2java */ @Embeddable public class RatingId implements java.io.Serializable { private int userid; private int itemid; public RatingId() { } public RatingId(int userid, int itemid) { this.userid = userid; this.itemid = itemid; } @Column(name = "userid", nullable = false) public int getUserid() { return this.userid; } public void setUserid(int userid) { this.userid = userid; } @Column(name = "itemid", nullable = false) public int getItemid() { return this.itemid; } public void setItemid(int itemid) { this.itemid = itemid; } @Override public boolean equals(Object other) { if ((this == other)) return true; if ((other == null)) return false; if (!(other instanceof RatingId)) return false; RatingId castOther = (RatingId) other; return (this.getUserid() == castOther.getUserid()) && (this.getItemid() == castOther.getItemid()); } @Override public int hashCode() { int result = 17; result = 37 * result + this.getUserid(); result = 37 * result + this.getItemid(); return result; } }
86dbf54947f52eff4649a61b12423a1c95158f5b
34abbe294b3f6e7a822bf069870400463ab3e770
/Prueba_3/src/org/ownk/holamundo/Holamundo.java
fa1ab691edfdb00c59f035537efc1493d3dffb4b
[]
no_license
DounkandOwnk/PruebaGitOwnk
d445957bade20a4ef17ad89d8d9208ba3746dade
0bc527ba8432f0d964a392a9bfada9edd56f8e8b
refs/heads/master
2021-03-08T06:00:06.792250
2020-03-31T16:37:43
2020-03-31T16:37:43
246,324,006
0
0
null
null
null
null
UTF-8
Java
false
false
410
java
package org.ownk.holamundo; public class Holamundo { public static void main(String[] arg) { String Var = "Hola Mundo"; System.out.println(Var); String Var2 = "Hola mundo 2"; System.out.println(Var2); String Var3 = "Hola mundo 3"; System.out.println(Var3); String Var4 = "Hola mundo 4"; System.out.println(Var4); String Var5 = "Hola mundo 5"; System.out.println(Var5); } }
1476599225c23d8a2a9c3b6b2d072663de05477c
1690bf56a2637b20e3502c9f948959c17ec9bb77
/src/autosave/pkg/EmployeeTableModel.java
78df7e6a1d1f1f529c1088029247ac1be1e0398a
[]
no_license
tuannnh/Java-Desktop-WS123
9cb7d345f69a5c189437161639cbeac2b48472b4
512c599c9ae2e2814df5c2ef25b5891dd3fc426a
refs/heads/master
2020-06-19T14:30:05.325767
2019-07-14T10:50:43
2019-07-14T10:50:43
196,743,948
0
0
null
null
null
null
UTF-8
Java
false
false
1,808
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package autosave.pkg; import javax.swing.table.AbstractTableModel; import java.util.*; import javax.swing.JPanel; /** * * @author Hung Tuan * @param <E> */ public class EmployeeTableModel <E> extends AbstractTableModel{ String [] header; int [] index; Vector<Employee> data; public EmployeeTableModel(String[] header, int[] index) { int i; this.header = new String[header.length]; for (i = 0; i < header.length; i++) this.header[i] = header[i]; this.index = new int[index.length]; for (i = 0; i < header.length; i++) this.index[i] = index[i]; this.data = new Vector<Employee>(); } public Vector<Employee> getData(){ return data; } @Override public int getRowCount() { return data.size(); } @Override public int getColumnCount() { return header.length; } @Override public String getColumnName(int column){ return (column>=0 && column<header.length)?header[column]:""; } @Override public Object getValueAt(int row, int column) { if (row<0 || row >= data.size() || column<0 || column >= header.length) return null; Employee emp = data.get(row); switch (index[column]) { case 0: return emp.getCode(); case 1: return emp.getName(); case 2: return emp.getSalary(); } return null; } public void sort(){ Collections.sort(data,new EmployeeComparator()); } }
2e1f74a27262dac6f2fe13bd183fd8c5d7854808
7422e70a8852922563c334eee8325f131a9728b8
/pro27A/yc27001java001base/src/com/yc/java015interface/Animal.java
decfd40dcc2b87cefededd2bbee70f821fbc89c8
[]
no_license
kingdas/lesson1
b6d87ed65c5b227a384edf430de1eefed3f3adc2
27321b0639ed1306ae273efc9ae913c46e436b89
refs/heads/master
2020-04-08T01:53:17.536605
2018-12-01T04:21:19
2018-12-01T04:21:19
158,912,654
0
0
null
null
null
null
GB18030
Java
false
false
587
java
package com.yc.java015interface; //接口中的方法必须是抽象方法 //接口不能实例化 //接口中抽象方法默认修饰符是public abstract //接口中可以有属性;属性的修饰符默认是public static final ////接口可以继承接;且能多继承接口 //类只能单继承类,但多实现接口 //父类引用指向子类对象时,不能调用子类扩展 public interface Animal { int ANIAML_AGE = 9;// final:修饰变量称其为常量---不可变;需要经初值 // ctrl+shift+x|y // 规范 void eat();// public abstract void sleep(); }
7f022ed18280152f460fe5e09c14940bd70efa39
cbe9a45f5b611f111caba3e7d040be6f12d10d5c
/design-patterns-lab/src/main/java/com/github/jmetzz/laboratory/design_patterns/creational/factory/CalculatorAbstractFactory.java
b34b92bc9319f6394e290cdcbf98620bf1d2732a
[]
no_license
jmetzz/sandbox-java
4d9a2d9d70244a39b2bcbaaa3aa7bf6fad89736b
374af634eb456e31ac87af2eaa1efbe7de44acec
refs/heads/master
2022-05-08T02:08:00.290235
2022-04-05T10:45:31
2022-04-05T10:45:31
45,526,699
1
0
null
2022-04-05T10:45:33
2015-11-04T08:55:03
Java
UTF-8
Java
false
false
279
java
package com.github.jmetzz.laboratory.design_patterns.creational.factory; import com.github.jmetzz.laboratory.design_patterns.demo.generic_calculator.core.AbstractCalculator; public interface CalculatorAbstractFactory { AbstractCalculator createCalculator(); }
3cfd6f3715907f406d4059d5757e819c087cbc53
55ed1383627c6fb5fd70ae7a98033e76bad2540e
/src/main/java/com/ahrankina/library/spring/controller/RedirectController.java
655fa45c91ade489774a72b460c16916b29dc83c
[]
no_license
a-hrankina/spring-boot-library
ae90e639b3b062a5c60c869d5ac21c456ce40334
cc50e09fdb3fb60f8843c23f6bf1009541b53264
refs/heads/master
2023-01-19T20:12:28.028539
2020-11-26T22:08:49
2020-11-26T22:08:49
316,226,294
0
0
null
null
null
null
UTF-8
Java
false
false
665
java
package com.ahrankina.library.spring.controller; import lombok.extern.java.Log; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @Controller @Log public class RedirectController { @RequestMapping(value = "", method = RequestMethod.GET) public String baseUrlRedirect(HttpServletRequest request, HttpServletResponse httpServletResponse) { return "redirect:" + request.getRequestURL().append("index.xhtml").toString(); } }
c2aa934253c448e9baa54b93f3bdf26b10884043
c98ded3f6de5a1bb91c7930cd090208fbee0081f
/skWeiChatBaidu/src/main/java/com/sk/weichat/view/SearchBarView.java
fef0a21ca6b9b3a26cb0dce66a462192aa870f35
[]
no_license
GJF19981210/IM_Android
e628190bb504b52ec04e8beaf5449bd847904c84
7743586eac5ca07d1a7e9a2d4b2cc24d68a082ac
refs/heads/master
2023-01-01T11:15:42.085782
2020-10-19T07:10:43
2020-10-19T07:10:43
305,293,872
2
0
null
null
null
null
UTF-8
Java
false
false
10,032
java
package com.sk.weichat.view; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.animation.ValueAnimator; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.RectF; import android.os.Build; import android.text.TextUtils; import android.util.AttributeSet; import android.util.TypedValue; import android.view.MotionEvent; import android.view.View; import android.view.animation.AccelerateInterpolator; import androidx.annotation.Nullable; import com.sk.weichat.R; /** * Created by Administrator on 2018/4/17 0017. */ public class SearchBarView extends View { private static final String TAG = "SearchBarView"; private static final int DEFAULT_ANIMATION_DURATION = 500; private static final int STATUS_OPEN = 1; private static final int STATUS_CLOSE = 1 << 2; private static final int STATUS_PROCESS = 1 << 3; private static final int DEFAULT_SEARCH_BAR_COLOR = Color.WHITE; private static final int DEFAULT_RIGHT_POSITION = 1; private static final int DEFAULT_LEFT_POSITION = 1 << 2; private static final int DEFAULT_SEARCH_TEXT_COLOR = Color.GRAY; private static final int DEFAULT_HINT_TEXT_SIZE = 14; private static final int DEFAULT_HEIGHT = 40; private int mWidth; private int mHeight; private int mRadius; private int mStatus; private Paint mPaint; private int mPosition; private int mOffsetX; private RectF mRectF; private RectF mDstRectF; private CharSequence mSearchText; private int searchBarColor; private int searchTextColor; private float defaultHeight; private ValueAnimator openAnimator = new ValueAnimator(); private ValueAnimator closeAnimator = new ValueAnimator(); private Bitmap bitmap; public SearchBarView(Context context) { this(context, null); } public SearchBarView(Context context, @Nullable AttributeSet attrs) { this(context, attrs, 0); } public SearchBarView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.SearchBarView); searchBarColor = array.getColor(R.styleable.SearchBarView_search_bar_color, DEFAULT_SEARCH_BAR_COLOR); mPosition = array.getInteger(R.styleable.SearchBarView_search_bar_position, DEFAULT_RIGHT_POSITION); mStatus = array.getInteger(R.styleable.SearchBarView_search_bar_status, STATUS_CLOSE); int mDuration = array.getInteger(R.styleable.SearchBarView_search_bar_duration, DEFAULT_ANIMATION_DURATION); int searchBarIcon = array.getResourceId(R.styleable.SearchBarView_search_bar_icon, android.R.drawable.ic_search_category_default); mSearchText = array.getText(R.styleable.SearchBarView_search_bar_hint_text); searchTextColor = array.getColor(R.styleable.SearchBarView_search_bar_hint_text_color, DEFAULT_SEARCH_TEXT_COLOR); float defaultTextSize = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, DEFAULT_HINT_TEXT_SIZE, getResources().getDisplayMetrics()); float searchTextSize = array.getDimension(R.styleable.SearchBarView_search_bar_hint_text_size, defaultTextSize); defaultHeight = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, DEFAULT_HEIGHT, getResources().getDisplayMetrics()); array.recycle(); mPaint = new Paint(Paint.ANTI_ALIAS_FLAG); mPaint.setColor(searchBarColor); mPaint.setTextSize(searchTextSize); mRectF = new RectF(); mDstRectF = new RectF(); bitmap = BitmapFactory.decodeResource(getResources(), searchBarIcon); initAnimator(mDuration); } private void initAnimator(long duration) { AccelerateInterpolator accelerateInterpolator = new AccelerateInterpolator(); ValueAnimator.AnimatorUpdateListener animatorUpdateListener = new ValueAnimator.AnimatorUpdateListener() { @Override public void onAnimationUpdate(ValueAnimator animation) { mOffsetX = (int) animation.getAnimatedValue(); invalidate(); } }; // init open animator openAnimator = new ValueAnimator(); openAnimator.setInterpolator(accelerateInterpolator); openAnimator.setDuration(duration); openAnimator.addUpdateListener(animatorUpdateListener); openAnimator.addListener(new AnimatorListenerAdapter() { @Override public void onAnimationStart(Animator animation) { mStatus = STATUS_PROCESS; } @Override public void onAnimationEnd(Animator animation) { mStatus = STATUS_OPEN; invalidate(); } }); // init close animator closeAnimator = new ValueAnimator(); closeAnimator.setInterpolator(accelerateInterpolator); closeAnimator.setDuration(duration); closeAnimator.addUpdateListener(animatorUpdateListener); closeAnimator.addListener(new AnimatorListenerAdapter() { @Override public void onAnimationStart(Animator animation) { mStatus = STATUS_PROCESS; } @Override public void onAnimationEnd(Animator animation) { mStatus = STATUS_CLOSE; } }); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { int widthMode = MeasureSpec.getMode(widthMeasureSpec); int widthSize = MeasureSpec.getSize(widthMeasureSpec); int heightMode = MeasureSpec.getMode(heightMeasureSpec); int heightSize = MeasureSpec.getSize(heightMeasureSpec); if (widthMode == MeasureSpec.EXACTLY) { mWidth = widthSize; } else { mWidth = widthSize; } if (heightMode == MeasureSpec.EXACTLY) { mHeight = heightSize; } else { mHeight = (int) defaultHeight; if (heightMode == MeasureSpec.AT_MOST) { mHeight = (int) (Math.min(heightSize, defaultHeight)); } } mRadius = Math.min(mWidth - getPaddingLeft() - getPaddingRight(), mHeight - getPaddingTop() - getPaddingBottom()) / 2; if (mStatus == STATUS_OPEN) { mOffsetX = mWidth - mRadius * 2 - getPaddingRight() - getPaddingLeft(); } setMeasuredDimension(mWidth, mHeight); } @Override protected void onDraw(Canvas canvas) { // draw search bar mPaint.setColor(searchBarColor); int left = mPosition == DEFAULT_RIGHT_POSITION ? mWidth - getPaddingRight() - 2 * mRadius - mOffsetX : getPaddingLeft(); int right = mPosition == DEFAULT_RIGHT_POSITION ? mWidth - getPaddingRight() : 2 * mRadius + mOffsetX + getPaddingLeft(); int top = getPaddingTop(); int bottom = mHeight - getPaddingBottom(); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { canvas.drawRoundRect(left, top, right, bottom, mRadius, mRadius, mPaint); } else { mRectF.set(left, top, right, bottom); canvas.drawRoundRect(mRectF, mRadius, mRadius, mPaint); } // draw search bar icon mDstRectF.set(left + (int) ((1 - Math.sqrt(2) / 2) * mRadius), top + (int) ((1 - Math.sqrt(2) / 2) * mRadius), left + (int) ((1 + Math.sqrt(2) / 2) * mRadius), top + (int) ((1 + Math.sqrt(2) / 2) * mRadius)); canvas.drawBitmap(bitmap, null, mDstRectF, mPaint); // draw search bar text if (mStatus == STATUS_OPEN && !TextUtils.isEmpty(mSearchText)) { mPaint.setColor(searchTextColor); Paint.FontMetrics fm = mPaint.getFontMetrics(); double textHeight = Math.ceil(fm.descent - fm.ascent); canvas.drawText(mSearchText.toString(), left + 2 * mRadius, top + (float) (mRadius + textHeight / 2 - fm.descent), mPaint); } } @Override public boolean dispatchTouchEvent(MotionEvent event) { // 如果事件不是在search bar区域内,那么不响应 if (event.getAction() == MotionEvent.ACTION_DOWN) { float actionX = event.getX(); // 计算search bar的左右边界 int left = mPosition == DEFAULT_RIGHT_POSITION ? mWidth - 2 * mRadius - mOffsetX : 0; int right = mPosition == DEFAULT_RIGHT_POSITION ? mWidth : 2 * mRadius + mOffsetX; if (actionX < left || actionX > right) { return false; } } return super.dispatchTouchEvent(event); } /** * 判断搜索栏是否为打开状态 * * @return */ public boolean isOpen() { return mStatus == STATUS_OPEN; } /** * 判断搜索栏是否为关闭状态 * * @return */ public boolean isClose() { return mStatus == STATUS_CLOSE; } /** * 打开搜索栏 */ public void startOpen() { if (isOpen()) { return; } else if (openAnimator.isStarted()) { return; } else if (closeAnimator.isStarted()) { closeAnimator.cancel(); } openAnimator.setIntValues(mOffsetX, mWidth - mRadius * 2 - getPaddingLeft() - getPaddingRight()); openAnimator.start(); } /** * 关闭搜索栏 */ public void startClose() { if (isClose()) { return; } else if (closeAnimator.isStarted()) { return; } else if (openAnimator.isStarted()) { openAnimator.cancel(); } closeAnimator.setIntValues(mOffsetX, 0); closeAnimator.start(); } }
fb87c5f72e87d6760a948d64ea66cc7f1b60ca87
e84571ba78cb808c90ecd2b97b8bc0ff83a4e4f5
/src/test/java/pl/mateuszkoczan/springframework/recipeapp/domains/CategoryTest.java
6830692bb468c33769ad09ab126c405ed1c6db0d
[]
no_license
koczanm/recipe
51d8049c76e31455c687700698f1a122f9d9d4f3
920f37fcb6cf847e471e81a22a0c4d2f223520f3
refs/heads/master
2020-03-07T12:14:57.114995
2018-05-01T19:44:32
2018-05-01T19:44:32
127,473,824
0
0
null
null
null
null
UTF-8
Java
false
false
548
java
package pl.mateuszkoczan.springframework.recipeapp.domains; import org.junit.Before; import org.junit.Test; import static org.junit.Assert.*; public class CategoryTest { Category category; @Before public void setUp() throws Exception { category = new Category(); } @Test public void getId() { Long idValue = 4L; category.setId(idValue); assertEquals(idValue, category.getId()); } @Test public void getDescription() { } @Test public void getRecipes() { } }
92b9ecd82320cd33a6de9590cb2af28e21323f1d
089d1dda32dd9511764c4d71f3a4b4d6db736d76
/springday02-accountAnno-IOCwithoutXML/src/main/java/config/SpringConfiguration.java
6037487865680a3f54a539bbc62bfd015b6409a4
[]
no_license
WZPluckeyboy/Spring
c46177427eddca6bccf3a0fa8d1c64ea6daac81c
bdeff533782ab0272ce6e90c8e23cdd3ba37e3d5
refs/heads/master
2022-12-25T20:19:45.588634
2020-02-03T13:08:15
2020-02-03T13:08:15
237,731,855
0
0
null
2022-12-16T05:04:57
2020-02-02T06:57:54
Java
UTF-8
Java
false
false
688
java
package config; import com.mchange.v2.c3p0.ComboPooledDataSource; import org.apache.commons.dbutils.QueryRunner; import org.springframework.context.annotation.*; import javax.sql.DataSource; //配置类,作用于bean一样 /*@Configuration spring 新注解,指定当前类是一个配置类 * @ComponenScan 用于通过注解指定要扫描的包 * @Bean 用于把当前方法的返回值作为返回值存入容器 * 属性 :name 默认值是当前方法的名称 * @Import * 导入其他配置类 * */ @Configuration @ComponentScan({"com.ping","config"}) @Import(JDBCConfig.class) @PropertySource("classpath:jdbcConfig.properties") public class SpringConfiguration { }
8f0386c848ba187dafea60388ac55b0077d1da20
a2018444586067889a3d27cb47867d179b359698
/01_Dependency-Injection/app/controllers/HomeController.java
c2e0d02691564c976e7abf3baa7d82a3f925b567
[ "Apache-2.0" ]
permissive
mkurz/jug-vienna-talk
4e7cf06ff9e5a0bf8a74b865e2e9c6449eafdd95
a3e8ac75a08b5d7a4df45f54a7abb63a086ae289
refs/heads/master
2016-09-12T23:24:58.742788
2016-04-18T16:28:03
2016-04-18T16:28:03
56,518,954
0
0
null
null
null
null
UTF-8
Java
false
false
871
java
package controllers; import javax.inject.Inject; import composition.DoSomething; import play.Configuration; import play.Environment; import play.Logger; import play.i18n.Messages; import play.i18n.MessagesApi; import play.mvc.*; import views.html.*; /** * This controller contains an action to handle HTTP requests * to the application's home page. */ public class HomeController extends Controller { // @Inject // private MessagesApi messagesApi; // @Inject // private Environment env; // @Inject // private Configuration config; // Not static anymore! public Result index() { Logger.info("Inside index action"); if(play.Play.isDev()) { // do something only for dev mode } // Read config play.Play.application().configuration().getString("mykey"); return ok(Messages.get("hello")); } }
ca6e8358377e7a71435c550f9cd989e9ade4070f
ad4b2b83afa0398918dc1215ae385cda139dbdc0
/MeterialCalc/app/src/main/java/materialcalc/house/godbeom/com/materialcalc/sample/stickys/dto/HeaderADTO.java
73dffa1e142db4cbaa899747bfc4088d5756be14
[]
no_license
Shin-Beomchul/Android
0537801df7b117a2015c6da97e7831f2f8196d65
9df1aaaf6a2a86d0d18cb299e4aabc75137fd3c5
refs/heads/master
2020-07-14T07:48:34.156391
2018-09-19T07:31:25
2018-09-19T07:31:25
94,299,435
0
0
null
null
null
null
UTF-8
Java
false
false
227
java
package materialcalc.house.godbeom.com.materialcalc.sample.stickys.dto; /** * Created by Administrator on 2018-03-07. */ public class HeaderADTO { String name; public void setName(String name) { this.name = name; } }
b932a88f64f598bc58a676fccf4351e9eb23c692
0664c8f81db87d486c1e265ae89420dac78c33fd
/src/main/java/com/dart/domain/Identifiable.java
86d2ec2b9b21f0b2e091d56ba914640fe0646719
[]
no_license
donotbesad/etlprocessing
e20ff1b2775f1270eba69479b6a8b7b0c71bd857
e648946389d28354f02307c5fc189176834d2152
refs/heads/master
2021-09-03T08:34:47.541179
2018-01-07T15:47:40
2018-01-07T15:47:40
110,355,643
0
0
null
null
null
null
UTF-8
Java
false
false
724
java
package com.dart.domain; import lombok.Data; import org.hibernate.annotations.GenericGenerator; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.MappedSuperclass; import java.util.UUID; /** * Superclass for all domain objects * * Author: Dmitry Artemenko * Date: 20.10.17 * Time: 14:08 * * @author Dmitry Artemenko */ @Data @MappedSuperclass public class Identifiable { public interface Columns { String UUID = "uuid"; String STRATEGY_CLASS = "org.hibernate.id.UUIDGenerator"; } @Id @GeneratedValue @GenericGenerator( name = Columns.UUID, strategy = Columns.STRATEGY_CLASS ) private UUID uuid; }