blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 332 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 7 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 557 values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M ⌀ | star_events_count int64 0 77.7k | fork_events_count int64 0 48k | gha_license_id stringclasses 17 values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 82 values | src_encoding stringclasses 28 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 5.41M | extension stringclasses 11 values | content stringlengths 7 5.41M | authors listlengths 1 1 | author stringlengths 0 161 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
45325b76419144ca9ee387a621cdf61c318fb83b | a981e944e864a5fa8eac59bac6d69338db6747f4 | /Paytm application/src/com/cg/mypaytmapp/service/WalletServiceImpl.java | 3f0be2ad2f124efedea2325ccb4f2d343bae8591 | [] | no_license | jindamvaishnavi/153063-phase1 | f835bb5a89d62b9a1244861f9821d22f5049e626 | 50ce395d748a0ee54f1acd0df8f401436b4e85fa | refs/heads/master | 2020-03-22T12:58:08.257847 | 2018-07-07T10:18:37 | 2018-07-07T10:18:37 | 140,073,930 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,945 | java | package com.cg.mypaytmapp.service;
import java.math.BigDecimal;
import java.util.Map;
import java.util.Scanner;
import com.cg.mypaytmapp.beans.Customer;
import com.cg.mypaytmapp.beans.Wallet;
import com.cg.mypaytmapp.exception.InvalidInputException;
import com.cg.mypaytmapp.repo.WalletRepo;
import com.cg.mypaytmapp.repo.WalletRepoImpl;
public class WalletServiceImpl implements WalletService{
private WalletRepo repo;
public WalletServiceImpl(Map<String, Customer> data){
repo= new WalletRepoImpl(data);
}
public WalletServiceImpl(WalletRepo repo) {
super();
this.repo = repo;
}
public WalletServiceImpl() {
repo=new WalletRepoImpl();
}
public boolean validatephone(String phoneno) {
String pattern1="[7-9]?[0-9]{10}";
if(phoneno.matches(pattern1))
{
return true;
}else {
return false;
}
}
public boolean validateName(String pName) {
String pattern="[A-Z][a-zA-Z]*";
if(pName.matches(pattern))
{
return true;
}else {
return false;
}
}
WalletRepoImpl obj=new WalletRepoImpl();
public Customer createAccount(String name, String mobileNo, BigDecimal amount)
{
Customer cust=new Customer(name,mobileNo,new Wallet(amount));
acceptCustomerDetails(cust);
boolean result=repo.save(cust);
if(result==true)
return cust;
else
return null;
//create an object of customer and call dao save layer
}
public Customer showBalance(String mobileNo) {
Customer customer=repo.findOne(mobileNo);
if(customer!=null)
return customer;
else
throw new InvalidInputException("Invalid mobile no ");
}
public Customer fundTransfer(String sourceMobileNo, String targetMobileNo, BigDecimal amount) {
Customer scust=new Customer();
Customer tcust=new Customer();
Wallet sw=new Wallet();
Wallet tw=new Wallet();
scust=repo.findOne(sourceMobileNo);
tcust=repo.findOne(targetMobileNo);
if(scust!=null && tcust!=null)
{
BigDecimal amtsub=scust.getWallet().getBalance();
BigDecimal diff=amtsub.subtract(amount);
sw.setBalance(diff);
scust.setWallet(sw);
BigDecimal amtAdd=tcust.getWallet().getBalance();
BigDecimal sum=amtAdd.add(amount);
tw.setBalance(sum);
tcust.setWallet(tw);
obj.getData().put(targetMobileNo, tcust);
obj.getData().put(sourceMobileNo, scust);
}
else
{
}
return tcust;
}
public Customer depositAmount(String mobileNo, BigDecimal amount) {
Customer cust=new Customer();
Wallet wallet=new Wallet();
cust=repo.findOne(mobileNo);
if(cust!=null)
{
BigDecimal amtAdd=cust.getWallet().getBalance().add(amount);
wallet.setBalance(amtAdd);
cust.setWallet(wallet);
obj.getData().put(mobileNo, cust);
}
return cust;
}
public Customer withdrawAmount(String mobileNo, BigDecimal amount) {
Customer cust=new Customer();
Wallet wallet=new Wallet();
cust=repo.findOne(mobileNo);
if(cust!=null)
{
BigDecimal amtSub=cust.getWallet().getBalance().subtract(amount);
wallet.setBalance(amtSub);
cust.setWallet(wallet);
obj.getData().put(mobileNo, cust);
}
return cust;
}
public void acceptCustomerDetails(Customer cust) {
Scanner sc=new Scanner(System.in);
while (true) {
String str=cust.getMobileNo();
if(validatephone(str))//method validate name
{
break;
}
else
{
System.err.println("Wrong Phone number!!\n Please Start with 9 ");
System.out.println("Enter Phone number Again eg:9876543210");
cust.setMobileNo(sc.next());
}
}
while (true) {
String str1=cust.getName();
if(validateName(str1))//method validate name
{
break;
}
else
{
System.err.println("Wrong Name!!\n Please Start with Capital letter ");
System.out.println("Enter Name Again eg:Name");
cust.setName(sc.next());
}
}
}
}
| [
"noreply@github.com"
] | noreply@github.com |
fea10729d1422b04e9c356e47bbac514cadc31a1 | f45097ed824f9ead1ade991a449ded90d071566e | /hu.bme.mit.temalabor.choco/src/hu/bme/mit/temalabor/choco/Main.java | cd744aea5f9ed4365496873468c235dbcdebd1da | [] | no_license | daniel-laszlo/temalabor | 856621aee1ff41e0bacff187dc0e2d4c1b3164b0 | f0760eec903940f7b3fb5aba8253faac8b02d647 | refs/heads/master | 2021-05-01T04:57:57.105009 | 2017-01-14T23:55:42 | 2017-01-14T23:55:42 | 75,879,332 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,630 | java | package hu.bme.mit.temalabor.choco;
import parser.Parser;
import hu.bme.mit.temalabor.myDsl.Clue;
import hu.bme.mit.temalabor.myDsl.Domainmodel;
import hu.bme.mit.temalabor.myDsl.Mapdim;
import java.io.IOException;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
if (args.length > 0) {
String fileName = args[0];
try {
Domainmodel domainmodel = Parser.parse(fileName);
Mapdim mapdim = domainmodel.getMapdim();
int[] dimensions = new int[2];
dimensions[0] = mapdim.getSizex();
dimensions[1] = mapdim.getSizey();
FillAPix fillAPixGame = new FillAPix(dimensions);
org.eclipse.emf.common.util.EList<Clue> clueList = domainmodel.getClues();
for (Clue clue : clueList) {
fillAPixGame.addClue(clue.getValue(), clue.getPosx(), clue.getPosy());
}
fillAPixGame.calculateConstraints();
fillAPixGame.printSolution();
} catch (IOException e) {
System.out.println("Nem létezik a " + fileName + " nevű fájl!");
}
} else {
Scanner scanner = new Scanner(System.in);
int[] dimensions = Arrays.stream(scanner.nextLine().split(",")).map(Integer::valueOf).mapToInt(i -> i).toArray();
FillAPix fillAPixGame = new FillAPix(dimensions);
for (int i = 0; i < dimensions[1]; i++) {
int aRowOfClues[] = Arrays.stream(scanner.nextLine().split(",")).map(Integer::valueOf).mapToInt(j -> j).toArray();
for (int i1 = 0; i1 < aRowOfClues.length; i1++) {
fillAPixGame.addClue(aRowOfClues[i1], i, i1);
}
}
fillAPixGame.calculateConstraints();
fillAPixGame.printSolution();
}
}
}
| [
"laszlodaniel@icloud.com"
] | laszlodaniel@icloud.com |
38dc00738b838e37d8484d45bc626e73cd8c62ee | 16d8be0842ac6586c88dcfef6ebfd8d9b1fcbfad | /SPen SDK/Samples/Pen/SpenSDK_4.1_Light_Demo/SPenSDK41_Light_Demo/src/main/java/com/samsung/android/sdk/pen/pg/example1_4/PenSample1_4_UndoRedo.java | 1a8e3d5c1444d551b1e75775852543275929bda3 | [] | no_license | jmasip94/Handwritten-Search | ad36c1ec59dc63875edc16342121cd69d0287edd | 984490603f43a315d8bed99d1fa13ec33685b99a | refs/heads/master | 2020-04-15T19:23:20.544825 | 2019-01-10T18:17:27 | 2019-01-10T18:17:27 | 164,948,031 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 13,453 | java | package com.samsung.android.sdk.pen.pg.example1_4;
import java.io.IOException;
import android.app.Activity;
import android.content.Context;
import android.graphics.Color;
import android.graphics.Rect;
import android.os.Bundle;
import android.view.Display;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnTouchListener;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.Toast;
import com.samsung.android.sdk.SsdkUnsupportedException;
import com.samsung.android.sdk.pen.Spen;
import com.samsung.android.sdk.pen.engine.SpenTouchListener;
import com.samsung.android.sdk.pen.SpenSettingEraserInfo;
import com.samsung.android.sdk.pen.SpenSettingPenInfo;
import com.samsung.android.sdk.pen.document.SpenNoteDoc;
import com.samsung.android.sdk.pen.document.SpenPageDoc;
import com.samsung.android.sdk.pen.document.SpenPageDoc.HistoryListener;
import com.samsung.android.sdk.pen.document.SpenPageDoc.HistoryUpdateInfo;
import com.samsung.android.sdk.pen.engine.SpenColorPickerListener;
import com.samsung.android.sdk.pen.engine.SpenSimpleSurfaceView;
import com.samsung.android.sdk.pen.pg.tool.SDKUtils;
import com.samsung.android.sdk.pen.settingui.SpenSettingEraserLayout;
import com.samsung.android.sdk.pen.settingui.SpenSettingEraserLayout.EventListener;
import com.samsung.android.sdk.pen.settingui.SpenSettingPenLayout;
import com.samsung.spensdk4light.example.R;
public class PenSample1_4_UndoRedo extends Activity {
private Context mContext;
private SpenNoteDoc mSpenNoteDoc;
private SpenPageDoc mSpenPageDoc;
private SpenSimpleSurfaceView mSpenSimpleSurfaceView;
private SpenSettingPenLayout mPenSettingView;
private SpenSettingEraserLayout mEraserSettingView;
private ImageView mPenBtn;
private ImageView mEraserBtn;
private ImageView mUndoBtn;
private ImageView mRedoBtn;
private int mToolType = SpenSimpleSurfaceView.TOOL_SPEN;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_undo_redo);
mContext = this;
// Initialize Spen
boolean isSpenFeatureEnabled = false;
Spen spenPackage = new Spen();
try {
spenPackage.initialize(this);
isSpenFeatureEnabled = spenPackage.isFeatureEnabled(Spen.DEVICE_PEN);
} catch (SsdkUnsupportedException e) {
if (SDKUtils.processUnsupportedException(this, e) == true) {
return;
}
} catch (Exception e1) {
Toast.makeText(mContext, "Cannot initialize Spen.", Toast.LENGTH_SHORT).show();
e1.printStackTrace();
finish();
}
FrameLayout spenViewContainer = (FrameLayout) findViewById(R.id.spenViewContainer);
RelativeLayout spenViewLayout = (RelativeLayout) findViewById(R.id.spenViewLayout);
// Create PenSettingView
mPenSettingView = new SpenSettingPenLayout(getApplicationContext(), "", spenViewLayout);
// Create EraserSettingView
mEraserSettingView = new SpenSettingEraserLayout(getApplicationContext(), "", spenViewLayout);
spenViewContainer.addView(mPenSettingView);
spenViewContainer.addView(mEraserSettingView);
// Create SpenView
mSpenSimpleSurfaceView = new SpenSimpleSurfaceView(mContext);
if (mSpenSimpleSurfaceView == null) {
Toast.makeText(mContext, "Cannot create new SpenSimpleSurfaceView.", Toast.LENGTH_SHORT).show();
finish();
}
mSpenSimpleSurfaceView.setToolTipEnabled(true);
spenViewLayout.addView(mSpenSimpleSurfaceView);
mPenSettingView.setCanvasView(mSpenSimpleSurfaceView);
mEraserSettingView.setCanvasView(mSpenSimpleSurfaceView);
// Get the dimension of the device screen.
Display display = getWindowManager().getDefaultDisplay();
Rect rect = new Rect();
display.getRectSize(rect);
// Create SpenNoteDoc
try {
mSpenNoteDoc = new SpenNoteDoc(mContext, rect.width(), rect.height());
} catch (IOException e) {
Toast.makeText(mContext, "Cannot create new NoteDoc", Toast.LENGTH_SHORT).show();
e.printStackTrace();
finish();
} catch (Exception e) {
e.printStackTrace();
finish();
}
// Add a Page to NoteDoc, get an instance, and set it to the member variable.
mSpenPageDoc = mSpenNoteDoc.appendPage();
mSpenPageDoc.setBackgroundColor(0xFFD6E6F5);
mSpenPageDoc.clearHistory();
// Set PageDoc to View
mSpenSimpleSurfaceView.setPageDoc(mSpenPageDoc, true);
initSettingInfo();
// Register the listener
mSpenSimpleSurfaceView.setColorPickerListener(mColorPickerListener);
mSpenSimpleSurfaceView.setPreTouchListener(onPreTouchSurfaceViewListener);
mSpenPageDoc.setHistoryListener(mHistoryListener);
mEraserSettingView.setEraserListener(mEraserListener);
// Set a button
mPenBtn = (ImageView) findViewById(R.id.penBtn);
mPenBtn.setOnClickListener(mPenBtnClickListener);
mEraserBtn = (ImageView) findViewById(R.id.eraserBtn);
mEraserBtn.setOnClickListener(mEraserBtnClickListener);
mUndoBtn = (ImageView) findViewById(R.id.undoBtn);
mUndoBtn.setOnClickListener(undoNredoBtnClickListener);
mUndoBtn.setEnabled(mSpenPageDoc.isUndoable());
mRedoBtn = (ImageView) findViewById(R.id.redoBtn);
mRedoBtn.setOnClickListener(undoNredoBtnClickListener);
mRedoBtn.setEnabled(mSpenPageDoc.isRedoable());
selectButton(mPenBtn);
if (isSpenFeatureEnabled == false) {
mToolType = SpenSimpleSurfaceView.TOOL_FINGER;
Toast.makeText(mContext, "Device does not support Spen. \n You can draw stroke by finger.",
Toast.LENGTH_SHORT).show();
} else {
mToolType = SpenSimpleSurfaceView.TOOL_SPEN;
}
mSpenSimpleSurfaceView.setToolTypeAction(mToolType, SpenSimpleSurfaceView.ACTION_STROKE);
}
private void initSettingInfo() {
// Initialize Pen settings
SpenSettingPenInfo penInfo = new SpenSettingPenInfo();
penInfo.color = Color.BLUE;
penInfo.size = 10;
mSpenSimpleSurfaceView.setPenSettingInfo(penInfo);
mPenSettingView.setInfo(penInfo);
// Initialize Eraser settings
SpenSettingEraserInfo eraserInfo = new SpenSettingEraserInfo();
eraserInfo.size = 30;
mSpenSimpleSurfaceView.setEraserSettingInfo(eraserInfo);
mEraserSettingView.setInfo(eraserInfo);
}
private SpenTouchListener onPreTouchSurfaceViewListener = new SpenTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
// TODO Auto-generated method stub
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
case MotionEvent.ACTION_POINTER_DOWN:
enableButton(false);
break;
case MotionEvent.ACTION_CANCEL:
case MotionEvent.ACTION_UP:
enableButton(true);
break;
}
return false;
}
};
private final OnClickListener mPenBtnClickListener = new OnClickListener() {
@Override
public void onClick(View v) {
// When Spen is in stroke (pen) mode
if (mSpenSimpleSurfaceView.getToolTypeAction(mToolType) == SpenSimpleSurfaceView.ACTION_STROKE) {
// If PenSettingView is open, close it.
if (mPenSettingView.isShown()) {
mPenSettingView.setVisibility(View.GONE);
// If PenSettingView is not open, open it.
} else {
mPenSettingView.setViewMode(SpenSettingPenLayout.VIEW_MODE_NORMAL);
mPenSettingView.setVisibility(View.VISIBLE);
}
// If Spen is not in stroke (pen) mode, change it to stroke mode.
} else {
int curAction = mSpenSimpleSurfaceView.getToolTypeAction(SpenSimpleSurfaceView.TOOL_FINGER);
mSpenSimpleSurfaceView.setToolTypeAction(mToolType, SpenSimpleSurfaceView.ACTION_STROKE);
int newAction = mSpenSimpleSurfaceView.getToolTypeAction(SpenSimpleSurfaceView.TOOL_FINGER);
if (mToolType == SpenSimpleSurfaceView.TOOL_FINGER) {
if (curAction != newAction) {
selectButton(mPenBtn);
}
} else {
selectButton(mPenBtn);
}
}
}
};
private final OnClickListener mEraserBtnClickListener = new OnClickListener() {
@Override
public void onClick(View v) {
// When Spen is in eraser mode
if (mSpenSimpleSurfaceView.getToolTypeAction(mToolType) == SpenSimpleSurfaceView.ACTION_ERASER) {
// If EraserSettingView is open, close it.
if (mEraserSettingView.isShown()) {
mEraserSettingView.setVisibility(View.GONE);
// If EraserSettingView is not open, open it.
} else {
mEraserSettingView.setVisibility(View.VISIBLE);
}
// If Spen is not in eraser mode, change it to eraser mode.
} else {
selectButton(mEraserBtn);
mSpenSimpleSurfaceView.setToolTypeAction(mToolType, SpenSimpleSurfaceView.ACTION_ERASER);
}
}
};
private final OnClickListener undoNredoBtnClickListener = new OnClickListener() {
@Override
public void onClick(View v) {
if (mSpenPageDoc == null) {
return;
}
// Undo button is clicked.
if (v.equals(mUndoBtn)) {
if (mSpenPageDoc.isUndoable()) {
HistoryUpdateInfo[] userData = mSpenPageDoc.undo();
mSpenSimpleSurfaceView.updateUndo(userData);
}
// Redo button is clicked.
} else if (v.equals(mRedoBtn)) {
if (mSpenPageDoc.isRedoable()) {
HistoryUpdateInfo[] userData = mSpenPageDoc.redo();
mSpenSimpleSurfaceView.updateRedo(userData);
}
}
}
};
private final SpenColorPickerListener mColorPickerListener = new SpenColorPickerListener() {
@Override
public void onChanged(int color, int x, int y) {
// Set the color from the Color Picker to the setting view.
if (mPenSettingView != null) {
SpenSettingPenInfo penInfo = mPenSettingView.getInfo();
penInfo.color = color;
mPenSettingView.setInfo(penInfo);
}
}
};
private final EventListener mEraserListener = new EventListener() {
@Override
public void onClearAll() {
// ClearAll button action routines of EraserSettingView
mSpenPageDoc.removeAllObject();
mSpenSimpleSurfaceView.update();
}
};
private final HistoryListener mHistoryListener = new HistoryListener() {
@Override
public void onCommit(SpenPageDoc page) {
}
@Override
public void onUndoable(SpenPageDoc page, boolean undoable) {
// Enable or disable the button according to the availability of undo.
mUndoBtn.setEnabled(undoable);
}
@Override
public void onRedoable(SpenPageDoc page, boolean redoable) {
// Enable or disable the button according to the availability of redo.
mRedoBtn.setEnabled(redoable);
}
};
private void enableButton(boolean isEnable) {
mPenBtn.setEnabled(isEnable);
mEraserBtn.setEnabled(isEnable);
mUndoBtn.setEnabled(isEnable && mSpenPageDoc.isUndoable());
mRedoBtn.setEnabled(isEnable && mSpenPageDoc.isRedoable());
}
private void selectButton(View v) {
// Enable or disable the button according to the current mode.
mPenBtn.setSelected(false);
mEraserBtn.setSelected(false);
v.setSelected(true);
closeSettingView();
}
private void closeSettingView() {
// Close all the setting views.
mEraserSettingView.setVisibility(SpenSimpleSurfaceView.GONE);
mPenSettingView.setVisibility(SpenSimpleSurfaceView.GONE);
}
@Override
protected void onDestroy() {
super.onDestroy();
if (mPenSettingView != null) {
mPenSettingView.close();
}
if (mEraserSettingView != null) {
mEraserSettingView.close();
}
if (mSpenSimpleSurfaceView != null) {
mSpenSimpleSurfaceView.close();
mSpenSimpleSurfaceView = null;
}
if (mSpenNoteDoc != null) {
try {
mSpenNoteDoc.close();
} catch (Exception e) {
e.printStackTrace();
}
mSpenNoteDoc = null;
}
};
}
| [
"josemi.masip@gmail.com"
] | josemi.masip@gmail.com |
730c808b1f7fdf5d4e767190998e8d17807197ea | 74b47b895b2f739612371f871c7f940502e7165b | /aws-java-sdk-lexmodelsv2/src/main/java/com/amazonaws/services/lexmodelsv2/model/transform/TranscriptFilterJsonUnmarshaller.java | 40ea1ec6d6dc41b29ad0335526416ce9fe9ede9e | [
"Apache-2.0"
] | permissive | baganda07/aws-sdk-java | fe1958ed679cd95b4c48f971393bf03eb5512799 | f19bdb30177106b5d6394223a40a382b87adf742 | refs/heads/master | 2022-11-09T21:55:43.857201 | 2022-10-24T21:08:19 | 2022-10-24T21:08:19 | 221,028,223 | 0 | 0 | Apache-2.0 | 2019-11-11T16:57:12 | 2019-11-11T16:57:11 | null | UTF-8 | Java | false | false | 2,790 | java | /*
* Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.lexmodelsv2.model.transform;
import java.math.*;
import javax.annotation.Generated;
import com.amazonaws.services.lexmodelsv2.model.*;
import com.amazonaws.transform.SimpleTypeJsonUnmarshallers.*;
import com.amazonaws.transform.*;
import com.fasterxml.jackson.core.JsonToken;
import static com.fasterxml.jackson.core.JsonToken.*;
/**
* TranscriptFilter JSON Unmarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class TranscriptFilterJsonUnmarshaller implements Unmarshaller<TranscriptFilter, JsonUnmarshallerContext> {
public TranscriptFilter unmarshall(JsonUnmarshallerContext context) throws Exception {
TranscriptFilter transcriptFilter = new TranscriptFilter();
int originalDepth = context.getCurrentDepth();
String currentParentElement = context.getCurrentParentElement();
int targetDepth = originalDepth + 1;
JsonToken token = context.getCurrentToken();
if (token == null)
token = context.nextToken();
if (token == VALUE_NULL) {
return null;
}
while (true) {
if (token == null)
break;
if (token == FIELD_NAME || token == START_OBJECT) {
if (context.testExpression("lexTranscriptFilter", targetDepth)) {
context.nextToken();
transcriptFilter.setLexTranscriptFilter(LexTranscriptFilterJsonUnmarshaller.getInstance().unmarshall(context));
}
} else if (token == END_ARRAY || token == END_OBJECT) {
if (context.getLastParsedParentElement() == null || context.getLastParsedParentElement().equals(currentParentElement)) {
if (context.getCurrentDepth() <= originalDepth)
break;
}
}
token = context.nextToken();
}
return transcriptFilter;
}
private static TranscriptFilterJsonUnmarshaller instance;
public static TranscriptFilterJsonUnmarshaller getInstance() {
if (instance == null)
instance = new TranscriptFilterJsonUnmarshaller();
return instance;
}
}
| [
""
] | |
a8e03a1c42bea2f60d7c1a8ccfdd9ab2696d75a7 | a3a583c5779c8c75af564660f64a342ef5a2c7e9 | /account-server/src/main/java/com/spark/bitrade/controller/MemberTransactionController.java | f13eca5b1f4f5393e29081288c7eed115704c5a6 | [] | no_license | Coredesing/silk-v2 | d55b2311964602ff2256e9d85112d3d21cd26168 | 7bbe0a640e370b676d1b047412b0102152e6ffde | refs/heads/master | 2022-05-24T14:26:53.218326 | 2020-04-28T03:01:25 | 2020-04-28T03:01:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,930 | java | package com.spark.bitrade.controller;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.spark.bitrade.constant.TransactionType;
import com.spark.bitrade.entity.MemberTransaction;
import com.spark.bitrade.service.MemberTransactionService;
import com.spark.bitrade.util.MessageRespResult;
import com.spark.bitrade.vo.WidthRechargeStaticsVo;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.io.Serializable;
import java.util.Date;
/**
* (MemberTransaction)控制层
*
* @author yangch
* @since 2019-06-15 16:27:30
*/
@RestController
@RequestMapping("api/v2/memberTransaction")
@Api(description = "控制层")
public class MemberTransactionController extends ApiController {
/**
* 服务对象
*/
@Resource
private MemberTransactionService memberTransactionService;
/**
* 分页查询所有数据
*
* @param size 分页.每页数量
* @param current 分页.当前页码
* @param memberTransaction 查询实体
* @return 所有数据
*/
@ApiOperation(value = "分页查询所有数据接口", notes = "分页查询所有数据接口")
@ApiImplicitParams({
@ApiImplicitParam(value = "分页.每页数量。eg:10", defaultValue = "10", name = "size", dataTypeClass = Integer.class, required = true),
@ApiImplicitParam(value = "分页.当前页码.eg:从1开始", name = "current", defaultValue = "1", dataTypeClass = Integer.class, required = true),
@ApiImplicitParam(value = "实体对象", name = "memberTransaction", dataTypeClass = MemberTransaction.class)
})
@RequestMapping(value = "/list", method = {RequestMethod.GET, RequestMethod.POST})
public MessageRespResult<IPage<MemberTransaction>> list(Integer size, Integer current, MemberTransaction memberTransaction) {
return success(this.memberTransactionService.page(new Page<>(current, size), new QueryWrapper<>(memberTransaction)));
}
/**
* 通过主键查询单条数据
*
* @param id 主键
* @return 单条数据
*/
@ApiOperation(value = "通过主键查询单条数据接口", notes = "通过主键查询单条数据接口")
@ApiImplicitParam(value = "主键", name = "id", dataTypeClass = Serializable.class, required = true)
@RequestMapping(value = "/get", method = {RequestMethod.GET, RequestMethod.POST})
public MessageRespResult<MemberTransaction> get(@RequestParam("id") Serializable id) {
return success(this.memberTransactionService.getById(id));
}
/**
* 分页查询项目方币种充值提币统计
* @param type
* @param current
* @param size
* @param startTime
* @param endTime
* @param coin
* @return
*/
@ApiOperation(value = "分页查询项目方充值提现", notes = "分页查询项目方充值提现")
@RequestMapping(value = "/memberTransctionPage", method = {RequestMethod.POST})
public MessageRespResult<IPage<WidthRechargeStaticsVo>> list(TransactionType type,
Integer current,
Integer size,
Date startTime,
Date endTime,
String coin) {
Page<WidthRechargeStaticsVo> page = new Page<>(current, size);
return success(memberTransactionService.widthRechargeStaticsVo(type,startTime,endTime,coin,page));
}
//
// /**
// * 新增数据
// *
// * @param memberTransaction 实体对象
// * @return 新增结果
// */
// @ApiOperation(value = "新增数据接口", notes = "新增数据接口")
// @ApiImplicitParam(value = "实体对象", name = "memberTransaction", dataTypeClass =MemberTransaction.class )
// @RequestMapping(value = "/add", method = {RequestMethod.GET, RequestMethod.POST})
// public MessageRespResult add(MemberTransaction memberTransaction) {
// return success(this.memberTransactionService.save(memberTransaction));
// }
//
// /**
// * 修改数据
// *
// * @param memberTransaction 实体对象
// * @return 修改结果
// */
// @ApiOperation(value = "修改数据接口", notes = "修改数据接口")
// @ApiImplicitParam(value = "实体对象", name = "memberTransaction", dataTypeClass =MemberTransaction.class )
// @RequestMapping(value = "/update", method = {RequestMethod.GET, RequestMethod.POST})
// public MessageRespResult update(MemberTransaction memberTransaction) {
// return success(this.memberTransactionService.updateById(memberTransaction));
// }
//
// /**
// * 删除数据
// *
// * @param idList 主键集合
// * @return 删除结果
// */
// @DeleteMapping
// @ApiOperation(value = "删除数据接口", notes = "删除数据接口")
// @ApiImplicitParam(value = "主键集合", name = "idList", dataTypeClass = List.class, required = true)
// @RequestMapping(value = "/delete", method = {RequestMethod.GET, RequestMethod.POST})
// public MessageRespResult delete(@RequestParam("idList") List<Serializable> idList) {
// return success(this.memberTransactionService.removeByIds(idList));
// }
} | [
"huihui123"
] | huihui123 |
628ce56679548eafa0d8c31147415621b84541d5 | 1572d01b57b2afe675eff6a37d91b73787a3c6aa | /V004_PrimeraClase.java | dd313f86c7ae82f5f7145143ac6d241f7dfbacb7 | [] | no_license | bleudp/practicas | 4986ffe5697789e15ab5cc88a2fb075250093aed | 6bf57dfeed04357a2f9be5f47ffde9dbac732179 | refs/heads/master | 2022-03-27T15:11:04.423449 | 2019-12-26T18:09:09 | 2019-12-26T18:09:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 122 | java | public class V004_PrimeraClase {
public static void main(String args[]){
System.out.print("Hola alumnos");
}
}
| [
"blueudp@localhost.localdomain"
] | blueudp@localhost.localdomain |
6bd3234e9fbffb223babb355214dbe3103e5fe03 | 54ed8259a85324dcc4c5da730267b3db4f0520a2 | /basicjava/src/exam/ScannerExam.java | 54865a7084681a734e8ea99ee62478421ca1de5c | [] | no_license | HunnuH/spring | c2c12fc7bd43fb330ca9f61be8a9c37272b27a74 | 09c4dba7d15d7752060fcc46f66bc69623492756 | refs/heads/master | 2023-09-03T04:26:58.785639 | 2021-11-08T01:27:38 | 2021-11-08T01:27:38 | 425,658,080 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 957 | java | package exam;
import java.util.Scanner;
public class ScannerExam {
public static void main(String[] args) {
Scanner Key = new Scanner(System.in);
System.out.println("****미니계산기****");
System.out.println("1.더하기");
System.out.println("2.곱하기");
System.out.println("3.빼기");
System.out.println("4.나누기");
System.out.print("연산자를 선택하세요");
int num = Key.nextInt();
if(num <=0 | num>4) {
System.out.println("잘못입력");
System.exit(0); //현재시스템을 정상 종료
} else {
System.out.print("숫자를 입력하세요");
int sco1 = Key.nextInt();
int sco2 = Key.nextInt();
int result = 0;
switch(num) {
case 1:
result = sco1+sco2;
break;
case 2:
result = sco1*sco2;
break;
case 3:
result = sco1-sco2;
break;
case 4:
result = sco1/sco2;
break;
}
System.out.println("계산결과 : "+result);
}
}
}
| [
"88477795+HunnuH@users.noreply.github.com"
] | 88477795+HunnuH@users.noreply.github.com |
318de7c12afa21e4556f96e78b19ffd66fde4612 | 330f82a175398c4c07f223e5e96341243fc66f3e | /src/main/java/org/woodship/luna/eam/CustomerView.java | 3da222321b75d0718ab8032b229a9529051dcda6 | [] | no_license | lundi326/luna | 296a6d4f048e2e78991e7b770dbc7dfaa4de7c6d | 5457910947bb885ba6c69c560f08be4997dd1283 | refs/heads/master | 2021-01-16T00:16:58.995518 | 2013-06-09T03:26:03 | 2013-06-09T03:26:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,747 | java | package org.woodship.luna.eam;
import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Scope;
import org.vaadin.dialogs.ConfirmDialog;
import org.woodship.luna.util.Utils;
import com.vaadin.addon.jpacontainer.EntityItem;
import com.vaadin.addon.jpacontainer.EntityProvider;
import com.vaadin.addon.jpacontainer.JPAContainer;
import com.vaadin.data.Property;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.data.util.filter.Like;
import com.vaadin.data.util.filter.Or;
import com.vaadin.event.FieldEvents.TextChangeEvent;
import com.vaadin.event.FieldEvents.TextChangeListener;
import com.vaadin.event.ItemClickEvent;
import com.vaadin.event.ItemClickEvent.ItemClickListener;
import com.vaadin.navigator.View;
import com.vaadin.navigator.ViewChangeListener.ViewChangeEvent;
import com.vaadin.ui.Alignment;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.ComponentContainer;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.Table;
import com.vaadin.ui.Table.RowHeaderMode;
import com.vaadin.ui.TextField;
import com.vaadin.ui.UI;
import com.vaadin.ui.VerticalLayout;
@SuppressWarnings("serial")
@org.springframework.stereotype.Component
@Scope("prototype")
public class CustomerView extends VerticalLayout implements ComponentContainer, View{
public static final String NAME = "customer";
@Autowired()
@Qualifier("customerEntityProvider")
EntityProvider<Customer> mainProvider;
private Table mainTable;
private TextField searchField;
private Button newButton;
private Button deleteButton;
private Button editButton;
private JPAContainer<Customer> mainContainer;
private String textFilter;
@PostConstruct
public void PostConstruct(){
mainContainer = new JPAContainer<Customer>(Customer.class);
mainContainer.setEntityProvider(mainProvider);
mainContainer.getEntityProvider();
buildMainArea();
}
private void buildMainArea() {
this.setSizeFull();
mainTable = new Table(null, mainContainer);
mainTable.setSelectable(true);
mainTable.setImmediate(true);
mainTable.setRowHeaderMode(RowHeaderMode.INDEX);
// mainTable.setColumnWidth(null, 24);//设置序号列宽度
mainTable.addValueChangeListener(new Property.ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
setModificationsEnabled(event.getProperty().getValue() != null);
}
private void setModificationsEnabled(boolean b) {
deleteButton.setEnabled(b);
editButton.setEnabled(b);
}
});
mainTable.setSizeFull();
// personTable.setSelectable(true);
mainTable.addItemClickListener(new ItemClickListener() {
@Override
public void itemClick(ItemClickEvent event) {
if (event.isDoubleClick()) {
mainTable.select(event.getItemId());
}
}
});
Utils.configTableHead(mainTable, Customer.class);
HorizontalLayout toolbar = new HorizontalLayout();
newButton = new Button("增加");
newButton.addClickListener(new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
final EntityItem<Customer> newItemItem = mainContainer.createEntityItem(new Customer());
CustomerEditor personEditor = new CustomerEditor(newItemItem,mainContainer);
personEditor.center();
UI.getCurrent().addWindow(personEditor);
}
});
deleteButton = new Button("删除");
deleteButton.addClickListener(new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
ConfirmDialog.show(UI.getCurrent(),"警告","确定要删除吗?删除后将不能恢复!","是","否",
new ConfirmDialog.Listener() {
@Override
public void onClose(ConfirmDialog dialog) {
if(dialog.isConfirmed()){
mainContainer.removeItem(mainTable.getValue());
}
}
});
}
});
deleteButton.setEnabled(false);
editButton = new Button("编辑");
editButton.addClickListener(new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
CustomerEditor pe = new CustomerEditor(mainTable.getItem(mainTable.getValue()),mainContainer);
pe.center();
UI.getCurrent().addWindow(pe);
}
});
editButton.setEnabled(false);
searchField = new TextField();
searchField.setInputPrompt("输入型号搜索");
searchField.addTextChangeListener(new TextChangeListener() {
@Override
public void textChange(TextChangeEvent event) {
textFilter = event.getText();
updateFilters();
}
});
toolbar.addComponent(newButton);
toolbar.addComponent(deleteButton);
toolbar.addComponent(editButton);
toolbar.addComponent(searchField);
toolbar.setWidth("100%");
toolbar.setExpandRatio(searchField, 1);
toolbar.setComponentAlignment(searchField, Alignment.TOP_RIGHT);
toolbar.setMargin(true);
VerticalLayout verticalLayout = new VerticalLayout();
this.addComponent(verticalLayout);
verticalLayout.addComponent(toolbar);
verticalLayout.addComponent(mainTable);
verticalLayout.setExpandRatio(mainTable, 1);
verticalLayout.setSizeFull();
}
private void updateFilters() {
mainContainer.setApplyFiltersImmediately(false);
mainContainer.removeAllContainerFilters();
if (textFilter != null && !textFilter.equals("")) {
Like ia =new Like("cusNum", "%"+textFilter + "%", false);
Like ib =new Like("name", "%"+textFilter + "%", false);
Like ic =new Like("remark", "%"+textFilter + "%", false);
Or or = new Or(ia,ib,ic);
mainContainer.addContainerFilter(or);
}
mainContainer.applyFilters();
}
@Override
public void enter(ViewChangeEvent event) {
}
}
| [
"67892238@qq.com"
] | 67892238@qq.com |
163d0212ab2b15038e15a9740668a358a2ab0a0c | d04954936e2e71928d4fb51383f2d192d307d160 | /esql-frontend/src/test/java/com/exxeta/iss/sonar/esql/api/tree/CreateRoutineTreeImplTest.java | bf9e66a05778657251444625312b16190e9cb443 | [
"Apache-2.0"
] | permissive | SergeyPugachyov/sonar-esql-plugin | 00678376e1012f36ffe4824d6598af9a1a70a314 | 1c632b64e128b50907d5b177ef8cb50754b976a2 | refs/heads/master | 2020-05-03T01:48:50.320241 | 2018-12-08T14:20:51 | 2018-12-08T14:20:51 | 158,373,931 | 0 | 0 | null | 2018-11-20T10:47:44 | 2018-11-20T10:47:44 | null | UTF-8 | Java | false | false | 1,922 | java | /*
* Sonar ESQL Plugin
* Copyright (C) 2013-2018 Thomas Pohl and EXXETA AG
* http://www.exxeta.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.exxeta.iss.sonar.esql.api.tree;
import static com.exxeta.iss.sonar.esql.utils.TestUtils.createContext;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.Set;
import java.util.stream.Collectors;
import org.junit.Test;
import org.sonar.api.batch.fs.InputFile;
import com.exxeta.iss.sonar.esql.api.tree.Tree;
import com.exxeta.iss.sonar.esql.api.visitors.EsqlVisitorContext;
import com.exxeta.iss.sonar.esql.tree.impl.statement.CreateRoutineTreeImpl;
import com.exxeta.iss.sonar.esql.utils.TestUtils;
public class CreateRoutineTreeImplTest {
@Test
public void should_return_outer_scope_symbol_usages() throws Exception {
InputFile inputFile = TestUtils.createTestInputFile("src/test/resources/tree/", "outer_scope_variables.esql");
final EsqlVisitorContext context = createContext(inputFile);
CreateRoutineTreeImpl functionTree = (CreateRoutineTreeImpl) context.getTopTree().esqlContents().descendants().filter(tree -> tree.is(Tree.Kind.CREATE_PROCEDURE_STATEMENT)).findFirst().get();
Set<String> usages = functionTree.outerScopeSymbolUsages().map(usage -> usage.identifierTree().name()).collect(Collectors.toSet());
assertThat(usages).containsExactlyInAnyOrder("a", "b", "writeOnly");
}
}
| [
"thomas.pohl@exxeta.de"
] | thomas.pohl@exxeta.de |
7b95be1a3c416200052fbbb0de638f7c74db01e3 | fff78f29843690ed1bf0175b7c34b9e0e750afcc | /ex03/src/main/java/ru/otus/borodkin/configs/AppProps.java | 0ed9c1490e87e2e8b7cae0f09e1ae08eb1e96a9b | [] | no_license | oborodkin/2020-11-otus-spring-borodkin | 50a178349e6b0fd0b9890a8b52e0e7c9ce7a629b | fa3b05b3a4b86e0b0389951b7fc12224bb7fba9e | refs/heads/master | 2023-03-26T10:22:30.579714 | 2021-03-23T15:58:05 | 2021-03-23T15:58:05 | 315,665,121 | 0 | 0 | null | 2021-03-23T15:58:06 | 2020-11-24T14:56:49 | Java | UTF-8 | Java | false | false | 413 | java | package ru.otus.borodkin.configs;
import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import java.util.Locale;
@ConfigurationProperties(prefix = "application")
public class AppProps {
@Getter
@Setter
private String filename;
@Getter
@Setter
private int passgrade;
@Getter
@Setter
private Locale locale;
}
| [
"o.borodkin@gmail.com"
] | o.borodkin@gmail.com |
4a79abff294ededd260584e1b4b4c04197f84b48 | 5ecd15baa833422572480fad3946e0e16a389000 | /framework/Pipeline-Open/subsystems/pipeline/test/tests/java/com/volantis/xml/expression/sequence/SimpleSequenceTestCase.java | da840e0387443d967738be9a8012ca1ff119f0d9 | [] | no_license | jabley/volmobserverce | 4c5db36ef72c3bb7ef20fb81855e18e9b53823b9 | 6d760f27ac5917533eca6708f389ed9347c7016d | refs/heads/master | 2021-01-01T05:31:21.902535 | 2009-02-04T02:29:06 | 2009-02-04T02:29:06 | 38,675,289 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 12,224 | java | /*
This file is part of Volantis Mobility Server.
Volantis Mobility Server is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Volantis Mobility Server 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 Volantis Mobility Server. If not, see <http://www.gnu.org/licenses/>.
*/
/* ----------------------------------------------------------------------------
* (c) Volantis Systems Ltd 2003.
* ----------------------------------------------------------------------------
*/
package com.volantis.xml.expression.sequence;
import com.volantis.synergetics.testtools.TestCaseAbstract;
import com.volantis.xml.expression.ExpressionFactory;
import com.volantis.xml.expression.SequenceIndexOutOfBoundsException;
import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.Locator;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* Simple test case.
*/
public class SimpleSequenceTestCase
extends TestCaseAbstract {
private ExpressionFactory factory;
protected void setUp() throws Exception {
super.setUp();
factory = ExpressionFactory.getDefaultInstance();
}
protected SimpleSequence createSequence(Item[] items) {
return new SimpleSequence(factory, items);
}
protected Item[] createItems(String[] values) {
Item[] items;
if (values != null) {
items = new Item[values.length];
for (int i = 0;
i < values.length;
i++) {
items[i] = factory.createStringValue(values[i]);
}
} else {
items = null;
}
return items;
}
public void testGetLength() throws Exception {
String[] oneItem = {"In"};
String[] manyItems = {"In", "the", "town", "where", "I", "was", "born",
"lived", "a", "man", "who", "sailed", "the",
"seas"};
Sequence nil = createSequence((Item[]) null);
Sequence empty = createSequence(new Item[0]);
Sequence one = createSequence(createItems(oneItem));
Sequence many = createSequence(createItems(manyItems));
assertEquals("null length not as",
0,
nil.getLength());
assertEquals("empty length not as",
0,
empty.getLength());
assertEquals("one length not as",
oneItem.length,
one.getLength());
assertEquals("many length not as",
manyItems.length,
many.getLength());
}
public void testGetItem() throws Exception {
String[] oneItem = {"In"};
String[] manyItems = {"In", "the", "town", "where", "I", "was", "born",
"lived", "a", "man", "who", "sailed", "the",
"seas"};
Sequence nil = createSequence(null);
Sequence empty = createSequence(new Item[0]);
Sequence one = createSequence(createItems(oneItem));
Sequence many = createSequence(createItems(manyItems));
try {
nil.getItem(1);
fail("null getItem() should have thrown an exception");
} catch (SequenceIndexOutOfBoundsException e) {
// Expected behaviour
}
try {
empty.getItem(1);
fail("empty getItem() should have thrown an exception");
} catch (SequenceIndexOutOfBoundsException e) {
// Expected behaviour
}
try {
one.getItem(0);
fail("one getItem(0) should have thrown an exception");
} catch (SequenceIndexOutOfBoundsException e) {
// Expected behaviour
}
try {
one.getItem(2);
fail("one getItem(2) should have thrown an exception");
} catch (SequenceIndexOutOfBoundsException e) {
// Expected behaviour
}
assertEquals("one.getItem(1) not as",
oneItem[0],
one.getItem(1).stringValue().asJavaString());
for (int i = 0;
i < manyItems.length;
i++) {
assertEquals("many.getItem(" + (i + 1) + ") not as",
manyItems[i],
many.getItem(i + 1).stringValue().asJavaString());
}
}
public void testStringValue() throws Exception {
String[] oneItem = {"And"};
String[] manyItems = {"And", "he", "told", "us", "of", "his", "life",
"in", "the", "land", "of", "submarines"};
final String MANY = "And he told us of his life " +
"in the land of submarines";
Sequence nil = createSequence(null);
Sequence empty = createSequence(new Item[0]);
Sequence one = createSequence(createItems(oneItem));
Sequence many = createSequence(createItems(manyItems));
assertEquals("null stringValue not as",
"",
nil.stringValue().asJavaString());
assertEquals("empty stringValue not as",
"",
empty.stringValue().asJavaString());
assertEquals("one stringValue not as",
oneItem[0],
one.stringValue().asJavaString());
assertEquals("many stringValue not as",
MANY,
many.stringValue().asJavaString());
}
public void testStreamContents() throws Exception {
final StringBuffer output = new StringBuffer();
String[] oneItem = {"So"};
String[] manyItems = {"So", "we", "set", "of", "to", "the", "sun",
"until", "we", "found", "the", "sea", "of",
"green"};
final String MANY = "So we set of to the sun " +
"until we found the sea of green";
Sequence nil = createSequence(null);
Sequence empty = createSequence(new Item[0]);
Sequence one = createSequence(createItems(oneItem));
Sequence many = createSequence(createItems(manyItems));
ContentHandler handler = new ContentHandler() {
public void setDocumentLocator(Locator locator) {
}
public void startDocument() {
}
public void endDocument() {
}
public void startPrefixMapping(String s,
String s1) {
}
public void endPrefixMapping(String s) {
}
public void startElement(String s,
String s1,
String s2,
Attributes attributes) {
}
public void endElement(String s,
String s1,
String s2) {
}
public void characters(char[] chars,
int offset,
int len) {
output.append(chars, offset, len);
}
public void ignorableWhitespace(char[] chars,
int offset,
int len) {
}
public void processingInstruction(String s,
String s1) {
}
public void skippedEntity(String s) {
}
};
nil.streamContents(handler);
assertEquals("null streamContents not as",
"",
output.toString());
output.setLength(0);
empty.streamContents(handler);
assertEquals("empty streamContents not as",
"",
output.toString());
output.setLength(0);
one.streamContents(handler);
assertEquals("one streamContents not as",
oneItem[0],
output.toString());
output.setLength(0);
many.streamContents(handler);
assertEquals("many streamContents not as",
MANY,
output.toString());
}
public void testGetSequence() throws Exception {
String[] oneItem = {"There"};
String[] manyItems = {"There", "we", "lived", "beneath", "the",
"waves", "in", "our", "yellow", "submarine"};
Sequence nil = createSequence(null);
Sequence empty = createSequence(new Item[0]);
Sequence one = createSequence(createItems(oneItem));
Sequence many = createSequence(createItems(manyItems));
assertSame("null getSequence not as",
nil,
nil.getSequence());
assertSame("empty getSequence not as",
empty,
empty.getSequence());
assertSame("one getSequence not as",
one,
one.getSequence());
assertSame("many getSequence not as",
many,
many.getSequence());
}
public void testSequenceConstants() throws Exception {
assertEquals("EMPTY getLength not as",
0,
Sequence.EMPTY.getLength());
assertEquals("EMPTY stringValue not as",
"",
Sequence.EMPTY.stringValue().asJavaString());
}
public void testIterator() throws Exception {
String[] oneItem = {"We"};
String[] manyItems = {"We", "all", "live", "in", "a",
"yellow", "submarine"};
SimpleSequence nil = createSequence(null);
SimpleSequence empty = createSequence(new Item[0]);
SimpleSequence one = createSequence(createItems(oneItem));
SimpleSequence many = createSequence(createItems(manyItems));
Iterator iterator;
assertFalse("null sequence iterator should not have next",
nil.iterator().hasNext());
assertFalse("empty sequence iterator should not have next",
empty.iterator().hasNext());
iterator = one.iterator();
assertTrue("one sequence iterator should have next",
iterator.hasNext());
assertSame("one sequence iterator next not as",
one.getItem(1),
iterator.next());
assertFalse("one sequence iterator should not have next",
iterator.hasNext());
iterator = many.iterator();
for (int i = 0; i < many.getLength(); i++) {
assertTrue("many sequence [" + i + "] iterator should have next",
iterator.hasNext());
assertSame("many sequence [" + i + "] next not as",
many.getItem(i + 1),
iterator.next());
}
assertFalse("many sequence iterator should not have next",
iterator.hasNext());
try {
iterator.next();
fail("Should have had an exception");
} catch (NoSuchElementException e) {
// Expected condition
}
}
}
/*
===========================================================================
Change History
===========================================================================
$Log$
20-Oct-04 5438/1 philws VBM:2004082706 Transfer Pipeline source into MCS
31-Jul-03 222/1 philws VBM:2003071802 New pipeline API and implementation of the equals and not equals expression feature
===========================================================================
*/
| [
"iwilloug@b642a0b7-b348-0410-9912-e4a34d632523"
] | iwilloug@b642a0b7-b348-0410-9912-e4a34d632523 |
7a62799a2547f5103d13aee7df5c20f3560d2ccc | be73270af6be0a811bca4f1710dc6a038e4a8fd2 | /crash-reproduction-moho/results/MATH-98b-1-3-FEMO-WeightedSum:TestLen:CallDiversity/org/apache/commons/math/linear/BigMatrixImpl_ESTest.java | 974f2744dc4e2e2be6b3da1088a596167d1a7a8a | [] | no_license | STAMP-project/Botsing-multi-objectivization-using-helper-objectives-application | cf118b23ecb87a8bf59643e42f7556b521d1f754 | 3bb39683f9c343b8ec94890a00b8f260d158dfe3 | refs/heads/master | 2022-07-29T14:44:00.774547 | 2020-08-10T15:14:49 | 2020-08-10T15:14:49 | 285,804,495 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 934 | java | /*
* This file was automatically generated by EvoSuite
* Fri Apr 03 13:27:45 UTC 2020
*/
package org.apache.commons.math.linear;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.evosuite.runtime.EvoAssertions.*;
import java.math.BigDecimal;
import org.apache.commons.math.linear.BigMatrixImpl;
import org.evosuite.runtime.EvoRunner;
import org.evosuite.runtime.EvoRunnerParameters;
import org.junit.runner.RunWith;
@RunWith(EvoRunner.class) @EvoRunnerParameters(useVFS = true, useJEE = true)
public class BigMatrixImpl_ESTest extends BigMatrixImpl_ESTest_scaffolding {
@Test(timeout = 4000)
public void test0() throws Throwable {
BigMatrixImpl bigMatrixImpl0 = new BigMatrixImpl(1540, 1540);
BigDecimal[][] bigDecimalArray0 = new BigDecimal[9][0];
bigMatrixImpl0.data = bigDecimalArray0;
// Undeclared exception!
bigMatrixImpl0.operate(bigDecimalArray0[0]);
}
}
| [
"pouria.derakhshanfar@gmail.com"
] | pouria.derakhshanfar@gmail.com |
083118df25f9e743af8ae6a37087a16333b91f5a | 82e60c43e9b3be702935861adca8d8a4259fb38d | /src/com/neptunesoftware/reuseableClasses/ResponseConstants.java | 2b4c850577e90b2bf9821ffd9697e7b2886106fc | [] | no_license | Linda-hub-spec/ussd | c5449ec1b78161067387390195c2afcae859f042 | a20e66c9726e2b1e800dbaa582a869326c8680af | refs/heads/master | 2022-06-19T06:41:28.335231 | 2020-05-07T13:46:33 | 2020-05-07T13:46:33 | 262,061,914 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,211 | java | package com.neptunesoftware.reuseableClasses;
public class ResponseConstants {
/*
* Response Codes and Messages
*/
// success
public static final String SUCCEESS_CODE = "00";
public static final String SUCCEESS_CODE_2 = "200";
public static final String SUCCEESS_MESSAGE = "Successful";
// not found
public static final String NOT_FOUND_CODE = "01";
public static final String NOT_FOUND_MESSAGE = "Not Found";
// query error
public static final String QUERY_CODE = "02";
public static final String QUERY_MESSAGE = "Check your query";
// exception
public static final String EXCEPTION_CODE = "03";
// procedure error
public static final String PROCEDURE_CODE = "04";
public static final String PROCEDURE_MESSAGE = "Procedure failed with response ";
// already exist
public static final String EXIST_CODE = "05";
public static final String EXIST_MESSAGE = "Record already exist ";
// web service unavailable
public static final String WEBSERVICE_UNAVAILABLE_CODE = "06";
public static final String WEBSERVICE_UNAVAILABLE_MESSAGE = "Web Service unreachable";
// web service returned response code other than success
public static final String WEBSERVICE_FAILED_RESPONSE_CODE = "07";
// converting string to java object
public static final String UNMARSHAL_CODE = "08";
public static final String UNMARSHAL_MESSAGE = "Unmarshalling/Deserialize error: Could not convert String to class object."
+ "\n Check xml/json String to object class created";
// mandatory parameter has not been passed
public static final String MANDATORY_CODE = "09";
public static final String MANDATORY_MESSAGE = "A mandatory parameter has not been passed: ";
//file error
public static final String FILE_ERROR_CODE = "10";
public static final String FILE_ERROR_MESSAGE = "Cannot read from file. Check whether it exist: ";
//insufficient funds
public static final String INSUFFICIENT_CODE = "11";
public static final String INSUFFICIENT_MESSAGE = "Insufficient Funds";
// zenith web service returned response calling authentication endpoint
public static final String ZENITH_AUTHENTICATION_MESSAGE = "00-Success";
public static final String CREDIT_SCORE_RATING_SUCCESS = "GOOD";
public static final String CREDIT_SCORE_RATING_FAILURE = "BAD";
public static final String SERVICE_TYPE_CREDIT_BUREAU = "CREDIT_BUREAU_SCORE";
// 00 - Success
// 01 - Not found
// 02 - wrong query
// 03 - exception
// 04 - procedure failure
// 05 - record already exist
// 06 - Zenith's web service is unreachable
// 07 - Zenith's web service returned a failure response code
// 08 - unexpected response received from Zenith's web service
// 09 - mandatory parameter has not been passed
/*
* Database Types
*/
// oracle
public static final String ORACLE_DATABASE = "ORACLE";
public static final String ORACLE_DRIVER = "oracle.jdbc.driver.OracleDriver";
public static final String ORACLE_CONNECTION_URL_PREFIX = "jdbc:oracle:thin:@";
// sybase
public static final String SYBASE_DATABASE = "SYBASE";
public static final String SYBASE_DRIVER = "com.sybase.jdbc3.jdbc.SybDriver";
public static final String SYBASE_CONNECTION_URL_PREFIX = "jdbc:sybase:Tds:";
}
| [
"linda@users.noreply.gitbash.com"
] | linda@users.noreply.gitbash.com |
0911282f55f754de011e2e5121edc3063498be06 | 26b7f30c6640b8017a06786e4a2414ad8a4d71dd | /src/number_of_direct_superinterfaces/i10651.java | 5713648657f7ab18390fb2caa037f5cf46374e5a | [] | no_license | vincentclee/jvm-limits | b72a2f2dcc18caa458f1e77924221d585f23316b | 2fd1c26d1f7984ea8163bc103ad14b6d72282281 | refs/heads/master | 2020-05-18T11:18:41.711400 | 2014-09-14T04:25:18 | 2014-09-14T04:25:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 69 | java | package number_of_direct_superinterfaces;
public interface i10651 {} | [
"vincentlee.dolbydigital@yahoo.com"
] | vincentlee.dolbydigital@yahoo.com |
d0bffcf3cf38c4be1340c8cc38e0fd9497819521 | de7516f4cd9034a27dd5426017fe93e2dae51067 | /src/java/prodotti/action/_VisualizzaDettaglioProdottoA.java | f66137411fece9babf4b43022f683de68749a50d | [] | no_license | enrico84/Proj_Struts1_GestoreOrdini | 93daa6ab7e12dbbe5aff818c37eccf6caccf307d | 2857bba787b2c18dd9b1c4991fa1fb70531347d5 | refs/heads/master | 2016-09-10T18:27:11.064689 | 2015-02-19T20:37:30 | 2015-02-19T20:37:30 | 31,035,307 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,105 | 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 prodotti.action;
import entity.Prodotto;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import prodotti.action_form.ModProdottoAF;
/**
*
* @author Enrico
*/
public class _VisualizzaDettaglioProdottoA extends Action {
public ActionForward execute(ActionMapping actionMapping, ActionForm actionForm,
HttpServletRequest servletRequest, HttpServletResponse servletResponse) throws Exception {
ModProdottoAF modProdottoAF = (ModProdottoAF) actionForm;
Prodotto prodotto = (Prodotto) servletRequest.getAttribute("prodotto");
modProdottoAF.setProdotto(prodotto);
return actionMapping.findForward("next");
}
}
| [
"enrico8484@gmail.com"
] | enrico8484@gmail.com |
7c501493808701b1598b4494bc73504bdb004a0c | 74172a9976ca1d11afc73864e8117ed0d1b74fce | /UltraEmojiCombat/src/ultraemojicombat/Lutador.java | 5ed4d7775c63c1c80c88c44b66a238a83fc04cfe | [] | no_license | AlbertoRTO/Combate | 8ac2ae9edbf81d9aa0984b1d34348996cb561d75 | 9405f27a382f4419f51382e6e75a493d15207d1c | refs/heads/master | 2020-03-26T04:56:00.024007 | 2018-08-13T04:27:41 | 2018-08-13T04:27:41 | 144,529,358 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,618 | java | package ultraemojicombat;
public class Lutador {
//Atributos
private String nome;
private String nacionalidade;
private int idade;
private float altura;
private float peso;
private String categoria;
private int vitorias, derrotas, empates;
//Metodos Publicos
public void apresentar(){
System.out.println("--------------------------------------");
System.out.println("Chegou a Hora! Aprensetamos o lutador" + this.getNome());
System.out.println("Diretamente de " + this.getNacionalidade());
System.out.println("com " + this.getIdade() + " anos e " + this.altura);
System.out.println("pesando " + this.getPeso() + " KG");
System.out.println(this.getVitorias() + " Vitorias");
System.out.println(this.getDerrotas() + " Derrotas");
System.out.println(this.getEmpates() + " Empates");
}
public void status(){
System.out.println("---------------------------------------");
System.out.println(this.getNome() + "e um peso " + this.getCategoria());
System.out.println("Ganhou " + this.getVitorias() + " Vezes");
System.out.println("Perdeu " + this.getDerrotas() + " Vezes");
System.out.println("Empatou " + this.getEmpates() + " Vezes" );
}
public void ganharLuta(){
this.setVitorias(this.getVitorias() + 1);
}
public void perderLuta(){
this.setDerrotas(this.getDerrotas() + 1);
}
public void empatarLuta(){
this.setEmpates(this.getEmpates() + 1);
}
//Metodos Especiais
public Lutador(String no, String na, int id,
float al, float pe, int vi,
int de, int em) {
this.nome = no;
this.nacionalidade = na;
this.idade = id;
this.altura = al;
this.setPeso(pe);
this.vitorias = vi;
this.derrotas = de;
this.empates = em;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getNacionalidade() {
return nacionalidade;
}
public void setNacionalidade(String nacionalidade) {
this.nacionalidade = nacionalidade;
}
public int getIdade() {
return idade;
}
public void setIdade(int idade) {
this.idade = idade;
}
public float getAltura() {
return altura;
}
public void setAltura(float altura) {
this.altura = altura;
}
public float getPeso() {
return peso;
}
public void setPeso(float peso) {
this.peso = peso;
this.setCategoria();
}
public String getCategoria() {
return categoria;
}
private void setCategoria() {
if (this.peso < 52.2){
this.categoria = "Invalido";
}else if (this.peso <= 70.3){
this.categoria = "Leve";
}else if (this.peso <= 83.9){
this.categoria = "Medio";
}else if (this.peso <= 120.2){
this.categoria = "Pesado";
}else{
this.categoria = "Invalido";
}
}
public int getVitorias() {
return vitorias;
}
public void setVitorias(int vitorias) {
this.vitorias = vitorias;
}
public int getDerrotas() {
return derrotas;
}
public void setDerrotas(int derrotas) {
this.derrotas = derrotas;
}
public int getEmpates() {
return empates;
}
public void setEmpates(int empates) {
this.empates = empates;
}
}
| [
"30836845+AlbertoRTO@users.noreply.github.com"
] | 30836845+AlbertoRTO@users.noreply.github.com |
f941c7f41d80271961ba5aae538f9e899df9a078 | 30bb992e769255d91750b41c8bbe96f07ccd83e0 | /src/br/com/usb/VolleySingleton.java | 920006021523d8a03305cbaf30909e07f5828728 | [] | no_license | fernando1000/usb | 02f0dd696636f0ce5d426b15400f16036b1d4f54 | b29c3bdf083d08e64331662e1761819b1299733f | refs/heads/master | 2021-10-19T01:36:07.027086 | 2019-02-17T00:10:33 | 2019-02-17T00:10:33 | 108,420,499 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,650 | java | package br.com.usb;
import android.content.Context;
import android.graphics.Bitmap;
import android.support.v4.util.LruCache;
import com.android.volley.RequestQueue;
import com.android.volley.toolbox.ImageLoader;
import com.android.volley.toolbox.Volley;
/**
*
* Classe que mantem a fila de execucao de requisicoes do Volley.
*
* O Google recomenda que a class seja um singleton, para gerenciar filas de execucao.
*
*
* @author vagner
*
*/
public class VolleySingleton {
private static VolleySingleton instance = null;
//Fila de execucao
private RequestQueue requestQueue;
//Image Loader
private ImageLoader imageLoader;
private VolleySingleton(Context context){
requestQueue = Volley.newRequestQueue(context);
imageLoader = new ImageLoader(this.requestQueue,
new ImageLoader.ImageCache() {
// Usando LRU (Last Recent Used) Cache
private final LruCache<String, Bitmap>
mCache = new LruCache<String, Bitmap>(10);
public void putBitmap(
String url, Bitmap bitmap) {
mCache.put(url, bitmap);
}
public Bitmap getBitmap(String url) {
return mCache.get(url);
}
});
}
public static VolleySingleton getInstance(Context context){
if(instance == null){
instance = new VolleySingleton(context);
}
return instance;
}
public RequestQueue getRequestQueue(){
return this.requestQueue;
}
public ImageLoader getImageLoader(){
return this.imageLoader;
}
}
| [
"fernandopereira08@gmail.com"
] | fernandopereira08@gmail.com |
1be3dc01e73c9bbc9cfb8acb51d3956f99cb2ec4 | 1dab053b8275726265668848b8a126051152bbdc | /app/src/main/java/com/creative/fuelmeter/appdata/AppConstant.java | 0a15e722757016888552f377f5e41664ed829b21 | [] | no_license | jubayer23/FuelMeter | cced31bb8b3996ad0d7dbd4198cda1520c97c53c | 87edcecf505bc3c1f34160779e73e45eae43b608 | refs/heads/master | 2020-12-31T05:24:14.836131 | 2016-05-06T09:55:21 | 2016-05-06T09:55:21 | 58,197,991 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 119 | java | package com.creative.fuelmeter.appdata;
/**
* Created by comsol on 11/8/2015.
*/
public class AppConstant {
}
| [
"mohammadjubayer999@gmail.com"
] | mohammadjubayer999@gmail.com |
1a0cb088c4be8f84d3c452aa10d463bd57930b60 | 9998b76f6574afe0b6dcc1dbd631416bff752aaf | /src/cn/jiuling/recog/test/HttpRequestDemo.java | ec184fa4b833a02b9dee826730378cf8ed3af523 | [] | no_license | shixiutingfen/u2interface | a868d4d5367b615f21a04afb0798486eac1712b4 | 6b557ff4866031ec3b2650c1a07b2d8e8c9136ca | refs/heads/master | 2021-04-27T18:36:06.193309 | 2018-02-22T03:55:32 | 2018-02-22T03:55:32 | 122,343,549 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,635 | java | package cn.jiuling.recog.test;
import java.io.File;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.SocketTimeoutException;
import org.apache.commons.httpclient.DefaultHttpMethodRetryHandler;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpConnectionManager;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.httpclient.MultiThreadedHttpConnectionManager;
import org.apache.commons.httpclient.cookie.CookiePolicy;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.methods.StringRequestEntity;
import org.apache.commons.httpclient.params.HttpConnectionManagerParams;
import org.apache.commons.httpclient.params.HttpMethodParams;
import org.apache.log4j.Logger;
import com.loocme.sys.entities.HttpManagerParams;
import com.loocme.sys.util.FileUtil;
import cn.jiuling.recog.manager.util.JSONUtils;
import net.sf.json.JSONObject;
public class HttpRequestDemo
{
private static Logger logger = Logger.getLogger(HttpRequestDemo.class);
private static final String HTTP_PREFIX = "http://192.168.0.66:20280";
public static void main(String[] args)
{
// System.out.println(addVideoObjextTask());
// System.out.println(getVideoObjectTaskList());
// System.out.println(pauseVideoObjectTask());
// System.out.println(continueVideoObjectTask());
// System.out.println(deleteVideoObjectTask());
//System.out.println(extractFromPicture());
addTrafficTask();
}
/**
* 添加结构化任务
*/
public static String addVideoObjextTask()
{
String url = "/rest/taskManage/addVideoObjextTask";
JSONObject params = new JSONObject();
// 添加离线任务
// params.put("serialnumber", "9999999999");
// params.put("type", "objext");
// params.put("url", "file:///u2s/manager/compare_resource/tt.avi");
// 添加实时任务
params.put("serialnumber", "9999999999");
params.put("type", "objext");
params.put("url", "rtmp://192.168.0.31/live6");
return postContent(url, params.toString());
}
/**
* 添加结构化任务
*/
public static String addTrafficTask()
{
String url = "/rest/taskManage/addTrafficTask";
JSONObject params = new JSONObject();
// 添加离线任务
// params.put("serialnumber", "9999999999");
// params.put("type", "objext");
// params.put("url", "file:///u2s/manager/compare_resource/tt.avi");
// 添加实时任务
params.put("serialnumber", "9999999999");
params.put("type", "objext");
String path = HttpRequestDemo.class.getClassLoader().getResource("vsd_smart_traffic_param.json").getPath();
String defaultParam = JSONUtils.readJsonFile(path);
params.put("param", defaultParam);
return postContent(url, params.toString());
}
/**
* 获取结构化任务状态
*/
public static String getVideoObjectTaskList()
{
String url = "/rest/taskManage/getVideoObjectTaskList";
JSONObject params = new JSONObject();
params.put("serialnumber", "9999999999");
params.put("type", "objext");
return postContent(url, params.toString());
}
/**
* 停止
*/
public static String pauseVideoObjectTask()
{
String url = "/rest/taskManage/pauseVideoObjectTask";
JSONObject params = new JSONObject();
params.put("serialnumber", "9999999999");
return postContent(url, params.toString());
}
/**
* 继续
*/
public static String continueVideoObjectTask()
{
String url = "/rest/taskManage/continueVideoObjectTask";
JSONObject params = new JSONObject();
params.put("serialnumber", "9999999999");
return postContent(url, params.toString());
}
/**
* 删除任务
*/
public static String deleteVideoObjectTask()
{
String url = "/rest/taskManage/deleteVideoObjectTask";
JSONObject params = new JSONObject();
params.put("serialnumber", "9999999999");
return postContent(url, params.toString());
}
/**
* 获取特征值
*/
public static String extractFromPicture()
{
String url = "/rest/feature/extractFromPicture";
JSONObject params = new JSONObject();
params.put("objtype", "1");
params.put("picture", FileUtil.read(new File("D:/temp/picturebase64.txt")));
return postContent(url, params.toString());
}
public static HttpClient _client;
static
{
HttpManagerParams params = new HttpManagerParams();
HttpConnectionManagerParams managerParams = new HttpConnectionManagerParams();
managerParams.setConnectionTimeout(params.getConnectionTimeout());
managerParams.setSoTimeout(params.getSoTimeout());
managerParams.setStaleCheckingEnabled(params.getStaleCheckEnabled());
managerParams.setTcpNoDelay(params.getTcpNoDelay());
managerParams.setDefaultMaxConnectionsPerHost(
params.getDefaultMaxConnectionsPerHost());
managerParams.setMaxTotalConnections(params.getMaxTotalConnections());
managerParams.setParameter(HttpMethodParams.RETRY_HANDLER,
new DefaultHttpMethodRetryHandler(0, false));
HttpConnectionManager _connectionManager = new MultiThreadedHttpConnectionManager();
_connectionManager.setParams(managerParams);
_client = new HttpClient(_connectionManager);
}
public static String postContent(String url, String content)
{
logger.info("开始http调用地址:" + url);
PostMethod method = new PostMethod(HTTP_PREFIX + url);
method.addRequestHeader("Connection", "Keep-Alive");
method.addRequestHeader("Content-Type", "application/json");
method.getParams().setContentCharset("UTF-8");
method.getParams().setCookiePolicy(CookiePolicy.BROWSER_COMPATIBILITY);
method.getParams().setUriCharset("UTF-8");
try
{
method.setRequestEntity(new StringRequestEntity(content,
"application/json", "UTF-8"));
}
catch (UnsupportedEncodingException e)
{
e.printStackTrace();
return null;
}
try
{
int statusCode = _client.executeMethod(method);
logger.info("返回http响应码:" + statusCode);
if (statusCode != HttpStatus.SC_OK)
{
logger.error("请求失败,http status = " + statusCode);
return null;
}
String respStr = method.getResponseBodyAsString();
logger.info("响应信息:" + respStr);
return respStr;
}
catch (SocketTimeoutException e)
{
e.printStackTrace();
return null;
}
catch (IOException e)
{
e.printStackTrace();
return null;
}
finally
{
method.releaseConnection();
}
}
} | [
"shixiuting@DESKTOP-SB37724"
] | shixiuting@DESKTOP-SB37724 |
693adb0d370409a70a3754275a28c650deabc75a | bfac99890aad5f43f4d20f8737dd963b857814c2 | /reg3/v0/xwiki-platform-core/xwiki-platform-filter/xwiki-platform-filter-events/xwiki-platform-filter-event-model/src/main/java/org/xwiki/filter/event/model/WikiAttachmentFilter.java | bae203adabc45908e7852c11fda1da42dbb47dbe | [] | no_license | STAMP-project/dbug | 3b3776b80517c47e5cac04664cc07112ea26b2a4 | 69830c00bba4d6b37ad649aa576f569df0965c72 | refs/heads/master | 2021-01-20T03:59:39.330218 | 2017-07-12T08:03:40 | 2017-07-12T08:03:40 | 89,613,961 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,744 | java | /*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.xwiki.filter.event.model;
import java.io.InputStream;
import org.xwiki.filter.FilterEventParameters;
import org.xwiki.filter.FilterException;
import org.xwiki.filter.annotation.Default;
import org.xwiki.filter.annotation.Name;
/**
* Attachment related events.
*
* @version $Id: ad44293ffc68c26949411382ce27ed3688bfb643 $
* @since 6.2M1
*/
public interface WikiAttachmentFilter
{
/**
* @type {@link String}
*/
String PARAMETER_NAME = "name";
/**
* @type {@link String}
* @since 7.1M1
*/
String PARAMETER_MIMETYPE = "mimetype";
/**
* @type {@link String}
*/
String PARAMETER_CONTENT_TYPE = "content_type";
/**
* @type {@link String}
*/
String PARAMETER_CREATION_AUTHOR = "creation_author";
/**
* @type {@link java.util.Date}
*/
String PARAMETER_CREATION_DATE = "creation_date";
/**
* @type {@link String}
*/
String PARAMETER_REVISION = "revision";
/**
* @type {@link String}
*/
String PARAMETER_REVISION_AUTHOR = "revision_author";
/**
* @type {@link java.util.Date}
*/
String PARAMETER_REVISION_DATE = "revision_date";
/**
* @type {@link String}
*/
String PARAMETER_REVISION_COMMENT = "revision_comment";
/**
* @param name the name of the attachment
* @param content the binary content of the attachment
* @param size the size of the attachment
* @param parameters the properties of the attachment
* @throws FilterException when failing to send event
*/
void onWikiAttachment(@Name("name") String name, @Name("content") InputStream content, @Name("size") Long size,
@Default(FilterEventParameters.DEFAULT) @Name(FilterEventParameters.NAME) FilterEventParameters parameters)
throws FilterException;
}
| [
"caroline.landry@inria.fr"
] | caroline.landry@inria.fr |
0f0601c117a9c02923d748f00403eff0d8ac4ba6 | 48b4fa43385a44665bcd03a4e63c86acad11220b | /src/main/java/com/management/domain/enumeration/Incoterm.java | eeaa92affca2cc097c3f30b45b112ebb76309ec7 | [] | no_license | yehdih2001/GestionStock | 6ae9c6d099d53123d6554fd03f3489e0a5e07bf1 | c113fa6660e8fe6b6f5d9dcd2dede2bdda486797 | refs/heads/master | 2020-04-11T19:59:36.969527 | 2018-12-19T00:23:01 | 2018-12-19T00:23:01 | 162,055,687 | 0 | 0 | null | 2018-12-19T00:23:03 | 2018-12-17T00:53:41 | Java | UTF-8 | Java | false | false | 233 | java | package com.management.domain.enumeration;
/**
* The Incoterm enumeration.
*/
public enum Incoterm {
EX_WORKS, FREE_CARRIER, FREE_ALONGSIDE_SHIP, FREE_ON_BOARD, COST_AND_FREIGHT, COST_INSURANCE_AND_FREIGHT, CARRIAGE_PAID_TO
}
| [
"jhipster-bot@jhipster.tech"
] | jhipster-bot@jhipster.tech |
bb12ab9f70649c35ccaca0de25ad906cbcc9c008 | 8f33c731e37e313b910269ff531cb9bf7c365967 | /BDT-solutions/cviceni/02_SQL_PYTHON/bubble/Main.java | 308b3a0d04d4631e383cd073288786631f2b13c5 | [] | no_license | ryparmar/BDT | 89f1d9e3a1dab74c44b7b43c773da9b8004c0826 | ebb7a787f465de40cda329bad5b63aa68a0328d6 | refs/heads/master | 2020-06-23T03:31:47.055956 | 2019-07-23T19:27:55 | 2019-07-23T19:27:55 | 198,494,962 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,874 | java | package cz.cvut;
import com.sun.javaws.exceptions.InvalidArgumentException;
import java.time.LocalDateTime;
public class Main {
public static void bubbleSort(int[] arr, boolean ascending) throws InvalidArgumentException {
/*
* Very long JAVA comment
* */
if (arr.length == 0){
throw new InvalidArgumentException(new String[]{"Empty array!"});
}
boolean swapped = true;
int j = 0;
int tmp;
// short comment
while (swapped) {
swapped = false;
j++;
for (int i = 0; i < arr.length - j; i++) {
if (ascending) {
if (arr[i] > arr[i + 1]) {
tmp = arr[i];
arr[i] = arr[i + 1];
arr[i + 1] = tmp;
swapped = true;
}
}
else {
if (arr[i] < arr[i + 1]) {
tmp = arr[i];
arr[i] = arr[i + 1];
arr[i + 1] = tmp;
swapped = true;
}
}
}
}
}
public static void bubbleSort(int[] arr) throws InvalidArgumentException {
bubbleSort(arr, true);
}
public static void main(String[] args) throws InvalidArgumentException {
int[] a = new int[]{10, 4, 9, 4, 5};
System.out.println(String.format("Hello, world, today is %s", LocalDateTime.now()));
bubbleSort(a, false);
for (int i = 0; i < a.length; i++){
System.out.print(a[i] + " ");
}
System.out.println("");
System.out.println("Reverse");
bubbleSort(a);
for (int i = 0; i < a.length; i++){
System.out.print(a[i] + " ");
}
}
}
| [
"noreply@github.com"
] | noreply@github.com |
0782bbefc5f8d1746dc6045bd47d4ee5e841ed56 | 385e3414ccb7458bbd3cec326320f11819decc7b | /frameworks/opt/tedongle/src/java/com/google/android/mms/pdu/PduPersister.java | 86e0d2ad5f1440522c17f706d3bd5b6dbc9a0521 | [] | no_license | carlos22211/Tango_AL813 | 14de7f2693c3045b9d3c0cb52017ba2bb6e6b28f | b50b1b7491dc9c5e6b92c2d94503635c43e93200 | refs/heads/master | 2020-03-28T08:09:11.127995 | 2017-06-26T05:05:29 | 2017-06-26T05:05:29 | 147,947,860 | 1 | 0 | null | 2018-09-08T15:55:46 | 2018-09-08T15:55:45 | null | UTF-8 | Java | false | false | 66,272 | java | /*
* Copyright (C) 2007-2008 Esmertec AG.
* Copyright (C) 2007-2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.android.mms.pdu;
import com.google.android.mms.ContentType;
import com.google.android.mms.InvalidHeaderValueException;
import com.google.android.mms.MmsException;
import com.google.android.mms.util.DownloadDrmHelper;
import com.google.android.mms.util.DrmConvertSession;
import com.google.android.mms.util.PduCache;
import com.google.android.mms.util.PduCacheEntry;
import com.google.android.mms.util.SqliteWrapper;
import android.content.ContentResolver;
import android.content.ContentUris;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.DatabaseUtils;
import android.database.sqlite.SQLiteException;
import android.drm.DrmManagerClient;
import android.net.Uri;
import android.provider.MediaStore;
import android.tedongle.provider.Telephony;
import android.tedongle.provider.Telephony.Mms;
import android.tedongle.provider.Telephony.MmsSms;
import android.tedongle.provider.Telephony.Threads;
import android.tedongle.provider.Telephony.Mms.Addr;
import android.tedongle.provider.Telephony.Mms.Part;
import android.tedongle.provider.Telephony.MmsSms.PendingMessages;
import android.tedongle.PhoneNumberUtils;
import android.tedongle.TelephonyManager;
import android.text.TextUtils;
import android.util.Log;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
import com.google.android.mms.pdu.EncodedStringValue;
/**
* This class is the high-level manager of PDU storage.
*/
public class PduPersister {
private static final String TAG = "3GD-PduPersister";
private static final boolean DEBUG = false;
private static final boolean LOCAL_LOGV = false;
private static final long DUMMY_THREAD_ID = Long.MAX_VALUE;
/**
* The uri of temporary drm objects.
*/
public static final String TEMPORARY_DRM_OBJECT_URI =
"content://mms/" + Long.MAX_VALUE + "/part";
/**
* Indicate that we transiently failed to process a MM.
*/
public static final int PROC_STATUS_TRANSIENT_FAILURE = 1;
/**
* Indicate that we permanently failed to process a MM.
*/
public static final int PROC_STATUS_PERMANENTLY_FAILURE = 2;
/**
* Indicate that we have successfully processed a MM.
*/
public static final int PROC_STATUS_COMPLETED = 3;
private static PduPersister sPersister;
private static final PduCache PDU_CACHE_INSTANCE;
private static final int[] ADDRESS_FIELDS = new int[] {
PduHeaders.BCC,
PduHeaders.CC,
PduHeaders.FROM,
PduHeaders.TO
};
private static final String[] PDU_PROJECTION = new String[] {
Mms._ID,
Mms.MESSAGE_BOX,
Mms.THREAD_ID,
Mms.RETRIEVE_TEXT,
Mms.SUBJECT,
Mms.CONTENT_LOCATION,
Mms.CONTENT_TYPE,
Mms.MESSAGE_CLASS,
Mms.MESSAGE_ID,
Mms.RESPONSE_TEXT,
Mms.TRANSACTION_ID,
Mms.CONTENT_CLASS,
Mms.DELIVERY_REPORT,
Mms.MESSAGE_TYPE,
Mms.MMS_VERSION,
Mms.PRIORITY,
Mms.READ_REPORT,
Mms.READ_STATUS,
Mms.REPORT_ALLOWED,
Mms.RETRIEVE_STATUS,
Mms.STATUS,
Mms.DATE,
Mms.DELIVERY_TIME,
Mms.EXPIRY,
Mms.MESSAGE_SIZE,
Mms.SUBJECT_CHARSET,
Mms.RETRIEVE_TEXT_CHARSET,
};
private static final int PDU_COLUMN_ID = 0;
private static final int PDU_COLUMN_MESSAGE_BOX = 1;
private static final int PDU_COLUMN_THREAD_ID = 2;
private static final int PDU_COLUMN_RETRIEVE_TEXT = 3;
private static final int PDU_COLUMN_SUBJECT = 4;
private static final int PDU_COLUMN_CONTENT_LOCATION = 5;
private static final int PDU_COLUMN_CONTENT_TYPE = 6;
private static final int PDU_COLUMN_MESSAGE_CLASS = 7;
private static final int PDU_COLUMN_MESSAGE_ID = 8;
private static final int PDU_COLUMN_RESPONSE_TEXT = 9;
private static final int PDU_COLUMN_TRANSACTION_ID = 10;
private static final int PDU_COLUMN_CONTENT_CLASS = 11;
private static final int PDU_COLUMN_DELIVERY_REPORT = 12;
private static final int PDU_COLUMN_MESSAGE_TYPE = 13;
private static final int PDU_COLUMN_MMS_VERSION = 14;
private static final int PDU_COLUMN_PRIORITY = 15;
private static final int PDU_COLUMN_READ_REPORT = 16;
private static final int PDU_COLUMN_READ_STATUS = 17;
private static final int PDU_COLUMN_REPORT_ALLOWED = 18;
private static final int PDU_COLUMN_RETRIEVE_STATUS = 19;
private static final int PDU_COLUMN_STATUS = 20;
private static final int PDU_COLUMN_DATE = 21;
private static final int PDU_COLUMN_DELIVERY_TIME = 22;
private static final int PDU_COLUMN_EXPIRY = 23;
private static final int PDU_COLUMN_MESSAGE_SIZE = 24;
private static final int PDU_COLUMN_SUBJECT_CHARSET = 25;
private static final int PDU_COLUMN_RETRIEVE_TEXT_CHARSET = 26;
private static final String[] PART_PROJECTION = new String[] {
Part._ID,
Part.CHARSET,
Part.CONTENT_DISPOSITION,
Part.CONTENT_ID,
Part.CONTENT_LOCATION,
Part.CONTENT_TYPE,
Part.FILENAME,
Part.NAME,
Part.TEXT
};
private static final int PART_COLUMN_ID = 0;
private static final int PART_COLUMN_CHARSET = 1;
private static final int PART_COLUMN_CONTENT_DISPOSITION = 2;
private static final int PART_COLUMN_CONTENT_ID = 3;
private static final int PART_COLUMN_CONTENT_LOCATION = 4;
private static final int PART_COLUMN_CONTENT_TYPE = 5;
private static final int PART_COLUMN_FILENAME = 6;
private static final int PART_COLUMN_NAME = 7;
private static final int PART_COLUMN_TEXT = 8;
private static final HashMap<Uri, Integer> MESSAGE_BOX_MAP;
// These map are used for convenience in persist() and load().
private static final HashMap<Integer, Integer> CHARSET_COLUMN_INDEX_MAP;
private static final HashMap<Integer, Integer> ENCODED_STRING_COLUMN_INDEX_MAP;
private static final HashMap<Integer, Integer> TEXT_STRING_COLUMN_INDEX_MAP;
private static final HashMap<Integer, Integer> OCTET_COLUMN_INDEX_MAP;
private static final HashMap<Integer, Integer> LONG_COLUMN_INDEX_MAP;
private static final HashMap<Integer, String> CHARSET_COLUMN_NAME_MAP;
private static final HashMap<Integer, String> ENCODED_STRING_COLUMN_NAME_MAP;
private static final HashMap<Integer, String> TEXT_STRING_COLUMN_NAME_MAP;
private static final HashMap<Integer, String> OCTET_COLUMN_NAME_MAP;
private static final HashMap<Integer, String> LONG_COLUMN_NAME_MAP;
static {
MESSAGE_BOX_MAP = new HashMap<Uri, Integer>();
MESSAGE_BOX_MAP.put(Mms.Inbox.CONTENT_URI, Mms.MESSAGE_BOX_INBOX);
MESSAGE_BOX_MAP.put(Mms.Sent.CONTENT_URI, Mms.MESSAGE_BOX_SENT);
MESSAGE_BOX_MAP.put(Mms.Draft.CONTENT_URI, Mms.MESSAGE_BOX_DRAFTS);
MESSAGE_BOX_MAP.put(Mms.Outbox.CONTENT_URI, Mms.MESSAGE_BOX_OUTBOX);
CHARSET_COLUMN_INDEX_MAP = new HashMap<Integer, Integer>();
CHARSET_COLUMN_INDEX_MAP.put(PduHeaders.SUBJECT, PDU_COLUMN_SUBJECT_CHARSET);
CHARSET_COLUMN_INDEX_MAP.put(PduHeaders.RETRIEVE_TEXT, PDU_COLUMN_RETRIEVE_TEXT_CHARSET);
CHARSET_COLUMN_NAME_MAP = new HashMap<Integer, String>();
CHARSET_COLUMN_NAME_MAP.put(PduHeaders.SUBJECT, Mms.SUBJECT_CHARSET);
CHARSET_COLUMN_NAME_MAP.put(PduHeaders.RETRIEVE_TEXT, Mms.RETRIEVE_TEXT_CHARSET);
// Encoded string field code -> column index/name map.
ENCODED_STRING_COLUMN_INDEX_MAP = new HashMap<Integer, Integer>();
ENCODED_STRING_COLUMN_INDEX_MAP.put(PduHeaders.RETRIEVE_TEXT, PDU_COLUMN_RETRIEVE_TEXT);
ENCODED_STRING_COLUMN_INDEX_MAP.put(PduHeaders.SUBJECT, PDU_COLUMN_SUBJECT);
ENCODED_STRING_COLUMN_NAME_MAP = new HashMap<Integer, String>();
ENCODED_STRING_COLUMN_NAME_MAP.put(PduHeaders.RETRIEVE_TEXT, Mms.RETRIEVE_TEXT);
ENCODED_STRING_COLUMN_NAME_MAP.put(PduHeaders.SUBJECT, Mms.SUBJECT);
// Text string field code -> column index/name map.
TEXT_STRING_COLUMN_INDEX_MAP = new HashMap<Integer, Integer>();
TEXT_STRING_COLUMN_INDEX_MAP.put(PduHeaders.CONTENT_LOCATION, PDU_COLUMN_CONTENT_LOCATION);
TEXT_STRING_COLUMN_INDEX_MAP.put(PduHeaders.CONTENT_TYPE, PDU_COLUMN_CONTENT_TYPE);
TEXT_STRING_COLUMN_INDEX_MAP.put(PduHeaders.MESSAGE_CLASS, PDU_COLUMN_MESSAGE_CLASS);
TEXT_STRING_COLUMN_INDEX_MAP.put(PduHeaders.MESSAGE_ID, PDU_COLUMN_MESSAGE_ID);
TEXT_STRING_COLUMN_INDEX_MAP.put(PduHeaders.RESPONSE_TEXT, PDU_COLUMN_RESPONSE_TEXT);
TEXT_STRING_COLUMN_INDEX_MAP.put(PduHeaders.TRANSACTION_ID, PDU_COLUMN_TRANSACTION_ID);
TEXT_STRING_COLUMN_NAME_MAP = new HashMap<Integer, String>();
TEXT_STRING_COLUMN_NAME_MAP.put(PduHeaders.CONTENT_LOCATION, Mms.CONTENT_LOCATION);
TEXT_STRING_COLUMN_NAME_MAP.put(PduHeaders.CONTENT_TYPE, Mms.CONTENT_TYPE);
TEXT_STRING_COLUMN_NAME_MAP.put(PduHeaders.MESSAGE_CLASS, Mms.MESSAGE_CLASS);
TEXT_STRING_COLUMN_NAME_MAP.put(PduHeaders.MESSAGE_ID, Mms.MESSAGE_ID);
TEXT_STRING_COLUMN_NAME_MAP.put(PduHeaders.RESPONSE_TEXT, Mms.RESPONSE_TEXT);
TEXT_STRING_COLUMN_NAME_MAP.put(PduHeaders.TRANSACTION_ID, Mms.TRANSACTION_ID);
// Octet field code -> column index/name map.
OCTET_COLUMN_INDEX_MAP = new HashMap<Integer, Integer>();
OCTET_COLUMN_INDEX_MAP.put(PduHeaders.CONTENT_CLASS, PDU_COLUMN_CONTENT_CLASS);
OCTET_COLUMN_INDEX_MAP.put(PduHeaders.DELIVERY_REPORT, PDU_COLUMN_DELIVERY_REPORT);
OCTET_COLUMN_INDEX_MAP.put(PduHeaders.MESSAGE_TYPE, PDU_COLUMN_MESSAGE_TYPE);
OCTET_COLUMN_INDEX_MAP.put(PduHeaders.MMS_VERSION, PDU_COLUMN_MMS_VERSION);
OCTET_COLUMN_INDEX_MAP.put(PduHeaders.PRIORITY, PDU_COLUMN_PRIORITY);
OCTET_COLUMN_INDEX_MAP.put(PduHeaders.READ_REPORT, PDU_COLUMN_READ_REPORT);
OCTET_COLUMN_INDEX_MAP.put(PduHeaders.READ_STATUS, PDU_COLUMN_READ_STATUS);
OCTET_COLUMN_INDEX_MAP.put(PduHeaders.REPORT_ALLOWED, PDU_COLUMN_REPORT_ALLOWED);
OCTET_COLUMN_INDEX_MAP.put(PduHeaders.RETRIEVE_STATUS, PDU_COLUMN_RETRIEVE_STATUS);
OCTET_COLUMN_INDEX_MAP.put(PduHeaders.STATUS, PDU_COLUMN_STATUS);
OCTET_COLUMN_NAME_MAP = new HashMap<Integer, String>();
OCTET_COLUMN_NAME_MAP.put(PduHeaders.CONTENT_CLASS, Mms.CONTENT_CLASS);
OCTET_COLUMN_NAME_MAP.put(PduHeaders.DELIVERY_REPORT, Mms.DELIVERY_REPORT);
OCTET_COLUMN_NAME_MAP.put(PduHeaders.MESSAGE_TYPE, Mms.MESSAGE_TYPE);
OCTET_COLUMN_NAME_MAP.put(PduHeaders.MMS_VERSION, Mms.MMS_VERSION);
OCTET_COLUMN_NAME_MAP.put(PduHeaders.PRIORITY, Mms.PRIORITY);
OCTET_COLUMN_NAME_MAP.put(PduHeaders.READ_REPORT, Mms.READ_REPORT);
OCTET_COLUMN_NAME_MAP.put(PduHeaders.READ_STATUS, Mms.READ_STATUS);
OCTET_COLUMN_NAME_MAP.put(PduHeaders.REPORT_ALLOWED, Mms.REPORT_ALLOWED);
OCTET_COLUMN_NAME_MAP.put(PduHeaders.RETRIEVE_STATUS, Mms.RETRIEVE_STATUS);
OCTET_COLUMN_NAME_MAP.put(PduHeaders.STATUS, Mms.STATUS);
// Long field code -> column index/name map.
LONG_COLUMN_INDEX_MAP = new HashMap<Integer, Integer>();
LONG_COLUMN_INDEX_MAP.put(PduHeaders.DATE, PDU_COLUMN_DATE);
LONG_COLUMN_INDEX_MAP.put(PduHeaders.DELIVERY_TIME, PDU_COLUMN_DELIVERY_TIME);
LONG_COLUMN_INDEX_MAP.put(PduHeaders.EXPIRY, PDU_COLUMN_EXPIRY);
LONG_COLUMN_INDEX_MAP.put(PduHeaders.MESSAGE_SIZE, PDU_COLUMN_MESSAGE_SIZE);
LONG_COLUMN_NAME_MAP = new HashMap<Integer, String>();
LONG_COLUMN_NAME_MAP.put(PduHeaders.DATE, Mms.DATE);
LONG_COLUMN_NAME_MAP.put(PduHeaders.DELIVERY_TIME, Mms.DELIVERY_TIME);
LONG_COLUMN_NAME_MAP.put(PduHeaders.EXPIRY, Mms.EXPIRY);
LONG_COLUMN_NAME_MAP.put(PduHeaders.MESSAGE_SIZE, Mms.MESSAGE_SIZE);
PDU_CACHE_INSTANCE = PduCache.getInstance();
}
private final Context mContext;
private final ContentResolver mContentResolver;
private final DrmManagerClient mDrmManagerClient;
private final TelephonyManager mTelephonyManager;
private PduPersister(Context context) {
mContext = context;
mContentResolver = context.getContentResolver();
mDrmManagerClient = new DrmManagerClient(context);
mTelephonyManager = TelephonyManager.getDefault();
}
/** Get(or create if not exist) an instance of PduPersister */
public static PduPersister getPduPersister(Context context) {
if ((sPersister == null)) {
sPersister = new PduPersister(context);
} else if (!context.equals(sPersister.mContext)) {
sPersister.release();
sPersister = new PduPersister(context);
}
return sPersister;
}
private void setEncodedStringValueToHeaders(
Cursor c, int columnIndex,
PduHeaders headers, int mapColumn) {
String s = c.getString(columnIndex);
if ((s != null) && (s.length() > 0)) {
int charsetColumnIndex = CHARSET_COLUMN_INDEX_MAP.get(mapColumn);
int charset = c.getInt(charsetColumnIndex);
EncodedStringValue value = new EncodedStringValue(
charset, getBytes(s));
headers.setEncodedStringValue(value, mapColumn);
}
}
private void setTextStringToHeaders(
Cursor c, int columnIndex,
PduHeaders headers, int mapColumn) {
String s = c.getString(columnIndex);
if (s != null) {
headers.setTextString(getBytes(s), mapColumn);
}
}
private void setOctetToHeaders(
Cursor c, int columnIndex,
PduHeaders headers, int mapColumn) throws InvalidHeaderValueException {
if (!c.isNull(columnIndex)) {
int b = c.getInt(columnIndex);
headers.setOctet(b, mapColumn);
}
}
private void setLongToHeaders(
Cursor c, int columnIndex,
PduHeaders headers, int mapColumn) {
if (!c.isNull(columnIndex)) {
long l = c.getLong(columnIndex);
headers.setLongInteger(l, mapColumn);
}
}
private Integer getIntegerFromPartColumn(Cursor c, int columnIndex) {
if (!c.isNull(columnIndex)) {
return c.getInt(columnIndex);
}
return null;
}
private byte[] getByteArrayFromPartColumn(Cursor c, int columnIndex) {
if (!c.isNull(columnIndex)) {
return getBytes(c.getString(columnIndex));
}
return null;
}
private PduPart[] loadParts(long msgId) throws MmsException {
Cursor c = SqliteWrapper.query(mContext, mContentResolver,
Uri.parse("content://mms/" + msgId + "/part"),
PART_PROJECTION, null, null, null);
PduPart[] parts = null;
try {
if ((c == null) || (c.getCount() == 0)) {
if (LOCAL_LOGV) {
Log.v(TAG, "loadParts(" + msgId + "): no part to load.");
}
return null;
}
int partCount = c.getCount();
int partIdx = 0;
parts = new PduPart[partCount];
while (c.moveToNext()) {
PduPart part = new PduPart();
Integer charset = getIntegerFromPartColumn(
c, PART_COLUMN_CHARSET);
if (charset != null) {
part.setCharset(charset);
}
byte[] contentDisposition = getByteArrayFromPartColumn(
c, PART_COLUMN_CONTENT_DISPOSITION);
if (contentDisposition != null) {
part.setContentDisposition(contentDisposition);
}
byte[] contentId = getByteArrayFromPartColumn(
c, PART_COLUMN_CONTENT_ID);
if (contentId != null) {
part.setContentId(contentId);
}
byte[] contentLocation = getByteArrayFromPartColumn(
c, PART_COLUMN_CONTENT_LOCATION);
if (contentLocation != null) {
part.setContentLocation(contentLocation);
}
byte[] contentType = getByteArrayFromPartColumn(
c, PART_COLUMN_CONTENT_TYPE);
if (contentType != null) {
part.setContentType(contentType);
} else {
throw new MmsException("Content-Type must be set.");
}
byte[] fileName = getByteArrayFromPartColumn(
c, PART_COLUMN_FILENAME);
if (fileName != null) {
part.setFilename(fileName);
}
byte[] name = getByteArrayFromPartColumn(
c, PART_COLUMN_NAME);
if (name != null) {
part.setName(name);
}
// Construct a Uri for this part.
long partId = c.getLong(PART_COLUMN_ID);
Uri partURI = Uri.parse("content://mms/part/" + partId);
part.setDataUri(partURI);
// For images/audio/video, we won't keep their data in Part
// because their renderer accept Uri as source.
String type = toIsoString(contentType);
if (!ContentType.isImageType(type)
&& !ContentType.isAudioType(type)
&& !ContentType.isVideoType(type)) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
InputStream is = null;
// Store simple string values directly in the database instead of an
// external file. This makes the text searchable and retrieval slightly
// faster.
if (ContentType.TEXT_PLAIN.equals(type) || ContentType.APP_SMIL.equals(type)
|| ContentType.TEXT_HTML.equals(type)) {
String text = c.getString(PART_COLUMN_TEXT);
byte [] blob = new EncodedStringValue(text != null ? text : "")
.getTextString();
baos.write(blob, 0, blob.length);
} else {
try {
is = mContentResolver.openInputStream(partURI);
byte[] buffer = new byte[256];
int len = is.read(buffer);
while (len >= 0) {
baos.write(buffer, 0, len);
len = is.read(buffer);
}
} catch (IOException e) {
Log.e(TAG, "Failed to load part data", e);
c.close();
throw new MmsException(e);
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
Log.e(TAG, "Failed to close stream", e);
} // Ignore
}
}
}
part.setData(baos.toByteArray());
}
parts[partIdx++] = part;
}
} finally {
if (c != null) {
c.close();
}
}
return parts;
}
private void loadAddress(long msgId, PduHeaders headers) {
Cursor c = SqliteWrapper.query(mContext, mContentResolver,
Uri.parse("content://mms/" + msgId + "/addr"),
new String[] { Addr.ADDRESS, Addr.CHARSET, Addr.TYPE },
null, null, null);
if (c != null) {
try {
while (c.moveToNext()) {
String addr = c.getString(0);
if (!TextUtils.isEmpty(addr)) {
int addrType = c.getInt(2);
switch (addrType) {
case PduHeaders.FROM:
headers.setEncodedStringValue(
new EncodedStringValue(c.getInt(1), getBytes(addr)),
addrType);
break;
case PduHeaders.TO:
case PduHeaders.CC:
case PduHeaders.BCC:
headers.appendEncodedStringValue(
new EncodedStringValue(c.getInt(1), getBytes(addr)),
addrType);
break;
default:
Log.e(TAG, "Unknown address type: " + addrType);
break;
}
}
}
} finally {
c.close();
}
}
}
/**
* Load a PDU from storage by given Uri.
*
* @param uri The Uri of the PDU to be loaded.
* @return A generic PDU object, it may be cast to dedicated PDU.
* @throws MmsException Failed to load some fields of a PDU.
*/
public GenericPdu load(Uri uri) throws MmsException {
GenericPdu pdu = null;
PduCacheEntry cacheEntry = null;
int msgBox = 0;
long threadId = -1;
try {
synchronized(PDU_CACHE_INSTANCE) {
if (PDU_CACHE_INSTANCE.isUpdating(uri)) {
if (LOCAL_LOGV) {
Log.v(TAG, "load: " + uri + " blocked by isUpdating()");
}
try {
PDU_CACHE_INSTANCE.wait();
} catch (InterruptedException e) {
Log.e(TAG, "load: ", e);
}
cacheEntry = PDU_CACHE_INSTANCE.get(uri);
if (cacheEntry != null) {
return cacheEntry.getPdu();
}
}
// Tell the cache to indicate to other callers that this item
// is currently being updated.
PDU_CACHE_INSTANCE.setUpdating(uri, true);
}
Cursor c = SqliteWrapper.query(mContext, mContentResolver, uri,
PDU_PROJECTION, null, null, null);
PduHeaders headers = new PduHeaders();
Set<Entry<Integer, Integer>> set;
long msgId = ContentUris.parseId(uri);
try {
if ((c == null) || (c.getCount() != 1) || !c.moveToFirst()) {
throw new MmsException("Bad uri: " + uri);
}
msgBox = c.getInt(PDU_COLUMN_MESSAGE_BOX);
threadId = c.getLong(PDU_COLUMN_THREAD_ID);
set = ENCODED_STRING_COLUMN_INDEX_MAP.entrySet();
for (Entry<Integer, Integer> e : set) {
setEncodedStringValueToHeaders(
c, e.getValue(), headers, e.getKey());
}
set = TEXT_STRING_COLUMN_INDEX_MAP.entrySet();
for (Entry<Integer, Integer> e : set) {
setTextStringToHeaders(
c, e.getValue(), headers, e.getKey());
}
set = OCTET_COLUMN_INDEX_MAP.entrySet();
for (Entry<Integer, Integer> e : set) {
setOctetToHeaders(
c, e.getValue(), headers, e.getKey());
}
set = LONG_COLUMN_INDEX_MAP.entrySet();
for (Entry<Integer, Integer> e : set) {
setLongToHeaders(
c, e.getValue(), headers, e.getKey());
}
} finally {
if (c != null) {
c.close();
}
}
// Check whether 'msgId' has been assigned a valid value.
if (msgId == -1L) {
throw new MmsException("Error! ID of the message: -1.");
}
// Load address information of the MM.
loadAddress(msgId, headers);
int msgType = headers.getOctet(PduHeaders.MESSAGE_TYPE);
PduBody body = new PduBody();
// For PDU which type is M_retrieve.conf or Send.req, we should
// load multiparts and put them into the body of the PDU.
if ((msgType == PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF)
|| (msgType == PduHeaders.MESSAGE_TYPE_SEND_REQ)) {
PduPart[] parts = loadParts(msgId);
if (parts != null) {
int partsNum = parts.length;
for (int i = 0; i < partsNum; i++) {
body.addPart(parts[i]);
}
}
}
switch (msgType) {
case PduHeaders.MESSAGE_TYPE_NOTIFICATION_IND:
pdu = new NotificationInd(headers);
break;
case PduHeaders.MESSAGE_TYPE_DELIVERY_IND:
pdu = new DeliveryInd(headers);
break;
case PduHeaders.MESSAGE_TYPE_READ_ORIG_IND:
pdu = new ReadOrigInd(headers);
break;
case PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF:
pdu = new RetrieveConf(headers, body);
break;
case PduHeaders.MESSAGE_TYPE_SEND_REQ:
pdu = new SendReq(headers, body);
break;
case PduHeaders.MESSAGE_TYPE_ACKNOWLEDGE_IND:
pdu = new AcknowledgeInd(headers);
break;
case PduHeaders.MESSAGE_TYPE_NOTIFYRESP_IND:
pdu = new NotifyRespInd(headers);
break;
case PduHeaders.MESSAGE_TYPE_READ_REC_IND:
pdu = new ReadRecInd(headers);
break;
case PduHeaders.MESSAGE_TYPE_SEND_CONF:
case PduHeaders.MESSAGE_TYPE_FORWARD_REQ:
case PduHeaders.MESSAGE_TYPE_FORWARD_CONF:
case PduHeaders.MESSAGE_TYPE_MBOX_STORE_REQ:
case PduHeaders.MESSAGE_TYPE_MBOX_STORE_CONF:
case PduHeaders.MESSAGE_TYPE_MBOX_VIEW_REQ:
case PduHeaders.MESSAGE_TYPE_MBOX_VIEW_CONF:
case PduHeaders.MESSAGE_TYPE_MBOX_UPLOAD_REQ:
case PduHeaders.MESSAGE_TYPE_MBOX_UPLOAD_CONF:
case PduHeaders.MESSAGE_TYPE_MBOX_DELETE_REQ:
case PduHeaders.MESSAGE_TYPE_MBOX_DELETE_CONF:
case PduHeaders.MESSAGE_TYPE_MBOX_DESCR:
case PduHeaders.MESSAGE_TYPE_DELETE_REQ:
case PduHeaders.MESSAGE_TYPE_DELETE_CONF:
case PduHeaders.MESSAGE_TYPE_CANCEL_REQ:
case PduHeaders.MESSAGE_TYPE_CANCEL_CONF:
throw new MmsException(
"Unsupported PDU type: " + Integer.toHexString(msgType));
default:
throw new MmsException(
"Unrecognized PDU type: " + Integer.toHexString(msgType));
}
} finally {
synchronized(PDU_CACHE_INSTANCE) {
if (pdu != null) {
assert(PDU_CACHE_INSTANCE.get(uri) == null);
// Update the cache entry with the real info
cacheEntry = new PduCacheEntry(pdu, msgBox, threadId);
PDU_CACHE_INSTANCE.put(uri, cacheEntry);
}
PDU_CACHE_INSTANCE.setUpdating(uri, false);
PDU_CACHE_INSTANCE.notifyAll(); // tell anybody waiting on this entry to go ahead
}
}
return pdu;
}
private void persistAddress(
long msgId, int type, EncodedStringValue[] array) {
ContentValues values = new ContentValues(3);
for (EncodedStringValue addr : array) {
values.clear(); // Clear all values first.
values.put(Addr.ADDRESS, toIsoString(addr.getTextString()));
values.put(Addr.CHARSET, addr.getCharacterSet());
values.put(Addr.TYPE, type);
Uri uri = Uri.parse("content://mms/" + msgId + "/addr");
SqliteWrapper.insert(mContext, mContentResolver, uri, values);
}
}
private static String getPartContentType(PduPart part) {
return part.getContentType() == null ? null : toIsoString(part.getContentType());
}
public Uri persistPart(PduPart part, long msgId, HashMap<Uri, InputStream> preOpenedFiles)
throws MmsException {
Uri uri = Uri.parse("content://mms/" + msgId + "/part");
ContentValues values = new ContentValues(8);
int charset = part.getCharset();
if (charset != 0 ) {
values.put(Part.CHARSET, charset);
}
String contentType = getPartContentType(part);
if (contentType != null) {
// There is no "image/jpg" in Android (and it's an invalid mimetype).
// Change it to "image/jpeg"
if (ContentType.IMAGE_JPG.equals(contentType)) {
contentType = ContentType.IMAGE_JPEG;
}
values.put(Part.CONTENT_TYPE, contentType);
// To ensure the SMIL part is always the first part.
if (ContentType.APP_SMIL.equals(contentType)) {
values.put(Part.SEQ, -1);
}
} else {
throw new MmsException("MIME type of the part must be set.");
}
if (part.getFilename() != null) {
String fileName = new String(part.getFilename());
values.put(Part.FILENAME, fileName);
}
if (part.getName() != null) {
String name = new String(part.getName());
values.put(Part.NAME, name);
}
Object value = null;
if (part.getContentDisposition() != null) {
value = toIsoString(part.getContentDisposition());
values.put(Part.CONTENT_DISPOSITION, (String) value);
}
if (part.getContentId() != null) {
value = toIsoString(part.getContentId());
values.put(Part.CONTENT_ID, (String) value);
}
if (part.getContentLocation() != null) {
value = toIsoString(part.getContentLocation());
values.put(Part.CONTENT_LOCATION, (String) value);
}
Uri res = SqliteWrapper.insert(mContext, mContentResolver, uri, values);
if (res == null) {
throw new MmsException("Failed to persist part, return null.");
}
persistData(part, res, contentType, preOpenedFiles);
// After successfully store the data, we should update
// the dataUri of the part.
part.setDataUri(res);
return res;
}
/**
* Save data of the part into storage. The source data may be given
* by a byte[] or a Uri. If it's a byte[], directly save it
* into storage, otherwise load source data from the dataUri and then
* save it. If the data is an image, we may scale down it according
* to user preference.
*
* @param part The PDU part which contains data to be saved.
* @param uri The URI of the part.
* @param contentType The MIME type of the part.
* @param preOpenedFiles if not null, a map of preopened InputStreams for the parts.
* @throws MmsException Cannot find source data or error occurred
* while saving the data.
*/
private void persistData(PduPart part, Uri uri,
String contentType, HashMap<Uri, InputStream> preOpenedFiles)
throws MmsException {
OutputStream os = null;
InputStream is = null;
DrmConvertSession drmConvertSession = null;
Uri dataUri = null;
String path = null;
try {
byte[] data = part.getData();
if (ContentType.TEXT_PLAIN.equals(contentType)
|| ContentType.APP_SMIL.equals(contentType)
|| ContentType.TEXT_HTML.equals(contentType)) {
ContentValues cv = new ContentValues();
if (data == null) {
data = new String("").getBytes(CharacterSets.DEFAULT_CHARSET_NAME);
}
cv.put(Telephony.Mms.Part.TEXT, new EncodedStringValue(data).getString());
if (mContentResolver.update(uri, cv, null, null) != 1) {
throw new MmsException("unable to update " + uri.toString());
}
} else {
boolean isDrm = DownloadDrmHelper.isDrmConvertNeeded(contentType);
if (isDrm) {
if (uri != null) {
try {
path = convertUriToPath(mContext, uri);
if (LOCAL_LOGV) {
Log.v(TAG, "drm uri: " + uri + " path: " + path);
}
File f = new File(path);
long len = f.length();
if (LOCAL_LOGV) {
Log.v(TAG, "drm path: " + path + " len: " + len);
}
if (len > 0) {
// we're not going to re-persist and re-encrypt an already
// converted drm file
return;
}
} catch (Exception e) {
Log.e(TAG, "Can't get file info for: " + part.getDataUri(), e);
}
}
// We haven't converted the file yet, start the conversion
drmConvertSession = DrmConvertSession.open(mContext, contentType);
if (drmConvertSession == null) {
throw new MmsException("Mimetype " + contentType +
" can not be converted.");
}
}
// uri can look like:
// content://mms/part/98
os = mContentResolver.openOutputStream(uri);
if (data == null) {
dataUri = part.getDataUri();
if ((dataUri == null) || (dataUri == uri)) {
Log.w(TAG, "Can't find data for this part.");
return;
}
// dataUri can look like:
// content://com.google.android.gallery3d.provider/picasa/item/5720646660183715586
if (preOpenedFiles != null && preOpenedFiles.containsKey(dataUri)) {
is = preOpenedFiles.get(dataUri);
}
if (is == null) {
is = mContentResolver.openInputStream(dataUri);
}
if (LOCAL_LOGV) {
Log.v(TAG, "Saving data to: " + uri);
}
byte[] buffer = new byte[8192];
for (int len = 0; (len = is.read(buffer)) != -1; ) {
if (!isDrm) {
os.write(buffer, 0, len);
} else {
byte[] convertedData = drmConvertSession.convert(buffer, len);
if (convertedData != null) {
os.write(convertedData, 0, convertedData.length);
} else {
throw new MmsException("Error converting drm data.");
}
}
}
} else {
if (LOCAL_LOGV) {
Log.v(TAG, "Saving data to: " + uri);
}
if (!isDrm) {
os.write(data);
} else {
dataUri = uri;
byte[] convertedData = drmConvertSession.convert(data, data.length);
if (convertedData != null) {
os.write(convertedData, 0, convertedData.length);
} else {
throw new MmsException("Error converting drm data.");
}
}
}
}
} catch (FileNotFoundException e) {
Log.e(TAG, "Failed to open Input/Output stream.", e);
throw new MmsException(e);
} catch (IOException e) {
Log.e(TAG, "Failed to read/write data.", e);
throw new MmsException(e);
} finally {
if (os != null) {
try {
os.close();
} catch (IOException e) {
Log.e(TAG, "IOException while closing: " + os, e);
} // Ignore
}
if (is != null) {
try {
is.close();
} catch (IOException e) {
Log.e(TAG, "IOException while closing: " + is, e);
} // Ignore
}
if (drmConvertSession != null) {
drmConvertSession.close(path);
// Reset the permissions on the encrypted part file so everyone has only read
// permission.
File f = new File(path);
ContentValues values = new ContentValues(0);
SqliteWrapper.update(mContext, mContentResolver,
Uri.parse("content://mms/resetFilePerm/" + f.getName()),
values, null, null);
}
}
}
/**
* This method expects uri in the following format
* content://media/<table_name>/<row_index> (or)
* file://sdcard/test.mp4
* http://test.com/test.mp4
*
* Here <table_name> shall be "video" or "audio" or "images"
* <row_index> the index of the content in given table
*/
static public String convertUriToPath(Context context, Uri uri) {
String path = null;
if (null != uri) {
String scheme = uri.getScheme();
if (null == scheme || scheme.equals("") ||
scheme.equals(ContentResolver.SCHEME_FILE)) {
path = uri.getPath();
} else if (scheme.equals("http")) {
path = uri.toString();
} else if (scheme.equals(ContentResolver.SCHEME_CONTENT)) {
String[] projection = new String[] {MediaStore.MediaColumns.DATA};
Cursor cursor = null;
try {
cursor = context.getContentResolver().query(uri, projection, null,
null, null);
if (null == cursor || 0 == cursor.getCount() || !cursor.moveToFirst()) {
throw new IllegalArgumentException("Given Uri could not be found" +
" in media store");
}
int pathIndex = cursor.getColumnIndexOrThrow(MediaStore.MediaColumns.DATA);
path = cursor.getString(pathIndex);
} catch (SQLiteException e) {
throw new IllegalArgumentException("Given Uri is not formatted in a way " +
"so that it can be found in media store.");
} finally {
if (null != cursor) {
cursor.close();
}
}
} else {
throw new IllegalArgumentException("Given Uri scheme is not supported");
}
}
return path;
}
private void updateAddress(
long msgId, int type, EncodedStringValue[] array) {
// Delete old address information and then insert new ones.
SqliteWrapper.delete(mContext, mContentResolver,
Uri.parse("content://mms/" + msgId + "/addr"),
Addr.TYPE + "=" + type, null);
persistAddress(msgId, type, array);
}
/**
* Update headers of a SendReq.
*
* @param uri The PDU which need to be updated.
* @param pdu New headers.
* @throws MmsException Bad URI or updating failed.
*/
public void updateHeaders(Uri uri, SendReq sendReq) {
synchronized(PDU_CACHE_INSTANCE) {
// If the cache item is getting updated, wait until it's done updating before
// purging it.
if (PDU_CACHE_INSTANCE.isUpdating(uri)) {
if (LOCAL_LOGV) {
Log.v(TAG, "updateHeaders: " + uri + " blocked by isUpdating()");
}
try {
PDU_CACHE_INSTANCE.wait();
} catch (InterruptedException e) {
Log.e(TAG, "updateHeaders: ", e);
}
}
}
PDU_CACHE_INSTANCE.purge(uri);
ContentValues values = new ContentValues(10);
byte[] contentType = sendReq.getContentType();
if (contentType != null) {
values.put(Mms.CONTENT_TYPE, toIsoString(contentType));
}
long date = sendReq.getDate();
if (date != -1) {
values.put(Mms.DATE, date);
}
int deliveryReport = sendReq.getDeliveryReport();
if (deliveryReport != 0) {
values.put(Mms.DELIVERY_REPORT, deliveryReport);
}
long expiry = sendReq.getExpiry();
if (expiry != -1) {
values.put(Mms.EXPIRY, expiry);
}
byte[] msgClass = sendReq.getMessageClass();
if (msgClass != null) {
values.put(Mms.MESSAGE_CLASS, toIsoString(msgClass));
}
int priority = sendReq.getPriority();
if (priority != 0) {
values.put(Mms.PRIORITY, priority);
}
int readReport = sendReq.getReadReport();
if (readReport != 0) {
values.put(Mms.READ_REPORT, readReport);
}
byte[] transId = sendReq.getTransactionId();
if (transId != null) {
values.put(Mms.TRANSACTION_ID, toIsoString(transId));
}
EncodedStringValue subject = sendReq.getSubject();
if (subject != null) {
values.put(Mms.SUBJECT, toIsoString(subject.getTextString()));
values.put(Mms.SUBJECT_CHARSET, subject.getCharacterSet());
} else {
values.put(Mms.SUBJECT, "");
}
long messageSize = sendReq.getMessageSize();
if (messageSize > 0) {
values.put(Mms.MESSAGE_SIZE, messageSize);
}
PduHeaders headers = sendReq.getPduHeaders();
HashSet<String> recipients = new HashSet<String>();
for (int addrType : ADDRESS_FIELDS) {
EncodedStringValue[] array = null;
if (addrType == PduHeaders.FROM) {
EncodedStringValue v = headers.getEncodedStringValue(addrType);
if (v != null) {
array = new EncodedStringValue[1];
array[0] = v;
}
} else {
array = headers.getEncodedStringValues(addrType);
}
if (array != null) {
long msgId = ContentUris.parseId(uri);
updateAddress(msgId, addrType, array);
if (addrType == PduHeaders.TO) {
for (EncodedStringValue v : array) {
if (v != null) {
recipients.add(v.getString());
}
}
}
}
}
if (!recipients.isEmpty()) {
long threadId = Threads.getOrCreateThreadId(mContext, recipients);
values.put(Mms.THREAD_ID, threadId);
}
SqliteWrapper.update(mContext, mContentResolver, uri, values, null, null);
}
private void updatePart(Uri uri, PduPart part, HashMap<Uri, InputStream> preOpenedFiles)
throws MmsException {
ContentValues values = new ContentValues(7);
int charset = part.getCharset();
if (charset != 0 ) {
values.put(Part.CHARSET, charset);
}
String contentType = null;
if (part.getContentType() != null) {
contentType = toIsoString(part.getContentType());
values.put(Part.CONTENT_TYPE, contentType);
} else {
throw new MmsException("MIME type of the part must be set.");
}
if (part.getFilename() != null) {
String fileName = new String(part.getFilename());
values.put(Part.FILENAME, fileName);
}
if (part.getName() != null) {
String name = new String(part.getName());
values.put(Part.NAME, name);
}
Object value = null;
if (part.getContentDisposition() != null) {
value = toIsoString(part.getContentDisposition());
values.put(Part.CONTENT_DISPOSITION, (String) value);
}
if (part.getContentId() != null) {
value = toIsoString(part.getContentId());
values.put(Part.CONTENT_ID, (String) value);
}
if (part.getContentLocation() != null) {
value = toIsoString(part.getContentLocation());
values.put(Part.CONTENT_LOCATION, (String) value);
}
SqliteWrapper.update(mContext, mContentResolver, uri, values, null, null);
// Only update the data when:
// 1. New binary data supplied or
// 2. The Uri of the part is different from the current one.
if ((part.getData() != null)
|| (uri != part.getDataUri())) {
persistData(part, uri, contentType, preOpenedFiles);
}
}
/**
* Update all parts of a PDU.
*
* @param uri The PDU which need to be updated.
* @param body New message body of the PDU.
* @param preOpenedFiles if not null, a map of preopened InputStreams for the parts.
* @throws MmsException Bad URI or updating failed.
*/
public void updateParts(Uri uri, PduBody body, HashMap<Uri, InputStream> preOpenedFiles)
throws MmsException {
try {
PduCacheEntry cacheEntry;
synchronized(PDU_CACHE_INSTANCE) {
if (PDU_CACHE_INSTANCE.isUpdating(uri)) {
if (LOCAL_LOGV) {
Log.v(TAG, "updateParts: " + uri + " blocked by isUpdating()");
}
try {
PDU_CACHE_INSTANCE.wait();
} catch (InterruptedException e) {
Log.e(TAG, "updateParts: ", e);
}
cacheEntry = PDU_CACHE_INSTANCE.get(uri);
if (cacheEntry != null) {
((MultimediaMessagePdu) cacheEntry.getPdu()).setBody(body);
}
}
// Tell the cache to indicate to other callers that this item
// is currently being updated.
PDU_CACHE_INSTANCE.setUpdating(uri, true);
}
ArrayList<PduPart> toBeCreated = new ArrayList<PduPart>();
HashMap<Uri, PduPart> toBeUpdated = new HashMap<Uri, PduPart>();
int partsNum = body.getPartsNum();
StringBuilder filter = new StringBuilder().append('(');
for (int i = 0; i < partsNum; i++) {
PduPart part = body.getPart(i);
Uri partUri = part.getDataUri();
if ((partUri == null) || !partUri.getAuthority().startsWith("mms")) {
toBeCreated.add(part);
} else {
toBeUpdated.put(partUri, part);
// Don't use 'i > 0' to determine whether we should append
// 'AND' since 'i = 0' may be skipped in another branch.
if (filter.length() > 1) {
filter.append(" AND ");
}
filter.append(Part._ID);
filter.append("!=");
DatabaseUtils.appendEscapedSQLString(filter, partUri.getLastPathSegment());
}
}
filter.append(')');
long msgId = ContentUris.parseId(uri);
// Remove the parts which doesn't exist anymore.
SqliteWrapper.delete(mContext, mContentResolver,
Uri.parse(Mms.CONTENT_URI + "/" + msgId + "/part"),
filter.length() > 2 ? filter.toString() : null, null);
// Create new parts which didn't exist before.
for (PduPart part : toBeCreated) {
persistPart(part, msgId, preOpenedFiles);
}
// Update the modified parts.
for (Map.Entry<Uri, PduPart> e : toBeUpdated.entrySet()) {
updatePart(e.getKey(), e.getValue(), preOpenedFiles);
}
} finally {
synchronized(PDU_CACHE_INSTANCE) {
PDU_CACHE_INSTANCE.setUpdating(uri, false);
PDU_CACHE_INSTANCE.notifyAll();
}
}
}
/**
* Persist a PDU object to specific location in the storage.
*
* @param pdu The PDU object to be stored.
* @param uri Where to store the given PDU object.
* @param createThreadId if true, this function may create a thread id for the recipients
* @param groupMmsEnabled if true, all of the recipients addressed in the PDU will be used
* to create the associated thread. When false, only the sender will be used in finding or
* creating the appropriate thread or conversation.
* @param preOpenedFiles if not null, a map of preopened InputStreams for the parts.
* @return A Uri which can be used to access the stored PDU.
*/
public Uri persist(GenericPdu pdu, Uri uri, boolean createThreadId, boolean groupMmsEnabled,
HashMap<Uri, InputStream> preOpenedFiles)
throws MmsException {
if (uri == null) {
throw new MmsException("Uri may not be null.");
}
long msgId = -1;
try {
msgId = ContentUris.parseId(uri);
} catch (NumberFormatException e) {
// the uri ends with "inbox" or something else like that
}
boolean existingUri = msgId != -1;
if (!existingUri && MESSAGE_BOX_MAP.get(uri) == null) {
throw new MmsException(
"Bad destination, must be one of "
+ "content://mms/inbox, content://mms/sent, "
+ "content://mms/drafts, content://mms/outbox, "
+ "content://mms/temp.");
}
synchronized(PDU_CACHE_INSTANCE) {
// If the cache item is getting updated, wait until it's done updating before
// purging it.
if (PDU_CACHE_INSTANCE.isUpdating(uri)) {
if (LOCAL_LOGV) {
Log.v(TAG, "persist: " + uri + " blocked by isUpdating()");
}
try {
PDU_CACHE_INSTANCE.wait();
} catch (InterruptedException e) {
Log.e(TAG, "persist1: ", e);
}
}
}
PDU_CACHE_INSTANCE.purge(uri);
PduHeaders header = pdu.getPduHeaders();
PduBody body = null;
ContentValues values = new ContentValues();
Set<Entry<Integer, String>> set;
set = ENCODED_STRING_COLUMN_NAME_MAP.entrySet();
for (Entry<Integer, String> e : set) {
int field = e.getKey();
EncodedStringValue encodedString = header.getEncodedStringValue(field);
if (encodedString != null) {
String charsetColumn = CHARSET_COLUMN_NAME_MAP.get(field);
values.put(e.getValue(), toIsoString(encodedString.getTextString()));
values.put(charsetColumn, encodedString.getCharacterSet());
}
}
set = TEXT_STRING_COLUMN_NAME_MAP.entrySet();
for (Entry<Integer, String> e : set){
byte[] text = header.getTextString(e.getKey());
if (text != null) {
values.put(e.getValue(), toIsoString(text));
}
}
set = OCTET_COLUMN_NAME_MAP.entrySet();
for (Entry<Integer, String> e : set){
int b = header.getOctet(e.getKey());
if (b != 0) {
values.put(e.getValue(), b);
}
}
set = LONG_COLUMN_NAME_MAP.entrySet();
for (Entry<Integer, String> e : set){
long l = header.getLongInteger(e.getKey());
if (l != -1L) {
values.put(e.getValue(), l);
}
}
HashMap<Integer, EncodedStringValue[]> addressMap =
new HashMap<Integer, EncodedStringValue[]>(ADDRESS_FIELDS.length);
// Save address information.
for (int addrType : ADDRESS_FIELDS) {
EncodedStringValue[] array = null;
if (addrType == PduHeaders.FROM) {
EncodedStringValue v = header.getEncodedStringValue(addrType);
if (v != null) {
array = new EncodedStringValue[1];
array[0] = v;
}
} else {
array = header.getEncodedStringValues(addrType);
}
addressMap.put(addrType, array);
}
HashSet<String> recipients = new HashSet<String>();
int msgType = pdu.getMessageType();
// Here we only allocate thread ID for M-Notification.ind,
// M-Retrieve.conf and M-Send.req.
// Some of other PDU types may be allocated a thread ID outside
// this scope.
if ((msgType == PduHeaders.MESSAGE_TYPE_NOTIFICATION_IND)
|| (msgType == PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF)
|| (msgType == PduHeaders.MESSAGE_TYPE_SEND_REQ)) {
switch (msgType) {
case PduHeaders.MESSAGE_TYPE_NOTIFICATION_IND:
case PduHeaders.MESSAGE_TYPE_RETRIEVE_CONF:
loadRecipients(PduHeaders.FROM, recipients, addressMap, false);
// For received messages when group MMS is enabled, we want to associate this
// message with the thread composed of all the recipients -- all but our own
// number, that is. This includes the person who sent the
// message or the FROM field (above) in addition to the other people the message
// was addressed to or the TO field. Our own number is in that TO field and
// we have to ignore it in loadRecipients.
if (groupMmsEnabled) {
loadRecipients(PduHeaders.TO, recipients, addressMap, true);
// Also load any numbers in the CC field to address group messaging
// compatibility issues with devices that place numbers in this field
// for group messages.
loadRecipients(PduHeaders.CC, recipients, addressMap, true);
}
break;
case PduHeaders.MESSAGE_TYPE_SEND_REQ:
loadRecipients(PduHeaders.TO, recipients, addressMap, false);
break;
}
long threadId = 0;
if (createThreadId && !recipients.isEmpty()) {
// Given all the recipients associated with this message, find (or create) the
// correct thread.
threadId = Threads.getOrCreateThreadId(mContext, recipients);
}
values.put(Mms.THREAD_ID, threadId);
}
// Save parts first to avoid inconsistent message is loaded
// while saving the parts.
long dummyId = System.currentTimeMillis(); // Dummy ID of the msg.
// Figure out if this PDU is a text-only message
boolean textOnly = true;
// Sum up the total message size
int messageSize = 0;
// Get body if the PDU is a RetrieveConf or SendReq.
if (pdu instanceof MultimediaMessagePdu) {
body = ((MultimediaMessagePdu) pdu).getBody();
// Start saving parts if necessary.
if (body != null) {
int partsNum = body.getPartsNum();
if (partsNum > 2) {
// For a text-only message there will be two parts: 1-the SMIL, 2-the text.
// Down a few lines below we're checking to make sure we've only got SMIL or
// text. We also have to check then we don't have more than two parts.
// Otherwise, a slideshow with two text slides would be marked as textOnly.
textOnly = false;
}
for (int i = 0; i < partsNum; i++) {
PduPart part = body.getPart(i);
messageSize += part.getDataLength();
persistPart(part, dummyId, preOpenedFiles);
// If we've got anything besides text/plain or SMIL part, then we've got
// an mms message with some other type of attachment.
String contentType = getPartContentType(part);
if (contentType != null && !ContentType.APP_SMIL.equals(contentType)
&& !ContentType.TEXT_PLAIN.equals(contentType)) {
textOnly = false;
}
}
}
}
// Record whether this mms message is a simple plain text or not. This is a hint for the
// UI.
values.put(Mms.TEXT_ONLY, textOnly ? 1 : 0);
// The message-size might already have been inserted when parsing the
// PDU header. If not, then we insert the message size as well.
if (values.getAsInteger(Mms.MESSAGE_SIZE) == null) {
values.put(Mms.MESSAGE_SIZE, messageSize);
}
Uri res = null;
if (existingUri) {
res = uri;
SqliteWrapper.update(mContext, mContentResolver, res, values, null, null);
} else {
res = SqliteWrapper.insert(mContext, mContentResolver, uri, values);
if (res == null) {
throw new MmsException("persist() failed: return null.");
}
// Get the real ID of the PDU and update all parts which were
// saved with the dummy ID.
msgId = ContentUris.parseId(res);
}
values = new ContentValues(1);
values.put(Part.MSG_ID, msgId);
SqliteWrapper.update(mContext, mContentResolver,
Uri.parse("content://mms/" + dummyId + "/part"),
values, null, null);
// We should return the longest URI of the persisted PDU, for
// example, if input URI is "content://mms/inbox" and the _ID of
// persisted PDU is '8', we should return "content://mms/inbox/8"
// instead of "content://mms/8".
// FIXME: Should the MmsProvider be responsible for this???
if (!existingUri) {
res = Uri.parse(uri + "/" + msgId);
}
// Save address information.
for (int addrType : ADDRESS_FIELDS) {
EncodedStringValue[] array = addressMap.get(addrType);
if (array != null) {
persistAddress(msgId, addrType, array);
}
}
return res;
}
/**
* For a given address type, extract the recipients from the headers.
*
* @param addressType can be PduHeaders.FROM, PduHeaders.TO or PduHeaders.CC
* @param recipients a HashSet that is loaded with the recipients from the FROM, TO or CC headers
* @param addressMap a HashMap of the addresses from the ADDRESS_FIELDS header
* @param excludeMyNumber if true, the number of this phone will be excluded from recipients
*/
private void loadRecipients(int addressType, HashSet<String> recipients,
HashMap<Integer, EncodedStringValue[]> addressMap, boolean excludeMyNumber) {
EncodedStringValue[] array = addressMap.get(addressType);
if (array == null) {
return;
}
// If the TO recipients is only a single address, then we can skip loadRecipients when
// we're excluding our own number because we know that address is our own.
if (excludeMyNumber && array.length == 1) {
return;
}
String myNumber = excludeMyNumber ? mTelephonyManager.getLine1Number() : null;
for (EncodedStringValue v : array) {
if (v != null) {
String number = v.getString();
if ((myNumber == null || !PhoneNumberUtils.compare(number, myNumber)) &&
!recipients.contains(number)) {
// Only add numbers which aren't my own number.
recipients.add(number);
}
}
}
}
/**
* Move a PDU object from one location to another.
*
* @param from Specify the PDU object to be moved.
* @param to The destination location, should be one of the following:
* "content://mms/inbox", "content://mms/sent",
* "content://mms/drafts", "content://mms/outbox",
* "content://mms/trash".
* @return New Uri of the moved PDU.
* @throws MmsException Error occurred while moving the message.
*/
public Uri move(Uri from, Uri to) throws MmsException {
// Check whether the 'msgId' has been assigned a valid value.
long msgId = ContentUris.parseId(from);
if (msgId == -1L) {
throw new MmsException("Error! ID of the message: -1.");
}
// Get corresponding int value of destination box.
Integer msgBox = MESSAGE_BOX_MAP.get(to);
if (msgBox == null) {
throw new MmsException(
"Bad destination, must be one of "
+ "content://mms/inbox, content://mms/sent, "
+ "content://mms/drafts, content://mms/outbox, "
+ "content://mms/temp.");
}
ContentValues values = new ContentValues(1);
values.put(Mms.MESSAGE_BOX, msgBox);
SqliteWrapper.update(mContext, mContentResolver, from, values, null, null);
return ContentUris.withAppendedId(to, msgId);
}
/**
* Wrap a byte[] into a String.
*/
public static String toIsoString(byte[] bytes) {
try {
return new String(bytes, CharacterSets.MIMENAME_ISO_8859_1);
} catch (UnsupportedEncodingException e) {
// Impossible to reach here!
Log.e(TAG, "ISO_8859_1 must be supported!", e);
return "";
}
}
/**
* Unpack a given String into a byte[].
*/
public static byte[] getBytes(String data) {
try {
return data.getBytes(CharacterSets.MIMENAME_ISO_8859_1);
} catch (UnsupportedEncodingException e) {
// Impossible to reach here!
Log.e(TAG, "ISO_8859_1 must be supported!", e);
return new byte[0];
}
}
/**
* Remove all objects in the temporary path.
*/
public void release() {
Uri uri = Uri.parse(TEMPORARY_DRM_OBJECT_URI);
SqliteWrapper.delete(mContext, mContentResolver, uri, null, null);
}
/**
* Find all messages to be sent or downloaded before certain time.
*/
public Cursor getPendingMessages(long dueTime) {
Uri.Builder uriBuilder = PendingMessages.CONTENT_URI.buildUpon();
uriBuilder.appendQueryParameter("protocol", "mms");
String selection = PendingMessages.ERROR_TYPE + " < ?"
+ " AND " + PendingMessages.DUE_TIME + " <= ?";
String[] selectionArgs = new String[] {
String.valueOf(MmsSms.ERR_TYPE_GENERIC_PERMANENT),
String.valueOf(dueTime)
};
return SqliteWrapper.query(mContext, mContentResolver,
uriBuilder.build(), null, selection, selectionArgs,
PendingMessages.DUE_TIME);
}
}
| [
"zhangjinqiang@huaqin.com"
] | zhangjinqiang@huaqin.com |
d101f631fd05bc63fab91d33d2579091c8a3225a | f4bdbbf2a2e87fda6b27846caa81cb6717d571c5 | /src/org/evertree/lettres/BombAction.java | baad535399c15623ba4c8475bc8f575863202404 | [] | no_license | LuisGustavo802/Jogo-MS28S | b3b88663b41af9521c0a99ec4cbcba9e4c238dfd | 8345197437a21c4aefddb9b96779d01388611c55 | refs/heads/master | 2021-03-16T21:57:54.190865 | 2020-10-14T22:27:04 | 2020-10-14T22:27:04 | 246,946,881 | 0 | 1 | null | 2020-10-14T22:27:05 | 2020-03-12T23:11:47 | Java | UTF-8 | Java | false | false | 879 | java | package org.evertree.lettres;
import org.evertree.lettres.action.Action;
public class BombAction extends Action {
private Game game;
public BombAction(Game game) {
this.game = game;
}
@Override
public void execute() {
int x = blocks[0].getX();
int y = blocks[0].getY();
game.getUserInterface().playBomb(x, y);
game.getRealBlocks().remove(x, y);
game.getRealBlocks().remove(x - 1, y);
game.getRealBlocks().remove(x + 1, y);
game.getRealBlocks().remove(x, y + 1);
game.getRealBlocks().remove(x, y - 1);
game.getRealBlocks().remove(x - 2, y);
game.getRealBlocks().remove(x + 2, y);
game.getRealBlocks().remove(x, y + 2);
game.getRealBlocks().remove(x, y - 2);
game.getRealBlocks().remove(x + 1, y + 1);
game.getRealBlocks().remove(x + 1, y - 1);
game.getRealBlocks().remove(x - 1, y + 1);
game.getRealBlocks().remove(x - 1, y - 1);
}
}
| [
"luis_gustavo802@outlook.com"
] | luis_gustavo802@outlook.com |
54a788112e84a14b1c43198bec138322bca19699 | 46bddc7aceff02951152665354ebe4d5b6f759b2 | /src/telephone_directory/Update_directory.java | f1d8a4deaee983386b2488c8e544059fd3449f0a | [
"Apache-2.0"
] | permissive | harivilasp/Telephone_directory | 5d4bf826b825678ba2fc551747065c96f6c13d25 | db19664e39a229cefdb5a7f52859d6fe02961ba4 | refs/heads/master | 2020-06-04T20:26:20.579884 | 2019-06-16T11:00:24 | 2019-06-16T11:00:24 | 192,179,949 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,381 | 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 telephone_directory;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import javax.swing.JOptionPane;
/**
*
* @author DELL
*/
public class Update_directory extends javax.swing.JPanel {
/**
* Creates new form Update_directory
*/
public Update_directory() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jTextField1 = new javax.swing.JTextField();
jLabel3 = new javax.swing.JLabel();
jTextField2 = new javax.swing.JTextField();
jButton1 = new javax.swing.JButton();
jLabel1.setText("Update Directory");
jLabel2.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel2.setText("Name");
jLabel3.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel3.setText("Contact");
jButton1.setText("Update");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
this.setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(84, 84, 84)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 70, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 70, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 105, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jTextField1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.PREFERRED_SIZE, 70, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jTextField2, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.PREFERRED_SIZE, 70, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(103, 103, 103))
.addGroup(layout.createSequentialGroup()
.addGap(168, 168, 168)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jButton1)
.addComponent(jLabel1))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(22, 22, 22)
.addComponent(jLabel1)
.addGap(28, 28, 28)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(27, 27, 27)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel3)
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 98, Short.MAX_VALUE)
.addComponent(jButton1)
.addGap(48, 48, 48))
);
}// </editor-fold>//GEN-END:initComponents
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
// TODO add your handling code here:
try
{
Class.forName("com.mysql.jdbc.Driver");
Connection cn = DriverManager.getConnection("jdbc:mysql://localhost:3306/directory","root","");
String sql1="update search set contact=? where name=?";
//String sql2="update logindata set password=? where email=?";
PreparedStatement p1=cn.prepareStatement(sql1);
p1.setString(2,jTextField1.getText());
p1.setString(1,jTextField2.getText());
//p1.setString(2,jTextField4.getText());
//p1.setString(3,jTextField5.getText());
//p1.setString(4,jTextField6.getText());
//PreparedStatement p2=cn.prepareStatement(sql2);
//p2.setString(1,jTextField2.getText());
//p2.setString(2,jTextField1.getText());
int a=p1.executeUpdate();
//int b=p2.executeUpdate();
if(a==1)
{
JOptionPane.showMessageDialog(null, "Data Updated Successfully");
}else
{
JOptionPane.showMessageDialog(null, "Try Again");
}
}
catch(Exception e)
{
JOptionPane.showMessageDialog(null,""+e);
}
}//GEN-LAST:event_jButton1ActionPerformed
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JButton jButton1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JTextField jTextField1;
private javax.swing.JTextField jTextField2;
// End of variables declaration//GEN-END:variables
}
| [
"44021418+harivilasp@users.noreply.github.com"
] | 44021418+harivilasp@users.noreply.github.com |
5bdf8132b12504c6deb0cd9b1e7dded413d1e4aa | e0251a319f2acc042106e45d141273922db51322 | /05-Comparable/Binary.java | 46921c2a968b4063f6d1a79abcda360874811308 | [] | no_license | Shamay/apcs-hw | 6a812ed9c90390116b2ee720d91faf90a4354bf6 | eda8660624142d87474dc6984ce2427218aaeaeb | refs/heads/master | 2021-01-18T15:08:31.247136 | 2014-05-29T12:00:58 | 2014-05-29T12:00:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 666 | java | public class Binary{
public int rbsearch(int n, int[] L,int beg, int end){
int middle = (end-beg) / 2;
if(L[middle] == n){
return middle;
}else if(L[middle] > n){
return rbsearch(n,L,middle,end);
}else if(L[middle] < n){
return rbsearch(n,L,beg,middle);
}else{
return -1;
}
}
public int ibsearch(int n, int[] L){
int beg = 0;
int end = L.length - 1;
int middle = (end-beg) / 2;
while(end != middle && beg != middle){
if(L[middle] == n){
return middle;
}else if(L[middle] > n){
beg = middle;
middle = (end-beg) / 2;
}else{
end = middle;
middle = (end-beg) / 2;
}
}
return -1;
}
}
| [
"shamayagaron@gmail.com"
] | shamayagaron@gmail.com |
664fe5e75d5f8d6b44bb49eacfc9ee8dca2916ba | 60f8c70d135763ef4ceab106f63af2244b2807f2 | /YiLian/src/main/java/com/yilian/mall/adapter/JPMallGoodsAdapter.java | 48763e1e5932e3448a96f53ed8d0f47a0ab92227 | [
"MIT"
] | permissive | LJW123/YiLianMall | f7f7af4d8d8517001455922e2a55e7064cdf9723 | ea335a66cb4fd6417aa264a959847b094c90fb04 | refs/heads/master | 2022-07-16T08:54:43.231502 | 2020-05-21T09:22:05 | 2020-05-21T09:22:05 | 265,793,269 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,355 | java | package com.yilian.mall.adapter;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Paint;
import android.graphics.drawable.Drawable;
import android.text.TextUtils;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import com.nostra13.universalimageloader.core.DisplayImageOptions;
import com.nostra13.universalimageloader.core.ImageLoader;
import com.orhanobut.logger.Logger;
import com.yilian.mall.R;
import com.yilian.mall.entity.JPMallGoodsListEntity;
import com.yilian.mall.utils.MoneyUtil;
import com.yilian.mylibrary.GlideUtil;
import java.util.List;
/**
* Created by liuyuqi on 2016/10/22 0022.
*/
public class JPMallGoodsAdapter extends android.widget.BaseAdapter {
private final Context mContext;
private final List<JPMallGoodsListEntity.ListBean> data;
private final ImageLoader imageLoader;
Drawable drawable = null;
private DisplayImageOptions options;
public JPMallGoodsAdapter(Context context, List<JPMallGoodsListEntity.ListBean> allGoodsLists, ImageLoader imageLoader) {
this.mContext = context;
this.data = allGoodsLists;
this.imageLoader = imageLoader;
options = new DisplayImageOptions.Builder()
.showStubImage(R.mipmap.login_module_default_jp) //设置图片在下载期间显示的图片
.showImageForEmptyUri(R.mipmap.login_module_default_jp)//设置图片Uri为空或是错误的时候显示的图片
.showImageOnFail(R.mipmap.login_module_default_jp) //设置图片加载/解码过程中错误时候显示的图片
.cacheInMemory(false) //设置下载的图片是否缓存在内存中
.cacheOnDisc(true) //设置下载的图片是否缓存在SD卡中
.bitmapConfig(Bitmap.Config.RGB_565) //设置图片的解码类型
// .displayer(new SimpleBitmapDisplayer()) // default 可以设置动画,比如圆角或者渐变
.build();
}
@Override
public int getCount() {
return data.size();
}
@Override
public Object getItem(int i) {
return data.get(i);
}
@Override
public long getItemId(int i) {
return i;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
final MyViewHolder holder;
if (convertView == null) {
convertView = View.inflate(mContext, R.layout.item_jp_good, null);
holder = new MyViewHolder();
holder.iv_goods1 = (ImageView) convertView.findViewById(R.id.iv_goods1);
holder.tv_goods_name = (TextView) convertView.findViewById(R.id.tv_goods_name);
holder.tv_cost_price = (TextView) convertView.findViewById(R.id.tv_cost_price);
holder.tv_market_price = (TextView) convertView.findViewById(R.id.tv_market_price);
holder.tv_discount = (TextView) convertView.findViewById(R.id.tv_discount);
holder.tv_tag = (TextView) convertView.findViewById(R.id.tv_tag);
holder.iv_null_goods = (ImageView) convertView.findViewById(R.id.iv_sold_out);
holder.tvPrice = (TextView)convertView.findViewById(R.id.tv_price);
holder.tvSoldNumber =(TextView) convertView.findViewById(R.id.tv_sold_number);
//背包
convertView.setTag(holder);
} else {
holder = (MyViewHolder) convertView.getTag();
}
JPMallGoodsListEntity.ListBean mallGoodsLists = data.get(position);
String imageUrl = mallGoodsLists.goodsIcon;
Logger.i(" 商品搜索 URL "+imageUrl);
if (!TextUtils.isEmpty(imageUrl)){
GlideUtil.showImageNoSuffix(mContext,imageUrl,holder.iv_goods1);
}else {
holder.iv_goods1.setImageResource(R.mipmap.default_jp);
}
Logger.i("精确搜素mallGoodsLists.hasGoods" + mallGoodsLists.hasGoods);
if ("0".equals(mallGoodsLists.hasGoods)) {
holder.iv_null_goods.setVisibility(View.VISIBLE);
} else {
holder.iv_null_goods.setVisibility(View.GONE);
}
holder.tv_goods_name.setText(mallGoodsLists.goodsName);
if (!TextUtils.isEmpty(mallGoodsLists.goodsPrice)&&!mallGoodsLists.goodsPrice.equals("false")){
holder.tv_market_price.setText(MoneyUtil.set¥Money(MoneyUtil.getLeXiangBiNoZero(mallGoodsLists.goodsPrice)));//市场价
}
holder.tvPrice.setText(MoneyUtil.set¥Money(MoneyUtil.getLeXiangBiNoZero(mallGoodsLists.goodsCost)));//售价
holder.tv_market_price.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG | Paint.ANTI_ALIAS_FLAG);
holder.tv_discount.setText(mContext.getString(R.string.back_score) + MoneyUtil.getLeXiangBiNoZero(mallGoodsLists.returnIntegral) );
holder.tv_tag.setText(mallGoodsLists.tagsName);
holder.tvSoldNumber.setText("已售:"+mallGoodsLists.sellCount);
return convertView;
}
class MyViewHolder {
ImageView iv_null_goods;
ImageView iv_goods1;
TextView tv_goods_name;
TextView tv_cost_price;
TextView tv_market_price;
TextView tv_discount;
TextView tv_tag;
public TextView tvPrice;
public TextView tvSoldNumber;
}
}
| [
"18203660536@163.com"
] | 18203660536@163.com |
3bdb3a60c8c89647ac0fdf52218435d321ce1a40 | 7e52efe02fad591402a2e76b453371bb8e7d0b52 | /src/main/java/org/terasology/rendering/dag/nodes/HighPassNode.java | 1b85a7110fdfcbc92f15406fb185be6e75055220 | [] | no_license | dave2s/BasicRendering | 9c72447bb76be5a7485fbc5743407c6d011d2c8d | 6e8d4c34f76dca8031e6ed554e71997ced76648c | refs/heads/master | 2020-06-19T21:21:16.365314 | 2019-08-24T03:34:52 | 2019-08-24T03:34:52 | 195,080,138 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,685 | java | /*
* Copyright 2017 MovingBlocks
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.terasology.rendering.dag.nodes;
import org.terasology.assets.ResourceUrn;
import org.terasology.config.Config;
import org.terasology.config.RenderingConfig;
import org.terasology.context.Context;
import org.terasology.engine.SimpleUri;
import org.terasology.monitoring.PerformanceMonitor;
import org.terasology.naming.Name;
import org.terasology.rendering.assets.material.Material;
import org.terasology.rendering.dag.ConditionDependentNode;
import org.terasology.rendering.dag.dependencyConnections.BufferPairConnection;
import org.terasology.rendering.dag.stateChanges.BindFbo;
import org.terasology.rendering.dag.stateChanges.EnableMaterial;
import org.terasology.rendering.dag.stateChanges.SetInputTextureFromFbo;
import org.terasology.rendering.dag.stateChanges.SetViewportToSizeOf;
import org.terasology.rendering.nui.properties.Range;
import org.terasology.rendering.opengl.FBO;
import org.terasology.rendering.opengl.FboConfig;
import org.terasology.rendering.opengl.fbms.DisplayResolutionDependentFbo;
import static org.terasology.rendering.dag.stateChanges.SetInputTextureFromFbo.FboTexturesTypes.ColorTexture;
import static org.terasology.rendering.opengl.OpenGLUtils.renderFullscreenQuad;
import static org.terasology.rendering.opengl.ScalingFactors.FULL_SCALE;
/**
* An instance of this class generates a high pass image out of the color content of the GBUFFER and stores
* the result into HIGH_PASS_FBO_URI, for other nodes to take advantage of it.
*/
public class HighPassNode extends ConditionDependentNode {
public static final SimpleUri HIGH_PASS_FBO_URI = new SimpleUri("engine:fbo.highPass");
public static final FboConfig HIGH_PASS_FBO_CONFIG = new FboConfig(HIGH_PASS_FBO_URI, FULL_SCALE, FBO.Type.DEFAULT);
private static final ResourceUrn HIGH_PASS_MATERIAL_URN = new ResourceUrn("engine:prog.highPass");
@SuppressWarnings("FieldCanBeLocal")
@Range(min = 0.0f, max = 5.0f)
private float highPassThreshold = 0.05f;
private Material highPass;
public HighPassNode(String nodeUri, Name providingModule, Context context) {
super(nodeUri, providingModule, context);
RenderingConfig renderingConfig = context.get(Config.class).getRendering();
renderingConfig.subscribe(RenderingConfig.BLOOM, this);
requiresCondition(renderingConfig::isBloom);
addOutputFboConnection(1);
addOutputBufferPairConnection(1);
}
@Override
public void setDependencies(Context context) {
DisplayResolutionDependentFbo displayResolutionDependentFBOs = context.get(DisplayResolutionDependentFbo.class);
FBO highPassFbo = requiresFbo(HIGH_PASS_FBO_CONFIG, displayResolutionDependentFBOs);
addDesiredStateChange(new BindFbo(highPassFbo));
addOutputFboConnection(1, highPassFbo);
addDesiredStateChange(new SetViewportToSizeOf(highPassFbo));
highPass = getMaterial(HIGH_PASS_MATERIAL_URN);
addDesiredStateChange(new EnableMaterial(HIGH_PASS_MATERIAL_URN));
BufferPairConnection bufferPairConnection = getInputBufferPairConnection(1);
FBO lastUpdatedGBuffer = bufferPairConnection.getBufferPair().getPrimaryFbo();
addOutputBufferPairConnection(1, bufferPairConnection);
int textureSlot = 0;
addDesiredStateChange(new SetInputTextureFromFbo(textureSlot, lastUpdatedGBuffer, ColorTexture,
displayResolutionDependentFBOs, HIGH_PASS_MATERIAL_URN, "tex"));
}
/**
* Generates a high pass image out of the color content of the GBUFFER and stores it
* into the HIGH_PASS_FBO_URI.
*
* This is an entirely 2D process and the only "3D" geometry involved is a full screen quad.
*/
@Override
public void process() {
PerformanceMonitor.startActivity("rendering/" + getUri());
highPass.setFloat("highPassThreshold", highPassThreshold, true);
renderFullscreenQuad();
PerformanceMonitor.endActivity();
}
}
| [
"davidskacel@gmail.com"
] | davidskacel@gmail.com |
cbf09c5961b419bb08147ea6422cd2cb61872b0c | 4688d19282b2b3b46fc7911d5d67eac0e87bbe24 | /aws-java-sdk-greengrass/src/main/java/com/amazonaws/services/greengrass/model/ListFunctionDefinitionsResult.java | cbb4c3fac4eecd40b667aa9ef83e6fefbb99ea3f | [
"Apache-2.0"
] | permissive | emilva/aws-sdk-java | c123009b816963a8dc86469405b7e687602579ba | 8fdbdbacdb289fdc0ede057015722b8f7a0d89dc | refs/heads/master | 2021-05-13T17:39:35.101322 | 2018-12-12T13:11:42 | 2018-12-12T13:11:42 | 116,821,450 | 1 | 0 | Apache-2.0 | 2018-09-19T04:17:41 | 2018-01-09T13:45:39 | Java | UTF-8 | Java | false | false | 6,267 | java | /*
* Copyright 2012-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.greengrass.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see <a href="http://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListFunctionDefinitions" target="_top">AWS
* API Documentation</a>
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListFunctionDefinitionsResult extends com.amazonaws.AmazonWebServiceResult<com.amazonaws.ResponseMetadata> implements Serializable, Cloneable {
/** Definitions */
private java.util.List<DefinitionInformation> definitions;
/** The token for the next set of results, or ''null'' if there are no additional results. */
private String nextToken;
/**
* Definitions
*
* @return Definitions
*/
public java.util.List<DefinitionInformation> getDefinitions() {
return definitions;
}
/**
* Definitions
*
* @param definitions
* Definitions
*/
public void setDefinitions(java.util.Collection<DefinitionInformation> definitions) {
if (definitions == null) {
this.definitions = null;
return;
}
this.definitions = new java.util.ArrayList<DefinitionInformation>(definitions);
}
/**
* Definitions
* <p>
* <b>NOTE:</b> This method appends the values to the existing list (if any). Use
* {@link #setDefinitions(java.util.Collection)} or {@link #withDefinitions(java.util.Collection)} if you want to
* override the existing values.
* </p>
*
* @param definitions
* Definitions
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListFunctionDefinitionsResult withDefinitions(DefinitionInformation... definitions) {
if (this.definitions == null) {
setDefinitions(new java.util.ArrayList<DefinitionInformation>(definitions.length));
}
for (DefinitionInformation ele : definitions) {
this.definitions.add(ele);
}
return this;
}
/**
* Definitions
*
* @param definitions
* Definitions
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListFunctionDefinitionsResult withDefinitions(java.util.Collection<DefinitionInformation> definitions) {
setDefinitions(definitions);
return this;
}
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*
* @param nextToken
* The token for the next set of results, or ''null'' if there are no additional results.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*
* @return The token for the next set of results, or ''null'' if there are no additional results.
*/
public String getNextToken() {
return this.nextToken;
}
/**
* The token for the next set of results, or ''null'' if there are no additional results.
*
* @param nextToken
* The token for the next set of results, or ''null'' if there are no additional results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListFunctionDefinitionsResult withNextToken(String nextToken) {
setNextToken(nextToken);
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getDefinitions() != null)
sb.append("Definitions: ").append(getDefinitions()).append(",");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListFunctionDefinitionsResult == false)
return false;
ListFunctionDefinitionsResult other = (ListFunctionDefinitionsResult) obj;
if (other.getDefinitions() == null ^ this.getDefinitions() == null)
return false;
if (other.getDefinitions() != null && other.getDefinitions().equals(this.getDefinitions()) == false)
return false;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDefinitions() == null) ? 0 : getDefinitions().hashCode());
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
return hashCode;
}
@Override
public ListFunctionDefinitionsResult clone() {
try {
return (ListFunctionDefinitionsResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}
| [
""
] | |
eaaa28c26e1232425e80f96b4d5654f8553da787 | 69204119e05f2aca0c20df771372f7e6102888c4 | /src/main/java/co/markwilkins/mythology/database/tables/records/CharacterRelationshipsRecord.java | 8f9b6a667176fc6c2ff3fb3c3fb8a8de3254a42d | [] | no_license | mwilkins91/mythology-v2 | 1b4633e269aca704a4279f7675b3a585f1df6a14 | 813af0e4ec70cccf0c7eb02ab0fcf35192da8baf | refs/heads/master | 2020-06-26T20:33:15.188356 | 2019-08-07T04:22:26 | 2019-08-07T04:22:26 | 199,749,640 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | true | 5,094 | java | /*
* This file is generated by jOOQ.
*/
package co.markwilkins.mythology.database.tables.records;
import co.markwilkins.mythology.database.tables.CharacterRelationships;
import javax.annotation.Generated;
import org.jooq.Field;
import org.jooq.Record3;
import org.jooq.Row3;
import org.jooq.impl.TableRecordImpl;
/**
* This class is generated by jOOQ.
*/
@Generated(
value = {
"http://www.jooq.org",
"jOOQ version:3.11.11"
},
comments = "This class is generated by jOOQ"
)
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class CharacterRelationshipsRecord extends TableRecordImpl<CharacterRelationshipsRecord> implements Record3<String, Integer, Integer> {
private static final long serialVersionUID = -2016749302;
/**
* Setter for <code>myth.character_relationships.relationship</code>.
*/
public void setRelationship(String value) {
set(0, value);
}
/**
* Getter for <code>myth.character_relationships.relationship</code>.
*/
public String getRelationship() {
return (String) get(0);
}
/**
* Setter for <code>myth.character_relationships.character_id</code>.
*/
public void setCharacterId(Integer value) {
set(1, value);
}
/**
* Getter for <code>myth.character_relationships.character_id</code>.
*/
public Integer getCharacterId() {
return (Integer) get(1);
}
/**
* Setter for <code>myth.character_relationships.related_character_id</code>.
*/
public void setRelatedCharacterId(Integer value) {
set(2, value);
}
/**
* Getter for <code>myth.character_relationships.related_character_id</code>.
*/
public Integer getRelatedCharacterId() {
return (Integer) get(2);
}
// -------------------------------------------------------------------------
// Record3 type implementation
// -------------------------------------------------------------------------
/**
* {@inheritDoc}
*/
@Override
public Row3<String, Integer, Integer> fieldsRow() {
return (Row3) super.fieldsRow();
}
/**
* {@inheritDoc}
*/
@Override
public Row3<String, Integer, Integer> valuesRow() {
return (Row3) super.valuesRow();
}
/**
* {@inheritDoc}
*/
@Override
public Field<String> field1() {
return CharacterRelationships.CHARACTER_RELATIONSHIPS.RELATIONSHIP;
}
/**
* {@inheritDoc}
*/
@Override
public Field<Integer> field2() {
return CharacterRelationships.CHARACTER_RELATIONSHIPS.CHARACTER_ID;
}
/**
* {@inheritDoc}
*/
@Override
public Field<Integer> field3() {
return CharacterRelationships.CHARACTER_RELATIONSHIPS.RELATED_CHARACTER_ID;
}
/**
* {@inheritDoc}
*/
@Override
public String component1() {
return getRelationship();
}
/**
* {@inheritDoc}
*/
@Override
public Integer component2() {
return getCharacterId();
}
/**
* {@inheritDoc}
*/
@Override
public Integer component3() {
return getRelatedCharacterId();
}
/**
* {@inheritDoc}
*/
@Override
public String value1() {
return getRelationship();
}
/**
* {@inheritDoc}
*/
@Override
public Integer value2() {
return getCharacterId();
}
/**
* {@inheritDoc}
*/
@Override
public Integer value3() {
return getRelatedCharacterId();
}
/**
* {@inheritDoc}
*/
@Override
public CharacterRelationshipsRecord value1(String value) {
setRelationship(value);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public CharacterRelationshipsRecord value2(Integer value) {
setCharacterId(value);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public CharacterRelationshipsRecord value3(Integer value) {
setRelatedCharacterId(value);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public CharacterRelationshipsRecord values(String value1, Integer value2, Integer value3) {
value1(value1);
value2(value2);
value3(value3);
return this;
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached CharacterRelationshipsRecord
*/
public CharacterRelationshipsRecord() {
super(CharacterRelationships.CHARACTER_RELATIONSHIPS);
}
/**
* Create a detached, initialised CharacterRelationshipsRecord
*/
public CharacterRelationshipsRecord(String relationship, Integer characterId, Integer relatedCharacterId) {
super(CharacterRelationships.CHARACTER_RELATIONSHIPS);
set(0, relationship);
set(1, characterId);
set(2, relatedCharacterId);
}
}
| [
"contactme@markwilkins.co"
] | contactme@markwilkins.co |
8f00fdbab20a99397024cd6d27e49baa35d045c8 | 651e310f79a4ab053d4d6f2a5b79cd6c88de974e | /AngelaAPPa/AngelaAPPa.Android/obj/Debug/MonoAndroid81/android/src/android/support/v7/mediarouter/R.java | 09eae3122841ce3cf8d9cb05dcd48010eca688b5 | [] | no_license | Abicklzito0/AppAngela | ed9959bbadb08f3fb601bcc98c5dbd2751aae44e | 85bf89cc5f7602f3349ac647484354f97d1985c2 | refs/heads/master | 2020-06-17T21:26:35.761651 | 2019-07-09T18:09:53 | 2019-07-09T18:09:53 | 196,060,005 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 679,843 | 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 android.support.v7.mediarouter;
public final class R {
public static final class anim {
public static int abc_fade_in=0x7f050000;
public static int abc_fade_out=0x7f050001;
public static int abc_grow_fade_in_from_bottom=0x7f050002;
public static int abc_popup_enter=0x7f050003;
public static int abc_popup_exit=0x7f050004;
public static int abc_shrink_fade_out_from_bottom=0x7f050005;
public static int abc_slide_in_bottom=0x7f050006;
public static int abc_slide_in_top=0x7f050007;
public static int abc_slide_out_bottom=0x7f050008;
public static int abc_slide_out_top=0x7f050009;
public static int design_bottom_sheet_slide_in=0x7f05000a;
public static int design_bottom_sheet_slide_out=0x7f05000b;
public static int design_snackbar_in=0x7f05000c;
public static int design_snackbar_out=0x7f05000d;
public static int tooltip_enter=0x7f05000e;
public static int tooltip_exit=0x7f05000f;
}
public static final class animator {
public static int design_appbar_state_list_animator=0x7f060000;
}
public static final class attr {
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarDivider=0x7f01006b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarItemBackground=0x7f01006c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarPopupTheme=0x7f010065;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>wrap_content</code></td><td>0</td><td></td></tr>
</table>
*/
public static int actionBarSize=0x7f01006a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarSplitStyle=0x7f010067;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarStyle=0x7f010066;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabBarStyle=0x7f010061;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabStyle=0x7f010060;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTabTextStyle=0x7f010062;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarTheme=0x7f010068;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionBarWidgetTheme=0x7f010069;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionButtonStyle=0x7f010086;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionDropDownStyle=0x7f010082;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionLayout=0x7f0100dd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionMenuTextAppearance=0x7f01006d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int actionMenuTextColor=0x7f01006e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeBackground=0x7f010071;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCloseButtonStyle=0x7f010070;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCloseDrawable=0x7f010073;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCopyDrawable=0x7f010075;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeCutDrawable=0x7f010074;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeFindDrawable=0x7f010079;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModePasteDrawable=0x7f010076;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModePopupWindowStyle=0x7f01007b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeSelectAllDrawable=0x7f010077;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeShareDrawable=0x7f010078;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeSplitBackground=0x7f010072;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeStyle=0x7f01006f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionModeWebSearchDrawable=0x7f01007a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionOverflowButtonStyle=0x7f010063;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int actionOverflowMenuStyle=0x7f010064;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int actionProviderClass=0x7f0100df;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int actionViewClass=0x7f0100de;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int activityChooserViewStyle=0x7f01008e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogButtonGroupStyle=0x7f0100b3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int alertDialogCenterButtons=0x7f0100b4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogStyle=0x7f0100b2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int alertDialogTheme=0x7f0100b5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int allowStacking=0x7f0100cb;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int alpha=0x7f0100cc;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static int alphabeticModifiers=0x7f0100da;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowHeadLength=0x7f0100d3;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int arrowShaftLength=0x7f0100d4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int autoCompleteTextViewStyle=0x7f0100ba;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeMaxTextSize=0x7f010054;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeMinTextSize=0x7f010053;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int autoSizePresetSizes=0x7f010052;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int autoSizeStepGranularity=0x7f010051;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
*/
public static int autoSizeTextType=0x7f010050;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int background=0x7f01002e;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int backgroundSplit=0x7f010030;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int backgroundStacked=0x7f01002f;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int backgroundTint=0x7f010116;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int backgroundTintMode=0x7f010117;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int barLength=0x7f0100d5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_autoHide=0x7f010141;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_hideable=0x7f01011e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_overlapTop=0x7f01014a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
</table>
*/
public static int behavior_peekHeight=0x7f01011d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int behavior_skipCollapsed=0x7f01011f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int borderWidth=0x7f01013f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int borderlessButtonStyle=0x7f01008b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int bottomSheetDialogTheme=0x7f010139;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int bottomSheetStyle=0x7f01013a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarButtonStyle=0x7f010088;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNegativeButtonStyle=0x7f0100b8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarNeutralButtonStyle=0x7f0100b9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarPositiveButtonStyle=0x7f0100b7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonBarStyle=0x7f010087;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
</table>
*/
public static int buttonGravity=0x7f01010b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonPanelSideLayout=0x7f010043;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonStyle=0x7f0100bb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int buttonStyleSmall=0x7f0100bc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int buttonTint=0x7f0100cd;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int buttonTintMode=0x7f0100ce;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardBackgroundColor=0x7f010017;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardCornerRadius=0x7f010018;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardElevation=0x7f010019;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardMaxElevation=0x7f01001a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardPreventCornerOverlap=0x7f01001c;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int cardUseCompatPadding=0x7f01001b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkboxStyle=0x7f0100bd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int checkedTextViewStyle=0x7f0100be;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int closeIcon=0x7f0100ee;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int closeItemLayout=0x7f010040;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int collapseContentDescription=0x7f01010d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int collapseIcon=0x7f01010c;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int collapsedTitleGravity=0x7f01012c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int collapsedTitleTextAppearance=0x7f010126;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int color=0x7f0100cf;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorAccent=0x7f0100aa;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorBackgroundFloating=0x7f0100b1;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorButtonNormal=0x7f0100ae;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlActivated=0x7f0100ac;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlHighlight=0x7f0100ad;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorControlNormal=0x7f0100ab;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int colorError=0x7f0100ca;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorPrimary=0x7f0100a8;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorPrimaryDark=0x7f0100a9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int colorSwitchThumbNormal=0x7f0100af;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int commitIcon=0x7f0100f3;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentDescription=0x7f0100e0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetEnd=0x7f010039;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetEndWithActions=0x7f01003d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetLeft=0x7f01003a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetRight=0x7f01003b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetStart=0x7f010038;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentInsetStartWithNavigation=0x7f01003c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPadding=0x7f01001d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingBottom=0x7f010021;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingLeft=0x7f01001e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingRight=0x7f01001f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentPaddingTop=0x7f010020;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int contentScrim=0x7f010127;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int controlBackground=0x7f0100b0;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int counterEnabled=0x7f010160;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int counterMaxLength=0x7f010161;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterOverflowTextAppearance=0x7f010163;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int counterTextAppearance=0x7f010162;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int customNavigationLayout=0x7f010031;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int defaultQueryHint=0x7f0100ed;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dialogPreferredPadding=0x7f010080;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dialogTheme=0x7f01007f;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
*/
public static int displayOptions=0x7f010027;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int divider=0x7f01002d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dividerHorizontal=0x7f01008d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dividerPadding=0x7f0100d9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dividerVertical=0x7f01008c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int drawableSize=0x7f0100d1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int drawerArrowStyle=0x7f010022;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int dropDownListViewStyle=0x7f01009f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int dropdownListPreferredItemHeight=0x7f010083;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int editTextBackground=0x7f010094;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int editTextColor=0x7f010093;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int editTextStyle=0x7f0100bf;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int elevation=0x7f01003e;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int errorEnabled=0x7f01015e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int errorTextAppearance=0x7f01015f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandActivityOverflowButtonDrawable=0x7f010042;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expanded=0x7f010118;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int expandedTitleGravity=0x7f01012d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMargin=0x7f010120;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginBottom=0x7f010124;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginEnd=0x7f010123;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginStart=0x7f010121;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int expandedTitleMarginTop=0x7f010122;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int expandedTitleTextAppearance=0x7f010125;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int externalRouteEnabledDrawable=0x7f010015;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>auto</code></td><td>-1</td><td></td></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>mini</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fabSize=0x7f01013d;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fastScrollEnabled=0x7f010004;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollHorizontalThumbDrawable=0x7f010007;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollHorizontalTrackDrawable=0x7f010008;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollVerticalThumbDrawable=0x7f010005;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fastScrollVerticalTrackDrawable=0x7f010006;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int font=0x7f010171;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontFamily=0x7f010055;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderAuthority=0x7f01016a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int fontProviderCerts=0x7f01016d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fontProviderFetchStrategy=0x7f01016e;
/** <p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
*/
public static int fontProviderFetchTimeout=0x7f01016f;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderPackage=0x7f01016b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontProviderQuery=0x7f01016c;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
*/
public static int fontStyle=0x7f010170;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int fontWeight=0x7f010172;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int foregroundInsidePadding=0x7f010142;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int gapBetweenBars=0x7f0100d2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int goIcon=0x7f0100ef;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int headerLayout=0x7f010148;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int height=0x7f010023;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hideOnContentScroll=0x7f010037;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hintAnimationEnabled=0x7f010164;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int hintEnabled=0x7f01015d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int hintTextAppearance=0x7f01015c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int homeAsUpIndicator=0x7f010085;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int homeLayout=0x7f010032;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int icon=0x7f01002b;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int iconTint=0x7f0100e2;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int iconTintMode=0x7f0100e3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int iconifiedByDefault=0x7f0100eb;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int imageButtonStyle=0x7f010095;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int indeterminateProgressStyle=0x7f010034;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int initialActivityCount=0x7f010041;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int insetForeground=0x7f010149;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int isLightTheme=0x7f010024;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemBackground=0x7f010146;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemIconTint=0x7f010144;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemPadding=0x7f010036;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int itemTextAppearance=0x7f010147;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int itemTextColor=0x7f010145;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int keylines=0x7f010131;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout=0x7f0100ea;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layoutManager=0x7f010000;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout_anchor=0x7f010134;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x05</td><td></td></tr>
<tr><td><code>center_vertical</code></td><td>0x10</td><td></td></tr>
<tr><td><code>fill_vertical</code></td><td>0x70</td><td></td></tr>
<tr><td><code>center_horizontal</code></td><td>0x01</td><td></td></tr>
<tr><td><code>fill_horizontal</code></td><td>0x07</td><td></td></tr>
<tr><td><code>center</code></td><td>0x11</td><td></td></tr>
<tr><td><code>fill</code></td><td>0x77</td><td></td></tr>
<tr><td><code>clip_vertical</code></td><td>0x80</td><td></td></tr>
<tr><td><code>clip_horizontal</code></td><td>0x08</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int layout_anchorGravity=0x7f010136;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_behavior=0x7f010133;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>pin</code></td><td>1</td><td></td></tr>
<tr><td><code>parallax</code></td><td>2</td><td></td></tr>
</table>
*/
public static int layout_collapseMode=0x7f01012f;
/** <p>Must be a floating point value, such as "<code>1.2</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_collapseParallaxMultiplier=0x7f010130;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
<tr><td><code>all</code></td><td>0x77</td><td></td></tr>
</table>
*/
public static int layout_dodgeInsetEdges=0x7f010138;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0x0</td><td></td></tr>
<tr><td><code>top</code></td><td>0x30</td><td></td></tr>
<tr><td><code>bottom</code></td><td>0x50</td><td></td></tr>
<tr><td><code>left</code></td><td>0x03</td><td></td></tr>
<tr><td><code>right</code></td><td>0x03</td><td></td></tr>
<tr><td><code>start</code></td><td>0x00800003</td><td></td></tr>
<tr><td><code>end</code></td><td>0x00800005</td><td></td></tr>
</table>
*/
public static int layout_insetEdge=0x7f010137;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int layout_keyline=0x7f010135;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scroll</code></td><td>0x1</td><td></td></tr>
<tr><td><code>exitUntilCollapsed</code></td><td>0x2</td><td></td></tr>
<tr><td><code>enterAlways</code></td><td>0x4</td><td></td></tr>
<tr><td><code>enterAlwaysCollapsed</code></td><td>0x8</td><td></td></tr>
<tr><td><code>snap</code></td><td>0x10</td><td></td></tr>
</table>
*/
public static int layout_scrollFlags=0x7f01011b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int layout_scrollInterpolator=0x7f01011c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listChoiceBackgroundIndicator=0x7f0100a7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listDividerAlertDialog=0x7f010081;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listItemLayout=0x7f010047;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listLayout=0x7f010044;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listMenuViewStyle=0x7f0100c7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int listPopupWindowStyle=0x7f0100a0;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeight=0x7f01009a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightLarge=0x7f01009c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemHeightSmall=0x7f01009b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingLeft=0x7f01009d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int listPreferredItemPaddingRight=0x7f01009e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int logo=0x7f01002c;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int logoDescription=0x7f010110;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxActionInlineWidth=0x7f01014b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int maxButtonHeight=0x7f01010a;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int measureWithLargestChild=0x7f0100d7;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteAudioTrackDrawable=0x7f010009;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteButtonStyle=0x7f01000a;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int mediaRouteButtonTint=0x7f010016;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteCloseDrawable=0x7f01000b;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteControlPanelThemeOverlay=0x7f01000c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteDefaultIconDrawable=0x7f01000d;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRoutePauseDrawable=0x7f01000e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRoutePlayDrawable=0x7f01000f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteSpeakerGroupIconDrawable=0x7f010010;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteSpeakerIconDrawable=0x7f010011;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteStopDrawable=0x7f010012;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteTheme=0x7f010013;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int mediaRouteTvIconDrawable=0x7f010014;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int menu=0x7f010143;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int multiChoiceItemLayout=0x7f010045;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int navigationContentDescription=0x7f01010f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int navigationIcon=0x7f01010e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
*/
public static int navigationMode=0x7f010026;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
*/
public static int numericModifiers=0x7f0100db;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int overlapAnchor=0x7f0100e6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingBottomNoButtons=0x7f0100e8;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingEnd=0x7f010114;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingStart=0x7f010113;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int paddingTopNoTitle=0x7f0100e9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int panelBackground=0x7f0100a4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int panelMenuListTheme=0x7f0100a6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int panelMenuListWidth=0x7f0100a5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleContentDescription=0x7f010167;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int passwordToggleDrawable=0x7f010166;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleEnabled=0x7f010165;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int passwordToggleTint=0x7f010168;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
</table>
*/
public static int passwordToggleTintMode=0x7f010169;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupMenuStyle=0x7f010091;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupTheme=0x7f01003f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int popupWindowStyle=0x7f010092;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int preserveIconSpacing=0x7f0100e4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int pressedTranslationZ=0x7f01013e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int progressBarPadding=0x7f010035;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int progressBarStyle=0x7f010033;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int queryBackground=0x7f0100f5;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int queryHint=0x7f0100ec;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int radioButtonStyle=0x7f0100c0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyle=0x7f0100c1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyleIndicator=0x7f0100c2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int ratingBarStyleSmall=0x7f0100c3;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int reverseLayout=0x7f010002;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int rippleColor=0x7f01013c;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int scrimAnimationDuration=0x7f01012b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int scrimVisibleHeightTrigger=0x7f01012a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchHintIcon=0x7f0100f1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchIcon=0x7f0100f0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int searchViewStyle=0x7f010099;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int seekBarStyle=0x7f0100c4;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int selectableItemBackground=0x7f010089;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int selectableItemBackgroundBorderless=0x7f01008a;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
*/
public static int showAsAction=0x7f0100dc;
/** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
*/
public static int showDividers=0x7f0100d8;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int showText=0x7f010101;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int showTitle=0x7f010048;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int singleChoiceItemLayout=0x7f010046;
/** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int spanCount=0x7f010001;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int spinBars=0x7f0100d0;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int spinnerDropDownItemStyle=0x7f010084;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int spinnerStyle=0x7f0100c5;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int splitTrack=0x7f010100;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int srcCompat=0x7f010049;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int stackFromEnd=0x7f010003;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_above_anchor=0x7f0100e7;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_collapsed=0x7f010119;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int state_collapsible=0x7f01011a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int statusBarBackground=0x7f010132;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int statusBarScrim=0x7f010128;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subMenuArrow=0x7f0100e5;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int submitBackground=0x7f0100f6;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int subtitle=0x7f010028;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subtitleTextAppearance=0x7f010103;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int subtitleTextColor=0x7f010112;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int subtitleTextStyle=0x7f01002a;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int suggestionRowLayout=0x7f0100f4;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchMinWidth=0x7f0100fe;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int switchPadding=0x7f0100ff;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int switchStyle=0x7f0100c6;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int switchTextAppearance=0x7f0100fd;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabBackground=0x7f01014f;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabContentStart=0x7f01014e;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>fill</code></td><td>0</td><td></td></tr>
<tr><td><code>center</code></td><td>1</td><td></td></tr>
</table>
*/
public static int tabGravity=0x7f010151;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabIndicatorColor=0x7f01014c;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabIndicatorHeight=0x7f01014d;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMaxWidth=0x7f010153;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabMinWidth=0x7f010152;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>scrollable</code></td><td>0</td><td></td></tr>
<tr><td><code>fixed</code></td><td>1</td><td></td></tr>
</table>
*/
public static int tabMode=0x7f010150;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPadding=0x7f01015b;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingBottom=0x7f01015a;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingEnd=0x7f010159;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingStart=0x7f010157;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabPaddingTop=0x7f010158;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabSelectedTextColor=0x7f010156;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tabTextAppearance=0x7f010154;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tabTextColor=0x7f010155;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
*/
public static int textAllCaps=0x7f01004f;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceLargePopupMenu=0x7f01007c;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItem=0x7f0100a1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItemSecondary=0x7f0100a2;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceListItemSmall=0x7f0100a3;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearancePopupMenuHeader=0x7f01007e;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSearchResultSubtitle=0x7f010097;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSearchResultTitle=0x7f010096;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int textAppearanceSmallPopupMenu=0x7f01007d;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorAlertDialogListItem=0x7f0100b6;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorError=0x7f01013b;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int textColorSearchUrl=0x7f010098;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int theme=0x7f010115;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thickness=0x7f0100d6;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thumbTextPadding=0x7f0100fc;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int thumbTint=0x7f0100f7;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int thumbTintMode=0x7f0100f8;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tickMark=0x7f01004c;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tickMarkTint=0x7f01004d;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int tickMarkTintMode=0x7f01004e;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tint=0x7f01004a;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int tintMode=0x7f01004b;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int title=0x7f010025;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleEnabled=0x7f01012e;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMargin=0x7f010104;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginBottom=0x7f010108;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginEnd=0x7f010106;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginStart=0x7f010105;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMarginTop=0x7f010107;
/** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleMargins=0x7f010109;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextAppearance=0x7f010102;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int titleTextColor=0x7f010111;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int titleTextStyle=0x7f010029;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarId=0x7f010129;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarNavigationButtonStyle=0x7f010090;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int toolbarStyle=0x7f01008f;
/** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
*/
public static int tooltipForegroundColor=0x7f0100c9;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int tooltipFrameBackground=0x7f0100c8;
/** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int tooltipText=0x7f0100e1;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int track=0x7f0100f9;
/** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int trackTint=0x7f0100fa;
/** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
*/
public static int trackTintMode=0x7f0100fb;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int useCompatPadding=0x7f010140;
/** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
*/
public static int voiceIcon=0x7f0100f2;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionBar=0x7f010056;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionBarOverlay=0x7f010058;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowActionModeOverlay=0x7f010059;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedHeightMajor=0x7f01005d;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedHeightMinor=0x7f01005b;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedWidthMajor=0x7f01005a;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowFixedWidthMinor=0x7f01005c;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowMinWidthMajor=0x7f01005e;
/** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowMinWidthMinor=0x7f01005f;
/** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
*/
public static int windowNoTitle=0x7f010057;
}
public static final class bool {
public static int abc_action_bar_embed_tabs=0x7f0e0000;
public static int abc_allow_stacked_button_bar=0x7f0e0001;
public static int abc_config_actionMenuItemAllCaps=0x7f0e0002;
public static int abc_config_closeDialogWhenTouchOutside=0x7f0e0003;
public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0e0004;
}
public static final class color {
public static int abc_background_cache_hint_selector_material_dark=0x7f0d004f;
public static int abc_background_cache_hint_selector_material_light=0x7f0d0050;
public static int abc_btn_colored_borderless_text_material=0x7f0d0051;
public static int abc_btn_colored_text_material=0x7f0d0052;
public static int abc_color_highlight_material=0x7f0d0053;
public static int abc_hint_foreground_material_dark=0x7f0d0054;
public static int abc_hint_foreground_material_light=0x7f0d0055;
public static int abc_input_method_navigation_guard=0x7f0d0004;
public static int abc_primary_text_disable_only_material_dark=0x7f0d0056;
public static int abc_primary_text_disable_only_material_light=0x7f0d0057;
public static int abc_primary_text_material_dark=0x7f0d0058;
public static int abc_primary_text_material_light=0x7f0d0059;
public static int abc_search_url_text=0x7f0d005a;
public static int abc_search_url_text_normal=0x7f0d0005;
public static int abc_search_url_text_pressed=0x7f0d0006;
public static int abc_search_url_text_selected=0x7f0d0007;
public static int abc_secondary_text_material_dark=0x7f0d005b;
public static int abc_secondary_text_material_light=0x7f0d005c;
public static int abc_tint_btn_checkable=0x7f0d005d;
public static int abc_tint_default=0x7f0d005e;
public static int abc_tint_edittext=0x7f0d005f;
public static int abc_tint_seek_thumb=0x7f0d0060;
public static int abc_tint_spinner=0x7f0d0061;
public static int abc_tint_switch_track=0x7f0d0062;
public static int accent_material_dark=0x7f0d0008;
public static int accent_material_light=0x7f0d0009;
public static int background_floating_material_dark=0x7f0d000a;
public static int background_floating_material_light=0x7f0d000b;
public static int background_material_dark=0x7f0d000c;
public static int background_material_light=0x7f0d000d;
public static int bright_foreground_disabled_material_dark=0x7f0d000e;
public static int bright_foreground_disabled_material_light=0x7f0d000f;
public static int bright_foreground_inverse_material_dark=0x7f0d0010;
public static int bright_foreground_inverse_material_light=0x7f0d0011;
public static int bright_foreground_material_dark=0x7f0d0012;
public static int bright_foreground_material_light=0x7f0d0013;
public static int button_material_dark=0x7f0d0014;
public static int button_material_light=0x7f0d0015;
public static int cardview_dark_background=0x7f0d0000;
public static int cardview_light_background=0x7f0d0001;
public static int cardview_shadow_end_color=0x7f0d0002;
public static int cardview_shadow_start_color=0x7f0d0003;
public static int colorAccent=0x7f0d004e;
public static int colorPrimary=0x7f0d004c;
public static int colorPrimaryDark=0x7f0d004d;
public static int design_bottom_navigation_shadow_color=0x7f0d0040;
public static int design_error=0x7f0d0063;
public static int design_fab_shadow_end_color=0x7f0d0041;
public static int design_fab_shadow_mid_color=0x7f0d0042;
public static int design_fab_shadow_start_color=0x7f0d0043;
public static int design_fab_stroke_end_inner_color=0x7f0d0044;
public static int design_fab_stroke_end_outer_color=0x7f0d0045;
public static int design_fab_stroke_top_inner_color=0x7f0d0046;
public static int design_fab_stroke_top_outer_color=0x7f0d0047;
public static int design_snackbar_background_color=0x7f0d0048;
public static int design_tint_password_toggle=0x7f0d0064;
public static int dim_foreground_disabled_material_dark=0x7f0d0016;
public static int dim_foreground_disabled_material_light=0x7f0d0017;
public static int dim_foreground_material_dark=0x7f0d0018;
public static int dim_foreground_material_light=0x7f0d0019;
public static int error_color_material=0x7f0d001a;
public static int foreground_material_dark=0x7f0d001b;
public static int foreground_material_light=0x7f0d001c;
public static int highlighted_text_material_dark=0x7f0d001d;
public static int highlighted_text_material_light=0x7f0d001e;
public static int launcher_background=0x7f0d004b;
public static int material_blue_grey_800=0x7f0d001f;
public static int material_blue_grey_900=0x7f0d0020;
public static int material_blue_grey_950=0x7f0d0021;
public static int material_deep_teal_200=0x7f0d0022;
public static int material_deep_teal_500=0x7f0d0023;
public static int material_grey_100=0x7f0d0024;
public static int material_grey_300=0x7f0d0025;
public static int material_grey_50=0x7f0d0026;
public static int material_grey_600=0x7f0d0027;
public static int material_grey_800=0x7f0d0028;
public static int material_grey_850=0x7f0d0029;
public static int material_grey_900=0x7f0d002a;
public static int notification_action_color_filter=0x7f0d0049;
public static int notification_icon_bg_color=0x7f0d004a;
public static int notification_material_background_media_default_color=0x7f0d003f;
public static int primary_dark_material_dark=0x7f0d002b;
public static int primary_dark_material_light=0x7f0d002c;
public static int primary_material_dark=0x7f0d002d;
public static int primary_material_light=0x7f0d002e;
public static int primary_text_default_material_dark=0x7f0d002f;
public static int primary_text_default_material_light=0x7f0d0030;
public static int primary_text_disabled_material_dark=0x7f0d0031;
public static int primary_text_disabled_material_light=0x7f0d0032;
public static int ripple_material_dark=0x7f0d0033;
public static int ripple_material_light=0x7f0d0034;
public static int secondary_text_default_material_dark=0x7f0d0035;
public static int secondary_text_default_material_light=0x7f0d0036;
public static int secondary_text_disabled_material_dark=0x7f0d0037;
public static int secondary_text_disabled_material_light=0x7f0d0038;
public static int switch_thumb_disabled_material_dark=0x7f0d0039;
public static int switch_thumb_disabled_material_light=0x7f0d003a;
public static int switch_thumb_material_dark=0x7f0d0065;
public static int switch_thumb_material_light=0x7f0d0066;
public static int switch_thumb_normal_material_dark=0x7f0d003b;
public static int switch_thumb_normal_material_light=0x7f0d003c;
public static int tooltip_background_dark=0x7f0d003d;
public static int tooltip_background_light=0x7f0d003e;
}
public static final class dimen {
public static int abc_action_bar_content_inset_material=0x7f08001b;
public static int abc_action_bar_content_inset_with_nav=0x7f08001c;
public static int abc_action_bar_default_height_material=0x7f080010;
public static int abc_action_bar_default_padding_end_material=0x7f08001d;
public static int abc_action_bar_default_padding_start_material=0x7f08001e;
public static int abc_action_bar_elevation_material=0x7f080020;
public static int abc_action_bar_icon_vertical_padding_material=0x7f080021;
public static int abc_action_bar_overflow_padding_end_material=0x7f080022;
public static int abc_action_bar_overflow_padding_start_material=0x7f080023;
public static int abc_action_bar_progress_bar_size=0x7f080011;
public static int abc_action_bar_stacked_max_height=0x7f080024;
public static int abc_action_bar_stacked_tab_max_width=0x7f080025;
public static int abc_action_bar_subtitle_bottom_margin_material=0x7f080026;
public static int abc_action_bar_subtitle_top_margin_material=0x7f080027;
public static int abc_action_button_min_height_material=0x7f080028;
public static int abc_action_button_min_width_material=0x7f080029;
public static int abc_action_button_min_width_overflow_material=0x7f08002a;
public static int abc_alert_dialog_button_bar_height=0x7f08000f;
public static int abc_button_inset_horizontal_material=0x7f08002b;
public static int abc_button_inset_vertical_material=0x7f08002c;
public static int abc_button_padding_horizontal_material=0x7f08002d;
public static int abc_button_padding_vertical_material=0x7f08002e;
public static int abc_cascading_menus_min_smallest_width=0x7f08002f;
public static int abc_config_prefDialogWidth=0x7f080014;
public static int abc_control_corner_material=0x7f080030;
public static int abc_control_inset_material=0x7f080031;
public static int abc_control_padding_material=0x7f080032;
public static int abc_dialog_fixed_height_major=0x7f080015;
public static int abc_dialog_fixed_height_minor=0x7f080016;
public static int abc_dialog_fixed_width_major=0x7f080017;
public static int abc_dialog_fixed_width_minor=0x7f080018;
public static int abc_dialog_list_padding_bottom_no_buttons=0x7f080033;
public static int abc_dialog_list_padding_top_no_title=0x7f080034;
public static int abc_dialog_min_width_major=0x7f080019;
public static int abc_dialog_min_width_minor=0x7f08001a;
public static int abc_dialog_padding_material=0x7f080035;
public static int abc_dialog_padding_top_material=0x7f080036;
public static int abc_dialog_title_divider_material=0x7f080037;
public static int abc_disabled_alpha_material_dark=0x7f080038;
public static int abc_disabled_alpha_material_light=0x7f080039;
public static int abc_dropdownitem_icon_width=0x7f08003a;
public static int abc_dropdownitem_text_padding_left=0x7f08003b;
public static int abc_dropdownitem_text_padding_right=0x7f08003c;
public static int abc_edit_text_inset_bottom_material=0x7f08003d;
public static int abc_edit_text_inset_horizontal_material=0x7f08003e;
public static int abc_edit_text_inset_top_material=0x7f08003f;
public static int abc_floating_window_z=0x7f080040;
public static int abc_list_item_padding_horizontal_material=0x7f080041;
public static int abc_panel_menu_list_width=0x7f080042;
public static int abc_progress_bar_height_material=0x7f080043;
public static int abc_search_view_preferred_height=0x7f080044;
public static int abc_search_view_preferred_width=0x7f080045;
public static int abc_seekbar_track_background_height_material=0x7f080046;
public static int abc_seekbar_track_progress_height_material=0x7f080047;
public static int abc_select_dialog_padding_start_material=0x7f080048;
public static int abc_switch_padding=0x7f08001f;
public static int abc_text_size_body_1_material=0x7f080049;
public static int abc_text_size_body_2_material=0x7f08004a;
public static int abc_text_size_button_material=0x7f08004b;
public static int abc_text_size_caption_material=0x7f08004c;
public static int abc_text_size_display_1_material=0x7f08004d;
public static int abc_text_size_display_2_material=0x7f08004e;
public static int abc_text_size_display_3_material=0x7f08004f;
public static int abc_text_size_display_4_material=0x7f080050;
public static int abc_text_size_headline_material=0x7f080051;
public static int abc_text_size_large_material=0x7f080052;
public static int abc_text_size_medium_material=0x7f080053;
public static int abc_text_size_menu_header_material=0x7f080054;
public static int abc_text_size_menu_material=0x7f080055;
public static int abc_text_size_small_material=0x7f080056;
public static int abc_text_size_subhead_material=0x7f080057;
public static int abc_text_size_subtitle_material_toolbar=0x7f080012;
public static int abc_text_size_title_material=0x7f080058;
public static int abc_text_size_title_material_toolbar=0x7f080013;
public static int cardview_compat_inset_shadow=0x7f08000c;
public static int cardview_default_elevation=0x7f08000d;
public static int cardview_default_radius=0x7f08000e;
public static int compat_button_inset_horizontal_material=0x7f080094;
public static int compat_button_inset_vertical_material=0x7f080095;
public static int compat_button_padding_horizontal_material=0x7f080096;
public static int compat_button_padding_vertical_material=0x7f080097;
public static int compat_control_corner_material=0x7f080098;
public static int design_appbar_elevation=0x7f080072;
public static int design_bottom_navigation_active_item_max_width=0x7f080073;
public static int design_bottom_navigation_active_text_size=0x7f080074;
public static int design_bottom_navigation_elevation=0x7f080075;
public static int design_bottom_navigation_height=0x7f080076;
public static int design_bottom_navigation_item_max_width=0x7f080077;
public static int design_bottom_navigation_item_min_width=0x7f080078;
public static int design_bottom_navigation_margin=0x7f080079;
public static int design_bottom_navigation_shadow_height=0x7f08007a;
public static int design_bottom_navigation_text_size=0x7f08007b;
public static int design_bottom_sheet_modal_elevation=0x7f08007c;
public static int design_bottom_sheet_peek_height_min=0x7f08007d;
public static int design_fab_border_width=0x7f08007e;
public static int design_fab_elevation=0x7f08007f;
public static int design_fab_image_size=0x7f080080;
public static int design_fab_size_mini=0x7f080081;
public static int design_fab_size_normal=0x7f080082;
public static int design_fab_translation_z_pressed=0x7f080083;
public static int design_navigation_elevation=0x7f080084;
public static int design_navigation_icon_padding=0x7f080085;
public static int design_navigation_icon_size=0x7f080086;
public static int design_navigation_max_width=0x7f08006a;
public static int design_navigation_padding_bottom=0x7f080087;
public static int design_navigation_separator_vertical_padding=0x7f080088;
public static int design_snackbar_action_inline_max_width=0x7f08006b;
public static int design_snackbar_background_corner_radius=0x7f08006c;
public static int design_snackbar_elevation=0x7f080089;
public static int design_snackbar_extra_spacing_horizontal=0x7f08006d;
public static int design_snackbar_max_width=0x7f08006e;
public static int design_snackbar_min_width=0x7f08006f;
public static int design_snackbar_padding_horizontal=0x7f08008a;
public static int design_snackbar_padding_vertical=0x7f08008b;
public static int design_snackbar_padding_vertical_2lines=0x7f080070;
public static int design_snackbar_text_size=0x7f08008c;
public static int design_tab_max_width=0x7f08008d;
public static int design_tab_scrollable_min_width=0x7f080071;
public static int design_tab_text_size=0x7f08008e;
public static int design_tab_text_size_2line=0x7f08008f;
public static int disabled_alpha_material_dark=0x7f080059;
public static int disabled_alpha_material_light=0x7f08005a;
public static int fastscroll_default_thickness=0x7f080000;
public static int fastscroll_margin=0x7f080001;
public static int fastscroll_minimum_range=0x7f080002;
public static int highlight_alpha_material_colored=0x7f08005b;
public static int highlight_alpha_material_dark=0x7f08005c;
public static int highlight_alpha_material_light=0x7f08005d;
public static int hint_alpha_material_dark=0x7f08005e;
public static int hint_alpha_material_light=0x7f08005f;
public static int hint_pressed_alpha_material_dark=0x7f080060;
public static int hint_pressed_alpha_material_light=0x7f080061;
public static int item_touch_helper_max_drag_scroll_per_frame=0x7f080003;
public static int item_touch_helper_swipe_escape_max_velocity=0x7f080004;
public static int item_touch_helper_swipe_escape_velocity=0x7f080005;
public static int mr_controller_volume_group_list_item_height=0x7f080006;
public static int mr_controller_volume_group_list_item_icon_size=0x7f080007;
public static int mr_controller_volume_group_list_max_height=0x7f080008;
public static int mr_controller_volume_group_list_padding_top=0x7f08000b;
public static int mr_dialog_fixed_width_major=0x7f080009;
public static int mr_dialog_fixed_width_minor=0x7f08000a;
public static int notification_action_icon_size=0x7f080099;
public static int notification_action_text_size=0x7f08009a;
public static int notification_big_circle_margin=0x7f08009b;
public static int notification_content_margin_start=0x7f080091;
public static int notification_large_icon_height=0x7f08009c;
public static int notification_large_icon_width=0x7f08009d;
public static int notification_main_column_padding_top=0x7f080092;
public static int notification_media_narrow_margin=0x7f080093;
public static int notification_right_icon_size=0x7f08009e;
public static int notification_right_side_padding_top=0x7f080090;
public static int notification_small_icon_background_padding=0x7f08009f;
public static int notification_small_icon_size_as_large=0x7f0800a0;
public static int notification_subtext_size=0x7f0800a1;
public static int notification_top_pad=0x7f0800a2;
public static int notification_top_pad_large_text=0x7f0800a3;
public static int tooltip_corner_radius=0x7f080062;
public static int tooltip_horizontal_padding=0x7f080063;
public static int tooltip_margin=0x7f080064;
public static int tooltip_precise_anchor_extra_offset=0x7f080065;
public static int tooltip_precise_anchor_threshold=0x7f080066;
public static int tooltip_vertical_padding=0x7f080067;
public static int tooltip_y_offset_non_touch=0x7f080068;
public static int tooltip_y_offset_touch=0x7f080069;
}
public static final class drawable {
public static int abc_ab_share_pack_mtrl_alpha=0x7f020000;
public static int abc_action_bar_item_background_material=0x7f020001;
public static int abc_btn_borderless_material=0x7f020002;
public static int abc_btn_check_material=0x7f020003;
public static int abc_btn_check_to_on_mtrl_000=0x7f020004;
public static int abc_btn_check_to_on_mtrl_015=0x7f020005;
public static int abc_btn_colored_material=0x7f020006;
public static int abc_btn_default_mtrl_shape=0x7f020007;
public static int abc_btn_radio_material=0x7f020008;
public static int abc_btn_radio_to_on_mtrl_000=0x7f020009;
public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a;
public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000b;
public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000c;
public static int abc_cab_background_internal_bg=0x7f02000d;
public static int abc_cab_background_top_material=0x7f02000e;
public static int abc_cab_background_top_mtrl_alpha=0x7f02000f;
public static int abc_control_background_material=0x7f020010;
public static int abc_dialog_material_background=0x7f020011;
public static int abc_edit_text_material=0x7f020012;
public static int abc_ic_ab_back_material=0x7f020013;
public static int abc_ic_arrow_drop_right_black_24dp=0x7f020014;
public static int abc_ic_clear_material=0x7f020015;
public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020016;
public static int abc_ic_go_search_api_material=0x7f020017;
public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f020018;
public static int abc_ic_menu_cut_mtrl_alpha=0x7f020019;
public static int abc_ic_menu_overflow_material=0x7f02001a;
public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001b;
public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001c;
public static int abc_ic_menu_share_mtrl_alpha=0x7f02001d;
public static int abc_ic_search_api_material=0x7f02001e;
public static int abc_ic_star_black_16dp=0x7f02001f;
public static int abc_ic_star_black_36dp=0x7f020020;
public static int abc_ic_star_black_48dp=0x7f020021;
public static int abc_ic_star_half_black_16dp=0x7f020022;
public static int abc_ic_star_half_black_36dp=0x7f020023;
public static int abc_ic_star_half_black_48dp=0x7f020024;
public static int abc_ic_voice_search_api_material=0x7f020025;
public static int abc_item_background_holo_dark=0x7f020026;
public static int abc_item_background_holo_light=0x7f020027;
public static int abc_list_divider_mtrl_alpha=0x7f020028;
public static int abc_list_focused_holo=0x7f020029;
public static int abc_list_longpressed_holo=0x7f02002a;
public static int abc_list_pressed_holo_dark=0x7f02002b;
public static int abc_list_pressed_holo_light=0x7f02002c;
public static int abc_list_selector_background_transition_holo_dark=0x7f02002d;
public static int abc_list_selector_background_transition_holo_light=0x7f02002e;
public static int abc_list_selector_disabled_holo_dark=0x7f02002f;
public static int abc_list_selector_disabled_holo_light=0x7f020030;
public static int abc_list_selector_holo_dark=0x7f020031;
public static int abc_list_selector_holo_light=0x7f020032;
public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033;
public static int abc_popup_background_mtrl_mult=0x7f020034;
public static int abc_ratingbar_indicator_material=0x7f020035;
public static int abc_ratingbar_material=0x7f020036;
public static int abc_ratingbar_small_material=0x7f020037;
public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038;
public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039;
public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a;
public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b;
public static int abc_scrubber_track_mtrl_alpha=0x7f02003c;
public static int abc_seekbar_thumb_material=0x7f02003d;
public static int abc_seekbar_tick_mark_material=0x7f02003e;
public static int abc_seekbar_track_material=0x7f02003f;
public static int abc_spinner_mtrl_am_alpha=0x7f020040;
public static int abc_spinner_textfield_background_material=0x7f020041;
public static int abc_switch_thumb_material=0x7f020042;
public static int abc_switch_track_mtrl_alpha=0x7f020043;
public static int abc_tab_indicator_material=0x7f020044;
public static int abc_tab_indicator_mtrl_alpha=0x7f020045;
public static int abc_text_cursor_material=0x7f020046;
public static int abc_text_select_handle_left_mtrl_dark=0x7f020047;
public static int abc_text_select_handle_left_mtrl_light=0x7f020048;
public static int abc_text_select_handle_middle_mtrl_dark=0x7f020049;
public static int abc_text_select_handle_middle_mtrl_light=0x7f02004a;
public static int abc_text_select_handle_right_mtrl_dark=0x7f02004b;
public static int abc_text_select_handle_right_mtrl_light=0x7f02004c;
public static int abc_textfield_activated_mtrl_alpha=0x7f02004d;
public static int abc_textfield_default_mtrl_alpha=0x7f02004e;
public static int abc_textfield_search_activated_mtrl_alpha=0x7f02004f;
public static int abc_textfield_search_default_mtrl_alpha=0x7f020050;
public static int abc_textfield_search_material=0x7f020051;
public static int abc_vector_test=0x7f020052;
public static int avd_hide_password=0x7f020053;
public static int avd_hide_password_1=0x7f02012f;
public static int avd_hide_password_2=0x7f020130;
public static int avd_hide_password_3=0x7f020131;
public static int avd_show_password=0x7f020054;
public static int avd_show_password_1=0x7f020132;
public static int avd_show_password_2=0x7f020133;
public static int avd_show_password_3=0x7f020134;
public static int design_bottom_navigation_item_background=0x7f020055;
public static int design_fab_background=0x7f020056;
public static int design_ic_visibility=0x7f020057;
public static int design_ic_visibility_off=0x7f020058;
public static int design_password_eye=0x7f020059;
public static int design_snackbar_background=0x7f02005a;
public static int ic_audiotrack_dark=0x7f02005b;
public static int ic_audiotrack_light=0x7f02005c;
public static int ic_dialog_close_dark=0x7f02005d;
public static int ic_dialog_close_light=0x7f02005e;
public static int ic_group_collapse_00=0x7f02005f;
public static int ic_group_collapse_01=0x7f020060;
public static int ic_group_collapse_02=0x7f020061;
public static int ic_group_collapse_03=0x7f020062;
public static int ic_group_collapse_04=0x7f020063;
public static int ic_group_collapse_05=0x7f020064;
public static int ic_group_collapse_06=0x7f020065;
public static int ic_group_collapse_07=0x7f020066;
public static int ic_group_collapse_08=0x7f020067;
public static int ic_group_collapse_09=0x7f020068;
public static int ic_group_collapse_10=0x7f020069;
public static int ic_group_collapse_11=0x7f02006a;
public static int ic_group_collapse_12=0x7f02006b;
public static int ic_group_collapse_13=0x7f02006c;
public static int ic_group_collapse_14=0x7f02006d;
public static int ic_group_collapse_15=0x7f02006e;
public static int ic_group_expand_00=0x7f02006f;
public static int ic_group_expand_01=0x7f020070;
public static int ic_group_expand_02=0x7f020071;
public static int ic_group_expand_03=0x7f020072;
public static int ic_group_expand_04=0x7f020073;
public static int ic_group_expand_05=0x7f020074;
public static int ic_group_expand_06=0x7f020075;
public static int ic_group_expand_07=0x7f020076;
public static int ic_group_expand_08=0x7f020077;
public static int ic_group_expand_09=0x7f020078;
public static int ic_group_expand_10=0x7f020079;
public static int ic_group_expand_11=0x7f02007a;
public static int ic_group_expand_12=0x7f02007b;
public static int ic_group_expand_13=0x7f02007c;
public static int ic_group_expand_14=0x7f02007d;
public static int ic_group_expand_15=0x7f02007e;
public static int ic_media_pause_dark=0x7f02007f;
public static int ic_media_pause_light=0x7f020080;
public static int ic_media_play_dark=0x7f020081;
public static int ic_media_play_light=0x7f020082;
public static int ic_media_stop_dark=0x7f020083;
public static int ic_media_stop_light=0x7f020084;
public static int ic_mr_button_connected_00_dark=0x7f020085;
public static int ic_mr_button_connected_00_light=0x7f020086;
public static int ic_mr_button_connected_01_dark=0x7f020087;
public static int ic_mr_button_connected_01_light=0x7f020088;
public static int ic_mr_button_connected_02_dark=0x7f020089;
public static int ic_mr_button_connected_02_light=0x7f02008a;
public static int ic_mr_button_connected_03_dark=0x7f02008b;
public static int ic_mr_button_connected_03_light=0x7f02008c;
public static int ic_mr_button_connected_04_dark=0x7f02008d;
public static int ic_mr_button_connected_04_light=0x7f02008e;
public static int ic_mr_button_connected_05_dark=0x7f02008f;
public static int ic_mr_button_connected_05_light=0x7f020090;
public static int ic_mr_button_connected_06_dark=0x7f020091;
public static int ic_mr_button_connected_06_light=0x7f020092;
public static int ic_mr_button_connected_07_dark=0x7f020093;
public static int ic_mr_button_connected_07_light=0x7f020094;
public static int ic_mr_button_connected_08_dark=0x7f020095;
public static int ic_mr_button_connected_08_light=0x7f020096;
public static int ic_mr_button_connected_09_dark=0x7f020097;
public static int ic_mr_button_connected_09_light=0x7f020098;
public static int ic_mr_button_connected_10_dark=0x7f020099;
public static int ic_mr_button_connected_10_light=0x7f02009a;
public static int ic_mr_button_connected_11_dark=0x7f02009b;
public static int ic_mr_button_connected_11_light=0x7f02009c;
public static int ic_mr_button_connected_12_dark=0x7f02009d;
public static int ic_mr_button_connected_12_light=0x7f02009e;
public static int ic_mr_button_connected_13_dark=0x7f02009f;
public static int ic_mr_button_connected_13_light=0x7f0200a0;
public static int ic_mr_button_connected_14_dark=0x7f0200a1;
public static int ic_mr_button_connected_14_light=0x7f0200a2;
public static int ic_mr_button_connected_15_dark=0x7f0200a3;
public static int ic_mr_button_connected_15_light=0x7f0200a4;
public static int ic_mr_button_connected_16_dark=0x7f0200a5;
public static int ic_mr_button_connected_16_light=0x7f0200a6;
public static int ic_mr_button_connected_17_dark=0x7f0200a7;
public static int ic_mr_button_connected_17_light=0x7f0200a8;
public static int ic_mr_button_connected_18_dark=0x7f0200a9;
public static int ic_mr_button_connected_18_light=0x7f0200aa;
public static int ic_mr_button_connected_19_dark=0x7f0200ab;
public static int ic_mr_button_connected_19_light=0x7f0200ac;
public static int ic_mr_button_connected_20_dark=0x7f0200ad;
public static int ic_mr_button_connected_20_light=0x7f0200ae;
public static int ic_mr_button_connected_21_dark=0x7f0200af;
public static int ic_mr_button_connected_21_light=0x7f0200b0;
public static int ic_mr_button_connected_22_dark=0x7f0200b1;
public static int ic_mr_button_connected_22_light=0x7f0200b2;
public static int ic_mr_button_connected_23_dark=0x7f0200b3;
public static int ic_mr_button_connected_23_light=0x7f0200b4;
public static int ic_mr_button_connected_24_dark=0x7f0200b5;
public static int ic_mr_button_connected_24_light=0x7f0200b6;
public static int ic_mr_button_connected_25_dark=0x7f0200b7;
public static int ic_mr_button_connected_25_light=0x7f0200b8;
public static int ic_mr_button_connected_26_dark=0x7f0200b9;
public static int ic_mr_button_connected_26_light=0x7f0200ba;
public static int ic_mr_button_connected_27_dark=0x7f0200bb;
public static int ic_mr_button_connected_27_light=0x7f0200bc;
public static int ic_mr_button_connected_28_dark=0x7f0200bd;
public static int ic_mr_button_connected_28_light=0x7f0200be;
public static int ic_mr_button_connected_29_dark=0x7f0200bf;
public static int ic_mr_button_connected_29_light=0x7f0200c0;
public static int ic_mr_button_connected_30_dark=0x7f0200c1;
public static int ic_mr_button_connected_30_light=0x7f0200c2;
public static int ic_mr_button_connecting_00_dark=0x7f0200c3;
public static int ic_mr_button_connecting_00_light=0x7f0200c4;
public static int ic_mr_button_connecting_01_dark=0x7f0200c5;
public static int ic_mr_button_connecting_01_light=0x7f0200c6;
public static int ic_mr_button_connecting_02_dark=0x7f0200c7;
public static int ic_mr_button_connecting_02_light=0x7f0200c8;
public static int ic_mr_button_connecting_03_dark=0x7f0200c9;
public static int ic_mr_button_connecting_03_light=0x7f0200ca;
public static int ic_mr_button_connecting_04_dark=0x7f0200cb;
public static int ic_mr_button_connecting_04_light=0x7f0200cc;
public static int ic_mr_button_connecting_05_dark=0x7f0200cd;
public static int ic_mr_button_connecting_05_light=0x7f0200ce;
public static int ic_mr_button_connecting_06_dark=0x7f0200cf;
public static int ic_mr_button_connecting_06_light=0x7f0200d0;
public static int ic_mr_button_connecting_07_dark=0x7f0200d1;
public static int ic_mr_button_connecting_07_light=0x7f0200d2;
public static int ic_mr_button_connecting_08_dark=0x7f0200d3;
public static int ic_mr_button_connecting_08_light=0x7f0200d4;
public static int ic_mr_button_connecting_09_dark=0x7f0200d5;
public static int ic_mr_button_connecting_09_light=0x7f0200d6;
public static int ic_mr_button_connecting_10_dark=0x7f0200d7;
public static int ic_mr_button_connecting_10_light=0x7f0200d8;
public static int ic_mr_button_connecting_11_dark=0x7f0200d9;
public static int ic_mr_button_connecting_11_light=0x7f0200da;
public static int ic_mr_button_connecting_12_dark=0x7f0200db;
public static int ic_mr_button_connecting_12_light=0x7f0200dc;
public static int ic_mr_button_connecting_13_dark=0x7f0200dd;
public static int ic_mr_button_connecting_13_light=0x7f0200de;
public static int ic_mr_button_connecting_14_dark=0x7f0200df;
public static int ic_mr_button_connecting_14_light=0x7f0200e0;
public static int ic_mr_button_connecting_15_dark=0x7f0200e1;
public static int ic_mr_button_connecting_15_light=0x7f0200e2;
public static int ic_mr_button_connecting_16_dark=0x7f0200e3;
public static int ic_mr_button_connecting_16_light=0x7f0200e4;
public static int ic_mr_button_connecting_17_dark=0x7f0200e5;
public static int ic_mr_button_connecting_17_light=0x7f0200e6;
public static int ic_mr_button_connecting_18_dark=0x7f0200e7;
public static int ic_mr_button_connecting_18_light=0x7f0200e8;
public static int ic_mr_button_connecting_19_dark=0x7f0200e9;
public static int ic_mr_button_connecting_19_light=0x7f0200ea;
public static int ic_mr_button_connecting_20_dark=0x7f0200eb;
public static int ic_mr_button_connecting_20_light=0x7f0200ec;
public static int ic_mr_button_connecting_21_dark=0x7f0200ed;
public static int ic_mr_button_connecting_21_light=0x7f0200ee;
public static int ic_mr_button_connecting_22_dark=0x7f0200ef;
public static int ic_mr_button_connecting_22_light=0x7f0200f0;
public static int ic_mr_button_connecting_23_dark=0x7f0200f1;
public static int ic_mr_button_connecting_23_light=0x7f0200f2;
public static int ic_mr_button_connecting_24_dark=0x7f0200f3;
public static int ic_mr_button_connecting_24_light=0x7f0200f4;
public static int ic_mr_button_connecting_25_dark=0x7f0200f5;
public static int ic_mr_button_connecting_25_light=0x7f0200f6;
public static int ic_mr_button_connecting_26_dark=0x7f0200f7;
public static int ic_mr_button_connecting_26_light=0x7f0200f8;
public static int ic_mr_button_connecting_27_dark=0x7f0200f9;
public static int ic_mr_button_connecting_27_light=0x7f0200fa;
public static int ic_mr_button_connecting_28_dark=0x7f0200fb;
public static int ic_mr_button_connecting_28_light=0x7f0200fc;
public static int ic_mr_button_connecting_29_dark=0x7f0200fd;
public static int ic_mr_button_connecting_29_light=0x7f0200fe;
public static int ic_mr_button_connecting_30_dark=0x7f0200ff;
public static int ic_mr_button_connecting_30_light=0x7f020100;
public static int ic_mr_button_disabled_dark=0x7f020101;
public static int ic_mr_button_disabled_light=0x7f020102;
public static int ic_mr_button_disconnected_dark=0x7f020103;
public static int ic_mr_button_disconnected_light=0x7f020104;
public static int ic_mr_button_grey=0x7f020105;
public static int ic_vol_type_speaker_dark=0x7f020106;
public static int ic_vol_type_speaker_group_dark=0x7f020107;
public static int ic_vol_type_speaker_group_light=0x7f020108;
public static int ic_vol_type_speaker_light=0x7f020109;
public static int ic_vol_type_tv_dark=0x7f02010a;
public static int ic_vol_type_tv_light=0x7f02010b;
public static int mr_button_connected_dark=0x7f02010c;
public static int mr_button_connected_light=0x7f02010d;
public static int mr_button_connecting_dark=0x7f02010e;
public static int mr_button_connecting_light=0x7f02010f;
public static int mr_button_dark=0x7f020110;
public static int mr_button_light=0x7f020111;
public static int mr_dialog_close_dark=0x7f020112;
public static int mr_dialog_close_light=0x7f020113;
public static int mr_dialog_material_background_dark=0x7f020114;
public static int mr_dialog_material_background_light=0x7f020115;
public static int mr_group_collapse=0x7f020116;
public static int mr_group_expand=0x7f020117;
public static int mr_media_pause_dark=0x7f020118;
public static int mr_media_pause_light=0x7f020119;
public static int mr_media_play_dark=0x7f02011a;
public static int mr_media_play_light=0x7f02011b;
public static int mr_media_stop_dark=0x7f02011c;
public static int mr_media_stop_light=0x7f02011d;
public static int mr_vol_type_audiotrack_dark=0x7f02011e;
public static int mr_vol_type_audiotrack_light=0x7f02011f;
public static int navigation_empty_icon=0x7f020120;
public static int notification_action_background=0x7f020121;
public static int notification_bg=0x7f020122;
public static int notification_bg_low=0x7f020123;
public static int notification_bg_low_normal=0x7f020124;
public static int notification_bg_low_pressed=0x7f020125;
public static int notification_bg_normal=0x7f020126;
public static int notification_bg_normal_pressed=0x7f020127;
public static int notification_icon_background=0x7f020128;
public static int notification_template_icon_bg=0x7f02012d;
public static int notification_template_icon_low_bg=0x7f02012e;
public static int notification_tile_bg=0x7f020129;
public static int notify_panel_notification_icon_bg=0x7f02012a;
public static int tooltip_frame_dark=0x7f02012b;
public static int tooltip_frame_light=0x7f02012c;
}
public static final class id {
public static int ALT=0x7f090032;
public static int CTRL=0x7f090033;
public static int Editar=0x7f09009e;
public static int Eliminar=0x7f09009f;
public static int FUNCTION=0x7f090034;
public static int META=0x7f090035;
public static int SHIFT=0x7f090036;
public static int SYM=0x7f090037;
public static int action0=0x7f0900bd;
public static int action_bar=0x7f09007c;
public static int action_bar_activity_content=0x7f090001;
public static int action_bar_container=0x7f09007b;
public static int action_bar_root=0x7f090077;
public static int action_bar_spinner=0x7f090002;
public static int action_bar_subtitle=0x7f09005b;
public static int action_bar_title=0x7f09005a;
public static int action_container=0x7f0900ba;
public static int action_context_bar=0x7f09007d;
public static int action_divider=0x7f0900c1;
public static int action_image=0x7f0900bb;
public static int action_menu_divider=0x7f090003;
public static int action_menu_presenter=0x7f090004;
public static int action_mode_bar=0x7f090079;
public static int action_mode_bar_stub=0x7f090078;
public static int action_mode_close_button=0x7f09005c;
public static int action_text=0x7f0900bc;
public static int actions=0x7f0900ca;
public static int activity_chooser_view_content=0x7f09005d;
public static int add=0x7f090027;
public static int alertTitle=0x7f090070;
public static int all=0x7f090052;
public static int always=0x7f090038;
public static int async=0x7f090056;
public static int auto=0x7f090044;
public static int beginning=0x7f09002f;
public static int blocking=0x7f090057;
public static int bottom=0x7f09003d;
public static int btnAgregar=0x7f09009d;
public static int buttonPanel=0x7f090063;
public static int cancel_action=0x7f0900be;
public static int center=0x7f090045;
public static int center_horizontal=0x7f090046;
public static int center_vertical=0x7f090047;
public static int checkbox=0x7f090073;
public static int chronometer=0x7f0900c6;
public static int clip_horizontal=0x7f09004e;
public static int clip_vertical=0x7f09004f;
public static int collapseActionView=0x7f090039;
public static int container=0x7f09008d;
public static int contentPanel=0x7f090066;
public static int coordinator=0x7f09008e;
public static int custom=0x7f09006d;
public static int customPanel=0x7f09006c;
public static int decor_content_parent=0x7f09007a;
public static int default_activity_button=0x7f090060;
public static int design_bottom_sheet=0x7f090090;
public static int design_menu_item_action_area=0x7f090097;
public static int design_menu_item_action_area_stub=0x7f090096;
public static int design_menu_item_text=0x7f090095;
public static int design_navigation_view=0x7f090094;
public static int disableHome=0x7f090020;
public static int edit_query=0x7f09007e;
public static int end=0x7f090030;
public static int end_padder=0x7f0900cc;
public static int enterAlways=0x7f09003f;
public static int enterAlwaysCollapsed=0x7f090040;
public static int exitUntilCollapsed=0x7f090041;
public static int expand_activities_button=0x7f09005e;
public static int expanded_menu=0x7f090072;
public static int fill=0x7f090050;
public static int fill_horizontal=0x7f090051;
public static int fill_vertical=0x7f090048;
public static int fixed=0x7f090054;
public static int forever=0x7f090058;
public static int ghost_view=0x7f09000a;
public static int home=0x7f090005;
public static int homeAsUp=0x7f090021;
public static int icon=0x7f090062;
public static int icon_group=0x7f0900cb;
public static int ifRoom=0x7f09003a;
public static int image=0x7f09005f;
public static int info=0x7f0900c7;
public static int italic=0x7f090059;
public static int item_touch_helper_previous_elevation=0x7f090000;
public static int largeLabel=0x7f09008c;
public static int left=0x7f090049;
public static int line1=0x7f090017;
public static int line3=0x7f090018;
public static int listMode=0x7f09001d;
public static int list_item=0x7f090061;
public static int masked=0x7f0900cf;
public static int media_actions=0x7f0900c0;
public static int message=0x7f0900cd;
public static int middle=0x7f090031;
public static int mini=0x7f090053;
public static int mr_art=0x7f0900ac;
public static int mr_chooser_list=0x7f0900a1;
public static int mr_chooser_route_desc=0x7f0900a4;
public static int mr_chooser_route_icon=0x7f0900a2;
public static int mr_chooser_route_name=0x7f0900a3;
public static int mr_chooser_title=0x7f0900a0;
public static int mr_close=0x7f0900a9;
public static int mr_control_divider=0x7f0900af;
public static int mr_control_playback_ctrl=0x7f0900b5;
public static int mr_control_subtitle=0x7f0900b8;
public static int mr_control_title=0x7f0900b7;
public static int mr_control_title_container=0x7f0900b6;
public static int mr_custom_control=0x7f0900aa;
public static int mr_default_control=0x7f0900ab;
public static int mr_dialog_area=0x7f0900a6;
public static int mr_expandable_area=0x7f0900a5;
public static int mr_group_expand_collapse=0x7f0900b9;
public static int mr_media_main_control=0x7f0900ad;
public static int mr_name=0x7f0900a8;
public static int mr_playback_control=0x7f0900ae;
public static int mr_title_bar=0x7f0900a7;
public static int mr_volume_control=0x7f0900b0;
public static int mr_volume_group_list=0x7f0900b1;
public static int mr_volume_item_icon=0x7f0900b3;
public static int mr_volume_slider=0x7f0900b4;
public static int multiply=0x7f090028;
public static int navigation_header_container=0x7f090093;
public static int never=0x7f09003b;
public static int none=0x7f090022;
public static int normal=0x7f09001e;
public static int notification_background=0x7f0900c9;
public static int notification_main_column=0x7f0900c3;
public static int notification_main_column_container=0x7f0900c2;
public static int parallax=0x7f09004c;
public static int parentPanel=0x7f090065;
public static int parent_matrix=0x7f09000b;
public static int pin=0x7f09004d;
public static int progress_circular=0x7f090006;
public static int progress_horizontal=0x7f090007;
public static int radio=0x7f090075;
public static int right=0x7f09004a;
public static int right_icon=0x7f0900c8;
public static int right_side=0x7f0900c4;
public static int save_image_matrix=0x7f09000c;
public static int save_non_transition_alpha=0x7f09000d;
public static int save_scale_type=0x7f09000e;
public static int screen=0x7f090029;
public static int scroll=0x7f090042;
public static int scrollIndicatorDown=0x7f09006b;
public static int scrollIndicatorUp=0x7f090067;
public static int scrollView=0x7f090068;
public static int scrollable=0x7f090055;
public static int search_badge=0x7f090080;
public static int search_bar=0x7f09007f;
public static int search_button=0x7f090081;
public static int search_close_btn=0x7f090086;
public static int search_edit_frame=0x7f090082;
public static int search_go_btn=0x7f090088;
public static int search_mag_icon=0x7f090083;
public static int search_plate=0x7f090084;
public static int search_src_text=0x7f090085;
public static int search_voice_btn=0x7f090089;
public static int select_dialog_listview=0x7f09008a;
public static int shortcut=0x7f090074;
public static int showCustom=0x7f090023;
public static int showHome=0x7f090024;
public static int showTitle=0x7f090025;
public static int smallLabel=0x7f09008b;
public static int snackbar_action=0x7f090092;
public static int snackbar_text=0x7f090091;
public static int snap=0x7f090043;
public static int spacer=0x7f090064;
public static int split_action_bar=0x7f090008;
public static int src_atop=0x7f09002a;
public static int src_in=0x7f09002b;
public static int src_over=0x7f09002c;
public static int start=0x7f09004b;
public static int status_bar_latest_event_content=0x7f0900bf;
public static int submenuarrow=0x7f090076;
public static int submit_area=0x7f090087;
public static int tabMode=0x7f09001f;
public static int tag_transition_group=0x7f090019;
public static int text=0x7f09001a;
public static int text2=0x7f09001b;
public static int textSpacerNoButtons=0x7f09006a;
public static int textSpacerNoTitle=0x7f090069;
public static int text_input_password_toggle=0x7f090098;
public static int textinput_counter=0x7f090014;
public static int textinput_error=0x7f090015;
public static int time=0x7f0900c5;
public static int title=0x7f09001c;
public static int titleDividerNoCustom=0x7f090071;
public static int title_template=0x7f09006f;
public static int top=0x7f09003e;
public static int topPanel=0x7f09006e;
public static int touch_outside=0x7f09008f;
public static int transition_current_scene=0x7f09000f;
public static int transition_layout_save=0x7f090010;
public static int transition_position=0x7f090011;
public static int transition_scene_layoutid_cache=0x7f090012;
public static int transition_transform=0x7f090013;
public static int txtDireccion=0x7f09009b;
public static int txtID=0x7f090099;
public static int txtNombre=0x7f09009a;
public static int txtTelefono=0x7f09009c;
public static int uniform=0x7f09002d;
public static int up=0x7f090009;
public static int useLogo=0x7f090026;
public static int view_offset_helper=0x7f090016;
public static int visible=0x7f0900ce;
public static int volume_item_container=0x7f0900b2;
public static int withText=0x7f09003c;
public static int wrap_content=0x7f09002e;
}
public static final class integer {
public static int abc_config_activityDefaultDur=0x7f0b0003;
public static int abc_config_activityShortDur=0x7f0b0004;
public static int app_bar_elevation_anim_duration=0x7f0b0008;
public static int bottom_sheet_slide_duration=0x7f0b0009;
public static int cancel_button_image_alpha=0x7f0b0005;
public static int config_tooltipAnimTime=0x7f0b0006;
public static int design_snackbar_text_max_lines=0x7f0b0007;
public static int hide_password_duration=0x7f0b000a;
public static int mr_controller_volume_group_list_animation_duration_ms=0x7f0b0000;
public static int mr_controller_volume_group_list_fade_in_duration_ms=0x7f0b0001;
public static int mr_controller_volume_group_list_fade_out_duration_ms=0x7f0b0002;
public static int show_password_duration=0x7f0b000b;
public static int status_bar_notification_info_maxnum=0x7f0b000c;
}
public static final class interpolator {
public static int mr_fast_out_slow_in=0x7f070000;
public static int mr_linear_out_slow_in=0x7f070001;
}
public static final class layout {
public static int abc_action_bar_title_item=0x7f040000;
public static int abc_action_bar_up_container=0x7f040001;
public static int abc_action_menu_item_layout=0x7f040002;
public static int abc_action_menu_layout=0x7f040003;
public static int abc_action_mode_bar=0x7f040004;
public static int abc_action_mode_close_item_material=0x7f040005;
public static int abc_activity_chooser_view=0x7f040006;
public static int abc_activity_chooser_view_list_item=0x7f040007;
public static int abc_alert_dialog_button_bar_material=0x7f040008;
public static int abc_alert_dialog_material=0x7f040009;
public static int abc_alert_dialog_title_material=0x7f04000a;
public static int abc_dialog_title_material=0x7f04000b;
public static int abc_expanded_menu_layout=0x7f04000c;
public static int abc_list_menu_item_checkbox=0x7f04000d;
public static int abc_list_menu_item_icon=0x7f04000e;
public static int abc_list_menu_item_layout=0x7f04000f;
public static int abc_list_menu_item_radio=0x7f040010;
public static int abc_popup_menu_header_item_layout=0x7f040011;
public static int abc_popup_menu_item_layout=0x7f040012;
public static int abc_screen_content_include=0x7f040013;
public static int abc_screen_simple=0x7f040014;
public static int abc_screen_simple_overlay_action_mode=0x7f040015;
public static int abc_screen_toolbar=0x7f040016;
public static int abc_search_dropdown_item_icons_2line=0x7f040017;
public static int abc_search_view=0x7f040018;
public static int abc_select_dialog_material=0x7f040019;
public static int design_bottom_navigation_item=0x7f04001a;
public static int design_bottom_sheet_dialog=0x7f04001b;
public static int design_layout_snackbar=0x7f04001c;
public static int design_layout_snackbar_include=0x7f04001d;
public static int design_layout_tab_icon=0x7f04001e;
public static int design_layout_tab_text=0x7f04001f;
public static int design_menu_item_action_area=0x7f040020;
public static int design_navigation_item=0x7f040021;
public static int design_navigation_item_header=0x7f040022;
public static int design_navigation_item_separator=0x7f040023;
public static int design_navigation_item_subheader=0x7f040024;
public static int design_navigation_menu=0x7f040025;
public static int design_navigation_menu_item=0x7f040026;
public static int design_text_input_password_icon=0x7f040027;
public static int listacliente=0x7f040028;
public static int maincliente=0x7f040029;
public static int mr_chooser_dialog=0x7f04002a;
public static int mr_chooser_list_item=0x7f04002b;
public static int mr_controller_material_dialog_b=0x7f04002c;
public static int mr_controller_volume_item=0x7f04002d;
public static int mr_playback_control=0x7f04002e;
public static int mr_volume_control=0x7f04002f;
public static int notification_action=0x7f040030;
public static int notification_action_tombstone=0x7f040031;
public static int notification_media_action=0x7f040032;
public static int notification_media_cancel_action=0x7f040033;
public static int notification_template_big_media=0x7f040034;
public static int notification_template_big_media_custom=0x7f040035;
public static int notification_template_big_media_narrow=0x7f040036;
public static int notification_template_big_media_narrow_custom=0x7f040037;
public static int notification_template_custom_big=0x7f040038;
public static int notification_template_icon_group=0x7f040039;
public static int notification_template_lines_media=0x7f04003a;
public static int notification_template_media=0x7f04003b;
public static int notification_template_media_custom=0x7f04003c;
public static int notification_template_part_chronometer=0x7f04003d;
public static int notification_template_part_time=0x7f04003e;
public static int select_dialog_item_material=0x7f04003f;
public static int select_dialog_multichoice_material=0x7f040040;
public static int select_dialog_singlechoice_material=0x7f040041;
public static int support_simple_spinner_dropdown_item=0x7f040042;
public static int tooltip=0x7f040043;
}
public static final class mipmap {
public static int icon=0x7f030000;
public static int icon_round=0x7f030001;
public static int launcher_foreground=0x7f030002;
}
public static final class string {
public static int abc_action_bar_home_description=0x7f0a0015;
public static int abc_action_bar_up_description=0x7f0a0016;
public static int abc_action_menu_overflow_description=0x7f0a0017;
public static int abc_action_mode_done=0x7f0a0018;
public static int abc_activity_chooser_view_see_all=0x7f0a0019;
public static int abc_activitychooserview_choose_application=0x7f0a001a;
public static int abc_capital_off=0x7f0a001b;
public static int abc_capital_on=0x7f0a001c;
public static int abc_font_family_body_1_material=0x7f0a0027;
public static int abc_font_family_body_2_material=0x7f0a0028;
public static int abc_font_family_button_material=0x7f0a0029;
public static int abc_font_family_caption_material=0x7f0a002a;
public static int abc_font_family_display_1_material=0x7f0a002b;
public static int abc_font_family_display_2_material=0x7f0a002c;
public static int abc_font_family_display_3_material=0x7f0a002d;
public static int abc_font_family_display_4_material=0x7f0a002e;
public static int abc_font_family_headline_material=0x7f0a002f;
public static int abc_font_family_menu_material=0x7f0a0030;
public static int abc_font_family_subhead_material=0x7f0a0031;
public static int abc_font_family_title_material=0x7f0a0032;
public static int abc_search_hint=0x7f0a001d;
public static int abc_searchview_description_clear=0x7f0a001e;
public static int abc_searchview_description_query=0x7f0a001f;
public static int abc_searchview_description_search=0x7f0a0020;
public static int abc_searchview_description_submit=0x7f0a0021;
public static int abc_searchview_description_voice=0x7f0a0022;
public static int abc_shareactionprovider_share_with=0x7f0a0023;
public static int abc_shareactionprovider_share_with_application=0x7f0a0024;
public static int abc_toolbar_collapse_description=0x7f0a0025;
public static int appbar_scrolling_view_behavior=0x7f0a0033;
public static int bottom_sheet_behavior=0x7f0a0034;
public static int character_counter_pattern=0x7f0a0035;
public static int mr_button_content_description=0x7f0a0000;
public static int mr_cast_button_connected=0x7f0a0001;
public static int mr_cast_button_connecting=0x7f0a0002;
public static int mr_cast_button_disconnected=0x7f0a0003;
public static int mr_chooser_searching=0x7f0a0004;
public static int mr_chooser_title=0x7f0a0005;
public static int mr_controller_album_art=0x7f0a0006;
public static int mr_controller_casting_screen=0x7f0a0007;
public static int mr_controller_close_description=0x7f0a0008;
public static int mr_controller_collapse_group=0x7f0a0009;
public static int mr_controller_disconnect=0x7f0a000a;
public static int mr_controller_expand_group=0x7f0a000b;
public static int mr_controller_no_info_available=0x7f0a000c;
public static int mr_controller_no_media_selected=0x7f0a000d;
public static int mr_controller_pause=0x7f0a000e;
public static int mr_controller_play=0x7f0a000f;
public static int mr_controller_stop=0x7f0a0010;
public static int mr_controller_stop_casting=0x7f0a0011;
public static int mr_controller_volume_slider=0x7f0a0012;
public static int mr_system_route_name=0x7f0a0013;
public static int mr_user_route_category_name=0x7f0a0014;
public static int password_toggle_content_description=0x7f0a0036;
public static int path_password_eye=0x7f0a0037;
public static int path_password_eye_mask_strike_through=0x7f0a0038;
public static int path_password_eye_mask_visible=0x7f0a0039;
public static int path_password_strike_through=0x7f0a003a;
public static int search_menu_title=0x7f0a0026;
public static int status_bar_notification_info_overflow=0x7f0a003b;
}
public static final class style {
public static int AlertDialog_AppCompat=0x7f0c00a4;
public static int AlertDialog_AppCompat_Light=0x7f0c00a5;
public static int Animation_AppCompat_Dialog=0x7f0c00a6;
public static int Animation_AppCompat_DropDownUp=0x7f0c00a7;
public static int Animation_AppCompat_Tooltip=0x7f0c00a8;
public static int Animation_Design_BottomSheetDialog=0x7f0c016e;
public static int AppCompatDialogStyle=0x7f0c0191;
public static int Base_AlertDialog_AppCompat=0x7f0c00a9;
public static int Base_AlertDialog_AppCompat_Light=0x7f0c00aa;
public static int Base_Animation_AppCompat_Dialog=0x7f0c00ab;
public static int Base_Animation_AppCompat_DropDownUp=0x7f0c00ac;
public static int Base_Animation_AppCompat_Tooltip=0x7f0c00ad;
public static int Base_CardView=0x7f0c000c;
public static int Base_DialogWindowTitle_AppCompat=0x7f0c00ae;
public static int Base_DialogWindowTitleBackground_AppCompat=0x7f0c00af;
public static int Base_TextAppearance_AppCompat=0x7f0c0048;
public static int Base_TextAppearance_AppCompat_Body1=0x7f0c0049;
public static int Base_TextAppearance_AppCompat_Body2=0x7f0c004a;
public static int Base_TextAppearance_AppCompat_Button=0x7f0c0036;
public static int Base_TextAppearance_AppCompat_Caption=0x7f0c004b;
public static int Base_TextAppearance_AppCompat_Display1=0x7f0c004c;
public static int Base_TextAppearance_AppCompat_Display2=0x7f0c004d;
public static int Base_TextAppearance_AppCompat_Display3=0x7f0c004e;
public static int Base_TextAppearance_AppCompat_Display4=0x7f0c004f;
public static int Base_TextAppearance_AppCompat_Headline=0x7f0c0050;
public static int Base_TextAppearance_AppCompat_Inverse=0x7f0c001a;
public static int Base_TextAppearance_AppCompat_Large=0x7f0c0051;
public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0c001b;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c0052;
public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c0053;
public static int Base_TextAppearance_AppCompat_Medium=0x7f0c0054;
public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0c001c;
public static int Base_TextAppearance_AppCompat_Menu=0x7f0c0055;
public static int Base_TextAppearance_AppCompat_SearchResult=0x7f0c00b0;
public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c0056;
public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0c0057;
public static int Base_TextAppearance_AppCompat_Small=0x7f0c0058;
public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0c001d;
public static int Base_TextAppearance_AppCompat_Subhead=0x7f0c0059;
public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0c001e;
public static int Base_TextAppearance_AppCompat_Title=0x7f0c005a;
public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0c001f;
public static int Base_TextAppearance_AppCompat_Tooltip=0x7f0c00b1;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c0095;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c005b;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c005c;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c005d;
public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c005e;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c005f;
public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c0060;
public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f0c0061;
public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c009c;
public static int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c009d;
public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c0096;
public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00b2;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0062;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0063;
public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0064;
public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0c0065;
public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0066;
public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c00b3;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0067;
public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0068;
public static int Base_Theme_AppCompat=0x7f0c0069;
public static int Base_Theme_AppCompat_CompactMenu=0x7f0c00b4;
public static int Base_Theme_AppCompat_Dialog=0x7f0c0020;
public static int Base_Theme_AppCompat_Dialog_Alert=0x7f0c0021;
public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0c00b5;
public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0c0022;
public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f0c0010;
public static int Base_Theme_AppCompat_Light=0x7f0c006a;
public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0c00b6;
public static int Base_Theme_AppCompat_Light_Dialog=0x7f0c0023;
public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0c0024;
public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0c00b7;
public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0025;
public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0011;
public static int Base_ThemeOverlay_AppCompat=0x7f0c00b8;
public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0c00b9;
public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0c00ba;
public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c00bb;
public static int Base_ThemeOverlay_AppCompat_Dialog=0x7f0c0026;
public static int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c0027;
public static int Base_ThemeOverlay_AppCompat_Light=0x7f0c00bc;
public static int Base_V11_Theme_AppCompat_Dialog=0x7f0c0028;
public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0c0029;
public static int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0c002a;
public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0c0032;
public static int Base_V12_Widget_AppCompat_EditText=0x7f0c0033;
public static int Base_V14_Widget_Design_AppBarLayout=0x7f0c016f;
public static int Base_V21_Theme_AppCompat=0x7f0c006b;
public static int Base_V21_Theme_AppCompat_Dialog=0x7f0c006c;
public static int Base_V21_Theme_AppCompat_Light=0x7f0c006d;
public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0c006e;
public static int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0c006f;
public static int Base_V21_Widget_Design_AppBarLayout=0x7f0c016b;
public static int Base_V22_Theme_AppCompat=0x7f0c0093;
public static int Base_V22_Theme_AppCompat_Light=0x7f0c0094;
public static int Base_V23_Theme_AppCompat=0x7f0c0097;
public static int Base_V23_Theme_AppCompat_Light=0x7f0c0098;
public static int Base_V26_Theme_AppCompat=0x7f0c00a0;
public static int Base_V26_Theme_AppCompat_Light=0x7f0c00a1;
public static int Base_V26_Widget_AppCompat_Toolbar=0x7f0c00a2;
public static int Base_V26_Widget_Design_AppBarLayout=0x7f0c016d;
public static int Base_V7_Theme_AppCompat=0x7f0c00bd;
public static int Base_V7_Theme_AppCompat_Dialog=0x7f0c00be;
public static int Base_V7_Theme_AppCompat_Light=0x7f0c00bf;
public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0c00c0;
public static int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0c00c1;
public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0c00c2;
public static int Base_V7_Widget_AppCompat_EditText=0x7f0c00c3;
public static int Base_V7_Widget_AppCompat_Toolbar=0x7f0c00c4;
public static int Base_Widget_AppCompat_ActionBar=0x7f0c00c5;
public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0c00c6;
public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0c00c7;
public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f0c0070;
public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f0c0071;
public static int Base_Widget_AppCompat_ActionButton=0x7f0c0072;
public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0c0073;
public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0c0074;
public static int Base_Widget_AppCompat_ActionMode=0x7f0c00c8;
public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0c00c9;
public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0c0034;
public static int Base_Widget_AppCompat_Button=0x7f0c0075;
public static int Base_Widget_AppCompat_Button_Borderless=0x7f0c0076;
public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0c0077;
public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c00ca;
public static int Base_Widget_AppCompat_Button_Colored=0x7f0c0099;
public static int Base_Widget_AppCompat_Button_Small=0x7f0c0078;
public static int Base_Widget_AppCompat_ButtonBar=0x7f0c0079;
public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c00cb;
public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0c007a;
public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0c007b;
public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0c00cc;
public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0c000f;
public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0c00cd;
public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0c007c;
public static int Base_Widget_AppCompat_EditText=0x7f0c0035;
public static int Base_Widget_AppCompat_ImageButton=0x7f0c007d;
public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0c00ce;
public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0c00cf;
public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c00d0;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0c007e;
public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c007f;
public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0c0080;
public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f0c0081;
public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c0082;
public static int Base_Widget_AppCompat_ListMenuView=0x7f0c00d1;
public static int Base_Widget_AppCompat_ListPopupWindow=0x7f0c0083;
public static int Base_Widget_AppCompat_ListView=0x7f0c0084;
public static int Base_Widget_AppCompat_ListView_DropDown=0x7f0c0085;
public static int Base_Widget_AppCompat_ListView_Menu=0x7f0c0086;
public static int Base_Widget_AppCompat_PopupMenu=0x7f0c0087;
public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0c0088;
public static int Base_Widget_AppCompat_PopupWindow=0x7f0c00d2;
public static int Base_Widget_AppCompat_ProgressBar=0x7f0c002b;
public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0c002c;
public static int Base_Widget_AppCompat_RatingBar=0x7f0c0089;
public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0c009a;
public static int Base_Widget_AppCompat_RatingBar_Small=0x7f0c009b;
public static int Base_Widget_AppCompat_SearchView=0x7f0c00d3;
public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0c00d4;
public static int Base_Widget_AppCompat_SeekBar=0x7f0c008a;
public static int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0c00d5;
public static int Base_Widget_AppCompat_Spinner=0x7f0c008b;
public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f0c0012;
public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0c008c;
public static int Base_Widget_AppCompat_Toolbar=0x7f0c00a3;
public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c008d;
public static int Base_Widget_Design_AppBarLayout=0x7f0c016c;
public static int Base_Widget_Design_TabLayout=0x7f0c0170;
public static int CardView=0x7f0c000b;
public static int CardView_Dark=0x7f0c000d;
public static int CardView_Light=0x7f0c000e;
public static int MainTheme=0x7f0c018f;
/** Base theme applied no matter what API
*/
public static int MainTheme_Base=0x7f0c0190;
public static int Platform_AppCompat=0x7f0c002d;
public static int Platform_AppCompat_Light=0x7f0c002e;
public static int Platform_ThemeOverlay_AppCompat=0x7f0c008e;
public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f0c008f;
public static int Platform_ThemeOverlay_AppCompat_Light=0x7f0c0090;
public static int Platform_V11_AppCompat=0x7f0c002f;
public static int Platform_V11_AppCompat_Light=0x7f0c0030;
public static int Platform_V14_AppCompat=0x7f0c0037;
public static int Platform_V14_AppCompat_Light=0x7f0c0038;
public static int Platform_V21_AppCompat=0x7f0c0091;
public static int Platform_V21_AppCompat_Light=0x7f0c0092;
public static int Platform_V25_AppCompat=0x7f0c009e;
public static int Platform_V25_AppCompat_Light=0x7f0c009f;
public static int Platform_Widget_AppCompat_Spinner=0x7f0c0031;
public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0c003a;
public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0c003b;
public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0c003c;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0c003d;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0c003e;
public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0c003f;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0c0040;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0c0041;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0c0042;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0c0043;
public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0c0044;
public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0c0045;
public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0c0046;
public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0c0047;
public static int TextAppearance_AppCompat=0x7f0c00d6;
public static int TextAppearance_AppCompat_Body1=0x7f0c00d7;
public static int TextAppearance_AppCompat_Body2=0x7f0c00d8;
public static int TextAppearance_AppCompat_Button=0x7f0c00d9;
public static int TextAppearance_AppCompat_Caption=0x7f0c00da;
public static int TextAppearance_AppCompat_Display1=0x7f0c00db;
public static int TextAppearance_AppCompat_Display2=0x7f0c00dc;
public static int TextAppearance_AppCompat_Display3=0x7f0c00dd;
public static int TextAppearance_AppCompat_Display4=0x7f0c00de;
public static int TextAppearance_AppCompat_Headline=0x7f0c00df;
public static int TextAppearance_AppCompat_Inverse=0x7f0c00e0;
public static int TextAppearance_AppCompat_Large=0x7f0c00e1;
public static int TextAppearance_AppCompat_Large_Inverse=0x7f0c00e2;
public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0c00e3;
public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0c00e4;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0c00e5;
public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0c00e6;
public static int TextAppearance_AppCompat_Medium=0x7f0c00e7;
public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0c00e8;
public static int TextAppearance_AppCompat_Menu=0x7f0c00e9;
public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0c00ea;
public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0c00eb;
public static int TextAppearance_AppCompat_Small=0x7f0c00ec;
public static int TextAppearance_AppCompat_Small_Inverse=0x7f0c00ed;
public static int TextAppearance_AppCompat_Subhead=0x7f0c00ee;
public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0c00ef;
public static int TextAppearance_AppCompat_Title=0x7f0c00f0;
public static int TextAppearance_AppCompat_Title_Inverse=0x7f0c00f1;
public static int TextAppearance_AppCompat_Tooltip=0x7f0c0039;
public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0c00f2;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0c00f3;
public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0c00f4;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0c00f5;
public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0c00f6;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0c00f7;
public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0c00f8;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0c00f9;
public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0c00fa;
public static int TextAppearance_AppCompat_Widget_Button=0x7f0c00fb;
public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0c00fc;
public static int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0c00fd;
public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0c00fe;
public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0c00ff;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0c0100;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0c0101;
public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0c0102;
public static int TextAppearance_AppCompat_Widget_Switch=0x7f0c0103;
public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0c0104;
public static int TextAppearance_Compat_Notification=0x7f0c0188;
public static int TextAppearance_Compat_Notification_Info=0x7f0c0189;
public static int TextAppearance_Compat_Notification_Info_Media=0x7f0c0165;
public static int TextAppearance_Compat_Notification_Line2=0x7f0c018e;
public static int TextAppearance_Compat_Notification_Line2_Media=0x7f0c0169;
public static int TextAppearance_Compat_Notification_Media=0x7f0c0166;
public static int TextAppearance_Compat_Notification_Time=0x7f0c018a;
public static int TextAppearance_Compat_Notification_Time_Media=0x7f0c0167;
public static int TextAppearance_Compat_Notification_Title=0x7f0c018b;
public static int TextAppearance_Compat_Notification_Title_Media=0x7f0c0168;
public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0c0171;
public static int TextAppearance_Design_Counter=0x7f0c0172;
public static int TextAppearance_Design_Counter_Overflow=0x7f0c0173;
public static int TextAppearance_Design_Error=0x7f0c0174;
public static int TextAppearance_Design_Hint=0x7f0c0175;
public static int TextAppearance_Design_Snackbar_Message=0x7f0c0176;
public static int TextAppearance_Design_Tab=0x7f0c0177;
public static int TextAppearance_MediaRouter_PrimaryText=0x7f0c0000;
public static int TextAppearance_MediaRouter_SecondaryText=0x7f0c0001;
public static int TextAppearance_MediaRouter_Title=0x7f0c0002;
public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0c0105;
public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0c0106;
public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0c0107;
public static int Theme_AppCompat=0x7f0c0108;
public static int Theme_AppCompat_CompactMenu=0x7f0c0109;
public static int Theme_AppCompat_DayNight=0x7f0c0013;
public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f0c0014;
public static int Theme_AppCompat_DayNight_Dialog=0x7f0c0015;
public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0c0016;
public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0c0017;
public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0c0018;
public static int Theme_AppCompat_DayNight_NoActionBar=0x7f0c0019;
public static int Theme_AppCompat_Dialog=0x7f0c010a;
public static int Theme_AppCompat_Dialog_Alert=0x7f0c010b;
public static int Theme_AppCompat_Dialog_MinWidth=0x7f0c010c;
public static int Theme_AppCompat_DialogWhenLarge=0x7f0c010d;
public static int Theme_AppCompat_Light=0x7f0c010e;
public static int Theme_AppCompat_Light_DarkActionBar=0x7f0c010f;
public static int Theme_AppCompat_Light_Dialog=0x7f0c0110;
public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0c0111;
public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0c0112;
public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0c0113;
public static int Theme_AppCompat_Light_NoActionBar=0x7f0c0114;
public static int Theme_AppCompat_NoActionBar=0x7f0c0115;
public static int Theme_Design=0x7f0c0178;
public static int Theme_Design_BottomSheetDialog=0x7f0c0179;
public static int Theme_Design_Light=0x7f0c017a;
public static int Theme_Design_Light_BottomSheetDialog=0x7f0c017b;
public static int Theme_Design_Light_NoActionBar=0x7f0c017c;
public static int Theme_Design_NoActionBar=0x7f0c017d;
public static int Theme_MediaRouter=0x7f0c0003;
public static int Theme_MediaRouter_Light=0x7f0c0004;
public static int Theme_MediaRouter_Light_DarkControlPanel=0x7f0c0005;
public static int Theme_MediaRouter_LightControlPanel=0x7f0c0006;
public static int ThemeOverlay_AppCompat=0x7f0c0116;
public static int ThemeOverlay_AppCompat_ActionBar=0x7f0c0117;
public static int ThemeOverlay_AppCompat_Dark=0x7f0c0118;
public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0c0119;
public static int ThemeOverlay_AppCompat_Dialog=0x7f0c011a;
public static int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0c011b;
public static int ThemeOverlay_AppCompat_Light=0x7f0c011c;
public static int ThemeOverlay_MediaRouter_Dark=0x7f0c0007;
public static int ThemeOverlay_MediaRouter_Light=0x7f0c0008;
public static int Widget_AppCompat_ActionBar=0x7f0c011d;
public static int Widget_AppCompat_ActionBar_Solid=0x7f0c011e;
public static int Widget_AppCompat_ActionBar_TabBar=0x7f0c011f;
public static int Widget_AppCompat_ActionBar_TabText=0x7f0c0120;
public static int Widget_AppCompat_ActionBar_TabView=0x7f0c0121;
public static int Widget_AppCompat_ActionButton=0x7f0c0122;
public static int Widget_AppCompat_ActionButton_CloseMode=0x7f0c0123;
public static int Widget_AppCompat_ActionButton_Overflow=0x7f0c0124;
public static int Widget_AppCompat_ActionMode=0x7f0c0125;
public static int Widget_AppCompat_ActivityChooserView=0x7f0c0126;
public static int Widget_AppCompat_AutoCompleteTextView=0x7f0c0127;
public static int Widget_AppCompat_Button=0x7f0c0128;
public static int Widget_AppCompat_Button_Borderless=0x7f0c0129;
public static int Widget_AppCompat_Button_Borderless_Colored=0x7f0c012a;
public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0c012b;
public static int Widget_AppCompat_Button_Colored=0x7f0c012c;
public static int Widget_AppCompat_Button_Small=0x7f0c012d;
public static int Widget_AppCompat_ButtonBar=0x7f0c012e;
public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0c012f;
public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f0c0130;
public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f0c0131;
public static int Widget_AppCompat_CompoundButton_Switch=0x7f0c0132;
public static int Widget_AppCompat_DrawerArrowToggle=0x7f0c0133;
public static int Widget_AppCompat_DropDownItem_Spinner=0x7f0c0134;
public static int Widget_AppCompat_EditText=0x7f0c0135;
public static int Widget_AppCompat_ImageButton=0x7f0c0136;
public static int Widget_AppCompat_Light_ActionBar=0x7f0c0137;
public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f0c0138;
public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0c0139;
public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0c013a;
public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0c013b;
public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f0c013c;
public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0c013d;
public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f0c013e;
public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0c013f;
public static int Widget_AppCompat_Light_ActionButton=0x7f0c0140;
public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0c0141;
public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0c0142;
public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0c0143;
public static int Widget_AppCompat_Light_ActivityChooserView=0x7f0c0144;
public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0c0145;
public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0c0146;
public static int Widget_AppCompat_Light_ListPopupWindow=0x7f0c0147;
public static int Widget_AppCompat_Light_ListView_DropDown=0x7f0c0148;
public static int Widget_AppCompat_Light_PopupMenu=0x7f0c0149;
public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0c014a;
public static int Widget_AppCompat_Light_SearchView=0x7f0c014b;
public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0c014c;
public static int Widget_AppCompat_ListMenuView=0x7f0c014d;
public static int Widget_AppCompat_ListPopupWindow=0x7f0c014e;
public static int Widget_AppCompat_ListView=0x7f0c014f;
public static int Widget_AppCompat_ListView_DropDown=0x7f0c0150;
public static int Widget_AppCompat_ListView_Menu=0x7f0c0151;
public static int Widget_AppCompat_PopupMenu=0x7f0c0152;
public static int Widget_AppCompat_PopupMenu_Overflow=0x7f0c0153;
public static int Widget_AppCompat_PopupWindow=0x7f0c0154;
public static int Widget_AppCompat_ProgressBar=0x7f0c0155;
public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f0c0156;
public static int Widget_AppCompat_RatingBar=0x7f0c0157;
public static int Widget_AppCompat_RatingBar_Indicator=0x7f0c0158;
public static int Widget_AppCompat_RatingBar_Small=0x7f0c0159;
public static int Widget_AppCompat_SearchView=0x7f0c015a;
public static int Widget_AppCompat_SearchView_ActionBar=0x7f0c015b;
public static int Widget_AppCompat_SeekBar=0x7f0c015c;
public static int Widget_AppCompat_SeekBar_Discrete=0x7f0c015d;
public static int Widget_AppCompat_Spinner=0x7f0c015e;
public static int Widget_AppCompat_Spinner_DropDown=0x7f0c015f;
public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0c0160;
public static int Widget_AppCompat_Spinner_Underlined=0x7f0c0161;
public static int Widget_AppCompat_TextView_SpinnerItem=0x7f0c0162;
public static int Widget_AppCompat_Toolbar=0x7f0c0163;
public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0c0164;
public static int Widget_Compat_NotificationActionContainer=0x7f0c018c;
public static int Widget_Compat_NotificationActionText=0x7f0c018d;
public static int Widget_Design_AppBarLayout=0x7f0c017e;
public static int Widget_Design_BottomNavigationView=0x7f0c017f;
public static int Widget_Design_BottomSheet_Modal=0x7f0c0180;
public static int Widget_Design_CollapsingToolbar=0x7f0c0181;
public static int Widget_Design_CoordinatorLayout=0x7f0c0182;
public static int Widget_Design_FloatingActionButton=0x7f0c0183;
public static int Widget_Design_NavigationView=0x7f0c0184;
public static int Widget_Design_ScrimInsetsFrameLayout=0x7f0c0185;
public static int Widget_Design_Snackbar=0x7f0c0186;
public static int Widget_Design_TabLayout=0x7f0c016a;
public static int Widget_Design_TextInputLayout=0x7f0c0187;
public static int Widget_MediaRouter_Light_MediaRouteButton=0x7f0c0009;
public static int Widget_MediaRouter_MediaRouteButton=0x7f0c000a;
}
public static final class styleable {
/** Attributes that can be used with a ActionBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ActionBar_background android.support.v7.mediarouter:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundSplit android.support.v7.mediarouter:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_backgroundStacked android.support.v7.mediarouter:backgroundStacked}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEnd android.support.v7.mediarouter:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetEndWithActions android.support.v7.mediarouter:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetLeft android.support.v7.mediarouter:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetRight android.support.v7.mediarouter:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStart android.support.v7.mediarouter:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation android.support.v7.mediarouter:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_customNavigationLayout android.support.v7.mediarouter:customNavigationLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_displayOptions android.support.v7.mediarouter:displayOptions}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_divider android.support.v7.mediarouter:divider}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_elevation android.support.v7.mediarouter:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_height android.support.v7.mediarouter:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_hideOnContentScroll android.support.v7.mediarouter:hideOnContentScroll}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeAsUpIndicator android.support.v7.mediarouter:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_homeLayout android.support.v7.mediarouter:homeLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_icon android.support.v7.mediarouter:icon}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_indeterminateProgressStyle android.support.v7.mediarouter:indeterminateProgressStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_itemPadding android.support.v7.mediarouter:itemPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_logo android.support.v7.mediarouter:logo}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_navigationMode android.support.v7.mediarouter:navigationMode}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_popupTheme android.support.v7.mediarouter:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarPadding android.support.v7.mediarouter:progressBarPadding}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_progressBarStyle android.support.v7.mediarouter:progressBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitle android.support.v7.mediarouter:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_subtitleTextStyle android.support.v7.mediarouter:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_title android.support.v7.mediarouter:title}</code></td><td></td></tr>
<tr><td><code>{@link #ActionBar_titleTextStyle android.support.v7.mediarouter:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionBar_background
@see #ActionBar_backgroundSplit
@see #ActionBar_backgroundStacked
@see #ActionBar_contentInsetEnd
@see #ActionBar_contentInsetEndWithActions
@see #ActionBar_contentInsetLeft
@see #ActionBar_contentInsetRight
@see #ActionBar_contentInsetStart
@see #ActionBar_contentInsetStartWithNavigation
@see #ActionBar_customNavigationLayout
@see #ActionBar_displayOptions
@see #ActionBar_divider
@see #ActionBar_elevation
@see #ActionBar_height
@see #ActionBar_hideOnContentScroll
@see #ActionBar_homeAsUpIndicator
@see #ActionBar_homeLayout
@see #ActionBar_icon
@see #ActionBar_indeterminateProgressStyle
@see #ActionBar_itemPadding
@see #ActionBar_logo
@see #ActionBar_navigationMode
@see #ActionBar_popupTheme
@see #ActionBar_progressBarPadding
@see #ActionBar_progressBarStyle
@see #ActionBar_subtitle
@see #ActionBar_subtitleTextStyle
@see #ActionBar_title
@see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar = {
0x7f010023, 0x7f010025, 0x7f010026, 0x7f010027,
0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b,
0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f,
0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033,
0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037,
0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b,
0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f,
0x7f010085
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:background
*/
public static int ActionBar_background = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:backgroundSplit
*/
public static int ActionBar_backgroundSplit = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:backgroundStacked
*/
public static int ActionBar_backgroundStacked = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetEnd
*/
public static int ActionBar_contentInsetEnd = 21;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetEndWithActions
*/
public static int ActionBar_contentInsetEndWithActions = 25;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetLeft
*/
public static int ActionBar_contentInsetLeft = 22;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetRight
*/
public static int ActionBar_contentInsetRight = 23;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetStart
*/
public static int ActionBar_contentInsetStart = 20;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetStartWithNavigation
*/
public static int ActionBar_contentInsetStartWithNavigation = 24;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:customNavigationLayout
*/
public static int ActionBar_customNavigationLayout = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:displayOptions
*/
public static int ActionBar_displayOptions = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:divider
*/
public static int ActionBar_divider = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:elevation
*/
public static int ActionBar_elevation = 26;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:height
*/
public static int ActionBar_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:hideOnContentScroll
*/
public static int ActionBar_hideOnContentScroll = 19;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:homeAsUpIndicator
*/
public static int ActionBar_homeAsUpIndicator = 28;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:homeLayout
*/
public static int ActionBar_homeLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:icon
*/
public static int ActionBar_icon = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:indeterminateProgressStyle
*/
public static int ActionBar_indeterminateProgressStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:itemPadding
*/
public static int ActionBar_itemPadding = 18;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:logo
*/
public static int ActionBar_logo = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:navigationMode
*/
public static int ActionBar_navigationMode = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:popupTheme
*/
public static int ActionBar_popupTheme = 27;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:progressBarPadding
*/
public static int ActionBar_progressBarPadding = 17;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:progressBarStyle
*/
public static int ActionBar_progressBarStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:subtitle
*/
public static int ActionBar_subtitle = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:subtitleTextStyle
*/
public static int ActionBar_subtitleTextStyle = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:title
*/
public static int ActionBar_title = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:titleTextStyle
*/
public static 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 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 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 android.support.v7.mediarouter:background}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_backgroundSplit android.support.v7.mediarouter:backgroundSplit}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_closeItemLayout android.support.v7.mediarouter:closeItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_height android.support.v7.mediarouter:height}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_subtitleTextStyle android.support.v7.mediarouter:subtitleTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #ActionMode_titleTextStyle android.support.v7.mediarouter:titleTextStyle}</code></td><td></td></tr>
</table>
@see #ActionMode_background
@see #ActionMode_backgroundSplit
@see #ActionMode_closeItemLayout
@see #ActionMode_height
@see #ActionMode_subtitleTextStyle
@see #ActionMode_titleTextStyle
*/
public static final int[] ActionMode = {
0x7f010023, 0x7f010029, 0x7f01002a, 0x7f01002e,
0x7f010030, 0x7f010040
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:background
*/
public static int ActionMode_background = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:backgroundSplit
*/
public static int ActionMode_backgroundSplit = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:closeItemLayout
*/
public static int ActionMode_closeItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:height
*/
public static int ActionMode_height = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:subtitleTextStyle
*/
public static int ActionMode_subtitleTextStyle = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:titleTextStyle
*/
public static 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 android.support.v7.mediarouter:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #ActivityChooserView_initialActivityCount android.support.v7.mediarouter:initialActivityCount}</code></td><td></td></tr>
</table>
@see #ActivityChooserView_expandActivityOverflowButtonDrawable
@see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView = {
0x7f010041, 0x7f010042
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:expandActivityOverflowButtonDrawable
*/
public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:initialActivityCount
*/
public static 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 android.support.v7.mediarouter:buttonPanelSideLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listItemLayout android.support.v7.mediarouter:listItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_listLayout android.support.v7.mediarouter:listLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_multiChoiceItemLayout android.support.v7.mediarouter:multiChoiceItemLayout}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_showTitle android.support.v7.mediarouter:showTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AlertDialog_singleChoiceItemLayout android.support.v7.mediarouter:singleChoiceItemLayout}</code></td><td></td></tr>
</table>
@see #AlertDialog_android_layout
@see #AlertDialog_buttonPanelSideLayout
@see #AlertDialog_listItemLayout
@see #AlertDialog_listLayout
@see #AlertDialog_multiChoiceItemLayout
@see #AlertDialog_showTitle
@see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog = {
0x010100f2, 0x7f010043, 0x7f010044, 0x7f010045,
0x7f010046, 0x7f010047, 0x7f010048
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout}
attribute's value can be found in the {@link #AlertDialog} array.
@attr name android:layout
*/
public static int AlertDialog_android_layout = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:buttonPanelSideLayout
*/
public static int AlertDialog_buttonPanelSideLayout = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:listItemLayout
*/
public static int AlertDialog_listItemLayout = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:listLayout
*/
public static int AlertDialog_listLayout = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:multiChoiceItemLayout
*/
public static int AlertDialog_multiChoiceItemLayout = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:showTitle
*/
public static int AlertDialog_showTitle = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:singleChoiceItemLayout
*/
public static int AlertDialog_singleChoiceItemLayout = 4;
/** Attributes that can be used with a AppBarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_elevation android.support.v7.mediarouter:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_expanded android.support.v7.mediarouter:expanded}</code></td><td></td></tr>
</table>
@see #AppBarLayout_android_background
@see #AppBarLayout_android_keyboardNavigationCluster
@see #AppBarLayout_android_touchscreenBlocksFocus
@see #AppBarLayout_elevation
@see #AppBarLayout_expanded
*/
public static final int[] AppBarLayout = {
0x010100d4, 0x0101048f, 0x01010540, 0x7f01003e,
0x7f010118
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:background
*/
public static int AppBarLayout_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:keyboardNavigationCluster
*/
public static int AppBarLayout_android_keyboardNavigationCluster = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus}
attribute's value can be found in the {@link #AppBarLayout} array.
@attr name android:touchscreenBlocksFocus
*/
public static int AppBarLayout_android_touchscreenBlocksFocus = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:elevation
*/
public static int AppBarLayout_elevation = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:expanded
*/
public static int AppBarLayout_expanded = 4;
/** Attributes that can be used with a AppBarLayoutStates.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsed android.support.v7.mediarouter:state_collapsed}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayoutStates_state_collapsible android.support.v7.mediarouter:state_collapsible}</code></td><td></td></tr>
</table>
@see #AppBarLayoutStates_state_collapsed
@see #AppBarLayoutStates_state_collapsible
*/
public static final int[] AppBarLayoutStates = {
0x7f010119, 0x7f01011a
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:state_collapsed
*/
public static int AppBarLayoutStates_state_collapsed = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:state_collapsible
*/
public static 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 android.support.v7.mediarouter:layout_scrollFlags}</code></td><td></td></tr>
<tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator android.support.v7.mediarouter:layout_scrollInterpolator}</code></td><td></td></tr>
</table>
@see #AppBarLayout_Layout_layout_scrollFlags
@see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout = {
0x7f01011b, 0x7f01011c
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layout_scrollFlags
*/
public static int AppBarLayout_Layout_layout_scrollFlags = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layout_scrollInterpolator
*/
public static 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 android.support.v7.mediarouter:srcCompat}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tint android.support.v7.mediarouter:tint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatImageView_tintMode android.support.v7.mediarouter:tintMode}</code></td><td></td></tr>
</table>
@see #AppCompatImageView_android_src
@see #AppCompatImageView_srcCompat
@see #AppCompatImageView_tint
@see #AppCompatImageView_tintMode
*/
public static final int[] AppCompatImageView = {
0x01010119, 0x7f010049, 0x7f01004a, 0x7f01004b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#src}
attribute's value can be found in the {@link #AppCompatImageView} array.
@attr name android:src
*/
public static int AppCompatImageView_android_src = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:srcCompat
*/
public static int AppCompatImageView_srcCompat = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#tint}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:tint
*/
public static int AppCompatImageView_tint = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#tintMode}
attribute's value can be found in the {@link #AppCompatImageView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.v7.mediarouter:tintMode
*/
public static int AppCompatImageView_tintMode = 3;
/** Attributes that can be used with a AppCompatSeekBar.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMark android.support.v7.mediarouter:tickMark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTint android.support.v7.mediarouter:tickMarkTint}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode android.support.v7.mediarouter:tickMarkTintMode}</code></td><td></td></tr>
</table>
@see #AppCompatSeekBar_android_thumb
@see #AppCompatSeekBar_tickMark
@see #AppCompatSeekBar_tickMarkTint
@see #AppCompatSeekBar_tickMarkTintMode
*/
public static final int[] AppCompatSeekBar = {
0x01010142, 0x7f01004c, 0x7f01004d, 0x7f01004e
};
/**
<p>This symbol is the offset where the {@link android.R.attr#thumb}
attribute's value can be found in the {@link #AppCompatSeekBar} array.
@attr name android:thumb
*/
public static int AppCompatSeekBar_android_thumb = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tickMark
*/
public static int AppCompatSeekBar_tickMark = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tickMarkTint
*/
public static int AppCompatSeekBar_tickMarkTint = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tickMarkTintMode
*/
public static 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 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 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 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 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 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 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 int AppCompatTextHelper_android_textAppearance = 0;
/** Attributes that can be used with a AppCompatTextView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize android.support.v7.mediarouter:autoSizeMaxTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize android.support.v7.mediarouter:autoSizeMinTextSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes android.support.v7.mediarouter:autoSizePresetSizes}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity android.support.v7.mediarouter:autoSizeStepGranularity}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_autoSizeTextType android.support.v7.mediarouter:autoSizeTextType}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_fontFamily android.support.v7.mediarouter:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTextView_textAllCaps android.support.v7.mediarouter:textAllCaps}</code></td><td></td></tr>
</table>
@see #AppCompatTextView_android_textAppearance
@see #AppCompatTextView_autoSizeMaxTextSize
@see #AppCompatTextView_autoSizeMinTextSize
@see #AppCompatTextView_autoSizePresetSizes
@see #AppCompatTextView_autoSizeStepGranularity
@see #AppCompatTextView_autoSizeTextType
@see #AppCompatTextView_fontFamily
@see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView = {
0x01010034, 0x7f01004f, 0x7f010050, 0x7f010051,
0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textAppearance}
attribute's value can be found in the {@link #AppCompatTextView} array.
@attr name android:textAppearance
*/
public static int AppCompatTextView_android_textAppearance = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#autoSizeMaxTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:autoSizeMaxTextSize
*/
public static int AppCompatTextView_autoSizeMaxTextSize = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#autoSizeMinTextSize}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:autoSizeMinTextSize
*/
public static int AppCompatTextView_autoSizeMinTextSize = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#autoSizePresetSizes}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.v7.mediarouter:autoSizePresetSizes
*/
public static int AppCompatTextView_autoSizePresetSizes = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#autoSizeStepGranularity}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:autoSizeStepGranularity
*/
public static int AppCompatTextView_autoSizeStepGranularity = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#autoSizeTextType}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>uniform</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.v7.mediarouter:autoSizeTextType
*/
public static int AppCompatTextView_autoSizeTextType = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#fontFamily}
attribute's value can be found in the {@link #AppCompatTextView} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:fontFamily
*/
public static int AppCompatTextView_fontFamily = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:textAllCaps
*/
public static 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 android.support.v7.mediarouter:actionBarDivider}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarItemBackground android.support.v7.mediarouter:actionBarItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme android.support.v7.mediarouter:actionBarPopupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSize android.support.v7.mediarouter:actionBarSize}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle android.support.v7.mediarouter:actionBarSplitStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarStyle android.support.v7.mediarouter:actionBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle android.support.v7.mediarouter:actionBarTabBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabStyle android.support.v7.mediarouter:actionBarTabStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle android.support.v7.mediarouter:actionBarTabTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarTheme android.support.v7.mediarouter:actionBarTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme android.support.v7.mediarouter:actionBarWidgetTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionButtonStyle android.support.v7.mediarouter:actionButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionDropDownStyle android.support.v7.mediarouter:actionDropDownStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance android.support.v7.mediarouter:actionMenuTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionMenuTextColor android.support.v7.mediarouter:actionMenuTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeBackground android.support.v7.mediarouter:actionModeBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.v7.mediarouter:actionModeCloseButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable android.support.v7.mediarouter:actionModeCloseDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable android.support.v7.mediarouter:actionModeCopyDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable android.support.v7.mediarouter:actionModeCutDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable android.support.v7.mediarouter:actionModeFindDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable android.support.v7.mediarouter:actionModePasteDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle android.support.v7.mediarouter:actionModePopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.v7.mediarouter:actionModeSelectAllDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable android.support.v7.mediarouter:actionModeShareDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground android.support.v7.mediarouter:actionModeSplitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeStyle android.support.v7.mediarouter:actionModeStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.v7.mediarouter:actionModeWebSearchDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle android.support.v7.mediarouter:actionOverflowButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle android.support.v7.mediarouter:actionOverflowMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle android.support.v7.mediarouter:activityChooserViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.v7.mediarouter:alertDialogButtonGroupStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons android.support.v7.mediarouter:alertDialogCenterButtons}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogStyle android.support.v7.mediarouter:alertDialogStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_alertDialogTheme android.support.v7.mediarouter: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 android.support.v7.mediarouter:autoCompleteTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle android.support.v7.mediarouter:borderlessButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle android.support.v7.mediarouter:buttonBarButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.v7.mediarouter:buttonBarNegativeButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.v7.mediarouter:buttonBarNeutralButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.v7.mediarouter:buttonBarPositiveButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonBarStyle android.support.v7.mediarouter:buttonBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyle android.support.v7.mediarouter:buttonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_buttonStyleSmall android.support.v7.mediarouter:buttonStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkboxStyle android.support.v7.mediarouter:checkboxStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle android.support.v7.mediarouter:checkedTextViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorAccent android.support.v7.mediarouter:colorAccent}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating android.support.v7.mediarouter:colorBackgroundFloating}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorButtonNormal android.support.v7.mediarouter:colorButtonNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlActivated android.support.v7.mediarouter:colorControlActivated}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlHighlight android.support.v7.mediarouter:colorControlHighlight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorControlNormal android.support.v7.mediarouter:colorControlNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorError android.support.v7.mediarouter:colorError}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimary android.support.v7.mediarouter:colorPrimary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorPrimaryDark android.support.v7.mediarouter:colorPrimaryDark}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal android.support.v7.mediarouter:colorSwitchThumbNormal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_controlBackground android.support.v7.mediarouter:controlBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding android.support.v7.mediarouter:dialogPreferredPadding}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dialogTheme android.support.v7.mediarouter:dialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerHorizontal android.support.v7.mediarouter:dividerHorizontal}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dividerVertical android.support.v7.mediarouter:dividerVertical}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle android.support.v7.mediarouter:dropDownListViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.v7.mediarouter:dropdownListPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextBackground android.support.v7.mediarouter:editTextBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextColor android.support.v7.mediarouter:editTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_editTextStyle android.support.v7.mediarouter:editTextStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator android.support.v7.mediarouter:homeAsUpIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_imageButtonStyle android.support.v7.mediarouter:imageButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.v7.mediarouter:listChoiceBackgroundIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog android.support.v7.mediarouter:listDividerAlertDialog}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listMenuViewStyle android.support.v7.mediarouter:listMenuViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle android.support.v7.mediarouter:listPopupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight android.support.v7.mediarouter:listPreferredItemHeight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.v7.mediarouter:listPreferredItemHeightLarge}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.v7.mediarouter:listPreferredItemHeightSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.v7.mediarouter:listPreferredItemPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.v7.mediarouter:listPreferredItemPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelBackground android.support.v7.mediarouter:panelBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListTheme android.support.v7.mediarouter:panelMenuListTheme}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_panelMenuListWidth android.support.v7.mediarouter:panelMenuListWidth}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupMenuStyle android.support.v7.mediarouter:popupMenuStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_popupWindowStyle android.support.v7.mediarouter:popupWindowStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_radioButtonStyle android.support.v7.mediarouter:radioButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyle android.support.v7.mediarouter:ratingBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator android.support.v7.mediarouter:ratingBarStyleIndicator}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall android.support.v7.mediarouter:ratingBarStyleSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_searchViewStyle android.support.v7.mediarouter:searchViewStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_seekBarStyle android.support.v7.mediarouter:seekBarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackground android.support.v7.mediarouter:selectableItemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.v7.mediarouter:selectableItemBackgroundBorderless}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.v7.mediarouter:spinnerDropDownItemStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_spinnerStyle android.support.v7.mediarouter:spinnerStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_switchStyle android.support.v7.mediarouter:switchStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.v7.mediarouter:textAppearanceLargePopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItem android.support.v7.mediarouter:textAppearanceListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary android.support.v7.mediarouter:textAppearanceListItemSecondary}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall android.support.v7.mediarouter:textAppearanceListItemSmall}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader android.support.v7.mediarouter:textAppearancePopupMenuHeader}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.v7.mediarouter:textAppearanceSearchResultSubtitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.v7.mediarouter:textAppearanceSearchResultTitle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.v7.mediarouter:textAppearanceSmallPopupMenu}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem android.support.v7.mediarouter:textColorAlertDialogListItem}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_textColorSearchUrl android.support.v7.mediarouter:textColorSearchUrl}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.v7.mediarouter:toolbarNavigationButtonStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_toolbarStyle android.support.v7.mediarouter:toolbarStyle}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor android.support.v7.mediarouter:tooltipForegroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground android.support.v7.mediarouter:tooltipFrameBackground}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBar android.support.v7.mediarouter:windowActionBar}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay android.support.v7.mediarouter:windowActionBarOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay android.support.v7.mediarouter:windowActionModeOverlay}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor android.support.v7.mediarouter:windowFixedHeightMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor android.support.v7.mediarouter:windowFixedHeightMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor android.support.v7.mediarouter:windowFixedWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor android.support.v7.mediarouter:windowFixedWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor android.support.v7.mediarouter:windowMinWidthMajor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor android.support.v7.mediarouter:windowMinWidthMinor}</code></td><td></td></tr>
<tr><td><code>{@link #AppCompatTheme_windowNoTitle android.support.v7.mediarouter:windowNoTitle}</code></td><td></td></tr>
</table>
@see #AppCompatTheme_actionBarDivider
@see #AppCompatTheme_actionBarItemBackground
@see #AppCompatTheme_actionBarPopupTheme
@see #AppCompatTheme_actionBarSize
@see #AppCompatTheme_actionBarSplitStyle
@see #AppCompatTheme_actionBarStyle
@see #AppCompatTheme_actionBarTabBarStyle
@see #AppCompatTheme_actionBarTabStyle
@see #AppCompatTheme_actionBarTabTextStyle
@see #AppCompatTheme_actionBarTheme
@see #AppCompatTheme_actionBarWidgetTheme
@see #AppCompatTheme_actionButtonStyle
@see #AppCompatTheme_actionDropDownStyle
@see #AppCompatTheme_actionMenuTextAppearance
@see #AppCompatTheme_actionMenuTextColor
@see #AppCompatTheme_actionModeBackground
@see #AppCompatTheme_actionModeCloseButtonStyle
@see #AppCompatTheme_actionModeCloseDrawable
@see #AppCompatTheme_actionModeCopyDrawable
@see #AppCompatTheme_actionModeCutDrawable
@see #AppCompatTheme_actionModeFindDrawable
@see #AppCompatTheme_actionModePasteDrawable
@see #AppCompatTheme_actionModePopupWindowStyle
@see #AppCompatTheme_actionModeSelectAllDrawable
@see #AppCompatTheme_actionModeShareDrawable
@see #AppCompatTheme_actionModeSplitBackground
@see #AppCompatTheme_actionModeStyle
@see #AppCompatTheme_actionModeWebSearchDrawable
@see #AppCompatTheme_actionOverflowButtonStyle
@see #AppCompatTheme_actionOverflowMenuStyle
@see #AppCompatTheme_activityChooserViewStyle
@see #AppCompatTheme_alertDialogButtonGroupStyle
@see #AppCompatTheme_alertDialogCenterButtons
@see #AppCompatTheme_alertDialogStyle
@see #AppCompatTheme_alertDialogTheme
@see #AppCompatTheme_android_windowAnimationStyle
@see #AppCompatTheme_android_windowIsFloating
@see #AppCompatTheme_autoCompleteTextViewStyle
@see #AppCompatTheme_borderlessButtonStyle
@see #AppCompatTheme_buttonBarButtonStyle
@see #AppCompatTheme_buttonBarNegativeButtonStyle
@see #AppCompatTheme_buttonBarNeutralButtonStyle
@see #AppCompatTheme_buttonBarPositiveButtonStyle
@see #AppCompatTheme_buttonBarStyle
@see #AppCompatTheme_buttonStyle
@see #AppCompatTheme_buttonStyleSmall
@see #AppCompatTheme_checkboxStyle
@see #AppCompatTheme_checkedTextViewStyle
@see #AppCompatTheme_colorAccent
@see #AppCompatTheme_colorBackgroundFloating
@see #AppCompatTheme_colorButtonNormal
@see #AppCompatTheme_colorControlActivated
@see #AppCompatTheme_colorControlHighlight
@see #AppCompatTheme_colorControlNormal
@see #AppCompatTheme_colorError
@see #AppCompatTheme_colorPrimary
@see #AppCompatTheme_colorPrimaryDark
@see #AppCompatTheme_colorSwitchThumbNormal
@see #AppCompatTheme_controlBackground
@see #AppCompatTheme_dialogPreferredPadding
@see #AppCompatTheme_dialogTheme
@see #AppCompatTheme_dividerHorizontal
@see #AppCompatTheme_dividerVertical
@see #AppCompatTheme_dropDownListViewStyle
@see #AppCompatTheme_dropdownListPreferredItemHeight
@see #AppCompatTheme_editTextBackground
@see #AppCompatTheme_editTextColor
@see #AppCompatTheme_editTextStyle
@see #AppCompatTheme_homeAsUpIndicator
@see #AppCompatTheme_imageButtonStyle
@see #AppCompatTheme_listChoiceBackgroundIndicator
@see #AppCompatTheme_listDividerAlertDialog
@see #AppCompatTheme_listMenuViewStyle
@see #AppCompatTheme_listPopupWindowStyle
@see #AppCompatTheme_listPreferredItemHeight
@see #AppCompatTheme_listPreferredItemHeightLarge
@see #AppCompatTheme_listPreferredItemHeightSmall
@see #AppCompatTheme_listPreferredItemPaddingLeft
@see #AppCompatTheme_listPreferredItemPaddingRight
@see #AppCompatTheme_panelBackground
@see #AppCompatTheme_panelMenuListTheme
@see #AppCompatTheme_panelMenuListWidth
@see #AppCompatTheme_popupMenuStyle
@see #AppCompatTheme_popupWindowStyle
@see #AppCompatTheme_radioButtonStyle
@see #AppCompatTheme_ratingBarStyle
@see #AppCompatTheme_ratingBarStyleIndicator
@see #AppCompatTheme_ratingBarStyleSmall
@see #AppCompatTheme_searchViewStyle
@see #AppCompatTheme_seekBarStyle
@see #AppCompatTheme_selectableItemBackground
@see #AppCompatTheme_selectableItemBackgroundBorderless
@see #AppCompatTheme_spinnerDropDownItemStyle
@see #AppCompatTheme_spinnerStyle
@see #AppCompatTheme_switchStyle
@see #AppCompatTheme_textAppearanceLargePopupMenu
@see #AppCompatTheme_textAppearanceListItem
@see #AppCompatTheme_textAppearanceListItemSecondary
@see #AppCompatTheme_textAppearanceListItemSmall
@see #AppCompatTheme_textAppearancePopupMenuHeader
@see #AppCompatTheme_textAppearanceSearchResultSubtitle
@see #AppCompatTheme_textAppearanceSearchResultTitle
@see #AppCompatTheme_textAppearanceSmallPopupMenu
@see #AppCompatTheme_textColorAlertDialogListItem
@see #AppCompatTheme_textColorSearchUrl
@see #AppCompatTheme_toolbarNavigationButtonStyle
@see #AppCompatTheme_toolbarStyle
@see #AppCompatTheme_tooltipForegroundColor
@see #AppCompatTheme_tooltipFrameBackground
@see #AppCompatTheme_windowActionBar
@see #AppCompatTheme_windowActionBarOverlay
@see #AppCompatTheme_windowActionModeOverlay
@see #AppCompatTheme_windowFixedHeightMajor
@see #AppCompatTheme_windowFixedHeightMinor
@see #AppCompatTheme_windowFixedWidthMajor
@see #AppCompatTheme_windowFixedWidthMinor
@see #AppCompatTheme_windowMinWidthMajor
@see #AppCompatTheme_windowMinWidthMinor
@see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme = {
0x01010057, 0x010100ae, 0x7f010056, 0x7f010057,
0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b,
0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f,
0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063,
0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067,
0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b,
0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f,
0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073,
0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077,
0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b,
0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f,
0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083,
0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087,
0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b,
0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f,
0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093,
0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097,
0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b,
0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f,
0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3,
0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7,
0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab,
0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af,
0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3,
0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7,
0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb,
0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf,
0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3,
0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7,
0x7f0100c8, 0x7f0100c9, 0x7f0100ca
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionBarDivider
*/
public static int AppCompatTheme_actionBarDivider = 23;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionBarItemBackground
*/
public static int AppCompatTheme_actionBarItemBackground = 24;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionBarPopupTheme
*/
public static int AppCompatTheme_actionBarPopupTheme = 17;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionBarSize
*/
public static int AppCompatTheme_actionBarSize = 22;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionBarSplitStyle
*/
public static int AppCompatTheme_actionBarSplitStyle = 19;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionBarStyle
*/
public static int AppCompatTheme_actionBarStyle = 18;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionBarTabBarStyle
*/
public static int AppCompatTheme_actionBarTabBarStyle = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionBarTabStyle
*/
public static int AppCompatTheme_actionBarTabStyle = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionBarTabTextStyle
*/
public static int AppCompatTheme_actionBarTabTextStyle = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionBarTheme
*/
public static int AppCompatTheme_actionBarTheme = 20;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionBarWidgetTheme
*/
public static int AppCompatTheme_actionBarWidgetTheme = 21;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionButtonStyle
*/
public static int AppCompatTheme_actionButtonStyle = 50;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionDropDownStyle
*/
public static int AppCompatTheme_actionDropDownStyle = 46;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionMenuTextAppearance
*/
public static int AppCompatTheme_actionMenuTextAppearance = 25;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionMenuTextColor
*/
public static int AppCompatTheme_actionMenuTextColor = 26;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModeBackground
*/
public static int AppCompatTheme_actionModeBackground = 29;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModeCloseButtonStyle
*/
public static int AppCompatTheme_actionModeCloseButtonStyle = 28;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModeCloseDrawable
*/
public static int AppCompatTheme_actionModeCloseDrawable = 31;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModeCopyDrawable
*/
public static int AppCompatTheme_actionModeCopyDrawable = 33;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModeCutDrawable
*/
public static int AppCompatTheme_actionModeCutDrawable = 32;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModeFindDrawable
*/
public static int AppCompatTheme_actionModeFindDrawable = 37;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModePasteDrawable
*/
public static int AppCompatTheme_actionModePasteDrawable = 34;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModePopupWindowStyle
*/
public static int AppCompatTheme_actionModePopupWindowStyle = 39;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModeSelectAllDrawable
*/
public static int AppCompatTheme_actionModeSelectAllDrawable = 35;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModeShareDrawable
*/
public static int AppCompatTheme_actionModeShareDrawable = 36;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModeSplitBackground
*/
public static int AppCompatTheme_actionModeSplitBackground = 30;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModeStyle
*/
public static int AppCompatTheme_actionModeStyle = 27;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionModeWebSearchDrawable
*/
public static int AppCompatTheme_actionModeWebSearchDrawable = 38;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionOverflowButtonStyle
*/
public static int AppCompatTheme_actionOverflowButtonStyle = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionOverflowMenuStyle
*/
public static int AppCompatTheme_actionOverflowMenuStyle = 16;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:activityChooserViewStyle
*/
public static int AppCompatTheme_activityChooserViewStyle = 58;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:alertDialogButtonGroupStyle
*/
public static int AppCompatTheme_alertDialogButtonGroupStyle = 95;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:alertDialogCenterButtons
*/
public static int AppCompatTheme_alertDialogCenterButtons = 96;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:alertDialogStyle
*/
public static int AppCompatTheme_alertDialogStyle = 94;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:alertDialogTheme
*/
public static int AppCompatTheme_alertDialogTheme = 97;
/**
<p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
attribute's value can be found in the {@link #AppCompatTheme} array.
@attr name android:windowAnimationStyle
*/
public static 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 int AppCompatTheme_android_windowIsFloating = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:autoCompleteTextViewStyle
*/
public static int AppCompatTheme_autoCompleteTextViewStyle = 102;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:borderlessButtonStyle
*/
public static int AppCompatTheme_borderlessButtonStyle = 55;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:buttonBarButtonStyle
*/
public static int AppCompatTheme_buttonBarButtonStyle = 52;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:buttonBarNegativeButtonStyle
*/
public static int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:buttonBarNeutralButtonStyle
*/
public static int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:buttonBarPositiveButtonStyle
*/
public static int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:buttonBarStyle
*/
public static int AppCompatTheme_buttonBarStyle = 51;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:buttonStyle
*/
public static int AppCompatTheme_buttonStyle = 103;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:buttonStyleSmall
*/
public static int AppCompatTheme_buttonStyleSmall = 104;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:checkboxStyle
*/
public static int AppCompatTheme_checkboxStyle = 105;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:checkedTextViewStyle
*/
public static int AppCompatTheme_checkedTextViewStyle = 106;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:colorAccent
*/
public static int AppCompatTheme_colorAccent = 86;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:colorBackgroundFloating
*/
public static int AppCompatTheme_colorBackgroundFloating = 93;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:colorButtonNormal
*/
public static int AppCompatTheme_colorButtonNormal = 90;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:colorControlActivated
*/
public static int AppCompatTheme_colorControlActivated = 88;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:colorControlHighlight
*/
public static int AppCompatTheme_colorControlHighlight = 89;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:colorControlNormal
*/
public static int AppCompatTheme_colorControlNormal = 87;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#colorError}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.v7.mediarouter:colorError
*/
public static int AppCompatTheme_colorError = 118;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:colorPrimary
*/
public static int AppCompatTheme_colorPrimary = 84;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:colorPrimaryDark
*/
public static int AppCompatTheme_colorPrimaryDark = 85;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:colorSwitchThumbNormal
*/
public static int AppCompatTheme_colorSwitchThumbNormal = 91;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:controlBackground
*/
public static int AppCompatTheme_controlBackground = 92;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:dialogPreferredPadding
*/
public static int AppCompatTheme_dialogPreferredPadding = 44;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:dialogTheme
*/
public static int AppCompatTheme_dialogTheme = 43;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:dividerHorizontal
*/
public static int AppCompatTheme_dividerHorizontal = 57;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:dividerVertical
*/
public static int AppCompatTheme_dividerVertical = 56;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:dropDownListViewStyle
*/
public static int AppCompatTheme_dropDownListViewStyle = 75;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:dropdownListPreferredItemHeight
*/
public static int AppCompatTheme_dropdownListPreferredItemHeight = 47;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:editTextBackground
*/
public static int AppCompatTheme_editTextBackground = 64;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:editTextColor
*/
public static int AppCompatTheme_editTextColor = 63;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:editTextStyle
*/
public static int AppCompatTheme_editTextStyle = 107;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:homeAsUpIndicator
*/
public static int AppCompatTheme_homeAsUpIndicator = 49;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:imageButtonStyle
*/
public static int AppCompatTheme_imageButtonStyle = 65;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:listChoiceBackgroundIndicator
*/
public static int AppCompatTheme_listChoiceBackgroundIndicator = 83;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:listDividerAlertDialog
*/
public static int AppCompatTheme_listDividerAlertDialog = 45;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:listMenuViewStyle
*/
public static int AppCompatTheme_listMenuViewStyle = 115;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:listPopupWindowStyle
*/
public static int AppCompatTheme_listPopupWindowStyle = 76;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:listPreferredItemHeight
*/
public static int AppCompatTheme_listPreferredItemHeight = 70;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:listPreferredItemHeightLarge
*/
public static int AppCompatTheme_listPreferredItemHeightLarge = 72;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:listPreferredItemHeightSmall
*/
public static int AppCompatTheme_listPreferredItemHeightSmall = 71;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:listPreferredItemPaddingLeft
*/
public static int AppCompatTheme_listPreferredItemPaddingLeft = 73;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:listPreferredItemPaddingRight
*/
public static int AppCompatTheme_listPreferredItemPaddingRight = 74;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:panelBackground
*/
public static int AppCompatTheme_panelBackground = 80;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:panelMenuListTheme
*/
public static int AppCompatTheme_panelMenuListTheme = 82;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:panelMenuListWidth
*/
public static int AppCompatTheme_panelMenuListWidth = 81;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:popupMenuStyle
*/
public static int AppCompatTheme_popupMenuStyle = 61;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:popupWindowStyle
*/
public static int AppCompatTheme_popupWindowStyle = 62;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:radioButtonStyle
*/
public static int AppCompatTheme_radioButtonStyle = 108;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:ratingBarStyle
*/
public static int AppCompatTheme_ratingBarStyle = 109;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:ratingBarStyleIndicator
*/
public static int AppCompatTheme_ratingBarStyleIndicator = 110;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:ratingBarStyleSmall
*/
public static int AppCompatTheme_ratingBarStyleSmall = 111;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:searchViewStyle
*/
public static int AppCompatTheme_searchViewStyle = 69;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:seekBarStyle
*/
public static int AppCompatTheme_seekBarStyle = 112;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:selectableItemBackground
*/
public static int AppCompatTheme_selectableItemBackground = 53;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:selectableItemBackgroundBorderless
*/
public static int AppCompatTheme_selectableItemBackgroundBorderless = 54;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:spinnerDropDownItemStyle
*/
public static int AppCompatTheme_spinnerDropDownItemStyle = 48;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:spinnerStyle
*/
public static int AppCompatTheme_spinnerStyle = 113;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:switchStyle
*/
public static int AppCompatTheme_switchStyle = 114;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:textAppearanceLargePopupMenu
*/
public static int AppCompatTheme_textAppearanceLargePopupMenu = 40;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:textAppearanceListItem
*/
public static int AppCompatTheme_textAppearanceListItem = 77;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#textAppearanceListItemSecondary}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.v7.mediarouter:textAppearanceListItemSecondary
*/
public static int AppCompatTheme_textAppearanceListItemSecondary = 78;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:textAppearanceListItemSmall
*/
public static int AppCompatTheme_textAppearanceListItemSmall = 79;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:textAppearancePopupMenuHeader
*/
public static int AppCompatTheme_textAppearancePopupMenuHeader = 42;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:textAppearanceSearchResultSubtitle
*/
public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:textAppearanceSearchResultTitle
*/
public static int AppCompatTheme_textAppearanceSearchResultTitle = 66;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:textAppearanceSmallPopupMenu
*/
public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:textColorAlertDialogListItem
*/
public static int AppCompatTheme_textColorAlertDialogListItem = 98;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:textColorSearchUrl
*/
public static int AppCompatTheme_textColorSearchUrl = 68;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:toolbarNavigationButtonStyle
*/
public static int AppCompatTheme_toolbarNavigationButtonStyle = 60;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:toolbarStyle
*/
public static int AppCompatTheme_toolbarStyle = 59;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#tooltipForegroundColor}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.v7.mediarouter:tooltipForegroundColor
*/
public static int AppCompatTheme_tooltipForegroundColor = 117;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#tooltipFrameBackground}
attribute's value can be found in the {@link #AppCompatTheme} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.v7.mediarouter:tooltipFrameBackground
*/
public static int AppCompatTheme_tooltipFrameBackground = 116;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:windowActionBar
*/
public static int AppCompatTheme_windowActionBar = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:windowActionBarOverlay
*/
public static int AppCompatTheme_windowActionBarOverlay = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:windowActionModeOverlay
*/
public static int AppCompatTheme_windowActionModeOverlay = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:windowFixedHeightMajor
*/
public static int AppCompatTheme_windowFixedHeightMajor = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:windowFixedHeightMinor
*/
public static int AppCompatTheme_windowFixedHeightMinor = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:windowFixedWidthMajor
*/
public static int AppCompatTheme_windowFixedWidthMajor = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:windowFixedWidthMinor
*/
public static int AppCompatTheme_windowFixedWidthMinor = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:windowMinWidthMajor
*/
public static int AppCompatTheme_windowMinWidthMajor = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:windowMinWidthMinor
*/
public static int AppCompatTheme_windowMinWidthMinor = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:windowNoTitle
*/
public static 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 android.support.v7.mediarouter:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemBackground android.support.v7.mediarouter:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemIconTint android.support.v7.mediarouter:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_itemTextColor android.support.v7.mediarouter:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #BottomNavigationView_menu android.support.v7.mediarouter:menu}</code></td><td></td></tr>
</table>
@see #BottomNavigationView_elevation
@see #BottomNavigationView_itemBackground
@see #BottomNavigationView_itemIconTint
@see #BottomNavigationView_itemTextColor
@see #BottomNavigationView_menu
*/
public static final int[] BottomNavigationView = {
0x7f01003e, 0x7f010143, 0x7f010144, 0x7f010145,
0x7f010146
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:elevation
*/
public static int BottomNavigationView_elevation = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:itemBackground
*/
public static int BottomNavigationView_itemBackground = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:itemIconTint
*/
public static int BottomNavigationView_itemIconTint = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:itemTextColor
*/
public static int BottomNavigationView_itemTextColor = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:menu
*/
public static 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 android.support.v7.mediarouter:behavior_hideable}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight android.support.v7.mediarouter:behavior_peekHeight}</code></td><td></td></tr>
<tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed android.support.v7.mediarouter:behavior_skipCollapsed}</code></td><td></td></tr>
</table>
@see #BottomSheetBehavior_Layout_behavior_hideable
@see #BottomSheetBehavior_Layout_behavior_peekHeight
@see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout = {
0x7f01011d, 0x7f01011e, 0x7f01011f
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:behavior_hideable
*/
public static int BottomSheetBehavior_Layout_behavior_hideable = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:behavior_peekHeight
*/
public static int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:behavior_skipCollapsed
*/
public static 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 android.support.v7.mediarouter:allowStacking}</code></td><td></td></tr>
</table>
@see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout = {
0x7f0100cb
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:allowStacking
*/
public static int ButtonBarLayout_allowStacking = 0;
/** Attributes that can be used with a CardView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardBackgroundColor android.support.v7.mediarouter:cardBackgroundColor}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardCornerRadius android.support.v7.mediarouter:cardCornerRadius}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardElevation android.support.v7.mediarouter:cardElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardMaxElevation android.support.v7.mediarouter:cardMaxElevation}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardPreventCornerOverlap android.support.v7.mediarouter:cardPreventCornerOverlap}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_cardUseCompatPadding android.support.v7.mediarouter:cardUseCompatPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPadding android.support.v7.mediarouter:contentPadding}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingBottom android.support.v7.mediarouter:contentPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingLeft android.support.v7.mediarouter:contentPaddingLeft}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingRight android.support.v7.mediarouter:contentPaddingRight}</code></td><td></td></tr>
<tr><td><code>{@link #CardView_contentPaddingTop android.support.v7.mediarouter:contentPaddingTop}</code></td><td></td></tr>
</table>
@see #CardView_android_minHeight
@see #CardView_android_minWidth
@see #CardView_cardBackgroundColor
@see #CardView_cardCornerRadius
@see #CardView_cardElevation
@see #CardView_cardMaxElevation
@see #CardView_cardPreventCornerOverlap
@see #CardView_cardUseCompatPadding
@see #CardView_contentPadding
@see #CardView_contentPaddingBottom
@see #CardView_contentPaddingLeft
@see #CardView_contentPaddingRight
@see #CardView_contentPaddingTop
*/
public static final int[] CardView = {
0x0101013f, 0x01010140, 0x7f010017, 0x7f010018,
0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c,
0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,
0x7f010021
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minHeight
*/
public static int CardView_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #CardView} array.
@attr name android:minWidth
*/
public static int CardView_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#cardBackgroundColor}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:cardBackgroundColor
*/
public static int CardView_cardBackgroundColor = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#cardCornerRadius}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:cardCornerRadius
*/
public static int CardView_cardCornerRadius = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#cardElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:cardElevation
*/
public static int CardView_cardElevation = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#cardMaxElevation}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:cardMaxElevation
*/
public static int CardView_cardMaxElevation = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#cardPreventCornerOverlap}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:cardPreventCornerOverlap
*/
public static int CardView_cardPreventCornerOverlap = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#cardUseCompatPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:cardUseCompatPadding
*/
public static int CardView_cardUseCompatPadding = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#contentPadding}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:contentPadding
*/
public static int CardView_contentPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#contentPaddingBottom}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:contentPaddingBottom
*/
public static int CardView_contentPaddingBottom = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#contentPaddingLeft}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:contentPaddingLeft
*/
public static int CardView_contentPaddingLeft = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#contentPaddingRight}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:contentPaddingRight
*/
public static int CardView_contentPaddingRight = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#contentPaddingTop}
attribute's value can be found in the {@link #CardView} array.
<p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:contentPaddingTop
*/
public static int CardView_contentPaddingTop = 11;
/** Attributes that can be used with a CollapsingToolbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.v7.mediarouter:collapsedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.v7.mediarouter:collapsedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_contentScrim android.support.v7.mediarouter:contentScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.v7.mediarouter:expandedTitleGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.v7.mediarouter:expandedTitleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.v7.mediarouter:expandedTitleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.v7.mediarouter:expandedTitleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.v7.mediarouter:expandedTitleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.v7.mediarouter:expandedTitleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.v7.mediarouter:expandedTitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration android.support.v7.mediarouter:scrimAnimationDuration}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger android.support.v7.mediarouter:scrimVisibleHeightTrigger}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim android.support.v7.mediarouter:statusBarScrim}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_title android.support.v7.mediarouter:title}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled android.support.v7.mediarouter:titleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_toolbarId android.support.v7.mediarouter:toolbarId}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_collapsedTitleGravity
@see #CollapsingToolbarLayout_collapsedTitleTextAppearance
@see #CollapsingToolbarLayout_contentScrim
@see #CollapsingToolbarLayout_expandedTitleGravity
@see #CollapsingToolbarLayout_expandedTitleMargin
@see #CollapsingToolbarLayout_expandedTitleMarginBottom
@see #CollapsingToolbarLayout_expandedTitleMarginEnd
@see #CollapsingToolbarLayout_expandedTitleMarginStart
@see #CollapsingToolbarLayout_expandedTitleMarginTop
@see #CollapsingToolbarLayout_expandedTitleTextAppearance
@see #CollapsingToolbarLayout_scrimAnimationDuration
@see #CollapsingToolbarLayout_scrimVisibleHeightTrigger
@see #CollapsingToolbarLayout_statusBarScrim
@see #CollapsingToolbarLayout_title
@see #CollapsingToolbarLayout_titleEnabled
@see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout = {
0x7f010025, 0x7f010120, 0x7f010121, 0x7f010122,
0x7f010123, 0x7f010124, 0x7f010125, 0x7f010126,
0x7f010127, 0x7f010128, 0x7f010129, 0x7f01012a,
0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:collapsedTitleGravity
*/
public static int CollapsingToolbarLayout_collapsedTitleGravity = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:collapsedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentScrim
*/
public static int CollapsingToolbarLayout_contentScrim = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:expandedTitleGravity
*/
public static int CollapsingToolbarLayout_expandedTitleGravity = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:expandedTitleMargin
*/
public static int CollapsingToolbarLayout_expandedTitleMargin = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:expandedTitleMarginBottom
*/
public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:expandedTitleMarginEnd
*/
public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:expandedTitleMarginStart
*/
public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:expandedTitleMarginTop
*/
public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:expandedTitleTextAppearance
*/
public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:scrimAnimationDuration
*/
public static int CollapsingToolbarLayout_scrimAnimationDuration = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:scrimVisibleHeightTrigger
*/
public static int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:statusBarScrim
*/
public static int CollapsingToolbarLayout_statusBarScrim = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:title
*/
public static int CollapsingToolbarLayout_title = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:titleEnabled
*/
public static int CollapsingToolbarLayout_titleEnabled = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:toolbarId
*/
public static 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 android.support.v7.mediarouter:layout_collapseMode}</code></td><td></td></tr>
<tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier android.support.v7.mediarouter:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
</table>
@see #CollapsingToolbarLayout_Layout_layout_collapseMode
@see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout = {
0x7f01012f, 0x7f010130
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layout_collapseMode
*/
public static int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layout_collapseParallaxMultiplier
*/
public static 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 android.support.v7.mediarouter:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
<tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
</table>
@see #ColorStateListItem_alpha
@see #ColorStateListItem_android_alpha
@see #ColorStateListItem_android_color
*/
public static final int[] ColorStateListItem = {
0x010101a5, 0x0101031f, 0x7f0100cc
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:alpha
*/
public static 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 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 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 android.support.v7.mediarouter:buttonTint}</code></td><td></td></tr>
<tr><td><code>{@link #CompoundButton_buttonTintMode android.support.v7.mediarouter:buttonTintMode}</code></td><td></td></tr>
</table>
@see #CompoundButton_android_button
@see #CompoundButton_buttonTint
@see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton = {
0x01010107, 0x7f0100cd, 0x7f0100ce
};
/**
<p>This symbol is the offset where the {@link android.R.attr#button}
attribute's value can be found in the {@link #CompoundButton} array.
@attr name android:button
*/
public static int CompoundButton_android_button = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:buttonTint
*/
public static int CompoundButton_buttonTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#buttonTintMode}
attribute's value can be found in the {@link #CompoundButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.v7.mediarouter:buttonTintMode
*/
public static int CompoundButton_buttonTintMode = 2;
/** Attributes that can be used with a CoordinatorLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #CoordinatorLayout_keylines android.support.v7.mediarouter:keylines}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_statusBarBackground android.support.v7.mediarouter:statusBarBackground}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_keylines
@see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout = {
0x7f010131, 0x7f010132
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:keylines
*/
public static int CoordinatorLayout_keylines = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:statusBarBackground
*/
public static 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 android.support.v7.mediarouter:layout_anchor}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity android.support.v7.mediarouter:layout_anchorGravity}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior android.support.v7.mediarouter:layout_behavior}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges android.support.v7.mediarouter:layout_dodgeInsetEdges}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge android.support.v7.mediarouter:layout_insetEdge}</code></td><td></td></tr>
<tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline android.support.v7.mediarouter:layout_keyline}</code></td><td></td></tr>
</table>
@see #CoordinatorLayout_Layout_android_layout_gravity
@see #CoordinatorLayout_Layout_layout_anchor
@see #CoordinatorLayout_Layout_layout_anchorGravity
@see #CoordinatorLayout_Layout_layout_behavior
@see #CoordinatorLayout_Layout_layout_dodgeInsetEdges
@see #CoordinatorLayout_Layout_layout_insetEdge
@see #CoordinatorLayout_Layout_layout_keyline
*/
public static final int[] CoordinatorLayout_Layout = {
0x010100b3, 0x7f010133, 0x7f010134, 0x7f010135,
0x7f010136, 0x7f010137, 0x7f010138
};
/**
<p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
@attr name android:layout_gravity
*/
public static int CoordinatorLayout_Layout_android_layout_gravity = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layout_anchor
*/
public static int CoordinatorLayout_Layout_layout_anchor = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layout_anchorGravity
*/
public static int CoordinatorLayout_Layout_layout_anchorGravity = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layout_behavior
*/
public static int CoordinatorLayout_Layout_layout_behavior = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layout_dodgeInsetEdges
*/
public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layout_insetEdge
*/
public static int CoordinatorLayout_Layout_layout_insetEdge = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layout_keyline
*/
public static 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 android.support.v7.mediarouter:bottomSheetDialogTheme}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_bottomSheetStyle android.support.v7.mediarouter:bottomSheetStyle}</code></td><td></td></tr>
<tr><td><code>{@link #DesignTheme_textColorError android.support.v7.mediarouter:textColorError}</code></td><td></td></tr>
</table>
@see #DesignTheme_bottomSheetDialogTheme
@see #DesignTheme_bottomSheetStyle
@see #DesignTheme_textColorError
*/
public static final int[] DesignTheme = {
0x7f010139, 0x7f01013a, 0x7f01013b
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:bottomSheetDialogTheme
*/
public static int DesignTheme_bottomSheetDialogTheme = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:bottomSheetStyle
*/
public static int DesignTheme_bottomSheetStyle = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#textColorError}
attribute's value can be found in the {@link #DesignTheme} array.
<p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
@attr name android.support.v7.mediarouter:textColorError
*/
public static 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 android.support.v7.mediarouter:arrowHeadLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength android.support.v7.mediarouter:arrowShaftLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_barLength android.support.v7.mediarouter:barLength}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_color android.support.v7.mediarouter:color}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_drawableSize android.support.v7.mediarouter:drawableSize}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars android.support.v7.mediarouter:gapBetweenBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_spinBars android.support.v7.mediarouter:spinBars}</code></td><td></td></tr>
<tr><td><code>{@link #DrawerArrowToggle_thickness android.support.v7.mediarouter:thickness}</code></td><td></td></tr>
</table>
@see #DrawerArrowToggle_arrowHeadLength
@see #DrawerArrowToggle_arrowShaftLength
@see #DrawerArrowToggle_barLength
@see #DrawerArrowToggle_color
@see #DrawerArrowToggle_drawableSize
@see #DrawerArrowToggle_gapBetweenBars
@see #DrawerArrowToggle_spinBars
@see #DrawerArrowToggle_thickness
*/
public static final int[] DrawerArrowToggle = {
0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2,
0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:arrowHeadLength
*/
public static int DrawerArrowToggle_arrowHeadLength = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:arrowShaftLength
*/
public static int DrawerArrowToggle_arrowShaftLength = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:barLength
*/
public static int DrawerArrowToggle_barLength = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:color
*/
public static int DrawerArrowToggle_color = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:drawableSize
*/
public static int DrawerArrowToggle_drawableSize = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:gapBetweenBars
*/
public static int DrawerArrowToggle_gapBetweenBars = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:spinBars
*/
public static int DrawerArrowToggle_spinBars = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:thickness
*/
public static 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 android.support.v7.mediarouter:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_backgroundTintMode android.support.v7.mediarouter:backgroundTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_borderWidth android.support.v7.mediarouter:borderWidth}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_elevation android.support.v7.mediarouter:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_fabSize android.support.v7.mediarouter:fabSize}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_pressedTranslationZ android.support.v7.mediarouter:pressedTranslationZ}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_rippleColor android.support.v7.mediarouter:rippleColor}</code></td><td></td></tr>
<tr><td><code>{@link #FloatingActionButton_useCompatPadding android.support.v7.mediarouter:useCompatPadding}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_backgroundTint
@see #FloatingActionButton_backgroundTintMode
@see #FloatingActionButton_borderWidth
@see #FloatingActionButton_elevation
@see #FloatingActionButton_fabSize
@see #FloatingActionButton_pressedTranslationZ
@see #FloatingActionButton_rippleColor
@see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton = {
0x7f01003e, 0x7f010116, 0x7f010117, 0x7f01013c,
0x7f01013d, 0x7f01013e, 0x7f01013f, 0x7f010140
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:backgroundTint
*/
public static int FloatingActionButton_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #FloatingActionButton} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.v7.mediarouter:backgroundTintMode
*/
public static int FloatingActionButton_backgroundTintMode = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:borderWidth
*/
public static int FloatingActionButton_borderWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:elevation
*/
public static int FloatingActionButton_elevation = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:fabSize
*/
public static int FloatingActionButton_fabSize = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:pressedTranslationZ
*/
public static int FloatingActionButton_pressedTranslationZ = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:rippleColor
*/
public static int FloatingActionButton_rippleColor = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:useCompatPadding
*/
public static int FloatingActionButton_useCompatPadding = 7;
/** Attributes that can be used with a FloatingActionButton_Behavior_Layout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide android.support.v7.mediarouter:behavior_autoHide}</code></td><td></td></tr>
</table>
@see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout = {
0x7f010141
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:behavior_autoHide
*/
public static int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
/** Attributes that can be used with a FontFamily.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FontFamily_fontProviderAuthority android.support.v7.mediarouter:fontProviderAuthority}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderCerts android.support.v7.mediarouter:fontProviderCerts}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchStrategy android.support.v7.mediarouter:fontProviderFetchStrategy}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderFetchTimeout android.support.v7.mediarouter:fontProviderFetchTimeout}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderPackage android.support.v7.mediarouter:fontProviderPackage}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamily_fontProviderQuery android.support.v7.mediarouter:fontProviderQuery}</code></td><td></td></tr>
</table>
@see #FontFamily_fontProviderAuthority
@see #FontFamily_fontProviderCerts
@see #FontFamily_fontProviderFetchStrategy
@see #FontFamily_fontProviderFetchTimeout
@see #FontFamily_fontProviderPackage
@see #FontFamily_fontProviderQuery
*/
public static final int[] FontFamily = {
0x7f01016a, 0x7f01016b, 0x7f01016c, 0x7f01016d,
0x7f01016e, 0x7f01016f
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#fontProviderAuthority}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:fontProviderAuthority
*/
public static int FontFamily_fontProviderAuthority = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#fontProviderCerts}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.v7.mediarouter:fontProviderCerts
*/
public static int FontFamily_fontProviderCerts = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#fontProviderFetchStrategy}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>blocking</code></td><td>0</td><td></td></tr>
<tr><td><code>async</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.v7.mediarouter:fontProviderFetchStrategy
*/
public static int FontFamily_fontProviderFetchStrategy = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#fontProviderFetchTimeout}
attribute's value can be found in the {@link #FontFamily} array.
<p>May be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
<p>May be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>forever</code></td><td>-1</td><td></td></tr>
</table>
@attr name android.support.v7.mediarouter:fontProviderFetchTimeout
*/
public static int FontFamily_fontProviderFetchTimeout = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#fontProviderPackage}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:fontProviderPackage
*/
public static int FontFamily_fontProviderPackage = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#fontProviderQuery}
attribute's value can be found in the {@link #FontFamily} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:fontProviderQuery
*/
public static int FontFamily_fontProviderQuery = 2;
/** Attributes that can be used with a FontFamilyFont.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_font android.support.v7.mediarouter:font}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontStyle android.support.v7.mediarouter:fontStyle}</code></td><td></td></tr>
<tr><td><code>{@link #FontFamilyFont_fontWeight android.support.v7.mediarouter:fontWeight}</code></td><td></td></tr>
</table>
@see #FontFamilyFont_android_font
@see #FontFamilyFont_android_fontStyle
@see #FontFamilyFont_android_fontWeight
@see #FontFamilyFont_font
@see #FontFamilyFont_fontStyle
@see #FontFamilyFont_fontWeight
*/
public static final int[] FontFamilyFont = {
0x01010532, 0x01010533, 0x0101053f, 0x7f010170,
0x7f010171, 0x7f010172
};
/**
<p>This symbol is the offset where the {@link android.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:font
*/
public static int FontFamilyFont_android_font = 0;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontStyle
*/
public static int FontFamilyFont_android_fontStyle = 2;
/**
<p>This symbol is the offset where the {@link android.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
@attr name android:fontWeight
*/
public static int FontFamilyFont_android_fontWeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#font}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.v7.mediarouter:font
*/
public static int FontFamilyFont_font = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#fontStyle}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>italic</code></td><td>1</td><td></td></tr>
</table>
@attr name android.support.v7.mediarouter:fontStyle
*/
public static int FontFamilyFont_fontStyle = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#fontWeight}
attribute's value can be found in the {@link #FontFamilyFont} array.
<p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:fontWeight
*/
public static int FontFamilyFont_fontWeight = 5;
/** Attributes that can be used with a ForegroundLinearLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
<tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.v7.mediarouter:foregroundInsidePadding}</code></td><td></td></tr>
</table>
@see #ForegroundLinearLayout_android_foreground
@see #ForegroundLinearLayout_android_foregroundGravity
@see #ForegroundLinearLayout_foregroundInsidePadding
*/
public static final int[] ForegroundLinearLayout = {
0x01010109, 0x01010200, 0x7f010142
};
/**
<p>This symbol is the offset where the {@link android.R.attr#foreground}
attribute's value can be found in the {@link #ForegroundLinearLayout} array.
@attr name android:foreground
*/
public static 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 int ForegroundLinearLayout_android_foregroundGravity = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:foregroundInsidePadding
*/
public static int ForegroundLinearLayout_foregroundInsidePadding = 2;
/** Attributes that can be used with a LinearLayoutCompat.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_divider android.support.v7.mediarouter:divider}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_dividerPadding android.support.v7.mediarouter:dividerPadding}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild android.support.v7.mediarouter:measureWithLargestChild}</code></td><td></td></tr>
<tr><td><code>{@link #LinearLayoutCompat_showDividers android.support.v7.mediarouter:showDividers}</code></td><td></td></tr>
</table>
@see #LinearLayoutCompat_android_baselineAligned
@see #LinearLayoutCompat_android_baselineAlignedChildIndex
@see #LinearLayoutCompat_android_gravity
@see #LinearLayoutCompat_android_orientation
@see #LinearLayoutCompat_android_weightSum
@see #LinearLayoutCompat_divider
@see #LinearLayoutCompat_dividerPadding
@see #LinearLayoutCompat_measureWithLargestChild
@see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat = {
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f01002d, 0x7f0100d7, 0x7f0100d8,
0x7f0100d9
};
/**
<p>This symbol is the offset where the {@link android.R.attr#baselineAligned}
attribute's value can be found in the {@link #LinearLayoutCompat} array.
@attr name android:baselineAligned
*/
public static 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 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 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 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 int LinearLayoutCompat_android_weightSum = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:divider
*/
public static int LinearLayoutCompat_divider = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:dividerPadding
*/
public static int LinearLayoutCompat_dividerPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:measureWithLargestChild
*/
public static int LinearLayoutCompat_measureWithLargestChild = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:showDividers
*/
public static 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 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 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 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 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 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 int ListPopupWindow_android_dropDownVerticalOffset = 1;
/** Attributes that can be used with a MediaRouteButton.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MediaRouteButton_android_minHeight android:minHeight}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_android_minWidth android:minWidth}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_externalRouteEnabledDrawable android.support.v7.mediarouter:externalRouteEnabledDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #MediaRouteButton_mediaRouteButtonTint android.support.v7.mediarouter:mediaRouteButtonTint}</code></td><td></td></tr>
</table>
@see #MediaRouteButton_android_minHeight
@see #MediaRouteButton_android_minWidth
@see #MediaRouteButton_externalRouteEnabledDrawable
@see #MediaRouteButton_mediaRouteButtonTint
*/
public static final int[] MediaRouteButton = {
0x0101013f, 0x01010140, 0x7f010015, 0x7f010016
};
/**
<p>This symbol is the offset where the {@link android.R.attr#minHeight}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minHeight
*/
public static int MediaRouteButton_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.R.attr#minWidth}
attribute's value can be found in the {@link #MediaRouteButton} array.
@attr name android:minWidth
*/
public static int MediaRouteButton_android_minWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#externalRouteEnabledDrawable}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
@attr name android.support.v7.mediarouter:externalRouteEnabledDrawable
*/
public static int MediaRouteButton_externalRouteEnabledDrawable = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#mediaRouteButtonTint}
attribute's value can be found in the {@link #MediaRouteButton} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:mediaRouteButtonTint
*/
public static int MediaRouteButton_mediaRouteButtonTint = 3;
/** Attributes that can be used with a MenuGroup.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
</table>
@see #MenuGroup_android_checkableBehavior
@see #MenuGroup_android_enabled
@see #MenuGroup_android_id
@see #MenuGroup_android_menuCategory
@see #MenuGroup_android_orderInCategory
@see #MenuGroup_android_visible
*/
public static final int[] MenuGroup = {
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
<p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
attribute's value can be found in the {@link #MenuGroup} array.
@attr name android:checkableBehavior
*/
public static 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 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 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 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 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 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 android.support.v7.mediarouter:actionLayout}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionProviderClass android.support.v7.mediarouter:actionProviderClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_actionViewClass android.support.v7.mediarouter:actionViewClass}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_alphabeticModifiers android.support.v7.mediarouter:alphabeticModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_contentDescription android.support.v7.mediarouter:contentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTint android.support.v7.mediarouter:iconTint}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_iconTintMode android.support.v7.mediarouter:iconTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_numericModifiers android.support.v7.mediarouter:numericModifiers}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_showAsAction android.support.v7.mediarouter:showAsAction}</code></td><td></td></tr>
<tr><td><code>{@link #MenuItem_tooltipText android.support.v7.mediarouter:tooltipText}</code></td><td></td></tr>
</table>
@see #MenuItem_actionLayout
@see #MenuItem_actionProviderClass
@see #MenuItem_actionViewClass
@see #MenuItem_alphabeticModifiers
@see #MenuItem_android_alphabeticShortcut
@see #MenuItem_android_checkable
@see #MenuItem_android_checked
@see #MenuItem_android_enabled
@see #MenuItem_android_icon
@see #MenuItem_android_id
@see #MenuItem_android_menuCategory
@see #MenuItem_android_numericShortcut
@see #MenuItem_android_onClick
@see #MenuItem_android_orderInCategory
@see #MenuItem_android_title
@see #MenuItem_android_titleCondensed
@see #MenuItem_android_visible
@see #MenuItem_contentDescription
@see #MenuItem_iconTint
@see #MenuItem_iconTintMode
@see #MenuItem_numericModifiers
@see #MenuItem_showAsAction
@see #MenuItem_tooltipText
*/
public static final int[] MenuItem = {
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f0100da, 0x7f0100db, 0x7f0100dc,
0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0,
0x7f0100e1, 0x7f0100e2, 0x7f0100e3
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionLayout
*/
public static int MenuItem_actionLayout = 16;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionProviderClass
*/
public static int MenuItem_actionProviderClass = 18;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:actionViewClass
*/
public static int MenuItem_actionViewClass = 17;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#alphabeticModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name android.support.v7.mediarouter:alphabeticModifiers
*/
public static int MenuItem_alphabeticModifiers = 13;
/**
<p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
attribute's value can be found in the {@link #MenuItem} array.
@attr name android:alphabeticShortcut
*/
public static 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 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 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 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 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 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 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 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 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 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 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 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 int MenuItem_android_visible = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentDescription
*/
public static int MenuItem_contentDescription = 19;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#iconTint}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:iconTint
*/
public static int MenuItem_iconTint = 21;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#iconTintMode}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.v7.mediarouter:iconTintMode
*/
public static int MenuItem_iconTintMode = 22;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#numericModifiers}
attribute's value can be found in the {@link #MenuItem} array.
<p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>META</code></td><td>0x10000</td><td></td></tr>
<tr><td><code>CTRL</code></td><td>0x1000</td><td></td></tr>
<tr><td><code>ALT</code></td><td>0x02</td><td></td></tr>
<tr><td><code>SHIFT</code></td><td>0x1</td><td></td></tr>
<tr><td><code>SYM</code></td><td>0x4</td><td></td></tr>
<tr><td><code>FUNCTION</code></td><td>0x8</td><td></td></tr>
</table>
@attr name android.support.v7.mediarouter:numericModifiers
*/
public static int MenuItem_numericModifiers = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:showAsAction
*/
public static int MenuItem_showAsAction = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tooltipText
*/
public static int MenuItem_tooltipText = 20;
/** Attributes that can be used with a MenuView.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_preserveIconSpacing android.support.v7.mediarouter:preserveIconSpacing}</code></td><td></td></tr>
<tr><td><code>{@link #MenuView_subMenuArrow android.support.v7.mediarouter:subMenuArrow}</code></td><td></td></tr>
</table>
@see #MenuView_android_headerBackground
@see #MenuView_android_horizontalDivider
@see #MenuView_android_itemBackground
@see #MenuView_android_itemIconDisabledAlpha
@see #MenuView_android_itemTextAppearance
@see #MenuView_android_verticalDivider
@see #MenuView_android_windowAnimationStyle
@see #MenuView_preserveIconSpacing
@see #MenuView_subMenuArrow
*/
public static final int[] MenuView = {
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f0100e4,
0x7f0100e5
};
/**
<p>This symbol is the offset where the {@link android.R.attr#headerBackground}
attribute's value can be found in the {@link #MenuView} array.
@attr name android:headerBackground
*/
public static 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 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 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 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 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 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 int MenuView_android_windowAnimationStyle = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:preserveIconSpacing
*/
public static int MenuView_preserveIconSpacing = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:subMenuArrow
*/
public static 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 android.support.v7.mediarouter:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_headerLayout android.support.v7.mediarouter:headerLayout}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemBackground android.support.v7.mediarouter:itemBackground}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemIconTint android.support.v7.mediarouter:itemIconTint}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextAppearance android.support.v7.mediarouter:itemTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_itemTextColor android.support.v7.mediarouter:itemTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #NavigationView_menu android.support.v7.mediarouter:menu}</code></td><td></td></tr>
</table>
@see #NavigationView_android_background
@see #NavigationView_android_fitsSystemWindows
@see #NavigationView_android_maxWidth
@see #NavigationView_elevation
@see #NavigationView_headerLayout
@see #NavigationView_itemBackground
@see #NavigationView_itemIconTint
@see #NavigationView_itemTextAppearance
@see #NavigationView_itemTextColor
@see #NavigationView_menu
*/
public static final int[] NavigationView = {
0x010100d4, 0x010100dd, 0x0101011f, 0x7f01003e,
0x7f010143, 0x7f010144, 0x7f010145, 0x7f010146,
0x7f010147, 0x7f010148
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #NavigationView} array.
@attr name android:background
*/
public static 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 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 int NavigationView_android_maxWidth = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:elevation
*/
public static int NavigationView_elevation = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:headerLayout
*/
public static int NavigationView_headerLayout = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:itemBackground
*/
public static int NavigationView_itemBackground = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:itemIconTint
*/
public static int NavigationView_itemIconTint = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:itemTextAppearance
*/
public static int NavigationView_itemTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:itemTextColor
*/
public static int NavigationView_itemTextColor = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:menu
*/
public static 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 android.support.v7.mediarouter:overlapAnchor}</code></td><td></td></tr>
</table>
@see #PopupWindow_android_popupAnimationStyle
@see #PopupWindow_android_popupBackground
@see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow = {
0x01010176, 0x010102c9, 0x7f0100e6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
attribute's value can be found in the {@link #PopupWindow} array.
@attr name android:popupAnimationStyle
*/
public static 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 int PopupWindow_android_popupBackground = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:overlapAnchor
*/
public static 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 android.support.v7.mediarouter:state_above_anchor}</code></td><td></td></tr>
</table>
@see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState = {
0x7f0100e7
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:state_above_anchor
*/
public static 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 android.support.v7.mediarouter:paddingBottomNoButtons}</code></td><td></td></tr>
<tr><td><code>{@link #RecycleListView_paddingTopNoTitle android.support.v7.mediarouter:paddingTopNoTitle}</code></td><td></td></tr>
</table>
@see #RecycleListView_paddingBottomNoButtons
@see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView = {
0x7f0100e8, 0x7f0100e9
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:paddingBottomNoButtons
*/
public static int RecycleListView_paddingBottomNoButtons = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:paddingTopNoTitle
*/
public static 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 android.support.v7.mediarouter:fastScrollEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable android.support.v7.mediarouter:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable android.support.v7.mediarouter:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable android.support.v7.mediarouter:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable android.support.v7.mediarouter:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_layoutManager android.support.v7.mediarouter:layoutManager}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_reverseLayout android.support.v7.mediarouter:reverseLayout}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_spanCount android.support.v7.mediarouter:spanCount}</code></td><td></td></tr>
<tr><td><code>{@link #RecyclerView_stackFromEnd android.support.v7.mediarouter:stackFromEnd}</code></td><td></td></tr>
</table>
@see #RecyclerView_android_descendantFocusability
@see #RecyclerView_android_orientation
@see #RecyclerView_fastScrollEnabled
@see #RecyclerView_fastScrollHorizontalThumbDrawable
@see #RecyclerView_fastScrollHorizontalTrackDrawable
@see #RecyclerView_fastScrollVerticalThumbDrawable
@see #RecyclerView_fastScrollVerticalTrackDrawable
@see #RecyclerView_layoutManager
@see #RecyclerView_reverseLayout
@see #RecyclerView_spanCount
@see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView = {
0x010100c4, 0x010100f1, 0x7f010000, 0x7f010001,
0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005,
0x7f010006, 0x7f010007, 0x7f010008
};
/**
<p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
attribute's value can be found in the {@link #RecyclerView} array.
@attr name android:descendantFocusability
*/
public static 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 int RecyclerView_android_orientation = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:fastScrollEnabled
*/
public static int RecyclerView_fastScrollEnabled = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:fastScrollHorizontalThumbDrawable
*/
public static int RecyclerView_fastScrollHorizontalThumbDrawable = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:fastScrollHorizontalTrackDrawable
*/
public static int RecyclerView_fastScrollHorizontalTrackDrawable = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:fastScrollVerticalThumbDrawable
*/
public static int RecyclerView_fastScrollVerticalThumbDrawable = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:fastScrollVerticalTrackDrawable
*/
public static int RecyclerView_fastScrollVerticalTrackDrawable = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layoutManager
*/
public static int RecyclerView_layoutManager = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:reverseLayout
*/
public static int RecyclerView_reverseLayout = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:spanCount
*/
public static int RecyclerView_spanCount = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:stackFromEnd
*/
public static 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 android.support.v7.mediarouter:insetForeground}</code></td><td></td></tr>
</table>
@see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout = {
0x7f010149
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:insetForeground
*/
public static 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 android.support.v7.mediarouter:behavior_overlapTop}</code></td><td></td></tr>
</table>
@see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout = {
0x7f01014a
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:behavior_overlapTop
*/
public static 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 android.support.v7.mediarouter:closeIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_commitIcon android.support.v7.mediarouter:commitIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_defaultQueryHint android.support.v7.mediarouter:defaultQueryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_goIcon android.support.v7.mediarouter:goIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_iconifiedByDefault android.support.v7.mediarouter:iconifiedByDefault}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_layout android.support.v7.mediarouter:layout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryBackground android.support.v7.mediarouter:queryBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_queryHint android.support.v7.mediarouter:queryHint}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchHintIcon android.support.v7.mediarouter:searchHintIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_searchIcon android.support.v7.mediarouter:searchIcon}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_submitBackground android.support.v7.mediarouter:submitBackground}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_suggestionRowLayout android.support.v7.mediarouter:suggestionRowLayout}</code></td><td></td></tr>
<tr><td><code>{@link #SearchView_voiceIcon android.support.v7.mediarouter:voiceIcon}</code></td><td></td></tr>
</table>
@see #SearchView_android_focusable
@see #SearchView_android_imeOptions
@see #SearchView_android_inputType
@see #SearchView_android_maxWidth
@see #SearchView_closeIcon
@see #SearchView_commitIcon
@see #SearchView_defaultQueryHint
@see #SearchView_goIcon
@see #SearchView_iconifiedByDefault
@see #SearchView_layout
@see #SearchView_queryBackground
@see #SearchView_queryHint
@see #SearchView_searchHintIcon
@see #SearchView_searchIcon
@see #SearchView_submitBackground
@see #SearchView_suggestionRowLayout
@see #SearchView_voiceIcon
*/
public static final int[] SearchView = {
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed,
0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1,
0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5,
0x7f0100f6
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #SearchView} array.
@attr name android:focusable
*/
public static 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 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 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 int SearchView_android_maxWidth = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:closeIcon
*/
public static int SearchView_closeIcon = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:commitIcon
*/
public static int SearchView_commitIcon = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:defaultQueryHint
*/
public static int SearchView_defaultQueryHint = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:goIcon
*/
public static int SearchView_goIcon = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:iconifiedByDefault
*/
public static int SearchView_iconifiedByDefault = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:layout
*/
public static int SearchView_layout = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:queryBackground
*/
public static int SearchView_queryBackground = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:queryHint
*/
public static int SearchView_queryHint = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:searchHintIcon
*/
public static int SearchView_searchHintIcon = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:searchIcon
*/
public static int SearchView_searchIcon = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:submitBackground
*/
public static int SearchView_submitBackground = 16;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:suggestionRowLayout
*/
public static int SearchView_suggestionRowLayout = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:voiceIcon
*/
public static int SearchView_voiceIcon = 12;
/** Attributes that can be used with a SnackbarLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_elevation android.support.v7.mediarouter:elevation}</code></td><td></td></tr>
<tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth android.support.v7.mediarouter:maxActionInlineWidth}</code></td><td></td></tr>
</table>
@see #SnackbarLayout_android_maxWidth
@see #SnackbarLayout_elevation
@see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout = {
0x0101011f, 0x7f01003e, 0x7f01014b
};
/**
<p>This symbol is the offset where the {@link android.R.attr#maxWidth}
attribute's value can be found in the {@link #SnackbarLayout} array.
@attr name android:maxWidth
*/
public static int SnackbarLayout_android_maxWidth = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:elevation
*/
public static int SnackbarLayout_elevation = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:maxActionInlineWidth
*/
public static 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 android.support.v7.mediarouter:popupTheme}</code></td><td></td></tr>
</table>
@see #Spinner_android_dropDownWidth
@see #Spinner_android_entries
@see #Spinner_android_popupBackground
@see #Spinner_android_prompt
@see #Spinner_popupTheme
*/
public static final int[] Spinner = {
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f01003f
};
/**
<p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
attribute's value can be found in the {@link #Spinner} array.
@attr name android:dropDownWidth
*/
public static 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 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 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 int Spinner_android_prompt = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:popupTheme
*/
public static 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 android.support.v7.mediarouter:showText}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_splitTrack android.support.v7.mediarouter:splitTrack}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchMinWidth android.support.v7.mediarouter:switchMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchPadding android.support.v7.mediarouter:switchPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_switchTextAppearance android.support.v7.mediarouter:switchTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTextPadding android.support.v7.mediarouter:thumbTextPadding}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTint android.support.v7.mediarouter:thumbTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_thumbTintMode android.support.v7.mediarouter:thumbTintMode}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_track android.support.v7.mediarouter:track}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTint android.support.v7.mediarouter:trackTint}</code></td><td></td></tr>
<tr><td><code>{@link #SwitchCompat_trackTintMode android.support.v7.mediarouter:trackTintMode}</code></td><td></td></tr>
</table>
@see #SwitchCompat_android_textOff
@see #SwitchCompat_android_textOn
@see #SwitchCompat_android_thumb
@see #SwitchCompat_showText
@see #SwitchCompat_splitTrack
@see #SwitchCompat_switchMinWidth
@see #SwitchCompat_switchPadding
@see #SwitchCompat_switchTextAppearance
@see #SwitchCompat_thumbTextPadding
@see #SwitchCompat_thumbTint
@see #SwitchCompat_thumbTintMode
@see #SwitchCompat_track
@see #SwitchCompat_trackTint
@see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat = {
0x01010124, 0x01010125, 0x01010142, 0x7f0100f7,
0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb,
0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff,
0x7f010100, 0x7f010101
};
/**
<p>This symbol is the offset where the {@link android.R.attr#textOff}
attribute's value can be found in the {@link #SwitchCompat} array.
@attr name android:textOff
*/
public static 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 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 int SwitchCompat_android_thumb = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:showText
*/
public static int SwitchCompat_showText = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:splitTrack
*/
public static int SwitchCompat_splitTrack = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:switchMinWidth
*/
public static int SwitchCompat_switchMinWidth = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:switchPadding
*/
public static int SwitchCompat_switchPadding = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:switchTextAppearance
*/
public static int SwitchCompat_switchTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:thumbTextPadding
*/
public static int SwitchCompat_thumbTextPadding = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:thumbTint
*/
public static int SwitchCompat_thumbTint = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:thumbTintMode
*/
public static int SwitchCompat_thumbTintMode = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:track
*/
public static int SwitchCompat_track = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:trackTint
*/
public static int SwitchCompat_trackTint = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:trackTintMode
*/
public static 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 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 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 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 android.support.v7.mediarouter:tabBackground}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabContentStart android.support.v7.mediarouter:tabContentStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabGravity android.support.v7.mediarouter:tabGravity}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorColor android.support.v7.mediarouter:tabIndicatorColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabIndicatorHeight android.support.v7.mediarouter:tabIndicatorHeight}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMaxWidth android.support.v7.mediarouter:tabMaxWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMinWidth android.support.v7.mediarouter:tabMinWidth}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabMode android.support.v7.mediarouter:tabMode}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPadding android.support.v7.mediarouter:tabPadding}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingBottom android.support.v7.mediarouter:tabPaddingBottom}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingEnd android.support.v7.mediarouter:tabPaddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingStart android.support.v7.mediarouter:tabPaddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabPaddingTop android.support.v7.mediarouter:tabPaddingTop}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabSelectedTextColor android.support.v7.mediarouter:tabSelectedTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextAppearance android.support.v7.mediarouter:tabTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TabLayout_tabTextColor android.support.v7.mediarouter:tabTextColor}</code></td><td></td></tr>
</table>
@see #TabLayout_tabBackground
@see #TabLayout_tabContentStart
@see #TabLayout_tabGravity
@see #TabLayout_tabIndicatorColor
@see #TabLayout_tabIndicatorHeight
@see #TabLayout_tabMaxWidth
@see #TabLayout_tabMinWidth
@see #TabLayout_tabMode
@see #TabLayout_tabPadding
@see #TabLayout_tabPaddingBottom
@see #TabLayout_tabPaddingEnd
@see #TabLayout_tabPaddingStart
@see #TabLayout_tabPaddingTop
@see #TabLayout_tabSelectedTextColor
@see #TabLayout_tabTextAppearance
@see #TabLayout_tabTextColor
*/
public static final int[] TabLayout = {
0x7f01014c, 0x7f01014d, 0x7f01014e, 0x7f01014f,
0x7f010150, 0x7f010151, 0x7f010152, 0x7f010153,
0x7f010154, 0x7f010155, 0x7f010156, 0x7f010157,
0x7f010158, 0x7f010159, 0x7f01015a, 0x7f01015b
};
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabBackground
*/
public static int TabLayout_tabBackground = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabContentStart
*/
public static int TabLayout_tabContentStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabGravity
*/
public static int TabLayout_tabGravity = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabIndicatorColor
*/
public static int TabLayout_tabIndicatorColor = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabIndicatorHeight
*/
public static int TabLayout_tabIndicatorHeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabMaxWidth
*/
public static int TabLayout_tabMaxWidth = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabMinWidth
*/
public static int TabLayout_tabMinWidth = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabMode
*/
public static int TabLayout_tabMode = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabPadding
*/
public static int TabLayout_tabPadding = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabPaddingBottom
*/
public static int TabLayout_tabPaddingBottom = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabPaddingEnd
*/
public static int TabLayout_tabPaddingEnd = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabPaddingStart
*/
public static int TabLayout_tabPaddingStart = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabPaddingTop
*/
public static int TabLayout_tabPaddingTop = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabSelectedTextColor
*/
public static int TabLayout_tabSelectedTextColor = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabTextAppearance
*/
public static int TabLayout_tabTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:tabTextColor
*/
public static int TabLayout_tabTextColor = 9;
/** Attributes that can be used with a TextAppearance.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_fontFamily android.support.v7.mediarouter:fontFamily}</code></td><td></td></tr>
<tr><td><code>{@link #TextAppearance_textAllCaps android.support.v7.mediarouter:textAllCaps}</code></td><td></td></tr>
</table>
@see #TextAppearance_android_fontFamily
@see #TextAppearance_android_shadowColor
@see #TextAppearance_android_shadowDx
@see #TextAppearance_android_shadowDy
@see #TextAppearance_android_shadowRadius
@see #TextAppearance_android_textColor
@see #TextAppearance_android_textColorHint
@see #TextAppearance_android_textColorLink
@see #TextAppearance_android_textSize
@see #TextAppearance_android_textStyle
@see #TextAppearance_android_typeface
@see #TextAppearance_fontFamily
@see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance = {
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x0101009b, 0x01010161, 0x01010162,
0x01010163, 0x01010164, 0x010103ac, 0x7f01004f,
0x7f010055
};
/**
<p>This symbol is the offset where the {@link android.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:fontFamily
*/
public static int TextAppearance_android_fontFamily = 10;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowColor
*/
public static int TextAppearance_android_shadowColor = 6;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDx}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDx
*/
public static int TextAppearance_android_shadowDx = 7;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowDy}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowDy
*/
public static int TextAppearance_android_shadowDy = 8;
/**
<p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:shadowRadius
*/
public static int TextAppearance_android_shadowRadius = 9;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColor}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColor
*/
public static 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 int TextAppearance_android_textColorHint = 4;
/**
<p>This symbol is the offset where the {@link android.R.attr#textColorLink}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textColorLink
*/
public static int TextAppearance_android_textColorLink = 5;
/**
<p>This symbol is the offset where the {@link android.R.attr#textSize}
attribute's value can be found in the {@link #TextAppearance} array.
@attr name android:textSize
*/
public static 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 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 int TextAppearance_android_typeface = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#fontFamily}
attribute's value can be found in the {@link #TextAppearance} array.
<p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
@attr name android.support.v7.mediarouter:fontFamily
*/
public static int TextAppearance_fontFamily = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:textAllCaps
*/
public static int TextAppearance_textAllCaps = 11;
/** Attributes that can be used with a TextInputLayout.
<p>Includes the following attributes:</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Attribute</th><th>Description</th></tr>
<tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterEnabled android.support.v7.mediarouter:counterEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterMaxLength android.support.v7.mediarouter:counterMaxLength}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance android.support.v7.mediarouter:counterOverflowTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_counterTextAppearance android.support.v7.mediarouter:counterTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorEnabled android.support.v7.mediarouter:errorEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_errorTextAppearance android.support.v7.mediarouter:errorTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintAnimationEnabled android.support.v7.mediarouter:hintAnimationEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintEnabled android.support.v7.mediarouter:hintEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_hintTextAppearance android.support.v7.mediarouter:hintTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription android.support.v7.mediarouter:passwordToggleContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleDrawable android.support.v7.mediarouter:passwordToggleDrawable}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleEnabled android.support.v7.mediarouter:passwordToggleEnabled}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTint android.support.v7.mediarouter:passwordToggleTint}</code></td><td></td></tr>
<tr><td><code>{@link #TextInputLayout_passwordToggleTintMode android.support.v7.mediarouter:passwordToggleTintMode}</code></td><td></td></tr>
</table>
@see #TextInputLayout_android_hint
@see #TextInputLayout_android_textColorHint
@see #TextInputLayout_counterEnabled
@see #TextInputLayout_counterMaxLength
@see #TextInputLayout_counterOverflowTextAppearance
@see #TextInputLayout_counterTextAppearance
@see #TextInputLayout_errorEnabled
@see #TextInputLayout_errorTextAppearance
@see #TextInputLayout_hintAnimationEnabled
@see #TextInputLayout_hintEnabled
@see #TextInputLayout_hintTextAppearance
@see #TextInputLayout_passwordToggleContentDescription
@see #TextInputLayout_passwordToggleDrawable
@see #TextInputLayout_passwordToggleEnabled
@see #TextInputLayout_passwordToggleTint
@see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout = {
0x0101009a, 0x01010150, 0x7f01015c, 0x7f01015d,
0x7f01015e, 0x7f01015f, 0x7f010160, 0x7f010161,
0x7f010162, 0x7f010163, 0x7f010164, 0x7f010165,
0x7f010166, 0x7f010167, 0x7f010168, 0x7f010169
};
/**
<p>This symbol is the offset where the {@link android.R.attr#hint}
attribute's value can be found in the {@link #TextInputLayout} array.
@attr name android:hint
*/
public static 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 int TextInputLayout_android_textColorHint = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:counterEnabled
*/
public static int TextInputLayout_counterEnabled = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:counterMaxLength
*/
public static int TextInputLayout_counterMaxLength = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:counterOverflowTextAppearance
*/
public static int TextInputLayout_counterOverflowTextAppearance = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:counterTextAppearance
*/
public static int TextInputLayout_counterTextAppearance = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:errorEnabled
*/
public static int TextInputLayout_errorEnabled = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:errorTextAppearance
*/
public static int TextInputLayout_errorTextAppearance = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:hintAnimationEnabled
*/
public static int TextInputLayout_hintAnimationEnabled = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:hintEnabled
*/
public static int TextInputLayout_hintEnabled = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:hintTextAppearance
*/
public static int TextInputLayout_hintTextAppearance = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:passwordToggleContentDescription
*/
public static int TextInputLayout_passwordToggleContentDescription = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:passwordToggleDrawable
*/
public static int TextInputLayout_passwordToggleDrawable = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:passwordToggleEnabled
*/
public static int TextInputLayout_passwordToggleEnabled = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:passwordToggleTint
*/
public static int TextInputLayout_passwordToggleTint = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:passwordToggleTintMode
*/
public static 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 android.support.v7.mediarouter:buttonGravity}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseContentDescription android.support.v7.mediarouter:collapseContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_collapseIcon android.support.v7.mediarouter:collapseIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEnd android.support.v7.mediarouter:contentInsetEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetEndWithActions android.support.v7.mediarouter:contentInsetEndWithActions}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetLeft android.support.v7.mediarouter:contentInsetLeft}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetRight android.support.v7.mediarouter:contentInsetRight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStart android.support.v7.mediarouter:contentInsetStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation android.support.v7.mediarouter:contentInsetStartWithNavigation}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logo android.support.v7.mediarouter:logo}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_logoDescription android.support.v7.mediarouter:logoDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_maxButtonHeight android.support.v7.mediarouter:maxButtonHeight}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationContentDescription android.support.v7.mediarouter:navigationContentDescription}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_navigationIcon android.support.v7.mediarouter:navigationIcon}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_popupTheme android.support.v7.mediarouter:popupTheme}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitle android.support.v7.mediarouter:subtitle}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextAppearance android.support.v7.mediarouter:subtitleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_subtitleTextColor android.support.v7.mediarouter:subtitleTextColor}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_title android.support.v7.mediarouter:title}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargin android.support.v7.mediarouter:titleMargin}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginBottom android.support.v7.mediarouter:titleMarginBottom}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginEnd android.support.v7.mediarouter:titleMarginEnd}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginStart android.support.v7.mediarouter:titleMarginStart}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMarginTop android.support.v7.mediarouter:titleMarginTop}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleMargins android.support.v7.mediarouter:titleMargins}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextAppearance android.support.v7.mediarouter:titleTextAppearance}</code></td><td></td></tr>
<tr><td><code>{@link #Toolbar_titleTextColor android.support.v7.mediarouter:titleTextColor}</code></td><td></td></tr>
</table>
@see #Toolbar_android_gravity
@see #Toolbar_android_minHeight
@see #Toolbar_buttonGravity
@see #Toolbar_collapseContentDescription
@see #Toolbar_collapseIcon
@see #Toolbar_contentInsetEnd
@see #Toolbar_contentInsetEndWithActions
@see #Toolbar_contentInsetLeft
@see #Toolbar_contentInsetRight
@see #Toolbar_contentInsetStart
@see #Toolbar_contentInsetStartWithNavigation
@see #Toolbar_logo
@see #Toolbar_logoDescription
@see #Toolbar_maxButtonHeight
@see #Toolbar_navigationContentDescription
@see #Toolbar_navigationIcon
@see #Toolbar_popupTheme
@see #Toolbar_subtitle
@see #Toolbar_subtitleTextAppearance
@see #Toolbar_subtitleTextColor
@see #Toolbar_title
@see #Toolbar_titleMargin
@see #Toolbar_titleMarginBottom
@see #Toolbar_titleMarginEnd
@see #Toolbar_titleMarginStart
@see #Toolbar_titleMarginTop
@see #Toolbar_titleMargins
@see #Toolbar_titleTextAppearance
@see #Toolbar_titleTextColor
*/
public static final int[] Toolbar = {
0x010100af, 0x01010140, 0x7f010025, 0x7f010028,
0x7f01002c, 0x7f010038, 0x7f010039, 0x7f01003a,
0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003f,
0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105,
0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109,
0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d,
0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111,
0x7f010112
};
/**
<p>This symbol is the offset where the {@link android.R.attr#gravity}
attribute's value can be found in the {@link #Toolbar} array.
@attr name android:gravity
*/
public static 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 int Toolbar_android_minHeight = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:buttonGravity
*/
public static int Toolbar_buttonGravity = 21;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:collapseContentDescription
*/
public static int Toolbar_collapseContentDescription = 23;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:collapseIcon
*/
public static int Toolbar_collapseIcon = 22;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetEnd
*/
public static int Toolbar_contentInsetEnd = 6;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetEndWithActions
*/
public static int Toolbar_contentInsetEndWithActions = 10;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetLeft
*/
public static int Toolbar_contentInsetLeft = 7;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetRight
*/
public static int Toolbar_contentInsetRight = 8;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetStart
*/
public static int Toolbar_contentInsetStart = 5;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:contentInsetStartWithNavigation
*/
public static int Toolbar_contentInsetStartWithNavigation = 9;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:logo
*/
public static int Toolbar_logo = 4;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:logoDescription
*/
public static int Toolbar_logoDescription = 26;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:maxButtonHeight
*/
public static int Toolbar_maxButtonHeight = 20;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:navigationContentDescription
*/
public static int Toolbar_navigationContentDescription = 25;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:navigationIcon
*/
public static int Toolbar_navigationIcon = 24;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:popupTheme
*/
public static int Toolbar_popupTheme = 11;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:subtitle
*/
public static int Toolbar_subtitle = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:subtitleTextAppearance
*/
public static int Toolbar_subtitleTextAppearance = 13;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:subtitleTextColor
*/
public static int Toolbar_subtitleTextColor = 28;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:title
*/
public static int Toolbar_title = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:titleMargin
*/
public static int Toolbar_titleMargin = 14;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:titleMarginBottom
*/
public static int Toolbar_titleMarginBottom = 18;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:titleMarginEnd
*/
public static int Toolbar_titleMarginEnd = 16;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:titleMarginStart
*/
public static int Toolbar_titleMarginStart = 15;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:titleMarginTop
*/
public static int Toolbar_titleMarginTop = 17;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:titleMargins
*/
public static int Toolbar_titleMargins = 19;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:titleTextAppearance
*/
public static int Toolbar_titleTextAppearance = 12;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:titleTextColor
*/
public static 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 android.support.v7.mediarouter:paddingEnd}</code></td><td></td></tr>
<tr><td><code>{@link #View_paddingStart android.support.v7.mediarouter:paddingStart}</code></td><td></td></tr>
<tr><td><code>{@link #View_theme android.support.v7.mediarouter:theme}</code></td><td></td></tr>
</table>
@see #View_android_focusable
@see #View_android_theme
@see #View_paddingEnd
@see #View_paddingStart
@see #View_theme
*/
public static final int[] View = {
0x01010000, 0x010100da, 0x7f010113, 0x7f010114,
0x7f010115
};
/**
<p>This symbol is the offset where the {@link android.R.attr#focusable}
attribute's value can be found in the {@link #View} array.
@attr name android:focusable
*/
public static 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 int View_android_theme = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:paddingEnd
*/
public static int View_paddingEnd = 3;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:paddingStart
*/
public static int View_paddingStart = 2;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:theme
*/
public static 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 android.support.v7.mediarouter:backgroundTint}</code></td><td></td></tr>
<tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode android.support.v7.mediarouter:backgroundTintMode}</code></td><td></td></tr>
</table>
@see #ViewBackgroundHelper_android_background
@see #ViewBackgroundHelper_backgroundTint
@see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper = {
0x010100d4, 0x7f010116, 0x7f010117
};
/**
<p>This symbol is the offset where the {@link android.R.attr#background}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
@attr name android:background
*/
public static int ViewBackgroundHelper_android_background = 0;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.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 android.support.v7.mediarouter:backgroundTint
*/
public static int ViewBackgroundHelper_backgroundTint = 1;
/**
<p>This symbol is the offset where the {@link android.support.v7.mediarouter.R.attr#backgroundTintMode}
attribute's value can be found in the {@link #ViewBackgroundHelper} array.
<p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>src_over</code></td><td>3</td><td></td></tr>
<tr><td><code>src_in</code></td><td>5</td><td></td></tr>
<tr><td><code>src_atop</code></td><td>9</td><td></td></tr>
<tr><td><code>multiply</code></td><td>14</td><td></td></tr>
<tr><td><code>screen</code></td><td>15</td><td></td></tr>
<tr><td><code>add</code></td><td>16</td><td></td></tr>
</table>
@attr name android.support.v7.mediarouter:backgroundTintMode
*/
public static 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 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 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 int ViewStubCompat_android_layout = 1;
};
}
| [
"boty88_skate@hotmail.com"
] | boty88_skate@hotmail.com |
bfb681879f7bd174c1583ce9d8458ebba1b517be | bb2c241a49b1542e85e1e94c0d4daab5aab22113 | /lao-lu-service/src/main/java/com/ai/ge/platform/service/http/HttpRequestObject.java | 58a7eb115127848c37b7c8daee82ed14a82a3963 | [] | no_license | Johnnyhj/lao-lu-parent | b6809229e4a229301335b0d5ab2bd1607c8ae631 | 3473f0348577a9ba01127cf165da75445e938aa1 | refs/heads/master | 2021-01-01T18:14:18.419688 | 2017-07-22T02:20:21 | 2017-07-22T02:20:21 | 98,282,656 | 1 | 0 | null | 2017-07-25T08:22:47 | 2017-07-25T08:22:47 | null | UTF-8 | Java | false | false | 1,599 | java | package com.ai.ge.platform.service.http;
import com.alibaba.fastjson.annotation.JSONField;
import java.io.Serializable;
/**
*
*/
public abstract class HttpRequestObject implements Serializable {
/**
* 接口名称
*/
@JSONField(serialize = false)
private String actionName;
/**
* 调用接口Uri
*/
@JSONField(serialize = false)
private String requestUri;
/**
* 请求报文
*/
@JSONField(serialize = false)
private String requestMessage;
/**
* 请求流水号
*/
@JSONField(serialize = false)
private String requestSeq;
/**
* 随机串,一个请求流水号发起多次支付
*/
@JSONField(serialize = false)
private String nonceStr;
public String getActionName() {
return actionName;
}
public void setActionName(String actionName) {
this.actionName = actionName;
}
public String getRequestUri() {
return requestUri;
}
public void setRequestUri(String requestUri) {
this.requestUri = requestUri;
}
public String getRequestMessage() {
return requestMessage;
}
public void setRequestMessage(String requestMessage) {
this.requestMessage = requestMessage;
}
public String getRequestSeq() {
return requestSeq;
}
public void setRequestSeq(String requestSeq) {
this.requestSeq = requestSeq;
}
public String getNonceStr() {
return nonceStr;
}
public void setNonceStr(String nonceStr) {
this.nonceStr = nonceStr;
}
}
| [
"count.chunhao@outlook.com"
] | count.chunhao@outlook.com |
87292c452f0ec0a33934608087a184f962f877b0 | d613574d9b823d52a5c99302124a49104b2bf112 | /src/main/java/io/choerodon/base/infra/annotation/NamingRuleTrans.java | a26dc801928bdc970172fea7a82ad15efc59be45 | [
"Apache-2.0"
] | permissive | zhoushiqiang222/base-service | 20cdc60c3350678561eb9cd392c850ddee95b2ba | af621601f53efdefef44bce83ab0b1bef0813778 | refs/heads/master | 2022-12-19T15:10:42.624703 | 2020-09-25T03:05:34 | 2020-09-25T03:05:34 | 298,939,185 | 0 | 0 | Apache-2.0 | 2020-09-27T02:43:39 | 2020-09-27T02:43:38 | null | UTF-8 | Java | false | false | 395 | java | package io.choerodon.base.infra.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface NamingRuleTrans {
public NamingRuleTransStrategy value() default NamingRuleTransStrategy.CAMEL;
} | [
"Longhe1996@foxmail.com"
] | Longhe1996@foxmail.com |
0673ac7222b795ca16a9942f73afb3b3285e8900 | a335fca77b210c59974e69c311a420a06a04ffa4 | /src/wizard/models/AnnualPlan.java | da1f1bc87fbc14c4e935b9413e809a200c1cf12e | [] | no_license | krassewizardz/wizard | f716c169811e7ef13b10590505bdaf368eba49fb | 7a4a235da74037e706ec822f491c4099089d44f8 | refs/heads/master | 2021-01-13T06:12:55.168102 | 2017-06-29T11:30:58 | 2017-06-29T11:30:58 | 94,980,783 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 408 | java | package wizard.models;
import java.util.List;
/**
* Created by jansziegaud on 22.06.17.
*/
public class AnnualPlan {
List<Subject> subjects;
public List<Subject> getSubjects() {
return subjects;
}
public void setSubjects(List<Subject> subjects) {
this.subjects = subjects;
}
public AnnualPlan(List<Subject> subjects) {
this.subjects = subjects;
}
}
| [
"j.sziegaud@gmail.com"
] | j.sziegaud@gmail.com |
c49b61796fcb8657b0b6741197d99e02ccdb5110 | 245c45e43d2b2de0a6fac1c06ed1cbbc0a4596bb | /src/Chapter_3/Example_06.java | 8398f586850960775f64c02d5443e86e08259084 | [
"MIT"
] | permissive | OgnyanDD/Book_Introduction-To-Programing-With-Java | 2ffc693815eb1fed70a886b8ef8060e25c0277c1 | c60e183321fce9864ad6c12d46f264781af36375 | refs/heads/master | 2021-09-18T06:27:32.362288 | 2018-07-10T17:03:27 | 2018-07-10T17:03:27 | 126,073,815 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 419 | java | package Chapter_3;
public class Example_06 {
public static void main(String[] args) {
int a = 6, b = 3, c = 3;
System.out.println(c); // 3
System.out.println((a + b) / 2); // 4
String s = "Beer";
System.out.println(s instanceof String); // true
int d = 0;
System.out.println(d); // 0
System.out.println((a + b) / d); // ArithmeticException
}
}
| [
"oddimitrov@gmail.com"
] | oddimitrov@gmail.com |
bc24ffbd1d797b81b0fe95a807737b1fe9ab949d | 8178d804e188937d42bdb52d7ee5f7b4b388a40b | /auth/src/main/java/com/zqj/auth/service/impl/RoleServiceImpl.java | 387387784c35fbb70764d7f6c4c4d4adf669fbca | [] | no_license | 936223001/Z-cloud | 897453692e6fdbc2afe34f4fc50585a8b8060459 | ff1de9591b4534198352c9ff1254b78a9fc3842b | refs/heads/master | 2023-05-06T11:41:45.394836 | 2021-05-28T08:59:46 | 2021-05-28T08:59:46 | 361,150,115 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 492 | java | package com.zqj.auth.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.zqj.auth.mapper.RoleMapper;
import com.zqj.auth.service.RoleService;
import com.zqj.common.entity.sys.Role;
import org.springframework.stereotype.Service;
/**
* <p>
* 角色信息表 服务实现类
* </p>
*
* @author zqj
* @since 2021-04-19
*/
@Service
public class RoleServiceImpl extends ServiceImpl<RoleMapper, Role> implements RoleService {
}
| [
"936223001@qq.com"
] | 936223001@qq.com |
cd8133b17a7169f4bbbdc27664519158c7e454a7 | c9b5964933b439a5582c179e7b2132d78acb63b8 | /src/main/java/edu/eci/arsw/collabhangman/model/game/entities/Score.java | 97650f5574782da32a646cb9eefd4368e3f8b5c0 | [] | no_license | juanc970410/lab07ARSW | 7851813dc562def3ee7fc90f4e45d1bcf501ce56 | 99536c6b57427900068d5046e4b95046a47dd4b5 | refs/heads/master | 2021-08-18T21:26:50.225239 | 2017-11-23T23:01:28 | 2017-11-23T23:01:28 | 110,036,473 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 841 | 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 edu.eci.arsw.collabhangman.model.game.entities;
import java.util.Date;
/**
*
* @author 2103021
*/
public class Score {
private String fechaPuntaje;
private int puntaje;
public Score(String fechaPuntaje, int puntaje) {
this.fechaPuntaje = fechaPuntaje;
this.puntaje = puntaje;
}
public String getFechaPuntaje() {
return fechaPuntaje;
}
public void setFechaPuntaje(String fechaPuntaje) {
this.fechaPuntaje = fechaPuntaje;
}
public int getPuntaje() {
return puntaje;
}
public void setPuntaje(int puntaje) {
this.puntaje = puntaje;
}
}
| [
"juan.c.herrerav@hotmail.com"
] | juan.c.herrerav@hotmail.com |
3ea3446eb43cb446435a05a480c747329daaf38e | 25e7788a69088127df83b07521f94ac35ba64b63 | /src/java/org/luxion/ottzServlet/TradeRecord.java | cf7f7624acf63da478d0149abb56377f0a5eb43e | [] | no_license | Luxion9132/Rserve_OTTZ_Project | 1e3a5e20ef20e4373efa2804d1c3458e799f760f | a738d09dcab7b6c6a369889bba1a2bfd22783830 | refs/heads/master | 2021-01-17T21:20:24.240042 | 2016-02-22T17:52:55 | 2016-02-22T17:52:55 | 25,078,387 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 912 | java | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.luxion.ottzServlet;
/**
*
* @author Leon
*/
public class TradeRecord{
String buyDate;
String buyPrice;
String sellDate;
String sellPrice;
public void setBuyDate(String buydate){
this.buyDate = buydate;
}
public void setBuyPrice(String buyprice){
this.buyPrice = buyprice;
}
public void setSellDate(String selldate){
this.sellDate = selldate;
}
public void setSellPrice(String sellprice){
this.sellPrice = sellprice;
}
public String getBuyDate(){
return this.buyDate;
}
public String getBuyPrice(){
return this.buyPrice;
}
public String getSellDate(){
return this.sellDate;
}
public String getSellPrice(){
return this.sellPrice;
}
} | [
"luxion91@gmail.com"
] | luxion91@gmail.com |
18730fe252c23c3b1768d1e9fd77885c0f6bc235 | 6464c90dea7f190106f13d297276cfcf208f8d17 | /test3-ui/src/main/java/vmd/BaseVmd.java | ec3f4a328e7bf93a1f621ab4de83cc8428de770b | [] | no_license | agsskd/ags | 40a8efe6d63b248e6a0be356e1f55a0b1e7f3079 | 0f6ad428026ddc943352173f4c486859957329b5 | refs/heads/master | 2021-01-20T16:17:24.425636 | 2017-05-10T06:51:46 | 2017-05-10T06:51:46 | 90,830,493 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,338 | java | package vmd;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.client.RestTemplate;
import org.zkoss.util.resource.Labels;
import util.RestResponse;
public class BaseVmd {
private static Logger logger = LoggerFactory.getLogger(BaseVmd.class);
private final String WS_URL = Labels.getLabel("wsUrl");
public RestResponse callWs(String uri, Object sentObject,
HttpMethod httpMethod) {
return executeWebService(uri, sentObject, httpMethod);
}
private RestResponse executeWebService(String url, Object sentObject,
HttpMethod httpMethod) {
url = url.replace("\\", "");
logger.info("Invoke web service with URL : {}", url);
RestTemplate restTemplate = new RestTemplate();
final HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
final HttpEntity<Object> requestEntity = new HttpEntity<Object>(
sentObject, headers);
final ResponseEntity<RestResponse> reponseEntity = restTemplate
.exchange(url, httpMethod, requestEntity, RestResponse.class);
return reponseEntity.getBody();
}
}
| [
"ags.skd@gmail.com"
] | ags.skd@gmail.com |
a2abb25b39b89be2ca4a12b408d834b07e9112b3 | de173668d571ec3bb03c4394c51383cf819d1394 | /ch08/Puzzle_72/ex72-1.java | 929f1d9ea29f7df0cde1d825e8a1a1a5a2816174 | [] | no_license | freebz/JAVA-PUZZLERS | edee4a23589f99398771af57659b5d3a67e361fd | eced8ded5534011d823a43838642c464ea2c7bb5 | refs/heads/master | 2020-07-11T01:10:11.308600 | 2019-08-26T06:57:44 | 2019-08-26T06:57:44 | 204,415,902 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 264 | java | class Jeopardy {
public static final String PRIZE = "$64,000";
}
public class DoubleJeopardy extends Jeopardy {
public static final String PRIZE = "2 cents";
public static void main(String[] args) {
System.out.println(DoubleJeopardy.PRIZE);
}
}
| [
"freebz@hananet.net"
] | freebz@hananet.net |
cead7110f51bcbce002ac3010c0e65696800324b | 9200618bc0fded6b9cdd06fbbe6ad917eed377eb | /app/src/main/java/com/example/rh/newsapp/adapter/BingPictureAdapter.java | a2553e7aeb4d99daf5aac56941b648f71fa8167c | [] | no_license | JasonRH/NewsApp | 474c68fcbd8a601650b41b70a275639816ae0884 | bdfc42fc214398afd756f36dfb88cc8c97118a65 | refs/heads/master | 2021-06-27T17:49:56.418422 | 2019-02-19T06:24:13 | 2019-02-19T06:24:13 | 129,724,789 | 7 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,432 | java | package com.example.rh.newsapp.adapter;
import android.content.Context;
import android.content.Intent;
import android.support.v7.widget.CardView;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import com.bumptech.glide.Glide;
import com.example.rh.newsapp.R;
import com.example.rh.newsapp.activity.PictureActivity;
import com.example.rh.newsapp.model.BingDailyBean;
import java.util.List;
/**
* @author RH
* @date 2017/11/3
*/
public class BingPictureAdapter extends RecyclerView.Adapter<BingPictureAdapter.ViewHolder> {
private Context mContext;
private List<BingDailyBean> mPictureList;
static class ViewHolder extends RecyclerView.ViewHolder {
ImageView pictureImage;
TextView pictureName;
CardView cardView;
private ViewHolder(View itemView) {
super(itemView);
pictureImage = itemView.findViewById(R.id.picture);
pictureName = itemView.findViewById(R.id.picture_name);
cardView = itemView.findViewById(R.id.cardView);
}
}
public BingPictureAdapter(List<BingDailyBean> mPictureList) {
this.mPictureList = mPictureList;
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
if (mContext == null) {
mContext = parent.getContext();
}
View view = LayoutInflater.from(mContext).inflate(R.layout.adapter_bing_picture_item, parent, false);
final ViewHolder holder = new ViewHolder(view);
holder.cardView.setOnClickListener(v -> {
int position = holder.getAdapterPosition();
BingDailyBean bingDailyBean = mPictureList.get(position);
Intent intent = new Intent(mContext, PictureActivity.class);
intent.putExtra("BingDaily_data", bingDailyBean);
mContext.startActivity(intent);
});
return holder;
}
@Override
public void onBindViewHolder(ViewHolder holder, int position) {
BingDailyBean picture = mPictureList.get(position);
holder.pictureName.setText(picture.getDate());
Glide.with(mContext).load(picture.getUrl()).into(holder.pictureImage);
}
@Override
public int getItemCount() {
return mPictureList.size();
}
}
| [
"swd-004@mail.foxconn.com"
] | swd-004@mail.foxconn.com |
644c8000fcf7c3c4b76f11078aa9de186beac0eb | ee15e4de0c382336ed737d5f5e83c33442bffea6 | /deployers-impl/src/test/java/org/jboss/test/deployers/managed/test/AbstractManagedObjectUnitTest.java | fc443e08f2b8171c59646b86f0ec2a587643d73c | [] | no_license | wolfc/jboss-deployers | cff992f1c3621cef6662e731d597fa875ced664e | d96e4db10952a2188654a292e13daac88e5f235c | refs/heads/master | 2020-06-07T07:40:58.844217 | 2011-05-16T19:22:50 | 2011-05-16T19:22:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,874 | java | /*
* JBoss, Home of Professional Open Source
* Copyright 2006, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.test.deployers.managed.test;
import org.jboss.metatype.api.values.MetaValue;
import org.jboss.metatype.api.values.MetaValueFactory;
import org.jboss.test.deployers.AbstractDeployerTest;
/**
* AbstractManagedObjectUnitTest.
*
* @author <a href="ales.justin@jboss.com">Ales Justin</a>
*/
public abstract class AbstractManagedObjectUnitTest extends AbstractDeployerTest
{
protected AbstractManagedObjectUnitTest(String name)
{
super(name);
}
protected MetaValueFactory getMetaValueFactory()
{
return MetaValueFactory.getInstance();
}
protected void assertEquals(Object object, MetaValue metaValue)
{
assertEquals(null, object, metaValue);
}
protected void assertEquals(String msg, Object object, MetaValue metaValue)
{
assertEquals(msg, object, getMetaValueFactory().unwrap(metaValue));
}
} | [
"ajustin@redhat.com"
] | ajustin@redhat.com |
505c91241c23e7cefa6deec45bc3de9299b4eaaf | b5502ea9580e882a1c530f6e5914ce090e2d00a6 | /experiment/CASSANDRA/cassandra/tools/stress/src/org/apache/cassandra/stress/operations/SampledOpDistributionFactory.java | 7fd34ed3126608b26c7e370dea3de26ec9a04238 | [
"Apache-2.0",
"BSD-3-Clause",
"LicenseRef-scancode-public-domain"
] | permissive | Lingzhi-Ouyang/Almost-Strong-Consistency-Cassandra | a3fb54a8c35805a6810532719d7a8da99998f997 | 2b9aa8e78e134fc8811ea6caff3daca1f4a92936 | refs/heads/master | 2021-07-09T01:13:04.424482 | 2020-11-03T03:12:13 | 2020-11-03T03:12:13 | 205,116,322 | 2 | 2 | null | null | null | null | UTF-8 | Java | false | false | 4,495 | java | package org.apache.cassandra.stress.operations;
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
import java.util.*;
import org.apache.cassandra.stress.generate.*;
import org.apache.cassandra.stress.util.Timing;
import org.apache.commons.math3.distribution.EnumeratedDistribution;
import org.apache.commons.math3.util.Pair;
import org.apache.cassandra.stress.Operation;
import org.apache.cassandra.stress.generate.DistributionFactory;
import org.apache.cassandra.stress.generate.PartitionGenerator;
import org.apache.cassandra.stress.util.Timer;
public abstract class SampledOpDistributionFactory<T> implements OpDistributionFactory
{
final Map<T, Double> ratios;
final DistributionFactory clustering;
protected SampledOpDistributionFactory(Map<T, Double> ratios, DistributionFactory clustering)
{
this.ratios = ratios;
this.clustering = clustering;
}
protected abstract List<? extends Operation> get(Timer timer, PartitionGenerator generator, T key, boolean isWarmup);
protected abstract PartitionGenerator newGenerator();
public OpDistribution get(Timing timing, int sampleCount, boolean isWarmup)
{
PartitionGenerator generator = newGenerator();
List<Pair<Operation, Double>> operations = new ArrayList<>();
for (Map.Entry<T, Double> ratio : ratios.entrySet())
{
List<? extends Operation> ops = get(timing.newTimer(ratio.getKey().toString(), sampleCount),
generator, ratio.getKey(), isWarmup);
for (Operation op : ops)
operations.add(new Pair<>(op, ratio.getValue() / ops.size()));
}
return new SampledOpDistribution(new EnumeratedDistribution<>(operations), clustering.get());
}
public String desc()
{
List<T> keys = new ArrayList<>();
for (Map.Entry<T, Double> ratio : ratios.entrySet())
keys.add(ratio.getKey());
return keys.toString();
}
public Iterable<OpDistributionFactory> each()
{
List<OpDistributionFactory> out = new ArrayList<>();
for (final Map.Entry<T, Double> ratio : ratios.entrySet())
{
out.add(new OpDistributionFactory()
{
public OpDistribution get(Timing timing, int sampleCount, boolean isWarmup)
{
List<? extends Operation> ops = SampledOpDistributionFactory.this.get(timing.newTimer(ratio.getKey().toString(), sampleCount),
newGenerator(),
ratio.getKey(),
isWarmup);
if (ops.size() == 1)
return new FixedOpDistribution(ops.get(0));
List<Pair<Operation, Double>> ratios = new ArrayList<>();
for (Operation op : ops)
ratios.add(new Pair<>(op, 1d / ops.size()));
return new SampledOpDistribution(new EnumeratedDistribution<>(ratios), new DistributionFixed(1));
}
public String desc()
{
return ratio.getKey().toString();
}
public Iterable<OpDistributionFactory> each()
{
return Collections.<OpDistributionFactory>singleton(this);
}
});
}
return out;
}
}
| [
"lingzhi.ouyang@outlook.com"
] | lingzhi.ouyang@outlook.com |
8e19b0c3707056f1d7ab716fc79f60918db9adbc | 44fc262d83c519d13d57853ba74bed3a57480777 | /app/src/main/java/com/aneagu/birthdaytracker/data/module/DbModule.java | 0f70644f49222cfff668ccda7657d239e5e61a8e | [] | no_license | neaguandrei/android-birthdaytracker-app | 69b27270a956a4ab87a502a3c11a0ca84b7e0629 | a9691340ab3dc11b8a5d81f29362ae01e00225e6 | refs/heads/master | 2022-09-08T14:41:27.770750 | 2020-06-04T13:12:14 | 2020-06-04T13:12:22 | 254,648,066 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,405 | java | package com.aneagu.birthdaytracker.data.module;
import android.app.Application;
import androidx.annotation.NonNull;
import androidx.room.Room;
import com.aneagu.birthdaytracker.data.repository.models.Birthday;
import com.aneagu.birthdaytracker.data.repository.remote.BirthdayRepository;
import com.aneagu.birthdaytracker.data.repository.remote.BirthdayRepositoryImpl;
import com.aneagu.birthdaytracker.data.repository.local.BirthdayDao;
import com.aneagu.birthdaytracker.data.repository.local.AppDatabase;
import com.aneagu.birthdaytracker.data.repository.models.BirthdayDto;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GoogleApiAvailability;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import java.util.List;
import javax.inject.Singleton;
import dagger.Module;
import dagger.Provides;
@Module
public class DbModule {
@Provides
@Singleton
public AppDatabase provideRoomDatabase(@NonNull Application application) {
return Room.databaseBuilder(application, AppDatabase.class, "birthday-tracker-db").allowMainThreadQueries().build();
}
@Provides
@Singleton
public BirthdayDao provideBirthdayDao(@NonNull AppDatabase appDatabase) {
return appDatabase.birthdayDao();
}
@Provides
@Singleton
public FirebaseAuth provideFirebaseAuth() {
return FirebaseAuth.getInstance();
}
@Provides
@Singleton
public BirthdayRepository provideBirthdaysRemoteRepository(@NonNull Application application) {
int playServicesStatus =
GoogleApiAvailability
.getInstance()
.isGooglePlayServicesAvailable(application);
if (playServicesStatus == ConnectionResult.SUCCESS) {
DatabaseReference databaseReference =
FirebaseDatabase
.getInstance().getReference("birthdays");
return new BirthdayRepositoryImpl(databaseReference);
} else {
return getFailedRepository();
}
}
private BirthdayRepository getFailedRepository() {
return (daoReference, localBirthdays, currentMail) -> {
throw new RuntimeException("Phone version doesn't support remote database!");
};
}
}
| [
"andreineagu.c@gmail.com"
] | andreineagu.c@gmail.com |
4caa61179443bb764ae55c4696a81b4716353374 | ffd60ad1712c78e41cbeb0b25c5155011bd4ac26 | /app/src/main/java/com/streamsaw/data/remote/ServiceGenerator.java | 946defd249e356547380d2f980eab5e0cfe19ba7 | [
"Apache-2.0"
] | permissive | mhasan411/streamsaw | 207d007e1cea606421798ca1298332fc49c2f604 | 184a9a9fde7557c0748a22ae55f1d675228ea63c | refs/heads/main | 2023-01-06T13:30:20.694981 | 2020-11-05T22:22:55 | 2020-11-05T22:22:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,648 | java | package com.streamsaw.data.remote;
import androidx.annotation.NonNull;
import com.streamsaw.EasyPlexApp;
import com.streamsaw.BuildConfig;
import com.streamsaw.ui.manager.SettingsManager;
import com.streamsaw.ui.manager.TokenManager;
import com.facebook.stetho.okhttp3.StethoInterceptor;
import org.jetbrains.annotations.NotNull;
import java.io.File;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import javax.inject.Named;
import javax.inject.Singleton;
import hu.akarnokd.rxjava3.retrofit.RxJava3CallAdapterFactory;
import okhttp3.Cache;
import okhttp3.Interceptor;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
import okhttp3.logging.HttpLoggingInterceptor;
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;
import timber.log.Timber;
import static com.streamsaw.util.Constants.ACCEPT;
import static com.streamsaw.util.Constants.APP;
import static com.streamsaw.util.Constants.APPLICATION_JSON;
import static com.streamsaw.util.Constants.CACHE_CONTROL;
import static com.streamsaw.util.Constants.IMDB_BASE_URL;
import static com.streamsaw.util.Constants.PREFS2;
import static com.streamsaw.util.Constants.SERVER_BASE_URL;
/**
* A class that defines how Retrofit 2 & OkHttp should communicate with an API.
* Interceptors, Caching, Logging
*
* @author Yobex.
*/
@Singleton
public class ServiceGenerator {
private ServiceGenerator(){
}
private static final OkHttpClient client = buildClient();
private static OkHttpClient buildClient(){
OkHttpClient.Builder builder = new OkHttpClient.Builder().addInterceptor(new Interceptor() {
@Override
public Response intercept(Chain chain) throws IOException {
Request request = chain.request();
Request.Builder addHeader = request.newBuilder()
.addHeader(ACCEPT, APPLICATION_JSON)
.addHeader("Connection", "close");
request = addHeader.build();
return chain.proceed(request);
}
});
if(BuildConfig.DEBUG){
builder.addNetworkInterceptor(new StethoInterceptor());
}
return builder.build();
}
private static File httpCacheDirectory
= new File(EasyPlexApp.getInstance().getCacheDir(), "responses");
private static int cacheSize = 30 * 1024 * 1024; // 10 MB
private static Cache cache = new Cache(httpCacheDirectory, cacheSize);
private static Retrofit.Builder builder = new Retrofit.Builder()
.baseUrl(SERVER_BASE_URL)
.addCallAdapterFactory(RxJava3CallAdapterFactory.create())
.addConverterFactory(GsonConverterFactory.create());
private static Retrofit.Builder builderApp = new Retrofit.Builder()
.baseUrl(PREFS2)
.addCallAdapterFactory(RxJava3CallAdapterFactory.create())
.addConverterFactory(GsonConverterFactory.create());
private static Retrofit.Builder builderApp2 = new Retrofit.Builder()
.baseUrl(SERVER_BASE_URL)
.addCallAdapterFactory(RxJava3CallAdapterFactory.create())
.addConverterFactory(GsonConverterFactory.create());
private static Retrofit.Builder builderImdb = new Retrofit.Builder()
.baseUrl(IMDB_BASE_URL)
.addCallAdapterFactory(RxJava3CallAdapterFactory.create())
.addConverterFactory(GsonConverterFactory.create());
private static Retrofit.Builder builderStatus = new Retrofit.Builder()
.baseUrl(APP)
.addCallAdapterFactory(RxJava3CallAdapterFactory.create())
.addConverterFactory(GsonConverterFactory.create());
private static Retrofit retrofit = builder.build();
private static Retrofit retrofitStatus = builderStatus.build();
private static Retrofit retrofitApp = builderApp.build();
private static Retrofit retrofitApp2 = builderApp2.build();
private static Retrofit retrofit2 = builderImdb.build();
private static HttpLoggingInterceptor logging = new HttpLoggingInterceptor().setLevel(HttpLoggingInterceptor.Level.BODY);
private static OkHttpClient.Builder httpClient = new OkHttpClient.Builder()
.addNetworkInterceptor(new ResponseCacheInterceptor())
.addInterceptor(new OfflineResponseCacheInterceptor())
.addInterceptor(new ErrorHandlerInterceptor())
.cache(cache);
public static <S> S createService(Class<S> serviceClass) {
if (!httpClient.interceptors().contains(logging)) {
httpClient.addInterceptor(logging);
builder.client(httpClient.build());
retrofit = builder.build();
}
return retrofit.create(serviceClass);
}
@Named("app")
public static <T> T createServiceApp(Class<T> service){
OkHttpClient newClient = client.newBuilder().addInterceptor(chain -> {
Request request = chain.request();
Request.Builder newBuilder = request.newBuilder();
newBuilder.addHeader(ACCEPT, APPLICATION_JSON);
request = newBuilder.build();
return chain.proceed(request);
}).build();
Retrofit newRetrofit = retrofitApp.newBuilder().client(newClient).build();
return newRetrofit.create(service);
}
@Named("status")
public static <T> T createServiceWithStatus(Class<T> service, final SettingsManager tokenManager){
OkHttpClient newClient = client.newBuilder().addInterceptor(new Interceptor() {
@Override
public Response intercept(Chain chain) throws IOException {
Request request = chain.request();
Request.Builder newBuilder = request.newBuilder();
if(tokenManager.getSettings().getPurchaseKey() != null){
newBuilder.addHeader("Authorization", "Bearer GxoNdPhOrskWYZfSw2d9hgeXToSlUBal");
newBuilder .addHeader(ACCEPT, APPLICATION_JSON);
}
request = newBuilder.build();
return chain.proceed(request);
}
}) .connectTimeout(60, TimeUnit.SECONDS)
.readTimeout(60, TimeUnit.SECONDS)
.writeTimeout(60, TimeUnit.SECONDS).build();
Retrofit newRetrofit = retrofitStatus.newBuilder().client(newClient).build();
return newRetrofit.create(service);
}
@Named("imdb")
public static <S> S createServiceImdb(Class<S> serviceClass) {
if (!httpClient.interceptors().contains(logging)) {
httpClient.addInterceptor(logging);
builderImdb.client(httpClient.build());
retrofit = builder.build();
}
return retrofit2.create(serviceClass);
}
@Named("Auth")
public static <T> T createServiceWithAuth(Class<T> service, final TokenManager tokenManager){
OkHttpClient newClient = client.newBuilder().addInterceptor(chain -> {
Request request = chain.request();
Request.Builder newBuilder = request.newBuilder();
if(tokenManager.getToken().getAccessToken() != null){
newBuilder.addHeader("Authorization", "Bearer " + tokenManager.getToken().getAccessToken());
}
request = newBuilder.build();
return chain.proceed(request);
}).authenticator(CustomAuthenticator.getInstance(tokenManager)).build();
Retrofit newRetrofit = retrofit.newBuilder().client(newClient).build();
return newRetrofit.create(service);
}
/**
* Interceptor to cache data and maintain it for a minute.
* If the same network request is sent within a minute,
* the response is retrieved from cache.
*/
private static class ResponseCacheInterceptor implements Interceptor {
@NotNull
@Override
public Response intercept(@NonNull Chain chain) throws IOException {
Response originalResponse = chain.proceed(chain.request());
String cacheControl = originalResponse.header(CACHE_CONTROL);
if (cacheControl == null || cacheControl.contains("no-store") || cacheControl.contains("no-cache") ||
cacheControl.contains("must-revalidate") || cacheControl.contains("max-age=0")) {
Timber.i("Response cache applied");
return originalResponse.newBuilder()
.removeHeader("Pragma")
.header(CACHE_CONTROL, "public, max-age=" + 60)
.build();
} else {
Timber.i("Response cache not applied");
return originalResponse;
}
}
}
/**
* Interceptor to cache data and maintain it for four weeks.
* If the device is offline, stale (at most four weeks old)
* response is fetched from the cache.
*/
private static class OfflineResponseCacheInterceptor implements Interceptor {
@Override
public Response intercept(@NonNull Chain chain) throws IOException {
Request request = chain.request();
if (!EasyPlexApp.hasNetwork()) {
Timber.i("Offline cache applied");
int maxStale = 60 * 60 * 24 * 28; // tolerate 4-weeks stale
request = request.newBuilder()
.removeHeader("Pragma")
.header(CACHE_CONTROL, "public, only-if-cached, max-stale=" + maxStale)
.build();
} else {
Timber.i("Offline cache not applied");
}
return chain.proceed(request);
}
}
/**
* Interceptor to display response message
*/
private static class ErrorHandlerInterceptor implements Interceptor {
@Override
public Response intercept(@NonNull Chain chain) throws IOException {
Request request = chain.request();
Response response = chain.proceed(request);
switch (response.code()) {
case 200:
Timber.i("200 - Found");
break;
case 404:
Timber.i("404 - Not Found");
break;
case 500:
case 504:
Timber.i("500 - Server Broken");
break;
default:
Timber.i("Network Unknown Error");
break;
}
return response;
}
}
} | [
"amjiddader@gmail.com"
] | amjiddader@gmail.com |
b45df58e4123083e32d0d06673a9a898038b601f | 488bbd0d007eef53f5bcd80bce8f117bd7eeec61 | /lab-6/src/App.java | da21b21943e41640b081da139b9afc74566f8083 | [] | no_license | its-yashkumar-jain/java-projects | 82137c476d066fc823756732e6deadb8b2043b02 | 9bd840c5b290c899390410f8102f04b8437e1096 | refs/heads/master | 2023-08-15T05:30:17.726470 | 2021-09-25T14:44:20 | 2021-09-25T14:44:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,266 | java | interface taxable {
void calculateTax();
}
class Employee {
String name, id;
Employee(String name, String id) {
this.name = name;
this.id = id;
}
}
class Permanent extends Employee implements taxable {
double salary, additionalEarning, tax = 0;
Permanent(String name, String id, double salary, double additionalEarning) {
super(name, id);
this.additionalEarning = additionalEarning;
this.salary = salary + additionalEarning;
}
public void calculateTax() {
if (salary > 100000 && salary < 500000) {
tax = salary * 0.1;
} else if (salary > 500000) {
tax = salary * 0.2;
} else {
tax = 0;
}
}
void displayData() {
System.out.println("\nEmployee type: Permanent");
System.out.println("Employee name: " + this.name);
System.out.println("Employee id: " + this.id);
System.out.println("Salary: " + this.salary);
System.out.println("Tax: " + this.tax);
}
}
class HourlyEmployee extends Employee {
double hoursWorked, ratePerHour, salary, tax;
HourlyEmployee(String name, String id, double hoursWorked, double ratePerHour) {
super(name, id);
this.hoursWorked = hoursWorked;
this.ratePerHour = ratePerHour;
this.salary = hoursWorked * ratePerHour;
}
public void calculateTax() {
if (salary > 100000 && salary < 500000) {
tax = salary * 0.1;
} else if (salary > 500000) {
tax = salary * 0.2;
} else {
tax = 0;
}
}
void displayData() {
System.out.println("\nEmployee type: Hourly");
System.out.println("Employee name: " + this.name);
System.out.println("Employee id: " + this.id);
System.out.println("Salary: " + this.salary);
System.out.println("Tax: " + this.tax + "\n");
}
}
public class App {
public static void main(String[] args) throws Exception {
Permanent p = new Permanent("Madhav", "567", 523456, 5678);
p.calculateTax();
p.displayData();
HourlyEmployee h = new HourlyEmployee("Mj", "67", 45, 10000);
h.calculateTax();
h.displayData();
}
}
| [
"jhamadhav28@gmail.com"
] | jhamadhav28@gmail.com |
01b1b312c73d9ebba16613f8fe5df431f72eb69f | db595633f145359d8ab0c54ed43c01e690f70d98 | /Lec27_GUI.zip_expanded/Lec27_GUI/src/swing309/testarea/MainWindow.java | 4b0e4693420413faf72a42cbfa19c3fb23f52f60 | [] | no_license | jiwoo-yoon/JavaPrac | 486711445dd6b6301636da9ccf88995309a7acc1 | 81d6c4b3c5e79c0a1d5142b362c285275f0c277d | refs/heads/master | 2022-05-31T08:20:54.116346 | 2020-05-04T09:11:03 | 2020-05-04T09:11:03 | 259,175,346 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,192 | java | package swing309.testarea;
import java.awt.Container;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
/* JTextArea, 텍스트영역 컴포넌트
여러 줄을 입력할 수 있는 텍스트 입력 창
JScrollPane 컴포넌트에 삽입하면 스크롤바 지원됨
생성자
JTextArea() 빈 생성자
JTextArea(int rows, int cols) 입력 창이 rows * cols 개의 문자 크기인 텍스트 영역
JTextArea(String) 문자열로 초기화된 텍스트 영역
JTextArea(String, rows, cols) 입력 창이 rows * cols 개의 문자 크기 + 문자열 초기화
*/
public class MainWindow extends JFrame {
public MainWindow() {
setTitle("텍스트영역 만들기 예제");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Container c = getContentPane();
c.setLayout(new FlowLayout());
// TODO
setSize(450,300);
setVisible(true);
} // end 생성자
public static void main(String [] args) {
new MainWindow();
} // end main
} // end class
| [
"lsvn1541@naver.com"
] | lsvn1541@naver.com |
9a3d4cda8b92d1483c72370467d7b0b1d2839c57 | 2135ba111249c6e87097e42c4a9d2db0b96be297 | /prosolo-analytics/src/main/java/org/prosolo/bigdata/events/analyzers/activityTimeSpent/LinkTimeSpentOnActivityProcessor.java | a02baeb417bb9218c04a96f2c773a7f44130370a | [
"BSD-3-Clause"
] | permissive | prosolotechnologies/prosolo | 55742dda961359cfcd01231f3ae41de41eb73666 | fb2058577002f9dce362375afb2ca72bb51deef7 | refs/heads/master | 2022-12-26T20:23:41.213375 | 2020-07-15T19:44:10 | 2020-07-15T19:44:10 | 239,235,647 | 3 | 0 | BSD-3-Clause | 2022-12-16T04:23:15 | 2020-02-09T02:35:26 | Java | UTF-8 | Java | false | false | 452 | java | package org.prosolo.bigdata.events.analyzers.activityTimeSpent;
import org.prosolo.bigdata.events.pojo.LogEvent;
public class LinkTimeSpentOnActivityProcessor extends TimeSpentOnActivityProcessor {
public LinkTimeSpentOnActivityProcessor(LogEvent event) {
super(event);
}
@Override
protected boolean checkAdditionalConditions() {
return true;
}
@Override
protected boolean checkIfStoppedLearning(LogEvent nextEv) {
return true;
}
}
| [
"you@example.com"
] | you@example.com |
f0f203dfe9e59076ed9b045c3042a1b08cbe7ef5 | d9462dce3c75afceefdbd0f0bc2e89cbbf0c2ebb | /src/main/java/core/report/PackagePurchaseSummary.java | 34a235ab8b3c5d5deb47e84b5363b71a1547ff2b | [] | no_license | ganjahnavarro/fitly.model | 9888f9eb6d5b3d1b1e8292b0cf77c525e5a54d3f | 4fefd8fc5efeeb5b44eebec53ddfa4d4cfea218c | refs/heads/master | 2020-03-26T00:26:42.301504 | 2018-09-19T02:26:33 | 2018-09-19T02:26:33 | 144,320,760 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 355 | java | package core.report;
import core.model.pkg.Package;
public class PackagePurchaseSummary {
private Package pkg;
private Long count;
public PackagePurchaseSummary(Package pkg, Long count) {
this.pkg = pkg;
this.count = count;
}
public Package getPkg() {
return pkg;
}
public Long getCount() {
return count;
}
}
| [
"ganjahnavarro@gmail.com"
] | ganjahnavarro@gmail.com |
1e83181a043a328b11c96684e46f389f929180d4 | c5baea71260e7ff3c549ea56ed6d1d2ab4d14b49 | /src/view/command/gameCommands/SubScoreCommand.java | 44f0d6d80c69308c64af32798961c866cf818a12 | [] | no_license | rrrovalle/volleyballgame | fd997591f2afe4792b0bbc566da7dde34e252ecd | cb9e4d7599b25788e4b9f26b85fc3d619a24e90e | refs/heads/main | 2023-06-10T13:10:43.428078 | 2021-06-24T20:25:48 | 2021-06-24T20:25:48 | 378,963,642 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 362 | java | package view.command.gameCommands;
import controller.GameController;
import view.command.GameCommander;
public class SubScoreCommand extends GameCommander {
private int action;
public SubScoreCommand(GameController game, int action) {
super(game);
this.action = action;
}
@Override
public void execute() {
controller.subScore(action);
}
}
| [
"digo.valle09@yahoo.com.br"
] | digo.valle09@yahoo.com.br |
bb306a1301197033719dddac081ca2a571dcb26c | 5aa1d34ac9497d14662601b5363ee31c4a059a4b | /src/JAVA/annotation/FruitInfoUtil.java | 474cab2889f809b33ce4f66d135abb0afbe914b8 | [] | no_license | liyuan231/leetcode | dc71eeb2b6d68c7cd99a6d67e9f4522a957abd35 | 3e35297c5eea356e8543aee930fed832c6576cd2 | refs/heads/master | 2023-04-18T20:12:02.162298 | 2021-05-01T01:59:03 | 2021-05-01T01:59:03 | 286,483,592 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 725 | java | package JAVA.annotation;
import java.lang.reflect.Field;
public class FruitInfoUtil {
public static void getFruitInfo(Class<?> clazz) {
Field[] fields = clazz.getDeclaredFields();
for (Field field : fields) {
if (field.isAnnotationPresent(FruitProvider.class)) {
FruitProvider fruitProvider = field.getAnnotation(FruitProvider.class);
System.out.println("id:" + fruitProvider.id());
System.out.println("name:" + fruitProvider.name());
System.out.println("address:" + fruitProvider.address());
}
}
}
public static void main(String[] args) {
FruitInfoUtil.getFruitInfo(Apple.class);
}
}
| [
"1987151116@qq.com"
] | 1987151116@qq.com |
43ca1f7f7bd70362ce7d8cc9aa783a8daa69a0b3 | 68f7fbb263c65d80700a08700735b858d1b9acb3 | /src/main/java/com/lanou3g/login/service/impl/LoginServiceImpl.java | 1441b67bd312da9c3364aca367ed80b19dcfee33 | [] | no_license | wangaoqi/day13_ssh | 96af0440b64554f3783d34099947e89ad7d68334 | 49a8b6243c97eafadabf117ece676dfe5853e425 | refs/heads/master | 2021-08-16T19:42:41.922092 | 2017-11-20T09:13:56 | 2017-11-20T09:13:56 | 111,346,813 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 598 | java | package com.lanou3g.login.service.impl;
import com.lanou3g.login.dao.LoginDao;
import com.lanou3g.login.service.LoginService;
import com.lanou3g.staff.domain.Staff;
import javax.annotation.Resource;
import java.util.List;
/**
* Created by dllo on 17/11/13.
*/
public class LoginServiceImpl implements LoginService {
@Resource
private LoginDao loginDao;
@Override
public List<Staff> query(String loginName, String loginPwd) {
return loginDao.query(loginName,loginPwd);
}
public void setLoginDao(LoginDao loginDao) {
this.loginDao = loginDao;
}
}
| [
"2623519315@qq.com"
] | 2623519315@qq.com |
f305002faf6630b6b466599b177e46333c565c54 | 00852e65ed77bf196848b53d89ed3f2bc2aaac7c | /src/main/java/com/example/apoteka/ApotekaApplication.java | 508748213c5ffd8bf2212e52bb98cfecb23109c9 | [] | no_license | lamijakoca/springboot-pharmacy-example | ddf76b0a238bb55c3647cecce84db418e806a198 | 1ada9b8fa5328c07996356953d170145aa80951d | refs/heads/master | 2023-04-09T07:52:44.421556 | 2021-04-19T23:50:03 | 2021-04-19T23:50:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,134 | java | package com.example.apoteka;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import java.util.Arrays;
@SpringBootApplication
public class ApotekaApplication {
public static void main(String[] args) {
SpringApplication.run(ApotekaApplication.class, args); }
// @Bean
// public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
// return args -> {
//
// System.out.println("Let's inspect the beans provided by Spring Boot:");
//
// String[] beanNames = ctx.getBeanDefinitionNames();
// Arrays.sort(beanNames);
// for (String beanName : beanNames) {
// System.out.println(beanName);
// }
//
// };
// }
}
| [
"klamija99@gmail.com"
] | klamija99@gmail.com |
4fe5c5bfd42cdfc333f3dd34a24bc8f8bbbf8e93 | fbdc9c8da46d50cad7bcfa298afd37c27e582d7e | /src/main/java/ws/synopsis/copia_clase1/CopiaClase1Application.java | bfcdac115b2ecdd6cc647eb8b8bfc276f1ff0150 | [] | no_license | EklinTarazona/modelo1mvc | a5962be3a7b5d5277054d4a76a1bbfd06b629922 | b2c95deb588d8e4bb24861736bbf1522cb857774 | refs/heads/main | 2023-08-01T07:25:49.884351 | 2021-09-15T16:58:08 | 2021-09-15T16:58:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 327 | java | package ws.synopsis.copia_clase1;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class CopiaClase1Application {
public static void main(String[] args) {
SpringApplication.run(CopiaClase1Application.class, args);
}
}
| [
"eklin.tarazona@gmail.com"
] | eklin.tarazona@gmail.com |
d04a5acdbff794f64bcdef4fc1dc877710bab91f | 7ed6061bee516f03919f9adc9624275bc5183138 | /Set&Map/src/uniq.java | 738aed2ac9fcc4e4c595ead23dd653112438dc55 | [] | no_license | mitaligit/DataStructures | c0bc091f8b81696e343d2cfcbc48806625d12749 | e761ae5801c2f52df9fc6eb28f200fe2b39a6092 | refs/heads/master | 2016-09-05T21:09:25.193008 | 2013-12-22T00:30:18 | 2013-12-22T00:30:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 255 | java | import java.util.*;
public class uniq {
public static void main(String[] args)
{
int[] a = {3, 7, 3, -1, 2, 3, 7, 2, 15, 15};
Set<Integer> num = new HashSet<Integer>();
for(int n : a)
{
num.add(n);
}
System.out.print(num.size());
}
}
| [
"mitali.jain85@gmail.com"
] | mitali.jain85@gmail.com |
c8c5ad4b07d7a319e4792cd15872f5588753fe43 | ba800711c11f438a98ab1efbf3e9afc4fc4f7e6d | /javassist/src/main/java/com/thelight1/javassist/Demo.java | f2779e0215ab1471edc5c44d4ed7959f0578e68b | [] | no_license | thelight1/CodeDemos | a67bbfd5356ad3c1308378d8ff55b49879e58e8c | 79304df3722d7ac55c91566e9f25aafde8a6deb8 | refs/heads/master | 2022-12-23T11:16:40.034159 | 2021-04-13T07:57:34 | 2021-04-13T07:57:34 | 164,224,911 | 0 | 0 | null | 2022-12-16T07:46:42 | 2019-01-05T15:02:50 | Java | UTF-8 | Java | false | false | 410 | java | package com.thelight1.javassist;
import javassist.ClassPool;
import javassist.CtClass;
/**
* http://www.javassist.org/tutorial/tutorial.html
*/
public class Demo {
public static void main(String[] args) throws Exception{
ClassPool pool = ClassPool.getDefault();
CtClass cc = pool.get("test.Rectangle");
cc.setSuperclass(pool.get("test.Point"));
cc.writeFile();
}
}
| [
"122655904@qq.com"
] | 122655904@qq.com |
bcbd47a664c02d19909f73bbe67f1070beedc86c | 529326c319a16fada44194416408cf61e2340d52 | /Module3/bai_13_jdbc_querying_va_transaction/thuc_hanh/thuc_thi_sql_co_su_dung_transaction/src/main/java/service/impl/UserServiceImpl.java | bb21b01575b417b6cba8d41481d5acc6d987c6bb | [] | no_license | 0971380599/A0321I1-Le-Manh-Hung-module-3 | d15560e72ae870f0e56466c379863179d5af65ed | 7066bbe95f0a3486a3ddf3ad17f4bc125e372a1c | refs/heads/main | 2023-08-27T13:59:58.687734 | 2021-11-03T10:12:42 | 2021-11-03T10:12:42 | 404,376,413 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,840 | java | package service.impl;
import bean.User;
import repository.UserRepository;
import repository.impl.UserRepositoryImpl;
import service.UserService;
import java.sql.SQLException;
import java.util.ArrayList;
public class UserServiceImpl implements UserService {
private static UserRepository userRepository = new UserRepositoryImpl();
@Override
public ArrayList<User> FindAll() {
return userRepository.findAll();
}
@Override
public User findById(Integer id) {
return userRepository.findById(id);
}
@Override
public void updateUser(Integer id, String name, String email, String country) {
if (findById(id) == null) {
System.out.println("id khong dung");
}
if (name.equals("")) {
System.out.println("name khong duoc de trong");
}
if (email.equals("")) {
System.out.println("email khong duoc de trong");
}
if (country.equals("")) {
System.out.println("country khong duoc de trong");
}
userRepository.updateUser(id,name,email,country);
}
@Override
public void deleteUser(Integer idDelete) {
if (findById(idDelete) == null) {
System.out.println("id khong dung");
}
userRepository.deleteUser(idDelete);
}
@Override
public void createUser(Integer idCreate, String nameCreate, String emailCreate, String countryCreate) {
if (idCreate.equals("")) {
System.out.println("id khong duoc de trong");
}
if (nameCreate.equals("")) {
System.out.println("name khong duoc de trong");
}
if (emailCreate.equals("")) {
System.out.println("email khong duoc de trong");
}
if (countryCreate.equals("")) {
System.out.println("country khong duoc de trong");
}
userRepository.createUser(idCreate,nameCreate,emailCreate,countryCreate);
}
@Override
public ArrayList<User> countrySearch(String countrySearch) {
if (countrySearch.equals("")) {
System.out.println("country khong duoc de trong");
}
return userRepository.countrySearch(countrySearch);
}
@Override
public ArrayList<User> sortName() {
return userRepository.sortName();
}
@Override
public User getUserById(int id) {
return userRepository.getUserById(id);
}
@Override
public void insertUserStore(User user) throws SQLException {
userRepository.insertUserStore(user);
}
@Override
public void addUserTransaction(User user, int[] permisions) {
userRepository.addUserTransaction(user,permisions);
}
@Override
public void insertUpdateUseTransaction() {
userRepository.insertUpdateUseTransaction();
}
}
| [
"81423789+0971380599@users.noreply.github.com"
] | 81423789+0971380599@users.noreply.github.com |
9194ed2baa8d0681068b7272a0d40991567e1da8 | c0040e5e0fd786959352a27f6ef28fd41a460697 | /cn.smartinvoke.smartrcp/src/test/DialogT.java | c1f3c18a9e871d84e668bba278798be5860f1817 | [] | no_license | Gary-Xie/smartrcp | 8ef43484f205e0c66b50b247a61958238563d233 | 49aa702b6f55ba5926b8f46e5531ea88d77ca764 | refs/heads/master | 2020-12-24T21:01:01.247979 | 2016-04-15T09:49:05 | 2016-04-15T09:49:05 | 56,309,173 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,606 | java | package test;
import java.awt.peer.FileDialogPeer;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.FileDialog;
import org.eclipse.swt.widgets.Shell;
public class DialogT extends Shell {
/**
* Launch the application
* @param args
*/
public static void main(String args[]) {
try {
Display display = Display.getDefault();
DialogT shell = new DialogT(display, SWT.SHELL_TRIM);
shell.open();
shell.layout();
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Create the shell
* @param display
* @param style
*/
public DialogT(Display display, int style) {
super(display, style);
createContents();
}
/**
* Create contents of the window
*/
protected void createContents() {
setText("SWT Application");
setSize(500, 375);
final Button button = new Button(this, SWT.NONE);
button.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(final SelectionEvent e) {
FileDialog dialog=new FileDialog(DialogT.this);
String ret=dialog.open();
System.out.println(ret);
}
});
button.setText("button");
button.setBounds(164, 92, 48, 22);
//
}
@Override
protected void checkSubclass() {
// Disable the check that prevents subclassing of SWT components
}
}
| [
"pzxiaoxiao130130@0c4822ae-0630-11df-8138-214a9d281a8c"
] | pzxiaoxiao130130@0c4822ae-0630-11df-8138-214a9d281a8c |
7302cd37812087b414a481b104c390d12742ef1e | 1d928c3f90d4a0a9a3919a804597aa0a4aab19a3 | /java/lucene-solr/2017/8/GlobalOrdinalsWithScoreQuery.java | 7946559cc598448925828da07fe1181d14b844a5 | [] | no_license | rosoareslv/SED99 | d8b2ff5811e7f0ffc59be066a5a0349a92cbb845 | a062c118f12b93172e31e8ca115ce3f871b64461 | refs/heads/main | 2023-02-22T21:59:02.703005 | 2021-01-28T19:40:51 | 2021-01-28T19:40:51 | 306,497,459 | 1 | 1 | null | 2020-11-24T20:56:18 | 2020-10-23T01:18:07 | null | UTF-8 | Java | false | false | 9,126 | 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.lucene.search.join;
import java.io.IOException;
import java.util.Set;
import org.apache.lucene.index.DocValues;
import org.apache.lucene.index.LeafReaderContext;
import org.apache.lucene.index.OrdinalMap;
import org.apache.lucene.index.SortedDocValues;
import org.apache.lucene.index.Term;
import org.apache.lucene.search.DocIdSetIterator;
import org.apache.lucene.search.Explanation;
import org.apache.lucene.search.FilterWeight;
import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.Scorer;
import org.apache.lucene.search.TwoPhaseIterator;
import org.apache.lucene.search.Weight;
import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.LongValues;
final class GlobalOrdinalsWithScoreQuery extends Query {
private final GlobalOrdinalsWithScoreCollector collector;
private final String joinField;
private final OrdinalMap globalOrds;
// Is also an approximation of the docs that will match. Can be all docs that have toField or something more specific.
private final Query toQuery;
// just for hashcode and equals:
private final ScoreMode scoreMode;
private final Query fromQuery;
private final int min;
private final int max;
// id of the context rather than the context itself in order not to hold references to index readers
private final Object indexReaderContextId;
GlobalOrdinalsWithScoreQuery(GlobalOrdinalsWithScoreCollector collector, ScoreMode scoreMode, String joinField,
OrdinalMap globalOrds, Query toQuery, Query fromQuery, int min, int max,
Object indexReaderContextId) {
this.collector = collector;
this.joinField = joinField;
this.globalOrds = globalOrds;
this.toQuery = toQuery;
this.scoreMode = scoreMode;
this.fromQuery = fromQuery;
this.min = min;
this.max = max;
this.indexReaderContextId = indexReaderContextId;
}
@Override
public Weight createWeight(IndexSearcher searcher, boolean needsScores, float boost) throws IOException {
if (searcher.getTopReaderContext().id() != indexReaderContextId) {
throw new IllegalStateException("Creating the weight against a different index reader than this query has been built for.");
}
boolean doNoMinMax = min <= 0 && max == Integer.MAX_VALUE;
if (needsScores == false && doNoMinMax) {
// We don't need scores then quickly change the query to not uses the scores:
GlobalOrdinalsQuery globalOrdinalsQuery = new GlobalOrdinalsQuery(collector.collectedOrds, joinField, globalOrds,
toQuery, fromQuery, indexReaderContextId);
return globalOrdinalsQuery.createWeight(searcher, false, boost);
}
return new W(this, toQuery.createWeight(searcher, false, 1f));
}
@Override
public boolean equals(Object other) {
return sameClassAs(other) &&
equalsTo(getClass().cast(other));
}
private boolean equalsTo(GlobalOrdinalsWithScoreQuery other) {
return min == other.min &&
max == other.max &&
scoreMode.equals(other.scoreMode) &&
joinField.equals(other.joinField) &&
fromQuery.equals(other.fromQuery) &&
toQuery.equals(other.toQuery) &&
indexReaderContextId.equals(other.indexReaderContextId);
}
@Override
public int hashCode() {
int result = classHash();
result = 31 * result + scoreMode.hashCode();
result = 31 * result + joinField.hashCode();
result = 31 * result + toQuery.hashCode();
result = 31 * result + fromQuery.hashCode();
result = 31 * result + min;
result = 31 * result + max;
result = 31 * result + indexReaderContextId.hashCode();
return result;
}
@Override
public String toString(String field) {
return "GlobalOrdinalsQuery{" +
"joinField=" + joinField +
"min=" + min +
"max=" + max +
"fromQuery=" + fromQuery +
'}';
}
final class W extends FilterWeight {
W(Query query, Weight approximationWeight) {
super(query, approximationWeight);
}
@Override
public void extractTerms(Set<Term> terms) {}
@Override
public Explanation explain(LeafReaderContext context, int doc) throws IOException {
SortedDocValues values = DocValues.getSorted(context.reader(), joinField);
if (values == null) {
return Explanation.noMatch("Not a match");
}
if (values.advance(doc) != doc) {
return Explanation.noMatch("Not a match");
}
int segmentOrd = values.ordValue();
BytesRef joinValue = values.lookupOrd(segmentOrd);
int ord;
if (globalOrds != null) {
ord = (int) globalOrds.getGlobalOrds(context.ord).get(segmentOrd);
} else {
ord = segmentOrd;
}
if (collector.match(ord) == false) {
return Explanation.noMatch("Not a match, join value " + Term.toString(joinValue));
}
float score = collector.score(ord);
return Explanation.match(score, "A match, join value " + Term.toString(joinValue));
}
@Override
public Scorer scorer(LeafReaderContext context) throws IOException {
SortedDocValues values = DocValues.getSorted(context.reader(), joinField);
if (values == null) {
return null;
}
Scorer approximationScorer = in.scorer(context);
if (approximationScorer == null) {
return null;
} else if (globalOrds != null) {
return new OrdinalMapScorer(this, collector, values, approximationScorer.iterator(), globalOrds.getGlobalOrds(context.ord));
} else {
return new SegmentOrdinalScorer(this, collector, values, approximationScorer.iterator());
}
}
}
final static class OrdinalMapScorer extends BaseGlobalOrdinalScorer {
final LongValues segmentOrdToGlobalOrdLookup;
final GlobalOrdinalsWithScoreCollector collector;
public OrdinalMapScorer(Weight weight, GlobalOrdinalsWithScoreCollector collector, SortedDocValues values, DocIdSetIterator approximation, LongValues segmentOrdToGlobalOrdLookup) {
super(weight, values, approximation);
this.segmentOrdToGlobalOrdLookup = segmentOrdToGlobalOrdLookup;
this.collector = collector;
}
@Override
protected TwoPhaseIterator createTwoPhaseIterator(DocIdSetIterator approximation) {
return new TwoPhaseIterator(approximation) {
@Override
public boolean matches() throws IOException {
int docID = approximation.docID();
if (docID > values.docID()) {
values.advance(docID);
}
if (docID == values.docID()) {
final long segmentOrd = values.ordValue();
final int globalOrd = (int) segmentOrdToGlobalOrdLookup.get(segmentOrd);
if (collector.match(globalOrd)) {
score = collector.score(globalOrd);
return true;
}
}
return false;
}
@Override
public float matchCost() {
return 100; // TODO: use cost of values.getOrd() and collector.score()
}
};
}
}
final static class SegmentOrdinalScorer extends BaseGlobalOrdinalScorer {
final GlobalOrdinalsWithScoreCollector collector;
public SegmentOrdinalScorer(Weight weight, GlobalOrdinalsWithScoreCollector collector, SortedDocValues values, DocIdSetIterator approximation) {
super(weight, values, approximation);
this.collector = collector;
}
@Override
protected TwoPhaseIterator createTwoPhaseIterator(DocIdSetIterator approximation) {
return new TwoPhaseIterator(approximation) {
@Override
public boolean matches() throws IOException {
int docID = approximation.docID();
if (docID > values.docID()) {
values.advance(docID);
}
if (docID == values.docID()) {
final int segmentOrd = values.ordValue();
if (collector.match(segmentOrd)) {
score = collector.score(segmentOrd);
return true;
}
}
return false;
}
@Override
public float matchCost() {
return 100; // TODO: use cost.getOrd() of values and collector.score()
}
};
}
}
}
| [
"rodrigosoaresilva@gmail.com"
] | rodrigosoaresilva@gmail.com |
41b1b0602f44286f537e75e702e595bfbfbc3039 | 5b47ec8e8d758c1fde449c39d686971f57dcdd37 | /src/main/java/com/workshop/springiocdemo/beans/ProviderPrototypeBean.java | bf544aaf41afc3bb5fdbce0231579e44b55c09b4 | [] | no_license | pratyushranjansahu/springiocdemo | 955440039c140d08a518a7acd8b21988c1d7e745 | 353154e18e3d905ea02f47cc0322a13b2da2cb48 | refs/heads/master | 2022-10-12T06:49:17.772926 | 2020-06-07T07:14:56 | 2020-06-07T07:14:56 | 263,532,984 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 140 | java | package com.workshop.springiocdemo.beans;
public class ProviderPrototypeBean {
public String getDetails(){
return "Provider Details";
}
}
| [
"bicky633@gmail.com"
] | bicky633@gmail.com |
c348189b078824bf4ec98cfdde8969db73317624 | 1059e0db6a8ee12617d5f13ad2a1f66397287576 | /_releases/desktop/src/com/flizzet/flyzombieenemy/FlyingZombieEnemySpawner.java | 52b723afb66c9b5466d5c9431cb745f7c7eeb245 | [] | no_license | pvydro/libgdx-ammo-inferno | ddeaa7127b1eac5989bddd33ba173d346cc21e7c | 861cda547fd708fe212cf6e046ac2ce3e584ceb7 | refs/heads/master | 2021-09-29T03:42:53.451022 | 2018-11-23T15:29:47 | 2018-11-23T15:29:47 | 157,973,375 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,651 | java | package com.flizzet.flyzombieenemy;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Random;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.flizzet.camera.MainCamera;
import com.flizzet.entities.Entity;
import com.flizzet.map.Platform;
import com.flizzet.player.Player;
/**
* Spawns enemy bats.
*
* @author Pedro Dutra (2017)
* @version 1.0
*/
public class FlyingZombieEnemySpawner extends Entity {
private static final FlyingZombieEnemySpawner INSTANCE = new FlyingZombieEnemySpawner();
private ArrayList<FlyingZombieEnemy> zombies = new ArrayList<FlyingZombieEnemy>();
private Queue<FlyingZombieEnemy> toBeRemoved = new LinkedList<FlyingZombieEnemy>();
private int topCooldown = 500;
private int cooldown = 200;
private boolean enabled = false;
/** Returns and instance of the FlyingBatEnemySpawner class */
public static FlyingZombieEnemySpawner getInstance() {
return INSTANCE;
}
/** Single use constructor */
private FlyingZombieEnemySpawner() {}
@Override
public void update(float delta) {
zombies.removeAll(toBeRemoved);
if (enabled) {
cooldown--;
if (cooldown <= 0) {
cooldown = topCooldown;
spawnBat();
}
}
for (FlyingZombieEnemy e : zombies) {
e.update(delta);
}
}
@Override
public void render(SpriteBatch batch) {
for (FlyingZombieEnemy e : zombies) {
e.render(batch);
}
}
/** Builds a new enemy eye and adds it to the screen */
private void spawnBat() {
FlyingZombieEnemy newZombie = new FlyingZombieEnemy();
Platform targetPlatform = Player.getInstance().getController().getTargetPlatform();
int side = targetPlatform.getSide();
switch (side) {
case 0:
newZombie.setX(MainCamera.getInstance().getWidth() + 20 + newZombie.getWidth());
break;
case 1:
newZombie.setX(-20);
break;
case 2:
newZombie.setX(new Random().nextBoolean() ? -20 : MainCamera.getInstance().getWidth() + 20 + newZombie.getWidth());
}
newZombie.setY(targetPlatform.getCenterY());
zombies.add(newZombie);
}
/** Removes an eye from the ArrayList of eyes */
public void removeFromZombies(FlyingZombieEnemy zombie) {
this.toBeRemoved.add(zombie);
}
/** Respawn */
public void reset() {
this.toBeRemoved.addAll(zombies);
}
public ArrayList<FlyingZombieEnemy> getZombies() { return this.zombies; }
public void setCooldown(int newCooldown) { this.topCooldown = newCooldown; }
public void setEnabled(boolean isEnabled) { this.enabled = isEnabled; }
}
| [
"pedro@flizzet.com"
] | pedro@flizzet.com |
680b4b0cf55eb21c3e2b51f0f5064fbbcc08d8ec | a15d8b2f33958e59f59a30fe16e63d340074f973 | /src/com/jetbrains/classic/searchByStructure/sequentialSearch/FirstAndLastPositionOfEleSortedArray.java | 4123e1bd80eeb58ae825e297a3d38cd7c674c9b6 | [] | no_license | rootusercop/leetcode_training | ec08c2aea3f1867648527acc5d6f600296ee6a4d | f4d1d0922a919b178b66fbe6d8c355adc3422ed3 | refs/heads/master | 2023-08-10T18:57:11.247209 | 2021-09-29T07:57:43 | 2021-09-29T07:57:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,917 | java | package com.jetbrains.classic.searchByStructure.sequentialSearch;
public class FirstAndLastPositionOfEleSortedArray {
public int[] searchRange(int[] nums, int target) {
if (nums == null || nums.length == 0) {
return new int[]{-1, -1};
}
// first element of the target
int n = nums.length;
int start = 0, end = n - 1;
while( start + 1 < end) {
int mid = (start + end) / 2;
if (nums[mid] == target) {
end = mid;
} else if (nums[mid] < target) {
start = mid;
} else {
end = mid;
}
}
int rangeStart = 0, rangeEnd = n - 1;
if (nums[start] == target) {
rangeStart = start;
}
else if (nums[end] == target) {
rangeStart = end;
}
if (nums[start] != target && nums[end] != target) {
return new int[]{-1, -1};
}
// last element of the target
start = 0;
end = n - 1;
while (start + 1 < end) {
int mid = (start + end) / 2;
if (nums[mid] == target) {
start = mid;
} else if (nums[mid] < target) {
start = mid;
} else {
end = mid;
}
}
if (nums[end] == target) {
rangeEnd = end;
} else if (nums[start] == target) {
rangeEnd = start;
}
return new int[]{rangeStart, rangeEnd};
}
/*
this approach: find first and last elements that equal to the target
*/
public int[] searchRange2(int[] nums, int target) {
if (nums == null || nums.length == 0) return new int[]{-1, -1};
int[] res = new int[]{-1, -1};
int n = nums.length;
int start = 0, end = n - 1;
while (start <= end) {
int mid = start + ((end - start) >> 1);
if (nums[mid] > target) {
end = mid - 1;
} else if (nums[mid] < target) {
start = mid + 1;
} else {
if ((mid == 0) || (nums[mid - 1] != target)) {
res[0] = mid;
break;
}
else end = mid - 1;
}
}
if (res[0] == -1) return res;
start = 0;
end = nums.length - 1;
while (start <= end) {
int mid = start + ((end - start) >> 1);
if (nums[mid] > target) {
end = mid - 1;
} else if (nums[mid] < target) {
start = mid + 1;
} else {
if ((mid == nums.length - 1) || (nums[mid + 1] != target)) {
res[1] = mid;
break;
}
else start = mid + 1;
}
}
return res;
}
}
| [
"sliu2200899@gmail.com"
] | sliu2200899@gmail.com |
4eef6dc867a190912f794ceb63e3461bc7fe849c | 8de52c24402971d29676a10ee4a886a0917ff8bf | /src/main/java/org/bnpstat/maths/SparseVector.java | 3a1d650442fc2965fcc6a0dd50b2bbb6742b52bf | [] | no_license | zshwuhan/MC2SVI | bd5d095864df350ffeed73c51547a8d9cbd48089 | 7fb53550663ccace24e9e0a8df278969d05dfbe7 | refs/heads/master | 2023-03-15T16:08:47.535620 | 2017-05-10T23:21:22 | 2017-05-10T23:21:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,676 | java | package org.bnpstat.maths;
import java.util.HashMap;
import java.util.Set;
/**
* Created by hvhuynh on 11/6/2015.
*/
public class SparseVector extends AbstractVector {
HashMap<Integer, Double> values;
public SparseVector(int length) {
values = new HashMap<>();
dim = length;
}
public SparseVector(double[] inValues) {
values = new HashMap<>();
dim = inValues.length;
for (int i = 0; i < inValues.length; ++i) {
if (inValues[i] > 0)
values.put(i, inValues[i]);
}
}
public SparseVector(int[] indices, double[] inValues, int dim) {
values = new HashMap<>();
this.dim = dim;
for (int i = 0; i < indices.length; ++i) {
values.put(indices[i], inValues[i]);
}
}
public SparseVector(SparseVector copy) {
dim = copy.dim;
values = (HashMap<Integer, Double>) values.clone();
}
public Integer[] getIndices() {
return values.keySet().toArray(new Integer[values.size()]);
}
public int getLength() {
return dim;
}
public int getNonzeoLength() {
return values.size();
}
public SparseVector clone() {
SparseVector nVector = new SparseVector(dim);
Object[] indices = this.values.keySet().toArray();
for (int i = 0; i < indices.length; i++) {
nVector.setValue((Integer) indices[i], this.values.get(indices[i]));
}
return nVector;
}
public SparseVector clone(int index, int count) {
SparseVector nVector = new SparseVector(count);
Object[] indices = this.values.keySet().toArray();
for (int i = 0; i < indices.length; i++) {
Integer key = (Integer) indices[i] - index;
if (key > 0 && key < count)
nVector.setValue(key, this.values.get(indices[i]));
}
return nVector;
}
public double getValue(int index) {
return values.containsKey(index) ? values.get(index) : 0;
}
public void setValue(int index, double value) {
if (value != 0) values.put(index, value);
}
public void addValue(int index, double value) {
values.put(index, getValue(index) + value);
}
public void subValue(int index, double value) {
values.put(index, getValue(index) - value);
}
public SparseVector cloneVector(int index, int count) {
return clone(index, count);
}
public void plus(SparseVector v) {
Integer[] vIndices = v.getIndices();
for (int ii = 0; ii < vIndices.length; ii++)
this.values.put(vIndices[ii], this.getValue(vIndices[ii]) + v.getValue(vIndices[ii]));
}
public void sub(SparseVector v) {
Integer[] vIndices = v.getIndices();
for (int ii = 0; ii < vIndices.length; ii++)
this.values.put(vIndices[ii], this.getValue(vIndices[ii]) - v.getValue(vIndices[ii]));
}
public void mul(SparseVector v) {
HashMap<Integer, Double> temp = (HashMap) this.values.clone();
temp.putAll(v.values);
Integer[] indices = temp.keySet().toArray(new Integer[values.size()]);
for (int ii = 0; ii < indices.length; ii++) {
if (this.getValue(indices[ii]) == 0 || v.getValue(indices[ii]) == 0)
this.values.remove(indices[ii]);
else
this.values.put(indices[ii], this.getValue(indices[ii]) * v.getValue(indices[ii]));
}
}
public void mul(double val) {
Integer[] indices = this.getIndices();
for (int ii = 0; ii < indices.length; ii++)
this.values.put(indices[ii], this.getValue(indices[ii]) * val);
}
public void plus(double val) {
Integer[] indices = this.getIndices();
for (int ii = 0; ii < indices.length; ii++)
this.values.put(indices[ii], this.getValue(indices[ii]) + val);
}
public void sub(double val) {
plus(-val);
}
public void div(double val) throws Exception {
if (val != 0)
mul(1 / val);
else
throw new Exception("Divide by zero");
}
public AbstractVector createVector(int length) {
return new SparseVector(length);
}
@Override
public String toString() {
Integer[] indices = getIndices();
if (indices.length == 0) return "Empty";
StringBuilder stringBuilder = new StringBuilder();
for (int i = 0; i < indices.length; i++)
stringBuilder.append(indices[i] + ":" + getValue(indices[i]) + " ");
return stringBuilder.substring(0, stringBuilder.length() - 2);
}
}
| [
"viet.deakin@gmail.com"
] | viet.deakin@gmail.com |
283fdfdb946645b6ab33efceb04fa5ce6b496ed0 | bac67feb33a4778c67ab6efeb820e4fe46382607 | /src/collections/general/Bits.java | 6e4074a84c5315ef8bc1eb36ded965dde7f061cf | [] | no_license | mithun3/JavaCollections | 0452e75005378dc60b25fedf3e23b985483bb48e | 69ad4d18df94cb021883e2d1b269790c08d5c284 | refs/heads/master | 2020-05-20T11:39:46.514615 | 2014-10-31T09:07:29 | 2014-10-31T09:07:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 928 | java | package collections.general;
public class Bits {
public static void main(String args[]) {
int n = 170; // 10101010
System.out.println("Value in binary: 10101010");
System.out.println("Number of one bits: " +
Integer.bitCount(n));
System.out.println("Highest one bit: " +
Integer.highestOneBit(n));
System.out.println("Lowest one bit: " +
Integer.lowestOneBit(n));
System.out.println("Number of leading zeros : " +
Integer.numberOfLeadingZeros(n));
System.out.println("Number of trailing zeros : " +
Integer.numberOfTrailingZeros(n));
System.out.println("\nBeginning with the value 1, " +
"rotate left 16 times.");
n = 1;
for(int i=0; i < 16; i++) {
n = Integer.rotateLeft(n, 1);
System.out.println(n);
}
}
} | [
"mithun3@gmail.com"
] | mithun3@gmail.com |
c27b96caa008d16486fc4b2232b350d1d4e5abb6 | aaccbd72338f6a6a67d4861f5469cdb657abec9d | /sample-item/src/main/java/org/yfr/sample/item/service/ItemService.java | d64ef10bc9fe795673e6dbee13b564a3966d81dd | [] | no_license | Jian-Min-Huang/k8s-sample-2020 | 23febbbe49fb3fa7e8726bbdaf63df7288905b6f | 97c228f6a6383c1d49b7695fd98a90b7c2c224aa | refs/heads/master | 2020-12-01T08:48:59.448817 | 2020-04-08T05:34:12 | 2020-04-08T05:34:12 | 230,595,136 | 11 | 0 | null | null | null | null | UTF-8 | Java | false | false | 232 | java | package org.yfr.sample.item.service;
import org.yfr.sample.common.entity.Item;
import java.util.List;
public interface ItemService {
Item parse() throws Exception;
List<Item> findByCode(String code) throws Exception;
}
| [
"yfr.huang@hotmail.com"
] | yfr.huang@hotmail.com |
3157233667ce7a7f1d0805c95990e32acc69d11d | 2ac8e459e3b49e9998a08d002f8810a81dd97909 | /src/com/java1234/dao/MemberDao.java | e34a486a81f38c5cc1ee745dd7f877e71b2e3057 | [] | no_license | tianshan20081/MallSSH | 004626abb7425bb6e28146dd7976fc2774af49ae | 563040b08844b9a11d0713e65e74bcfcc830161a | refs/heads/master | 2020-05-07T13:45:24.389811 | 2014-06-30T06:58:33 | 2014-06-30T06:58:33 | 21,342,285 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 629 | java | package com.java1234.dao;
import java.util.List;
import com.java1234.model.Member;
import com.java1234.model.PageBean;
public interface MemberDao {
public Member memberRegister(String name);
public Member memberLogin(Member member);
public void saveMember(Member member);
public Member selectMember(String name);
public Member selectFind(String name,String result);
public Member findMemberById(int id);
public void changeMember(Member m);
public List<Member> selectMember();
public int selectAllMember();
public List<Member> memberPage(PageBean pageBean);
public void deleteMember(int id);
}
| [
"zhangshch2008@gmail.com"
] | zhangshch2008@gmail.com |
9ab95e7772ba34b140740baa3fb76a68031f13e8 | ea125839b721e01f33d9f01f690865f31d23917d | /src/main/java/ex1/Entreprise.java | a3ba9e00c6422115dd04ee3443aede7fac499489 | [] | no_license | Zaccharie/codePropre | bbf597f4119e1bdc40de63e34dc3af41e54b5cbd | 123a08ee98f68f881f47a0040c9ebcb86e42126a | refs/heads/master | 2021-05-14T16:23:33.576645 | 2018-01-10T20:42:32 | 2018-01-10T20:42:32 | 116,018,876 | 0 | 0 | null | 2018-01-02T13:38:08 | 2018-01-02T13:38:08 | null | WINDOWS-1252 | Java | false | false | 418 | java | package ex1;
import java.util.Date;
/**Classe servant à representer l'objet Entreprise
* @author Zaccharie Meddah
*
*/
public class Entreprise {
public int siret;
public String nom;
public String adresse;
public Date dateCreation;
public static final int capitalMax = 3_000_000;
/**Methode qui sert à afficher le statut
*
*/
public void afficheStatut(){
}
}
| [
"zaccharie.meddah@gmail.com"
] | zaccharie.meddah@gmail.com |
02a7fda2d22926afff77d596ec7c112d1b65d0c1 | 93fe0604f6f166ff271689c5942708d3b60d7dce | /Java/src/main/java/drawing/shapes/Shape.java | 3ef44191f8af8e734c7658b41837e032cde0b796 | [] | no_license | haoyue2hao/17214-21fall-rec06 | 26a8b8e51ba4163beeeada5c7b746b7f4aaa3fe4 | eb958a96ddca9920be9efd9b88323fbd8904ec91 | refs/heads/main | 2023-08-12T02:34:15.208533 | 2021-10-05T20:13:01 | 2021-10-05T20:13:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 641 | java | package drawing.shapes;
import drawing.writing.JPEGWriter;
import drawing.writing.PNGWriter;
import java.io.IOException;
import java.io.Writer;
public interface Shape {
Line[] toLines();
default void draw(Writer writer, Line[] lines) {
try {
for (Line line : lines) {
if (writer instanceof JPEGWriter) {
writer.write(line.toJPEG());
}
else if (writer instanceof PNGWriter) {
writer.write(line.toPNG());
}
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
| [
"vhellendoorn@live.nl"
] | vhellendoorn@live.nl |
b9881ef611a459f55ef7c7d18330d747acde1951 | 410b182c6967b7530ebbc307d773614371399236 | /src/main/algorithm/recursive/reverseList/Solution.java | 2a4945c0d63ba18d3da0af8965b0b80053075a7c | [] | no_license | trumanwong/leetcodejava | e0ea0182944ea00084b7bb04da68ba907cf621a7 | e4e13f8e7315899f2ce0f3a6056bf769d46af684 | refs/heads/master | 2021-07-23T06:41:32.785606 | 2020-06-20T10:07:11 | 2020-06-20T10:07:11 | 223,918,186 | 0 | 0 | null | 2020-10-13T17:43:37 | 2019-11-25T10:09:05 | Java | UTF-8 | Java | false | false | 619 | java | package recursive.reverseList;
import ListNode.ListNode;
public class Solution {
public ListNode reverseList(ListNode head) {
ListNode prev = null, curr = head;
while (curr != null) {
ListNode temp = curr.next;
curr.next = prev;
prev = curr;
curr = temp;
}
return prev;
}
public ListNode recurisve(ListNode head) {
if (head == null || head.next == null) {
return head;
}
ListNode p = recurisve(head.next);
head.next.next = head;
head.next = null;
return p;
}
} | [
"1415829005@qq.com"
] | 1415829005@qq.com |
c113a1bcf91868d6284abd7439a02cc816625b92 | d9ab2d101415d8e2fbb0078f87c6ffb5696638d6 | /SistemaVenda/src/Formularios/frmLogin.java | 7d5edfd8d6687ae3d74d69dbb7357bbfd46f0113 | [] | no_license | CassinH/Java | d868b340fa95b0a641a3f88e3efccf1a35ee03fd | 2116d891af1849dc088b3070028f4c84cb11a6d8 | refs/heads/master | 2022-11-17T04:37:00.914440 | 2020-07-13T16:59:10 | 2020-07-13T16:59:10 | 194,881,358 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,950 | 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 Formularios;
import Classes.Dados;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
/**
*
* @author Cassio Barbosa
*/
public class frmLogin extends javax.swing.JFrame {
private Dados clsdados;
public void setDados(Dados clsdados){
this.clsdados=clsdados;
}
public frmLogin() {
initComponents();
}
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jLabel5 = new javax.swing.JLabel();
DesktopLogin = new javax.swing.JDesktopPane();
txtLogin = new javax.swing.JTextField();
jLabel1 = new javax.swing.JLabel();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
txtSenha = new javax.swing.JPasswordField();
jLabel2 = new javax.swing.JLabel();
crmLogin = new javax.swing.JButton();
crmSair = new javax.swing.JButton();
jLabel5.setText("jLabel5");
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setTitle("Login");
DesktopLogin.setBackground(new java.awt.Color(204, 204, 204));
jLabel1.setForeground(new java.awt.Color(255, 255, 255));
jLabel1.setText("Usuario:");
jLabel3.setForeground(new java.awt.Color(0, 0, 204));
jLabel3.setIcon(new javax.swing.ImageIcon(getClass().getResource("/Imagens/Icone Principal.png"))); // NOI18N
jLabel4.setFont(new java.awt.Font("Dialog", 1, 14)); // NOI18N
jLabel4.setForeground(new java.awt.Color(255, 255, 255));
jLabel4.setText("Sistema PlaneT");
jLabel2.setForeground(new java.awt.Color(255, 255, 255));
jLabel2.setText("Senha:");
crmLogin.setText("Login");
crmLogin.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
crmLoginActionPerformed(evt);
}
});
crmSair.setText("Sair");
crmSair.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
crmSairActionPerformed(evt);
}
});
DesktopLogin.setLayer(txtLogin, javax.swing.JLayeredPane.DEFAULT_LAYER);
DesktopLogin.setLayer(jLabel1, javax.swing.JLayeredPane.DEFAULT_LAYER);
DesktopLogin.setLayer(jLabel3, javax.swing.JLayeredPane.DEFAULT_LAYER);
DesktopLogin.setLayer(jLabel4, javax.swing.JLayeredPane.DEFAULT_LAYER);
DesktopLogin.setLayer(txtSenha, javax.swing.JLayeredPane.DEFAULT_LAYER);
DesktopLogin.setLayer(jLabel2, javax.swing.JLayeredPane.DEFAULT_LAYER);
DesktopLogin.setLayer(crmLogin, javax.swing.JLayeredPane.DEFAULT_LAYER);
DesktopLogin.setLayer(crmSair, javax.swing.JLayeredPane.DEFAULT_LAYER);
javax.swing.GroupLayout DesktopLoginLayout = new javax.swing.GroupLayout(DesktopLogin);
DesktopLogin.setLayout(DesktopLoginLayout);
DesktopLoginLayout.setHorizontalGroup(
DesktopLoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, DesktopLoginLayout.createSequentialGroup()
.addContainerGap(26, Short.MAX_VALUE)
.addGroup(DesktopLoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addGroup(DesktopLoginLayout.createSequentialGroup()
.addComponent(jLabel4)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jLabel3, javax.swing.GroupLayout.PREFERRED_SIZE, 73, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(6, 6, 6))
.addGroup(DesktopLoginLayout.createSequentialGroup()
.addGroup(DesktopLoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jLabel1)
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 41, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(DesktopLoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(txtSenha, javax.swing.GroupLayout.PREFERRED_SIZE, 100, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(txtLogin, javax.swing.GroupLayout.PREFERRED_SIZE, 170, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(DesktopLoginLayout.createSequentialGroup()
.addComponent(crmLogin, javax.swing.GroupLayout.PREFERRED_SIZE, 75, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(crmSair, javax.swing.GroupLayout.PREFERRED_SIZE, 75, javax.swing.GroupLayout.PREFERRED_SIZE)))))
.addGap(66, 66, 66))
);
DesktopLoginLayout.setVerticalGroup(
DesktopLoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(DesktopLoginLayout.createSequentialGroup()
.addGroup(DesktopLoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(DesktopLoginLayout.createSequentialGroup()
.addGap(22, 22, 22)
.addComponent(jLabel4, javax.swing.GroupLayout.PREFERRED_SIZE, 32, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(40, 40, 40))
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, DesktopLoginLayout.createSequentialGroup()
.addContainerGap()
.addComponent(jLabel3)
.addGap(18, 18, 18)))
.addGroup(DesktopLoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(txtLogin, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel1))
.addGap(18, 18, 18)
.addGroup(DesktopLoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(txtSenha, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel2))
.addGap(18, 18, 18)
.addGroup(DesktopLoginLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(crmLogin)
.addComponent(crmSair))
.addContainerGap(26, Short.MAX_VALUE))
);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(DesktopLogin, javax.swing.GroupLayout.Alignment.TRAILING)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(DesktopLogin)
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void crmSairActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_crmSairActionPerformed
this.dispose();
}//GEN-LAST:event_crmSairActionPerformed
private void crmLoginActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_crmLoginActionPerformed
if(!clsdados.validarUsuarios(txtLogin.getText(), new String(txtSenha.getPassword()))){
JOptionPane.showMessageDialog(rootPane,"USUARIO OU SENHA INVALIDAS!");
txtLogin.setText("");
txtSenha.setText("");
txtLogin.requestFocusInWindow();
return;
}
frmMenu frmmenu=new frmMenu();
this.setVisible(false);
frmmenu.setDados(clsdados);
frmmenu.setExtendedState(JFrame.MAXIMIZED_BOTH);
frmmenu.setVisible(true);
}//GEN-LAST:event_crmLoginActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(frmLogin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(frmLogin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(frmLogin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(frmLogin.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new frmLogin().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JDesktopPane DesktopLogin;
private javax.swing.JButton crmLogin;
private javax.swing.JButton crmSair;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JLabel jLabel5;
private javax.swing.JTextField txtLogin;
private javax.swing.JPasswordField txtSenha;
// End of variables declaration//GEN-END:variables
}
| [
"noreply@github.com"
] | noreply@github.com |
165977da1ea9d235b7e5ee19fb53531d441ab7f9 | e4660d10087ad201ea28a82880eb426e59f63e2b | /src/test/java/com/zerobank/stepDefinitions/login_StepDefinitions.java | 286b3bcb4439da92e9978d581d84d5952ac6b525 | [] | no_license | Rasim1983/zerobank-automationB22 | 7024b3dc8c604e79bc0aa88121b573498ca2de68 | 9a93b0a85a0f31668042912941a2f4973f364cd9 | refs/heads/master | 2023-07-01T10:28:07.198258 | 2021-08-05T14:09:07 | 2021-08-05T14:09:07 | 390,526,641 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,641 | java | package com.zerobank.stepDefinitions;
import com.zerobank.pages.BasePage;
import com.zerobank.pages.LoginPage;
import com.zerobank.utilities.BrowserUtils;
import com.zerobank.utilities.ConfigurationReader;
import com.zerobank.utilities.Driver;
import io.cucumber.java.en.And;
import io.cucumber.java.en.Given;
import io.cucumber.java.en.Then;
import org.junit.Assert;
import org.openqa.selenium.By;
public class login_StepDefinitions {
LoginPage loginPage = new LoginPage();
BasePage basePage = new BasePage();
@Given("the user is on the login page")
public void the_user_is_on_the_login_page() {
Driver.getDriver().get(ConfigurationReader.getProperty("url"));
Driver.getDriver().findElement(By.id("signin_button")).click();
}
@And("User logins with username {string} and password {string}")
public void userLoginsWithUsernameAndPassword(String arg0, String arg1) {
loginPage.login(arg0,arg1);
}
@Then("the {string} page should be displayed")
public void thePageShouldBeDisplayed(String pageName) {
String currentTitle = Driver.getDriver().getTitle();
String selectedTab = basePage.selectedTab.getText();
Assert.assertEquals("Page is not matching as expected", pageName,selectedTab);
Assert.assertTrue("Title is not matching", currentTitle.toLowerCase().contains(pageName.toLowerCase()) );
}
@Then("Error message {} should be displayed")
public void errorMessageShouldBeDisplayed(String expectedError) {
Assert.assertEquals("Error message does not match", expectedError,loginPage.errorMessage.getText() );
}
}
| [
"rasim.ag1983@gmail.com"
] | rasim.ag1983@gmail.com |
78ba4bab1536e1886c0836558fec9292a23cdac8 | 9102f85661312280e2a064eb833a560128697a3f | /src/nsidc/spheres/GreatCircle.java | d716c82c75e98454f32d3dbf55bfbecc64519eed | [] | no_license | mikejewell/geoyarn-client | 38ed85068e01af8f2d96ceacdf79b84bbe020004 | 2cd5401c1c2af343e74880b2655fa753cb26cf7f | refs/heads/master | 2021-01-22T06:02:28.439146 | 2014-08-05T10:11:44 | 2014-08-05T10:11:44 | 5,840,146 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 19,264 | java | package nsidc.spheres;
import java.lang.*;
/*******************************************************************
* GreatCircle class - provides services and information relating to
* a great circle.
* <P>
* A great circle is a circle on a sphere with whose origin is at the
* center of the sphere. The shortest distance between any two points
* on a sphere is the great circle distance. Any two points on a sphere
* uniquely define a single great circle so long as they are not antipodal.
* <P>
* This class assumes a spherical earth.
*
* @author
* R. Swick 13-December-2000 swick@chukchi.colorado.edu 303-492-6069 <BR>
* National Snow & Ice Data Center, University of Colorado, Boulder<BR>
* Copyright 2003 University of Colorado.
*
* @see nsidc.spheres.Sphere
* @see nsidc.spheres.SphericalPolygon
*******************************************************************/
public class GreatCircle extends Sphere
{
/*******************************************************************
* instance variables
*******************************************************************/
/**
* Points that define the great circle (arc endpoints).
*/
public Point[] arc_point = new Point[2];
/**
* Points for any intersections found.
*/
public Point[] intersect_point = new Point[2];
/**
* Highest point achieved by the great circle.
*/
public Point inflection_point;
/**
* Constant in plane equations ax+by+cz=0
*/
public double a, b, c;
/**
* Boolean to track if the arc is on a meridian or not.
*/
public boolean is_meridian = false;
/**
* Tmp variable for cartesian coordinates of intersect points.
*/
private double g, h, w;
/**
* Tmp constant for interim results of the intersect calculations
*/
protected double planar_const, sphere_const, scale, rad, firstX, secondX;
/**
* Tmp point for doing swaps.
*/
private Point tmp_point;
/**
* Constant for intermediate results.
*/
protected double numerator, denominator;
/**
* Constant for intermediate results.
*/
protected double m,n,p,q;
/**
* Constant for intermediate results.
*/
protected double sqr_term, lin_term, const_term, tmp_z;
/**
* Maximum latitude of the great circle.
*/
private double inflection_lat;
/**
* Counter
*/
private int i;
private final int logLevel = 5;
/*******************************************************************
* The constructors set the endpoints and initialize the arc.
*******************************************************************/
/**
* Empty constructor - do not use.
*/
protected GreatCircle()
{
arc_point = new Point[2];
arc_point[0] = new Point(0.0,0.0);
arc_point[1] = new Point(0.0,0.0);
intersect_point = new Point[2];
intersect_point[0] = new Point(0.0,0.0);
intersect_point[1] = new Point(0.0,0.0);
}
/**
* Sets the points and initializes the great circle.
*/
public GreatCircle(double given_lat0, double given_lon0,
double given_lat1, double given_lon1)
{System.err.println("In GC constuctor #4");
System.err.println(given_lat1+" "+given_lon1+" "+given_lat0+" "+given_lon0);
arc_point[0] = new Point(given_lat0, given_lon0);
arc_point[1] = new Point(given_lat1, given_lon1);
System.err.println("About to init");
init();
}
/**
* Sets the points and initializes the great circle.
*/
public GreatCircle(double[] given_lat, double[] given_lon)
{
for(i=0; i<given_lat.length; i++)
{
arc_point[i].lat = given_lat[i];
arc_point[i].lon = given_lon[i];
}
init();
}
public GreatCircle(Point start, Point end)
{
arc_point[0] = new Point(start.lat, start.lon);
arc_point[1] = new Point(end.lat, end.lon);
init();
}
/**
* initializes the great circle.
*/
protected void init(){
systemLog("In init GC",3);
systemLog(arc_point[0].lat+" "+arc_point[0].lon+" "
+arc_point[1].lat+" "+arc_point[1].lon,3);
if((arc_point[0].lon == arc_point[1].lon) ||
(arc_point[0].lon == arc_point[1].lon + 180.0) ||
(arc_point[0].lon + 180.0 == arc_point[1].lon))
is_meridian = true;
systemLog(arc_point[0].x+" "+arc_point[0].y+" "+arc_point[0].z+" "
+arc_point[1].x+" "+arc_point[1].y+" "+arc_point[1].z,3);
systemLog(a+" "+b+" "+c+" ",3);
a = (arc_point[0].y * arc_point[1].z) - (arc_point[1].y * arc_point[0].z);
b = (arc_point[1].x * arc_point[0].z) - (arc_point[0].x * arc_point[1].z);
c = (arc_point[0].x * arc_point[1].y) - (arc_point[1].x * arc_point[0].y);
/* get the inflection point */
/* lat_range = something; */
computeInflection();
systemLog("Leave init GC",3);
}
/**
* Get the inflection latitude of the great circle.
* <P>
* The inflection latitude is the maximum latitude achieved by the
* great circle. It is the point at which the great circle stops
* going north and starts going south.
*
* The inflection point, then, is the point at which there is only one
* (x, y) value that satifies all the equations
*
*/
private void computeInflectionPoint()
{
if(arc_point[0].lat == arc_point[1].lat && arc_point[0].lon == arc_point[1].lon){
inflection_point = new Point(arc_point[0].lat, arc_point[0].lon);
inflection_lat = inflection_point.lat;
systemLog("NEW GC INFLECTION "+inflection_point.toString(), 2);
return;
}
/**
* In Cartesian space we have two equations and three unknowns.
* x^2 + y^2 + z^2 = r^2 : sphere
* ax + by + cz = 0 : plane of the great circle
* z = z[0] : plane of latitude - we seek the highest such z[0].
*
* a, b, c and r are constants. x, y and z range over {-r, r}
* The inflection point is where z is maximized.
*
* Depending on which version I use, Mathmetica tells me the solutions are:
*
* x = (-cz - ((b^2 * (-cz))/(a^2 + b^2)) (-+) (ab * sqrt(-(cz)^2 +(r^2 - z^2)a^2 +(r^2 - z^2)b^2)/(a^2+b^2)))/a
* and
* y = (-bcz (+-) a * sqrt(-(cz)^2 +(r^2 - z^2)a^2 +(r^2 - z^2)b^2)) / (a^2 + b^2)
*
* Or
* x = (-(acz) +- sqrt(a^2b^2r^2 + b^4r^2 - a^2b^2z^2 - b^4z^2 - b^2c^2z^2)) / (a^2 + b^2)
* and
* y = (-(cz) + (a^2cz/(a^2 + b^2)) -+ a(sqrt(a^2b^2r^2 + b^4r^2 - a^2b^2z^2 - b^4z^2 - b^2c^2z^2))/(a^2 + b^2))/b
*
* Note the radical. If the term under the radical is negative there is no (real) solution.
* Consequently:
*
* (-cz)^2 +(r^2 - z^2)a^2 +(r^2 - z^2)b^2) >= 0
*
* -c^2z^2 + r^2a^2 -z^2a^2 +r^2b^2 -z^2b^2 >= 0
*
* r^2a^2 + r^2b^2 >= z^2(c^2+a^2+b^2)
*
* (r^2a^2 + r^2b^2) / (c^2+a^2+b^2) >= z^2
*
* -Sqrt[(r^2a^2 + r^2b^2) / (c^2+a^2+b^2)] <= z <= +Sqrt[(r^2a^2 + r^2b^2) / (c^2+a^2+b^2)]
*
* So if we set z == +Sqrt[(r^2a^2 + r^2b^2) / (c^2+a^2+b^2)] we have the inflection z.
**/
double max_z = Math.sqrt((radius*radius*a*a + radius*radius*b*b) / (c*c+a*a+b*b));
/*
* Then y = -(b*c*max_z)/(a*a+b*b)
* and x = (-c*max_z - ((-b*b*c*max_z)/(a*a+b*b)))/a
*/
inflection_point = new Point((-c*max_z - ((-b*b*c*max_z)/(a*a+b*b)))/a, -(b*c*max_z)/(a*a+b*b), max_z);
inflection_lat = inflection_point.lat;
systemLog("NEW GC INFLECTION "+inflection_point.toString(), 2);
/*
* Or y = (-c*max_z + ((a*a*c*max_z)/(a*a+b*b)))/b
* and x = (-a*c*max_z)/(a*a+b*b)
*/
inflection_point = new Point((-a*c*max_z)/(a*a+b*b),(-c*max_z + ((a*a*c*max_z)/(a*a+b*b)))/b , max_z);
inflection_lat = inflection_point.lat;
systemLog("CHK GC INFLECTION "+inflection_point.toString(), 2);
}
private void computeInflection()
{
/**
* In Cartesian space we have three equations and three unknowns.
* x^2 + y^2 + z^2 = r^2 : sphere
* ax + by + cz = 0 : plane of the great circle
* z = z[MAX] : Highest plane of latitude
*
* We can simplify by substituting some constant terms.
* Let s = r^2 - z^2 so x^2 + y^2 = s
* and let p = -cz so ax + by = p
*
* Mathematica tells me the solutions are:
*
* x = (p - ((b^2 * p)/(a^2 + b^2)) (-+) (ab * sqrt(-p^2 +sa^2 +sb^2)/(a^2+b^2)))/a
* and
* y = (bp (+-) a * sqrt(-p^2 +sa^2 +sb^2)) / (a^2 + b^2)
*
* But we want the point where only one (x, y) satisfys so
*
* x = -cz - ((b^2 * -cz)/(a^2 + b^2)) and
* y = -bcz so
*
* Define some constants to work with.
**/
denominator = (a * a) + (b * b);
scale = (b * b * -c) / denominator;
/**
* So x = -cz - (z * scale) = z(-c - scale)
*
* Since x^2 + y^2 + z^2 = r^2 we can solve for z
*
* z^2 *(-c - scale)*(-c - scale) +z^2*b^2*c^2 +z^2 = radius*radius
* z^2((-c - scale)*(-c - scale)+(b*b*c*c)+1) = r^2
* z^2 = (radius*radius) / (-c - scale)*(-c - scale)+(b*b*c*c)+1
*
**/
sqr_term = (-c - scale) * (-c - scale);
lin_term = (b * b * c * c) + 1;
const_term = (radius * radius);
rad = const_term / (sqr_term + lin_term);
tmp_z = Math.sqrt(rad);
inflection_point = new Point(tmp_z * (-c - scale), (-b * c * tmp_z), tmp_z);
inflection_lat = inflection_point.lat;
systemLog("GC INFLECTION "+inflection_point.toString(), 2);
computeInflectionPoint();
} /* END computeInflection() */
/**********************************************************************
* The intersect methods.
**********************************************************************/
/**
* Determine if/where this great circle intersects another.
* <P>
* The basic strategy is to convert everything to cartesian 3-space first
* because the math is easier. All the action takes place in cartesian space.
* If found the intersection points are placed in the intersect_point array.
*
* @return true if the two great circles intersect.<br>
* false if the two great circles do not intersect.
*
* @see nsidc.spheres.Scene
* @see nsidc.spheres.SphericalPolygon
**/
public boolean intersectsGreatCircle(GreatCircle other)
{
/*
* First blank out the intersect_points so old results don't linger.
* Just in case the calling method doesn't check the return status.
*/
intersect_point[0] = null;
intersect_point[1] = null;
/*
* Check the trivial cases
*/
if(null == other)
return false;
if(this.equals(other))
return true;
/*
* Then check the special cases.
* If both great circles are meridians they cross at the poles.
*/
if(this.is_meridian && other.is_meridian)
{
intersect_point[0] = new Point(90.0, 135.0);
intersect_point[1] = new Point(-90.0, -135.0);
return true;
}
/*
* If one Great circle is a meridian we have only to find the latitude
* on the other great circle for the known longitude.
*
* Unfortunately I don't know how to do that at the moment.
*/
/***
if(this.is_meridian)
return true;
if(other.is_meridian)
return true;
***/
/*
* Neither great circle is a meridian so the great circles cross
* every meridian exactly once. Moreover the two great circles
* cross each other exactly twice. Find those crossing points.
*
* There's a lot going on here.
* We have two points on each great circle converted to cartesian coordinates.
* So we have two planes through the origin (ax+by+cz=0)
* These two planes intersect and the line formed by that intersection
* intersects the sphere. It is those two points we want.
*
* So we have:
* x^2 + y^2 + z^2 = r^2 : the sphere
* ax + by + cz = 0 : a plane
* dx + ey + fz = 0 : another plane
*
* we know x = (-by-cz)/a
* so d((-by-cz)/a) +ey +fz =0
* solve for y and
* y = z((dc - fa)/ea-db)) so let
* g = ((dc - fa)/ea-db))
*/
numerator = ((other.a * c) - (other.c * a));
denominator = ((other.b * a) - (other.a * b));
g = numerator/denominator;
/*
* so y = gz, solve for x in terms of z and
* x = (-gbz - cz)/a = z((-gb -c)/a)
* so let
* h = (-gb -c)/a
*/
numerator = ((-g * b) - c);
h = numerator / a;
/*
* Now y = gz and x = hz, so the points on the sphere are
* (hz)^2 + (gz)^2 + z^2 = r^2
* solve for z
* z = +- sqrt(r^2/(h^2 + g^2 + 1))
* so let
* w = sqrt(r^2/(h^2 + g^2 + 1))
*
* Note that (r^2/(h^2 + g^2 + 1) is absolutely positive.
* There's no chance of imaginary numbers because ANY two
* great circles cross exactly twice.
*/
numerator = Math.pow(radius, 2);
denominator = Math.pow(h, 2) + Math.pow(g, 2) + 1;
w = Math.sqrt(numerator/denominator);
/*
* The points we're interesting in are:
* (hw, gw, w) and (-hw, -gw, -w)
*/
intersect_point[0] = new Point(h*w, g*w, w);
intersect_point[1] = new Point(-h*w, -g*w, -w);
return true;
} /* END intersectsGreatCircle(other) */
/**
* Determine if this great circle intersects a parallel.
* <P>
* The basic strategy is to convert everything to cartesian 3-space first
* because the math is easier. All the action takes place in cartesian space.
* If found the intersection points are placed in the intersect_point array.
*
* @param latitude The latitude of interest.
*
* @return true if the great circle intersects the parallel.<br>
* false if the great circle does not intersect the parallel.
*
* @see nsidc.spheres.LatLonBoundingBox
*/
public boolean intersectsLatitude(double latitude)
{
double lat_z;
/*
* First blank out the intersect_points so old results don't linger.
* Just in case the calling method doesn't check the return status.
*/
intersect_point[0] = null;
intersect_point[1] = null;
/*
* Check the trivial cases
*/
if(Math.abs(latitude) > inflection_point.lat)
return false;
/*
* Gotta be one or two crossings.
*
* In Cartesian space we have three equations and three unknowns.
* x^2 + y^2 + z^2 = r^2 : sphere
* ax + by + cz = 0 : plane of the great circle
* z = z[0] : plane of latitude
*
* We can simplify by substituting some constant terms.
* Let s = r^2 - z^2 so x^2 + y^2 = s
* and let p = -cz so ax + by = p
*
* Mathmetica tells me the solutions are:
*
* x = (p - ((b^2 * p)/(a^2 + b^2)) (-+) (ab * sqrt(-p^2 +sa^2 +sb^2)/(a^2+b^2)))/a
* and
* y = (bp (+-) a * sqrt(-p^2 +sa^2 +sb^2)) / (a^2 + b^2)
*
* First define some constants
*/
lat_z = radius * Math.sin(radians(latitude));
planar_const = -c * lat_z;
sphere_const = (radius * radius) - (lat_z * lat_z);
scale = (a * a) + (b * b);
rad = (sphere_const * a * a) + (sphere_const * b * b) - (planar_const * planar_const);
/* If this is negative taking the square root would require imaginary numbers.
* I'm guessing that probably means the two planes intersect outside the sphere.
*
* That could happen if the latitude was above or below the inflection point -
* but we already checked that - so something odd is goin on.
*/
if(rad < 0)
{
systemLog("RAD IS NEGATIVE! How is that even possible?",1);
systemLog("-c: "+c+" * z: "+lat_z+" = Plane: "+planar_const, 1);
systemLog("ILS Rad1: "+ rad+" Plane: "+planar_const, 1);
return false;
}
systemLog("-c: "+c+" * z: "+lat_z+" = Plane: "+planar_const, 1);
systemLog("ILS Rad1: "+ rad+" Plane: "+planar_const, 1);
rad = Math.sqrt(rad);
systemLog("ILS sqrt Rad1: "+ rad, 1);
firstX = (b*b*planar_const)/scale;
secondX = ((a*b*rad)/scale);
/**
* Set the points.
*/
intersect_point[0] = new Point(((planar_const - firstX - secondX) / a),
(((b*planar_const) + (a*rad)) / scale),
lat_z);
intersect_point[1] = new Point(((planar_const - firstX + secondX) / a),
(((b*planar_const) - (a*rad)) / scale),
lat_z);
return true;
} /* END intersectsLatitude */
/**
* Determine if/where this great circle intersects a small circle.
* <P>
* The basic strategy is to convert everything to cartesian 3-space first
* because the math is easier. All the action takes place in cartesian space.
* If found the intersection points are placed in the intersect_point array.
*
* @return true if the two circles intersect.<br>
* false if the two circles do not intersect.
*
* @see nsidc.spheres.Scene
* @see nsidc.spheres.SphericalPolygon
**/
public boolean intersectsSmallCircle(SmallCircle small)
{
/*
* First blank out the intersect_points so old results don't linger.
* Just in case the calling method doesn't check the return status.
*/
intersect_point[0] = null;
intersect_point[1] = null;
/*
* Check the trivial cases
*/
if(null == small)
return false;
if(small.parallel(this))
return false;
/*
* We have three equations and three unknowns.
* ax+by+cz = 0 on the great circle
* ex+fy+gz = d on the small circle and
* x^2 + y^2 + z^2 = r^2 on the sphere.
*
* First solve for x on the great circle so
* x = (-by -cz)/a
*
* Solve for y on the small circle so
* e((-by -cz)/a) + fy + gz = d
* (-eby/a) - (ecz/a) + fy + gz = d
* y((eb/a) + f) = d - gz + (ecz/a)
* y((eb/a) + f) = d + z((ec/a) - g)
* y = (d + z((ec/a) - g))/((eb/a) + f) or
* y = (d/((eb/a) + f) + z(((ec/a) - g)/((eb/a) + f))
* so let:
*/
denominator = ((small.a * b)/a) + small.b ;
n = small.distance / denominator;
numerator = ((small.a * c)/a) - small.c;
m = numerator / denominator;
/*
* so y = mz + n which means
* x = (-b(mz + n) - cz)/a
* x = (-bmz -bn - cz)/a
* x = z((-bm -c)/a) - bn/a
* so let:
*/
numerator = (-b * m) - c;
p = numerator / a;
q = (-b * n)/a;
/*
* so x = pz + q
* substitute and solve for z
*
* (pz+q)^2 + (mz+n)^2 + z^2 = r^2
* p^2z^2 + 2pzq + q^2 + m^2z^2 + 2mzn + n^2 + z^2 = r^2
* z^2(1+p^2+n^2) + z(2pq + 2mn) + q^2 + p^2 = r^2
* so let
*/
sqr_term = 1.0+(p*p)+(n*n);
lin_term = (2.0*p*q) + (2.0*m*n);
const_term = (q*q) + (p*p) - (radius * radius);
/*
* So sqr_trm(z^2) + lin_term(z) + const_term = 0
*
* Solve for z
* z = (-lin (-+) sqrt[lin^2 - 4*const*sqr])/2*sqr
*/
rad = (lin_term*lin_term) - (4.0*const_term*sqr_term);
/*
* If rad is negative taking the square root would involve
* imaginary numbers. I'm guessing this means the circles
* don't cross.
*/
if(rad < 0.0)
return false;
rad = Math.sqrt(rad);
numerator = -lin_term - rad;
denominator = 2.0*sqr_term;
tmp_z = numerator/denominator;
intersect_point[0] = new Point(((p*tmp_z)+q), ((m*tmp_z)+n), tmp_z);
numerator = -lin_term + rad;
tmp_z = numerator/denominator;
intersect_point[1] = new Point(((p*tmp_z)+q), ((m*tmp_z)+n), tmp_z);
return true;
} /* END intersectsSmallCircle(SmallCircle) */
protected void systemLog(String msg, int level) {
if(level > logLevel)
System.out.println(msg);
}
public String toString()
{
return new String("Great Circle: a="+a+" b="+b+" c="+c+" ("+
arc_point[0].toString()+", "+arc_point[1].toString()+")");
}
} /* END GreatCircle class */
| [
"mjewell@gmail.com"
] | mjewell@gmail.com |
8175f508c869ad7ccf114f88900b425d7559c2bd | 3acf0acab80d39942d26cdb696962bf69e87c876 | /src/main/java/com/sport/mvc/models/SessionHistory.java | ac3a30960d44cb9c4610bb18eb2cfeb2981e4662 | [] | no_license | VMAproject/sport | 5c72d09b2ac93805d339855141ea04a81ff3b2ce | 7c9acff9ba58e074d1bd2cdddd2b3df2dfc9a401 | refs/heads/master | 2021-06-08T18:53:45.227312 | 2016-12-22T13:40:48 | 2016-12-22T13:40:48 | 72,745,705 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,226 | java | package com.sport.mvc.models;
import javax.persistence.*;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
@Entity
@Table(name = "session_history")
public class SessionHistory extends Model {
private static final long serialVersionUID = -3832085403808589327L;
@Column(name = "session_date")
private Date sessionDate;
@Column(name = "session_ip")
private String ip;
@Column(name = "browser")
private String browser;
@OneToMany(mappedBy = "sessionHistory", cascade = CascadeType.ALL, orphanRemoval = true)
private Set<User> users = new HashSet<>();
public SessionHistory() {
super();
}
public String getBrowser() {
return browser;
}
public void setBrowser(String browser) {
this.browser = browser;
}
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public Date getSessionDate() {
return sessionDate;
}
public void setSessionDate(Date sessionDate) {
this.sessionDate = sessionDate;
}
public Set<User> getUsers() {
return users;
}
public void setUsers(Set<User> users) {
this.users = users;
}
// @Override
// public boolean equals(Object o) {
// if (this == o) return true;
// if (o == null || getClass() != o.getClass()) return false;
//
// SessionHistory that = (SessionHistory) o;
//
// if (sessionDate != null ? !sessionDate.equals(that.sessionDate) : that.sessionDate != null) return false;
// if (ip != null ? !ip.equals(that.ip) : that.ip != null) return false;
// if (browser != null ? !browser.equals(that.browser) : that.browser != null) return false;
// return users != null ? users.equals(that.users) : that.users == null;
//
// }
//
// @Override
// public int hashCode() {
// int result = sessionDate != null ? sessionDate.hashCode() : 0;
// result = 31 * result + (ip != null ? ip.hashCode() : 0);
// result = 31 * result + (browser != null ? browser.hashCode() : 0);
// result = 31 * result + (users != null ? users.hashCode() : 0);
// return result;
// }
}
| [
"verlamov.m@gmail.com"
] | verlamov.m@gmail.com |
b86ba98f4938b89b7d11caae4d84019607bb01a8 | ef0c1514e9af6de3ba4a20e0d01de7cc3a915188 | /sdk/paloaltonetworks/azure-resourcemanager-paloaltonetworks-ngfw/src/test/java/com/azure/resourcemanager/paloaltonetworks/ngfw/generated/AzureResourceManagerManagedIdentityPropertiesTests.java | 5b0550ffddebb7ddf3d1e33b676920cb8e8bfeed | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"LGPL-2.1-or-later",
"CC0-1.0",
"BSD-3-Clause",
"UPL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LicenseRef-scancode-generic-cla"
] | permissive | Azure/azure-sdk-for-java | 0902d584b42d3654b4ce65b1dad8409f18ddf4bc | 789bdc6c065dc44ce9b8b630e2f2e5896b2a7616 | refs/heads/main | 2023-09-04T09:36:35.821969 | 2023-09-02T01:53:56 | 2023-09-02T01:53:56 | 2,928,948 | 2,027 | 2,084 | MIT | 2023-09-14T21:37:15 | 2011-12-06T23:33:56 | Java | UTF-8 | Java | false | false | 3,077 | java | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.paloaltonetworks.ngfw.generated;
import com.azure.core.util.BinaryData;
import com.azure.resourcemanager.paloaltonetworks.ngfw.models.AzureResourceManagerManagedIdentityProperties;
import com.azure.resourcemanager.paloaltonetworks.ngfw.models.AzureResourceManagerUserAssignedIdentity;
import com.azure.resourcemanager.paloaltonetworks.ngfw.models.ManagedIdentityType;
import java.util.HashMap;
import java.util.Map;
import org.junit.jupiter.api.Assertions;
public final class AzureResourceManagerManagedIdentityPropertiesTests {
@org.junit.jupiter.api.Test
public void testDeserialize() throws Exception {
AzureResourceManagerManagedIdentityProperties model =
BinaryData
.fromString(
"{\"tenantId\":\"appd\",\"principalId\":\"dkvwrwjfe\",\"type\":\"None\",\"userAssignedIdentities\":{\"cdgea\":{\"clientId\":\"tjelt\",\"principalId\":\"ldhugjzzdatqxh\"},\"k\":{\"clientId\":\"gphuticndvka\",\"principalId\":\"wyiftyhxhur\"}}}")
.toObject(AzureResourceManagerManagedIdentityProperties.class);
Assertions.assertEquals(ManagedIdentityType.NONE, model.type());
Assertions.assertEquals("tjelt", model.userAssignedIdentities().get("cdgea").clientId());
Assertions.assertEquals("ldhugjzzdatqxh", model.userAssignedIdentities().get("cdgea").principalId());
}
@org.junit.jupiter.api.Test
public void testSerialize() throws Exception {
AzureResourceManagerManagedIdentityProperties model =
new AzureResourceManagerManagedIdentityProperties()
.withType(ManagedIdentityType.NONE)
.withUserAssignedIdentities(
mapOf(
"cdgea",
new AzureResourceManagerUserAssignedIdentity()
.withClientId("tjelt")
.withPrincipalId("ldhugjzzdatqxh"),
"k",
new AzureResourceManagerUserAssignedIdentity()
.withClientId("gphuticndvka")
.withPrincipalId("wyiftyhxhur")));
model = BinaryData.fromObject(model).toObject(AzureResourceManagerManagedIdentityProperties.class);
Assertions.assertEquals(ManagedIdentityType.NONE, model.type());
Assertions.assertEquals("tjelt", model.userAssignedIdentities().get("cdgea").clientId());
Assertions.assertEquals("ldhugjzzdatqxh", model.userAssignedIdentities().get("cdgea").principalId());
}
@SuppressWarnings("unchecked")
private static <T> Map<String, T> mapOf(Object... inputs) {
Map<String, T> map = new HashMap<>();
for (int i = 0; i < inputs.length; i += 2) {
String key = (String) inputs[i];
T value = (T) inputs[i + 1];
map.put(key, value);
}
return map;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
117ab6a80c78db53dae08e91c50eaadbd3c8b1ee | 630ee5a77d2a078ddccb9a90b7ac0979d44842b8 | /src/main/java/net/drgnome/virtualpack/tmp/TmpMatter.java | af2c5230dac92aac7237bebcb404d1eec14f73e6 | [] | no_license | sillerud/VirtualPack | 2c7e47527af4a1847e3fda5ae0a54344455a891a | d2128383e17bc06880fcf8d22355e800fdc21cff | refs/heads/master | 2022-06-23T23:28:25.213100 | 2013-09-20T18:39:41 | 2013-09-20T18:39:41 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,397 | java | // Bukkit Plugin "VirtualPack" by Siguza
// The license under which this software is released can be accessed at:
// http://creativecommons.org/licenses/by-nc-sa/3.0/
package net.drgnome.virtualpack.tmp;
import java.util.*;
import net.minecraft.server.v#MC_VERSION#.*;
import org.bukkit.Bukkit;
import org.bukkit.craftbukkit.v#MC_VERSION#.inventory.CraftItemStack;
import net.drgnome.virtualpack.util.*;
import net.drgnome.virtualpack.item.*;
import net.drgnome.virtualpack.components.*;
import net.drgnome.virtualpack.data.TransmutationHelper;
public class TmpMatter extends VContainer implements VGUI
{
private TmpMatterInv _inv;
public TmpMatter(EntityPlayer player, TmpMatterInv inv)
{
super(player, inv);
_inv = inv;
#FIELD_CONTAINER_2# = new ArrayList(); // Derpnote
#FIELD_CONTAINER_3# = new ArrayList(); // Derpnote
for(int i = 0; i < 6; i++)
{
for(int j = 0; j < 9; j++)
{
#FIELD_CONTAINER_4#(new Slot(container, j + 9 * i, 8 + j * 18, 18)); // Derpnote
}
}
for(int i = 0; i < 3; i++)
{
for(int j = 0; j < 9; j++)
{
#FIELD_CONTAINER_4#(new Slot(player.inventory, j + i * 9 + 9, 8 + j * 18, 67 + i * 18)); // Derpnote
}
}
for(int i = 0; i < 9; i++)
{
#FIELD_CONTAINER_4#(new Slot(player.inventory, i, 8 + i * 18, 125)); // Derpnote
}
}
public void #FIELD_CONTAINER_5#(EntityHuman entityhuman) // Derpnote
{
for(int i = 1; i < 9; i++)
{
ItemStack itemstack = container.splitWithoutUpdate(i);
if(itemstack != null)
{
entityhuman.drop(itemstack);
}
}
}
public boolean allowClick(int slot, int mouse, int shift, EntityHuman human)
{
if(slot == 0)
{
return false;
}
else if((slot >= 9) && (slot < 54))
{
if((_inv.getItem(slot) == null) || ((human.inventory.getCarried() != null) && ((shift > 0) || !human.inventory.getCarried().doMaterialsMatch(_inv.getItem(slot)))))
{
return false;
}
double value = TransmutationHelper.getValue(CraftItemStack.asBukkitCopy(_inv.getItem(slot)));
if(_inv._value < value)
{
return false;
}
if(shift > 0)
{
int max = Util.min(Util.floor(_inv._value / value), _inv.getItem(slot).getMaxStackSize());
org.bukkit.inventory.ItemStack stack = CraftItemStack.asBukkitCopy(_inv.getItem(slot)).clone();
stack.setAmount(max);
HashMap<Integer, org.bukkit.inventory.ItemStack> map = Bukkit.getPlayer(human.getLocalizedName()).getInventory().addItem(stack);
if(map.size() > 0)
{
max -= map.values().iterator().next().getAmount();
}
_inv._value -= (value * (double)max);
}
else
{
int max = (mouse > 0) ? Util.min(Util.floor(_inv._value / value), human.inventory.getCarried() == null ? _inv.getItem(slot).getMaxStackSize() : (human.inventory.getCarried().getMaxStackSize() - human.inventory.getCarried().count)) : 1;
if(human.inventory.getCarried() == null)
{
ItemStack stack = Util.copy_old(_inv.getItem(slot));
stack.count = max;
human.inventory.setCarried(stack);
}
else
{
human.inventory.getCarried().count += max;
}
_inv._value -= (value * (double)max);
}
_inv.updateInfo();
_inv.updateInv();
return false;
}
else if((shift > 0) && (slot >= 54))
{
for(int i = 1; i < 8; i++)
{
if(_inv.getItem(i) == null)
{
_inv.setItem(i, human.inventory.getItem(toInventorySlot(slot - 54)));
human.inventory.setItem(toInventorySlot(slot - 54), null);
break;
}
}
return false;
}
return true;
}
} | [
"molt@gmx.net"
] | molt@gmx.net |
abc275ff5767e9f5ce6707e40effd92effcde273 | 302e72fb36dd259cbba6ce7c36c547cace68f412 | /app/src/main/java/com/bignerdranch/android/beatbox/BeatBox.java | f613d53ffd6e8212563e87a54afeb2ba390d800d | [] | no_license | andreykoleber/BeatBox | 023593b3766b365ee74cd1ca5b900287f2469e57 | da0abbd6efc1004cd515840b84f3d6ec1e3ddc35 | refs/heads/master | 2021-04-15T14:52:31.738893 | 2018-04-13T12:42:18 | 2018-04-13T12:42:18 | 126,858,124 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,144 | java | package com.bignerdranch.android.beatbox;
import android.content.Context;
import android.content.res.AssetFileDescriptor;
import android.content.res.AssetManager;
import android.media.AudioManager;
import android.media.SoundPool;
import android.util.Log;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
public class BeatBox {
private static final String TAG = "BeatBox";
private static final String SOUNDS_FOLDER = "sample_sounds";
private static final int MAX_SOUNDS = 5;
private AssetManager mAssets;
private List<Sound> mSounds = new ArrayList<>();
private SoundPool mSoundPool;
BeatBox(Context context) {
mAssets = context.getAssets();
mSoundPool = new SoundPool(MAX_SOUNDS, AudioManager.STREAM_MUSIC, 0);
loadSounds();
}
public void play(Sound sound) {
Integer soundId = sound.getSoundId();
if (soundId == null) {
return;
}
mSoundPool.play(soundId, 1.0f, 1.0f, 1, 0, 1.0f);
}
private void loadSounds() {
String[] soundNames = null;
try {
soundNames = mAssets.list(SOUNDS_FOLDER);
Log.e(TAG, "Found " + soundNames.length + "sounds");
} catch (IOException e) {
Log.e(TAG, "Could not list assets", e);
}
if (soundNames != null) {
for (String fileName : soundNames) {
try {
String assetPath = SOUNDS_FOLDER + "/" + fileName;
Sound sound = new Sound(assetPath);
load(sound);
mSounds.add(sound);
} catch (IOException e) {
Log.e(TAG, "Could not load sound " + fileName + e);
}
}
}
}
public List<Sound> getSounds() {
return mSounds;
}
public void release() {
mSoundPool.release();
}
private void load(Sound sound) throws IOException {
AssetFileDescriptor afd = mAssets.openFd(sound.getAssetPath());
int soundId = mSoundPool.load(afd, 1);
sound.setSoundId(soundId);
}
}
| [
"andrei.koleber@gmail.com"
] | andrei.koleber@gmail.com |
0ded9e1643a089051b8a61b51a39703f26da5395 | 5b16ff67d2ef1fcfaf2057038bfb2ca08d6a026c | /app/src/main/java/uk/co/o2/android/roboexample/opengl/MyGLRenderer.java | ddbcb99d7d95149b004850a8a100f7d85150a173 | [
"Apache-2.0"
] | permissive | hoomi/BoxingGame | e1235e395c10eb45dd79b4faabddb5d581d2549a | 6048a45f67f7cf18768d08f7a2de3d342738a48d | refs/heads/master | 2016-09-06T14:09:52.129833 | 2014-09-12T14:10:31 | 2014-09-12T14:10:31 | 23,914,327 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,580 | java | package uk.co.o2.android.roboexample.opengl;
import android.content.Context;
import android.opengl.GLES20;
import android.opengl.GLSurfaceView;
import android.util.Log;
import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;
import uk.co.o2.android.roboexample.R;
import uk.co.o2.android.roboexample.opengl.models.Camera;
import uk.co.o2.android.roboexample.opengl.models.CollisionStatus;
import uk.co.o2.android.roboexample.opengl.models.Cube;
import uk.co.o2.android.roboexample.opengl.models.Material;
import uk.co.o2.android.roboexample.opengl.models.MeshEx;
import uk.co.o2.android.roboexample.opengl.models.Orientation;
import uk.co.o2.android.roboexample.opengl.models.Physics;
import uk.co.o2.android.roboexample.opengl.models.PointLight;
import uk.co.o2.android.roboexample.opengl.models.Shader;
import uk.co.o2.android.roboexample.opengl.models.Texture;
import uk.co.o2.android.roboexample.opengl.models.Vector3;
public class MyGLRenderer implements GLSurfaceView.Renderer {
private Context mContext;
private PointLight mPointLight;
private Camera mCamera;
private int mViewPortWidth;
private int mViewPortHeight;
private Vector3 mCubePositionDelta = new Vector3(0.02f, 0.0f, 0.0f);
private Vector3 mCubeScale = new Vector3(1.0f, 1.0f, 0.2f);
private Vector3 mCubeRotation = new Vector3(0.0f, 1.0f, 0.0f);
private Vector3 mForce = new Vector3(0,20,0);
private float mRotationalForce = 3;
private Cube mCube;
private Cube mCube2;
public MyGLRenderer(Context context) {
this.mContext = context;
}
private void setupLights() {
Vector3 lightPosition = new Vector3(0, 125, 125);
float[] ambientColor = new float[]{0.0f, 0.0f, 0.0f};
float[] diffuseColor = new float[]{1.0f, 1.0f, 1.0f};
float[] specularColor = new float[]{1.0f, 1.0f, 1.0f};
mPointLight.setPosition(lightPosition);
mPointLight.setAmbientColor(ambientColor);
mPointLight.setDiffuseColor(diffuseColor);
mPointLight.setSpecularColor(specularColor);
}
private void setUpCamera() {
Vector3 eye = new Vector3(0, 0, 20);
Vector3 centre = new Vector3(0, 0, -1);
Vector3 up = new Vector3(0, 1, 0);
float ratio = (float) mViewPortWidth / mViewPortHeight;
float projLeft = -ratio;
float projRight = ratio;
float projTop = 1.0f;
float projBottom = -1.0f;
float projNear = 3;
float projFar = 50;
mCamera = new Camera(eye, centre, up,
projLeft, projRight, projTop,
projBottom, projNear, projFar);
}
private void createCube(Context context) {
Shader shader = new Shader(context, R.raw.vsonlight, R.raw.fsonlight);
// MeshEx cubeMesh = new MeshEx(8, 0, 3, 5, Cube.cubeData, Cube.cubeDrawOrder);
MeshEx cubeMesh = new MeshEx(8, 0, 3, 5, Cube.CubeData4Sided, Cube.cubeDrawOrder);
Material material = new Material();
// material.setEmissive(0.0f, 0, 0.25f);
Texture textureAndroid = new Texture(context, R.drawable.ic_launcher);
Texture[] cubeTex = new Texture[]{textureAndroid};
mCube = new Cube(cubeMesh, cubeTex, material, shader);
mCube.getObjectPhysics().setGravity(true);
Vector3 axis = new Vector3(0, 1, 0);
Vector3 position = new Vector3(0, 10, 0);
Vector3 scale = new Vector3(1, 1, 1);
Orientation orientation = mCube.getOrientation();
orientation.setPosition(position);
orientation.setRotationAxis(axis);
orientation.setScale(scale);
}
private void createCube2(Context context) {
Shader shader = new Shader(context, R.raw.vsonlight, R.raw.fsonlight);
// MeshEx cubeMesh = new MeshEx(8, 0, 3, 5, Cube.cubeData, Cube.cubeDrawOrder);
MeshEx cubeMesh = new MeshEx(8, 0, 3, 5, Cube.CubeData4Sided, Cube.cubeDrawOrder);
Material material = new Material();
// material.setEmissive(0.0f, 0, 0.25f);
Texture textureAndroid = new Texture(context, R.drawable.test);
Texture[] cubeTex = new Texture[]{textureAndroid};
mCube2 = new Cube(cubeMesh, cubeTex, material, shader);
mCube2.getObjectPhysics().setGravity(true);
Vector3 axis = new Vector3(0, 1, 0);
Vector3 position = new Vector3(0, 4 , 0);
Vector3 scale = new Vector3(1, 1, 1);
Orientation orientation = mCube2.getOrientation();
orientation.setPosition(position);
orientation.setRotationAxis(axis);
orientation.setScale(scale);
}
@Override
public void onSurfaceCreated(GL10 gl, EGLConfig config) {
mPointLight = new PointLight();
setupLights();
createCube(mContext);
createCube2(mContext);
}
@Override
public void onSurfaceChanged(GL10 gl, int width, int height) {
GLES20.glViewport(0, 0, width, height);
mViewPortHeight = height;
mViewPortWidth = width;
setUpCamera();
}
@Override
public void onDrawFrame(GL10 gl) {
GLES20.glClearColor(0.0f, 0.0f, 1.0f, 1.0f);
GLES20.glClear(GLES20.GL_DEPTH_BUFFER_BIT | GLES20.GL_COLOR_BUFFER_BIT);
mCamera.updateCamera();
mCube.updateObject3d();
Physics physics = mCube.getObjectPhysics();
if (physics.getHitGroundStatus()) {
physics.applyTranslationalForce(mForce);
physics.applyRotationalForce(mRotationalForce, 10.0f);
}
mCube2.updateObject3d();
CollisionStatus typeCollision = mCube.getObjectPhysics().checkForCollisionSphereBounding(mCube, mCube2);
if ((typeCollision == CollisionStatus.COLLISION) ||
(typeCollision == CollisionStatus.PENETRATING_COLLISION))
{
mCube.getObjectPhysics().applyLinearImpulse(mCube, mCube2);
}
// // Rotation of the cube
// mCube.getOrientation().addRotation(1);
//
// // Moves the cube forward and backwards
// Vector3 currentPosition = mCube.getOrientation().getPosition();
// if (currentPosition.x < -1|| currentPosition.x > 1) {
// mCubePositionDelta.negate();
// }
// Vector3 newPosition = Vector3.add(currentPosition, mCubePositionDelta);
// currentPosition.set(newPosition.x, newPosition.y, newPosition.z);
//
// mCube.getOrientation().setScale(mCubeScale);
mCube.drawObject(mCamera, mPointLight);
mCube2.drawObject(mCamera, mPointLight);
}
}
| [
"hoomi2010@gmail.com"
] | hoomi2010@gmail.com |
bf3b620c5e3f899576081360341a82bb41ca9e21 | 18aae3283d20c1cace0b9d3828fc771a201dee1a | /Lab/SangTM/LabNew/src/Lab4_Bai2/SinhVienBiz.java | a27a54e9ee05fb901a1cd0ae265fd2c364ae6a08 | [] | no_license | superStyle205/FFSE1801_1802_Java_core | 146b526f66b7276296136aec6a2199f525373ba5 | 9a0dc73ce1e5900a76ec92cc158af539ce8e4fc6 | refs/heads/master | 2020-05-07T12:03:49.662744 | 2019-10-09T08:04:01 | 2019-10-09T08:04:01 | 180,483,204 | 0 | 3 | null | null | null | null | UTF-8 | Java | false | false | 621 | java | package Lab4_Bai2;
public class SinhVienBiz extends SinhVienFpt{
private double diemSales;
private double diemMarketing;
public SinhVienBiz(String hoTen, String nganh, double diemSales, double diemMarketing) {
super(hoTen, nganh);
this.diemSales = diemSales;
this.diemMarketing = diemMarketing;
}
@Override
public double getDiem() {
return (2 * diemMarketing + diemSales) / 3;
}
@Override
public void xuat() {
// TODO Auto-generated method stub
super.xuat();
System.err.println("Điểm Marketing: " + diemMarketing);
System.err.println("Điểm Sales: " + diemSales);
super.show();
}
}
| [
"trinhminhsang2000@gmail.com"
] | trinhminhsang2000@gmail.com |
4d48b99a56459fb5063119fa9b6d7b4598bf29a1 | bd3ee4b1585d60179747118ca764eb546134abe7 | /src/org/dimigo/test/Book.java | 4d0dc5a50df4dd12b8c32a224029d7b2817b3433 | [] | no_license | songhee1024/javaproject | 7dec8539b2a119d89d9bab342ac081d8c25eee8f | 22c2952e072687e771e1e4cee602a88e8b8e02c6 | refs/heads/master | 2020-06-19T01:34:43.552124 | 2019-07-12T06:19:39 | 2019-07-12T06:19:39 | 196,520,402 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 359 | java | package org.dimigo.test;
public class Book {
private String title = "미생";
public String author = "연수";
public int page = 1000;
public String getTitle() {
return title;
}
public Book(String title, String author, int page){
this.title = title;
this.author = author;
this.page = page;
}
}
| [
"zxcswad123@naver.com"
] | zxcswad123@naver.com |
1b490d5c88ab18ee500ce12fc06052b9a6591fa2 | e97c2886a4e813735994b3b2d940885c2ceb9e6d | /app/src/main/java/com/alberto/testfirebase/MainActivity.java | a3037d6bf67f53d920c459bfaf6d5c92f1694ae8 | [] | no_license | albertejuku/TestFirebase | e9523ba688690c84800429829134c54471f51feb | 8ea036f0c3aed1f344b321f4d7381b16ff9eae05 | refs/heads/master | 2023-08-23T02:31:08.813876 | 2021-11-03T12:58:24 | 2021-11-03T12:58:24 | 424,223,203 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,641 | java | package com.alberto.testfirebase;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.view.WindowManager;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.TextView;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.auth.FirebaseUser;
public class MainActivity extends AppCompatActivity {
Animation animation;
TextView txtView;
FirebaseAuth mAuth;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mAuth = FirebaseAuth.getInstance();
FirebaseUser currentUser = mAuth.getCurrentUser();
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
txtView = findViewById(R.id.welcome_text);
animation = AnimationUtils.loadAnimation(this, R.anim.fade_animation);
txtView.setAnimation(animation);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
if(currentUser == null){
Intent intent = new Intent(MainActivity.this, Login.class);
startActivity(intent);
finish();
}else{
Intent intent = new Intent(MainActivity.this, HomeScreen.class);
startActivity(intent);
finish();
}
}
}, 5000);
}
} | [
"albertejuku92@gmail.com"
] | albertejuku92@gmail.com |
7ce98b9e6b93c4247a3f5954b9654bee18e1f0a6 | b97037578656390fae434c703ed8814805ea2dd7 | /src/com/cjj/service/baseinfo/RegistertypeService.java | 6f4329aa06b506c2502741752aeeba6a43b8e30c | [] | no_license | misterchuanjiang/aaa | c7330d6fcc3dcff82037982cb85c26d4e48f12a2 | 30c633bd8636968e320bee9aae753e7875d0730e | refs/heads/master | 2020-04-23T13:40:57.791589 | 2019-02-20T01:31:41 | 2019-02-20T01:31:41 | 171,205,345 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 507 | java | package com.cjj.service.baseinfo;
import java.util.List;
import com.cjj.core.common.BaseService;
import com.cjj.po.Registertype;
public interface RegistertypeService extends BaseService<Registertype, Integer>{
/**
* 查询前三个挂号类别
* @return
*/
public List<Registertype> findBefor();
/**
* 分页查询挂号类别
* @param contant
* @param currentpage
* @param pagesize
* @return
*/
public List<Registertype> vagueFind(String contant,int currentpage,int pagesize);
}
| [
"1313@qq.com"
] | 1313@qq.com |
9c400ecd5f45c68f6c365165498e62f99d150065 | 30a84c1e0567405b0dbe950596187cb0c807e919 | /app/src/main/java/ru/ifmo/md/exam2/provider/playlisttotrack/PlaylistToTrackContentValues.java | 1485cc9ee2cec7c9b7c7c9dc80ced7389128e78c | [] | no_license | zakharvoit/exam2 | b85df014d81683be0e8d05e045401932e364c0b5 | aeaf88695cf3330c4f7a1c7dca4415c9348b179c | refs/heads/master | 2020-12-31T03:42:13.181588 | 2015-01-23T10:57:52 | 2015-01-23T10:57:52 | 29,720,342 | 0 | 0 | null | 2015-01-23T06:42:30 | 2015-01-23T06:42:30 | null | UTF-8 | Java | false | false | 1,338 | java | /*
* This source file is generated with https://github.com/BoD/android-contentprovider-generator
*/
package ru.ifmo.md.exam2.provider.playlisttotrack;
import java.util.Date;
import android.content.ContentResolver;
import android.net.Uri;
import ru.ifmo.md.exam2.provider.base.AbstractContentValues;
/**
* Content values wrapper for the {@code playlist_to_track} table.
*/
public class PlaylistToTrackContentValues extends AbstractContentValues {
@Override
public Uri uri() {
return PlaylistToTrackColumns.CONTENT_URI;
}
/**
* Update row(s) using the values stored by this object and the given selection.
*
* @param contentResolver The content resolver to use.
* @param where The selection to use (can be {@code null}).
*/
public int update(ContentResolver contentResolver, PlaylistToTrackSelection where) {
return contentResolver.update(uri(), values(), where == null ? null : where.sel(), where == null ? null : where.args());
}
public PlaylistToTrackContentValues putPlaylistId(long value) {
mContentValues.put(PlaylistToTrackColumns.PLAYLIST_ID, value);
return this;
}
public PlaylistToTrackContentValues putTrackId(long value) {
mContentValues.put(PlaylistToTrackColumns.TRACK_ID, value);
return this;
}
}
| [
"zakharvoit@gmail.com"
] | zakharvoit@gmail.com |
95e947cd658a071d8c91538d943b864441501fbf | cbde08a73a8711283458f267ffb63480d31507c6 | /hackatonbase/src/main/java/com/simbirsoft/controllers/SensorController.java | 68285473a4d829c65a04c1c0a32b8e4d7ac05bb2 | [] | no_license | Alexeyyy/hackatonbase | 760b3ec7a07e5acec949070363483e1a2f0d82f5 | f583037e423aa626987cbae2ab6184c3eb35c174 | refs/heads/master | 2021-01-21T08:55:21.138717 | 2016-07-10T14:45:13 | 2016-07-10T14:45:13 | 62,985,070 | 1 | 0 | null | 2016-07-10T06:23:47 | 2016-07-10T06:23:46 | null | UTF-8 | Java | false | false | 2,327 | java | package com.simbirsoft.controllers;
import com.simbirsoft.core.DataCollector;
import com.simbirsoft.core.Helper;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
import org.springframework.web.util.UriComponentsBuilder;
import java.net.URI;
/**
* Created by Alex on 10.07.2016.
*/
@RestController
@RequestMapping(value = "/sensor")
public class SensorController {
private static final String baseHackatonUrl = "http://smarthome.simbirsoft:8080";
@RequestMapping(value = "/sensorData", method = RequestMethod.GET)
public String getSensorData() {
URI uri = UriComponentsBuilder.fromHttpUrl(baseHackatonUrl)
.path("/sensors/types")
.queryParam("type", "Pressure")
.build()
.toUri();
String json = new RestTemplate().getForObject(uri, String.class);
DataCollector.sensorData = Helper.parseSensorJsonToDictionary(json);
return json;
}
// Температура в комнате.
@RequestMapping (value = "/getRoomTemperature", method = RequestMethod.GET)
public String getRoomTemperature() {
URI uri = UriComponentsBuilder.fromHttpUrl(baseHackatonUrl)
.path("/sensors/ROOM_TEMPERATURE")
.build()
.toUri();
String temperature = new RestTemplate().getForObject(uri, String.class);
DataCollector.sensorValues.put("ROOM_TEMPERATURE", temperature);
return DataCollector.sensorValues.get("ROOM_TEMPERATURE");
}
// Уровень освещенности в комнате.
@RequestMapping (value = "/getLuminance", method = RequestMethod.GET)
public String getLuminance() {
URI uri = UriComponentsBuilder.fromHttpUrl(baseHackatonUrl)
.path("/sensors/LUMINANCE")
.build()
.toUri();
String temperature = new RestTemplate().getForObject(uri, String.class);
DataCollector.sensorValues.put("LUMINANCE", temperature);
return DataCollector.sensorValues.get("LUMINANCE");
}
}
| [
"a.zhelepov@yandex.ru"
] | a.zhelepov@yandex.ru |
04e6c5709d51fd1fb62f269a58879928b0887a9a | f9517e811e96f2d1a71207191494d18adde14e40 | /HW01/src/edu/umb/cs681/hw01/TableObserver.java | 6118443a41418e10e6af83eb9004c07129eb92cf | [] | no_license | jessewilliamfreeman/cs681 | f13b0c2bca06f2fa40b14c19e361abb1ccb58d81 | 8220cd083ee7e24dd945eb74fd58242602f7cec7 | refs/heads/main | 2023-05-04T21:32:32.259324 | 2021-05-21T19:31:34 | 2021-05-21T19:31:34 | 352,205,000 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 756 | java | package edu.umb.cs681.hw01;
import java.io.PrintStream;
public class TableObserver implements Observer {
// for testing
private PrintStream printStream;
public TableObserver() {
printStream = System.out;
}
@Override
public void update(Observable arg0, Object arg1) {
if (arg1 instanceof StockEvent) {
StockEvent se = (StockEvent) arg1;
printStream.println("Table Update: Ticker " +
se.getTicker() + " Quote " + Float.toString(se.getQuote()));
}
else if (arg1 instanceof DJIAEvent) {
DJIAEvent de = (DJIAEvent) arg1;
printStream.println("Table Update: DJIA " + Float.toString(de.getDjia()));
}
}
// for testing
protected void setPrintStream(PrintStream printStream) {
this.printStream = printStream;
}
}
| [
"jessewilliamfreeman@gmail.com"
] | jessewilliamfreeman@gmail.com |
92e9d629a6d03484b8bbb7dbe03e31d1da7a67f8 | 571ce46236afb5d836b713c5f3cc165db5d2ae77 | /packages/apps/PrizeDialerV8/InCallUI/src/com/mediatek/incallui/Toast.java | 38126e3279fb26ccca5b040b418acafdfefd800c | [] | no_license | sengeiou/prize | d6f56746ba82e0bbdaa47b5bea493ceddb0abd0c | e27911e194c604bf651f7bed0f5f9ce8f7dc8d4d | refs/heads/master | 2020-04-28T04:45:42.207852 | 2018-11-23T13:50:20 | 2018-11-23T13:50:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,364 | java | package com.mediatek.incallui;
import android.content.Context;
/**
* A Toast helper for InCallUI, to avoid toast timing issue.
*/
public class Toast {
private static Toast sInstance = new Toast();
private android.widget.Toast mToast;
private Toast() {
}
/**
* Get the Toast instance.
* @return Toast instance.
*/
public static Toast getInstance() {
return sInstance;
}
/**
* Called in #InCallServiceImpl to set the context.
* @param context Context to set.
*/
public void init(Context context) {
if (mToast == null) {
mToast = android.widget.Toast.makeText(context, "", android.widget.Toast.LENGTH_SHORT);
}
}
/**
* Called when #InCallService quit.
*/
public void deinit() {
mToast = null;
}
/**
* Like android.widget.Toast.show(), to show the Toast message.
* @param resId message resId.
*/
public void show(int resId) {
if (mToast != null) {
mToast.setText(resId);
mToast.show();
}
}
/**
* Like android.widget.Toast.show(), to show the Toast message.
* @param msg message text.
*/
public void show(CharSequence msg) {
if (mToast != null) {
mToast.setText(msg);
mToast.show();
}
}
}
| [
"18218724438@163.com"
] | 18218724438@163.com |
a3df1d6a6f881ebfc87aac20d2f754ae4ae84d86 | 40b35c4915578bb899dd2174bcf658d6ee19bec0 | /src/com/csulb/ooad/assignmnet/MainframeTest.java | f7aa559d9af9d1b6db5dd4b035b31b099b1caf60 | [] | no_license | swapnilpalse/Cell-phone-Dial-pad-simulator-using-java-swing | 5cabcf553ce6a554c26cf18cfdad59350847dbe5 | 24470ccb2d09e22470422c2fa4e69fdf17d054d4 | refs/heads/master | 2021-04-15T09:06:46.060134 | 2018-03-24T07:14:43 | 2018-03-24T07:14:43 | 126,575,357 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,327 | java | package com.csulb.ooad.assignmnet;
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.TextArea;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.SwingConstants;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.border.Border;
public class MainframeTest {
public static void main(String[] args) throws ClassNotFoundException, InstantiationException, IllegalAccessException, UnsupportedLookAndFeelException {
JFrame jFrame=new JFrame("Swapnil");
JPanel textPanel=new JPanel();
JPanel buttonPanel=new JPanel();
buttonPanel.setLayout(new GridLayout(4, 3));
textPanel.setLayout(new BorderLayout());
textPanel.add(new JTextArea(30,30),BorderLayout.PAGE_START);
jFrame.setSize(250, 400);
JTextArea jTextArea=new JTextArea(20, 400);
JButton jbutton1=new JButton("1");
jbutton1.setPreferredSize(new Dimension(83, 100));
jFrame.getContentPane().add(jbutton1, BorderLayout.LINE_START);
// System.out.println(jFrame.getContentPane().);
JButton jbutton2=new JButton("2");
jbutton2.setPreferredSize(new Dimension(83, 100));
jFrame.getContentPane().add(jbutton2, BorderLayout.CENTER);
JButton jbutton3=new JButton("3");
jbutton3.setPreferredSize(new Dimension(83, 100));
jFrame.getContentPane().add(jbutton3, BorderLayout.LINE_END);
JButton jbutton4=new JButton("4");
jbutton4.setPreferredSize(new Dimension(83, 100));
jFrame.getContentPane().add(jbutton4, BorderLayout.LINE_START);
JButton jbutton5=new JButton("5");
jbutton5.setPreferredSize(new Dimension(83, 100));
jFrame.getContentPane().add(jbutton5, BorderLayout.CENTER);
JButton jbutton6=new JButton("6");
jbutton6.setPreferredSize(new Dimension(83, 100));
jFrame.getContentPane().add(jbutton6, BorderLayout.LINE_END);
JButton jbutton7=new JButton("7");
jbutton7.setPreferredSize(new Dimension(83, 100));
jFrame.getContentPane().add(jbutton7, BorderLayout.LINE_START);
JButton jbutton8=new JButton("8");
jbutton8.setPreferredSize(new Dimension(83, 100));
jFrame.getContentPane().add(jbutton8, BorderLayout.CENTER);
JButton jbutton9=new JButton("9");
JButton jbutton0=new JButton("0");
JButton strButton=new JButton("*");
JButton boundButton=new JButton("#");
jbutton9.setPreferredSize(new Dimension(83, 100));
jFrame.getContentPane().add(jbutton9, BorderLayout.LINE_END);
buttonPanel.setLayout(new GridLayout(4,3));
buttonPanel.add(jbutton1);
buttonPanel.add(jbutton2);
buttonPanel.add(jbutton3);
buttonPanel.add(jbutton4);
buttonPanel.add(jbutton5);
buttonPanel.add(jbutton6);
buttonPanel.add(jbutton7);
buttonPanel.add(jbutton8);
buttonPanel.add(jbutton9);
buttonPanel.add(strButton);
buttonPanel.add(jbutton0);
buttonPanel.add(boundButton);
// JPanel jPanel=new JPanel();
jFrame.getContentPane().setLayout(new BorderLayout());
jFrame.getContentPane().add(textPanel,BorderLayout.NORTH);
jFrame.getContentPane().add(buttonPanel,BorderLayout.CENTER);
jFrame.setVisible(true);
}
}
| [
"swapnil.palse@gmail.com"
] | swapnil.palse@gmail.com |
e674a26ee170b2fed1254aa1626113cabcc29250 | 8a068aa3e0c049068bb684703f809ac13670de1f | /data/db_room/src/androidTest/java/saha/com/data/db/ExampleInstrumentedTest.java | 958d10235716a3598bd048d51051348634f6e533 | [] | no_license | bansteen/BaseAndroidApp | 7a1a1f3159315a6f5115dd377391a0fd3c3d1db9 | 9c92d407c8a9ecbde6f0e604b75ad5768ab25e2b | refs/heads/master | 2020-05-20T05:03:29.091743 | 2019-05-31T22:57:44 | 2019-05-31T22:57:44 | 185,396,595 | 2 | 1 | null | 2019-05-13T13:17:25 | 2019-05-07T12:23:33 | Kotlin | UTF-8 | Java | false | false | 712 | java | package saha.com.data.db;
import android.content.Context;
import androidx.test.InstrumentationRegistry;
import androidx.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("saha.com.data.db_room.test", appContext.getPackageName());
}
}
| [
"chinmoy-saha@dmm.com"
] | chinmoy-saha@dmm.com |
3a9683b670376770aa6616c2c1eea77a1047b955 | cc95dd81cb4f391191684ce40798820d4a598d57 | /Selenium Project/src/automation/FB_XPATH.java | e349814b545d184b2d87fea2f32fcb32e255db97 | [] | no_license | ShainaKhunger/ShainaKhunger | a0d7c68f697179adf2e134a7c0c87c5200ef23a4 | 5a8dce782d6d4ba35d803a933e3105c0ff72d18d | refs/heads/master | 2023-05-10T03:55:47.880695 | 2021-06-02T10:59:34 | 2021-06-02T10:59:34 | 373,084,368 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 915 | java | package automation;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class FB_XPATH {
public static void main(String[] args) throws InterruptedException {
System.setProperty("webdriver.chrome.driver", "D:\\Softwares\\Chrome Driver\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("https://www.facebook.com/");
driver.findElement(By.xpath("//input[@name='email']")).sendKeys("User");
driver.findElement(By.xpath("//input[@name='pass']")).sendKeys("1234");
driver.findElement(By.xpath("//a[contains (@href, 'recover')]")).click();
if(driver.findElement(By.xpath("//img[@alt='Facebook']")).isDisplayed())
{
System.out.println("Facebook logo is Displayed");
}
else
{
System.out.println("Facebook logo is not Displayed");
}
Thread.sleep(5000);
driver.close();
}
}
| [
"er.shainakhunger@gmail.com"
] | er.shainakhunger@gmail.com |
2aea05a8bf93239cd6a692c76ddbca91f2001229 | 6a2a59aaed41200b47603d091f9fed1f3f3a06f7 | /src/com/valuemomentum/training/concurrency/MyThread.java | 7e4b63b79f8c2a9b391deb154a58beef03397f11 | [] | no_license | NikkiShd/OopsDemo | 0a1e600483d6d202462eeb10dd8ed98f39a7ae80 | ae835a3aca97a108df182d5d2e350aa03c1a5ad4 | refs/heads/master | 2023-03-05T11:55:59.305559 | 2021-02-18T09:00:38 | 2021-02-18T09:00:38 | 339,990,334 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 474 | java | package com.valuemomentum.training.concurrency;
public class MyThread extends Thread {
public static void main(String[] args) {
MyThread obj=new MyThread();
obj.create();
System.out.println("This is the main thread");
}
private void create() {
Thread objt=new Thread(this);
objt.start();
}
public void run() {
while(true) {
try {
System.out.println("This is the child thread");
Thread.sleep(500);
}catch(InterruptedException e){
}
}
}
} | [
"nikitashadija50@gmail.com"
] | nikitashadija50@gmail.com |
306b818d8fc4f6afc537455000b1012866862877 | 992b7c28f9888b55225ab4f9b2e6e4681ae60a11 | /platform/org/org-core/src/main/java/com/telecom/ecloudframework/org/rest/controller/UserController.java | 9560ffc7abdb33cb841655c9dd0c901c88483bf7 | [] | no_license | cehui0802/telecom | 7cdf21e633693a570af8e3a5e6c1fd18e67d781c | 482fb900d9370958d4810a4b987c7a963d1369a7 | refs/heads/master | 2023-03-11T13:45:04.430708 | 2021-02-25T07:39:21 | 2021-02-25T07:39:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 24,520 | java | package com.telecom.ecloudframework.org.rest.controller;
import com.telecom.ecloudframework.base.api.aop.annotion.CatchErr;
import com.telecom.ecloudframework.base.api.aop.annotion.OperateLog;
import com.telecom.ecloudframework.base.api.aop.annotion.ParamValidate;
import com.telecom.ecloudframework.base.api.exception.BusinessError;
import com.telecom.ecloudframework.base.api.exception.BusinessException;
import com.telecom.ecloudframework.base.api.exception.BusinessMessage;
import com.telecom.ecloudframework.base.api.query.QueryFilter;
import com.telecom.ecloudframework.base.api.query.QueryOP;
import com.telecom.ecloudframework.base.api.response.impl.ResultMsg;
import com.telecom.ecloudframework.base.core.cache.ICache;
import com.telecom.ecloudframework.base.core.encrypt.EncryptUtil;
import com.telecom.ecloudframework.base.core.util.FileUtil;
import com.telecom.ecloudframework.base.db.model.page.PageResult;
import com.telecom.ecloudframework.base.rest.BaseController;
import com.telecom.ecloudframework.base.rest.util.RequestUtil;
import com.telecom.ecloudframework.org.api.constant.RelationTypeConstant;
import com.telecom.ecloudframework.org.api.context.ICurrentContext;
import com.telecom.ecloudframework.org.api.model.IUser;
import com.telecom.ecloudframework.org.core.manager.GroupManager;
import com.telecom.ecloudframework.org.core.manager.UserManager;
import com.telecom.ecloudframework.org.core.model.OrgRelation;
import com.telecom.ecloudframework.org.core.model.User;
import com.telecom.ecloudframework.sys.api.platform.ISysPropertiesPlatFormService;
import com.telecom.ecloudframework.sys.util.ContextUtil;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import org.apache.commons.compress.utils.IOUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* <pre>
* 描述:用户表 控制器类
* </pre>
*
* @author
*/
@RestController
@RequestMapping("/org/user/default")
@Api(description = "用户服务接口")
public class UserController extends BaseController<User> {
@Resource
UserManager userManager;
@Resource
GroupManager groupManager;
@Resource
private ICache<IUser> iCache;
@Resource
private ICache<Object> iCacheFile;
@Resource
private ICurrentContext iCurrentContext;
@Resource
ISysPropertiesPlatFormService iSysPropertiesPlatFormService;
/**
* 保存用户表信息,后端添加实体校验
*/
@RequestMapping("save")
@Override
@CatchErr("操作用户失败!")
@ParamValidate
@OperateLog
public ResultMsg<String> save(@RequestBody User user) {
if (userManager.isUserExist(user)) {
throw new BusinessMessage("用户在系统中已存在!");
}
userManager.saveUserInfo(user);
return getSuccessResult(user.getId(), "保存成功");
}
@RequestMapping(value = "updateUserPassWorld", method = {RequestMethod.POST, RequestMethod.GET})
@CatchErr("更新密码失败")
@ApiOperation(value = "修改密码")
@ApiImplicitParams({
@ApiImplicitParam(paramType = "form", dataType = "String", name = "oldPassword", value = "旧密码"),
@ApiImplicitParam(paramType = "form", dataType = "String", name = "newPassword", value = "新密码"),
@ApiImplicitParam(paramType = "form", dataType = "String", name = "id", value = "当前用户ID")})
public ResultMsg<String> updateUserPsw(HttpServletRequest request, HttpServletResponse response) {
String oldPassWorld = RequestUtil.getRQString(request, "oldPassword", "旧密码必填");
String newPassword = RequestUtil.getRQString(request, "newPassword", "新密码必填");
String userId = RequestUtil.getRQString(request, "id", "当前用户ID");
if (!userId.equals(ContextUtil.getCurrentUserId())) {
throw new BusinessException("禁止修改他人密码!");
}
// if (AppUtil.getCtxEnvironment().contains(EnvironmentConstant.SIT.key())) {
// throw new BusinessError("测试环境为了防止不法之徒恶意破坏演示数据,禁止修改密码!<br/>您的访问信息已经被我们统计!");
// }
User user = userManager.get(ContextUtil.getCurrentUserId());
if (!user.getPassword().equals(EncryptUtil.encryptSha256(oldPassWorld))) {
throw new BusinessMessage("旧密码输入错误");
}
//安全设置弱密码禁止保存
String decentralizationEnable = iSysPropertiesPlatFormService.getByAlias("security.pwd.weakDisable");
if (StringUtils.isNotEmpty(decentralizationEnable) && "true".equals(decentralizationEnable)) {
if (StringUtils.isNotEmpty(newPassword) && newPassword.length() < 6) {
throw new BusinessMessage("密码位数低于6位为弱密码,禁止保存");
}
}
user.setPassword(EncryptUtil.encryptSha256(newPassword));
userManager.update(user);
return getSuccessResult("更新密码成功");
}
/**
* 批量删除
*/
@Override
@RequestMapping("remove")
@CatchErr
@OperateLog
public ResultMsg<String> remove(@RequestParam String id) throws Exception {
User user = userManager.get(id);
if (null == user) {
throw new BusinessError("用户不存在");
} else if (user.getActiveStatus() == 1 && user.getStatus() == 1) {
//激活并且启用状态的用户不能删除
throw new BusinessError("激活并且启用状态的用户不能删除");
}
// if (AppUtil.getCtxEnvironment().contains(EnvironmentConstant.SIT.key())) {
// throw new BusinessError("测试环境为了防止不法之徒恶意破坏演示数据,禁止删除用户!<br/>您的访问信息已经被我们统计!");
// }
return super.remove(id);
}
@Override
protected String getModelDesc() {
return "用户";
}
/**
* 修改用户状态
*
* @param userId
* @param status
* @return
* @author 谢石
* @date 2020-7-7 17:59
*/
@RequestMapping(value = "status")
@CatchErr
public ResultMsg<String> status(@RequestParam(name = "userId") String userId, @RequestParam(name = "status") int status) {
User user = new User();
user.setId(userId);
user.setStatus(status);
userManager.updateByPrimaryKeySelective(user);
return getSuccessResult();
}
/**
* 重置用户密码
*
* @param userId
* @return
* @author 谢石
* @date 2020-7-7 18:14
*/
@RequestMapping(value = "reset")
@CatchErr
public ResultMsg<String> reset(@RequestParam(name = "userId") String userId) {
User user = new User();
user.setId(userId);
user.setPassword(EncryptUtil.encryptSha256("111111"));
userManager.updateByPrimaryKeySelective(user);
return getSuccessResult();
}
/**
* 获取当前用户信息
*
* @return
* @author 谢石
* @date 2020-7-9 15:26
*/
@RequestMapping(value = "getCurrentUserInfo")
@CatchErr
public ResultMsg<User> getCurrentUserInfo() {
String userId = ContextUtil.getCurrentUserId();
User user = new User();
if (StringUtils.isNotEmpty(userId)) {
user = userManager.get(userId);
//添加登陆用户角色
if (null != user && null != user.getOrgRelationList()) {
OrgRelation orgRelation = new OrgRelation();
orgRelation.setRoleAlias("ROLE_USER");
orgRelation.setRoleName("登陆用户");
orgRelation.setType(RelationTypeConstant.USER_ROLE.getKey());
user.getOrgRelationList().add(orgRelation);
}
}
return getSuccessResult(user);
}
/**
* 获取启用用户数量
*
* @return
* @author 谢石
* @date 2020-7-9 16:01
*/
@RequestMapping(value = "getAllEnableUserNum")
@CatchErr
public ResultMsg<Integer> getAllEnableUserNum() {
return getSuccessResult(userManager.getAllEnableUserNum());
}
/**
* 获取在线用户数量
*
* @return
* @author 谢石
* @date 2020-7-9 16:01
*/
@RequestMapping(value = "onLineUser")
@CatchErr
public ResultMsg<Integer> onLineUser() {
return getSuccessResult(iCache.keys("jwtToken:jwt:pc").size());
}
/**
* 查询 用户
*
* @param request
* @param response
* @return
* @author 谢石
* @date 2020-9-2
*/
@Override
@RequestMapping("listJson")
@OperateLog
public PageResult listJson(HttpServletRequest request, HttpServletResponse response) {
String name = request.getParameter("name");
String orgIds = request.getParameter("orgIds");
String roleIds = request.getParameter("roleIds");
String postIds = request.getParameter("postIds");
QueryFilter filter = getQueryFilter(request);
if (StringUtils.isNotEmpty(name)) {
filter.addFilter("tuser.fullname_", name, QueryOP.LIKE);
}
Map<String, Object> params = new HashMap<>();
if (StringUtils.isNotEmpty(orgIds)) {
params.put("orgIds", orgIds.split(","));
}
if (StringUtils.isNotEmpty(roleIds)) {
params.put("roleIds", roleIds.split(","));
}
if (StringUtils.isNotEmpty(postIds)) {
params.put("postIds", postIds.split(","));
}
filter.addParams(params);
List<User> pageList = userManager.query(filter);
return new PageResult(pageList);
}
/**
* 激活用户
*
* @param userId
* @return
* @author 谢石
* @date 2020-9-17
*/
@RequestMapping(value = "active")
@CatchErr
@OperateLog
public ResultMsg<String> active(@RequestParam(name = "userId") String userId) {
User user = new User();
user.setId(userId);
user.setActiveStatus(1);
userManager.updateByPrimaryKeySelective(user);
return getSuccessResult();
}
/**
* 设置用户密级
*
* @param userId
* @param secretLevel
* @return
* @author 谢石
* @date 2020-9-17
*/
@RequestMapping(value = "secretLevel")
@CatchErr
public ResultMsg<String> secretLevel(@RequestParam(name = "userId") String userId, @RequestParam(name = "secretLevel") Integer secretLevel) {
User user = new User();
user.setId(userId);
user.setSecretLevel(secretLevel);
userManager.updateByPrimaryKeySelective(user);
return getSuccessResult();
}
/**
* 更新头像
*
* @param request
* @param response
* @return
*/
@RequestMapping(value = "updatePhoto", method = {RequestMethod.POST, RequestMethod.GET})
@CatchErr("更新头像失败")
@ApiOperation(value = "更新头像")
@ApiImplicitParams({
@ApiImplicitParam(paramType = "form", dataType = "String", name = "photoId", value = "头像id")})
public ResultMsg<String> updatePhoto(HttpServletRequest request, HttpServletResponse response) {
String photoId = RequestUtil.getRQString(request, "photoId", "头像id必填");
String userId = ContextUtil.getCurrentUserId();
User user = new User();
user.setId(userId);
user.setPhoto(photoId);
userManager.updateByPrimaryKeySelective(user);
return getSuccessResult("更新头像成功");
}
/**
* 更新用户基本信息
*
* @param request
* @param response
* @return
* @author 谢石
* @date 2020-9-28
*/
@RequestMapping(value = "updateInfo", method = {RequestMethod.POST, RequestMethod.GET})
@CatchErr("更新用户信息失败")
@ApiOperation(value = "修改登录用户基本信息")
@ApiImplicitParams({
@ApiImplicitParam(paramType = "form", dataType = "String", name = "email", value = "邮箱"),
@ApiImplicitParam(paramType = "form", dataType = "String", name = "mobile", value = "电话"),
@ApiImplicitParam(paramType = "form", dataType = "String", name = "telephone", value = "座机")})
public ResultMsg<String> updateInfo(HttpServletRequest request, HttpServletResponse response) {
String email = RequestUtil.getString(request, "email", null);
String mobile = RequestUtil.getString(request, "mobile", null);
String telephone = RequestUtil.getString(request, "telephone", null);
String userId = ContextUtil.getCurrentUserId();
User user = new User();
user.setId(userId);
user.setEmail(email);
user.setMobile(mobile);
user.setTelephone(telephone);
userManager.updateByPrimaryKeySelective(user);
return getSuccessResult("更新用户信息成功");
}
/**
* 导入用户
*
* @param file
* @return
* @throws Exception
* @author 谢石
* @date 2020-10-23
*/
@OperateLog(writeResponse = true)
@RequestMapping(value = "/import", method = {RequestMethod.POST})
@ResponseBody
public ResultMsg<String> userImport(@RequestParam("file") MultipartFile file, HttpServletRequest request, HttpServletResponse response) {
long totalNum = 0;
long successNum = 0;
if (null != file.getOriginalFilename() && (file.getOriginalFilename().endsWith(".xls") || file.getOriginalFilename().endsWith(".xlsx"))) {
try {
File realFile = FileUtil.multipartFileToFile(file);
Workbook workBook = null;
String type = "";
if (file.getOriginalFilename().endsWith(".xls")) {
workBook = new HSSFWorkbook(new FileInputStream(realFile));
type = "xls";
} else if (file.getOriginalFilename().endsWith(".xlsx")) {
workBook = new XSSFWorkbook(new FileInputStream(realFile));
type = "xlsx";
}
if (null != workBook) {
Sheet sheet = workBook.getSheetAt(0);
if (null != sheet) {
boolean hasError = false;
String[] cellName = {"编号", "主机构", "姓名", "账号", "密码", "邮箱", "手机号码", "座机号码", "地址", "排序字段", "性别", "机构"};
final Map<String, String> mapOrg = new HashMap<>();
int lastRowNum = sheet.getLastRowNum();
for (int i = 2; i <= lastRowNum; i++) {
Row data = sheet.getRow(i);
if (null == data) {
break;
}
StringBuilder errorMsg = new StringBuilder();
try {
String mainOrgPath = getCellStringData(data.getCell(1));
String name = getCellStringData(data.getCell(2));
String account = getCellStringData(data.getCell(3));
if (StringUtils.isEmpty(mainOrgPath) && StringUtils.isEmpty(name) && StringUtils.isEmpty(account)) {
break;
}
totalNum++;
if (StringUtils.isEmpty(mainOrgPath)) {
errorMsg.append("主机构不能为空").append("\n ");
}
if (StringUtils.isEmpty(name)) {
errorMsg.append("姓名不能为空").append("\n ");
}
if (StringUtils.isEmpty(account)) {
errorMsg.append("账号不能为空").append("\n ");
}
String password = getCellStringData(data.getCell(4));
if (StringUtils.isEmpty(password)) {
errorMsg.append("密码不能为空").append("\n ");
}
String email = getCellStringData(data.getCell(5));
String mobile = getCellStringData(data.getCell(6));
if (StringUtils.isEmpty(mobile)) {
errorMsg.append("手机号码不能为空").append("\n ");
}
String telephone = getCellStringData(data.getCell(7));
String address = getCellStringData(data.getCell(8));
String sn = getCellStringData(data.getCell(9));
int iSn = 0;
if (StringUtils.isNotEmpty(sn)) {
try {
iSn = Integer.parseInt(sn);
} catch (Exception e) {
errorMsg.append("“").append(sn).append("”非数字").append("\n ");
}
}
String sex = getCellStringData(data.getCell(10));
if ("男".equals(sex)) {
sex = "0";
} else if ("女".equals(sex)) {
sex = "1";
} else {
sex = "";
}
String orgPaths = getCellStringData(data.getCell(11));
if (errorMsg.length() == 0) {
String mainOrgId = groupManager.findOrgId(mapOrg, mainOrgPath);
User user = new User();
User oldUser = userManager.getByAccount(account);
if (null != oldUser) {
user.setId(oldUser.getId());
}
user.setFullname(name);
user.setAccount(account);
user.setPassword(password);
user.setEmail(email);
user.setMobile(mobile);
user.setTelephone(telephone);
user.setAddress(address);
user.setSn(iSn);
user.setSex(sex);
List<OrgRelation> orgRelationList = new ArrayList<>();
OrgRelation orgRelation = new OrgRelation(mainOrgId, "", RelationTypeConstant.GROUP_USER.getKey());
orgRelation.setIsMaster(1);
orgRelationList.add(orgRelation);
if (StringUtils.isNotEmpty(orgPaths)) {
orgPaths = orgPaths.replaceAll(";", ";");
String[] arrPath = orgPaths.split(";");
for (String path : arrPath) {
path = path.trim();
String orgId = groupManager.findOrgId(mapOrg, path);
if (!orgId.equals(mainOrgId)) {
orgRelation = new OrgRelation(orgId, "", RelationTypeConstant.GROUP_USER.getKey());
orgRelation.setIsMaster(0);
orgRelationList.add(orgRelation);
}
}
}
user.setOrgRelationList(orgRelationList);
userManager.saveUserInfo(user);
successNum++;
if (i == lastRowNum) {
sheet.removeRow(data);
} else {
sheet.shiftRows(i + 1, lastRowNum, -1);
}
i--;
lastRowNum--;
}
} catch (Exception e) {
errorMsg.append(e.getMessage()).append("\n ");
}
if (errorMsg.length() > 0) {
data.createCell(cellName.length).setCellValue(errorMsg.toString());
hasError = true;
}
}
if (hasError) {
sheet.setColumnWidth(cellName.length, 24 * 256);
workBook.write(new FileOutputStream(realFile));
String cacheKey = "file_upload_" + iCurrentContext.getCurrentUserId() + System.currentTimeMillis() + "." + type;
iCacheFile.add(cacheKey, realFile.getAbsolutePath());
return ResultMsg.SUCCESS(cacheKey);
}
}
}
} catch (FileNotFoundException e) {
throw new BusinessMessage("未找到上传文件!");
} catch (IOException e) {
throw new BusinessMessage("上传文件失败!");
} catch (Exception e) {
throw new BusinessMessage("上传失败!");
}
} else {
throw new BusinessMessage("文件格式错误!");
}
return ResultMsg.SUCCESS("导入成功,共" + totalNum + "条数据," + successNum + "条导入成功.");
}
@RequestMapping(value = "/exportError", method = {RequestMethod.GET})
@ResponseBody
public ResponseEntity<byte[]> exportError(HttpServletRequest request, HttpServletResponse response, @RequestParam(name = "fileKey") String fileKey) {
try {
String path = String.valueOf(iCacheFile.getByKey(fileKey));
iCacheFile.delByKey(fileKey);
File realFile = new File(path);
HttpHeaders headers = new HttpHeaders();
headers.setContentDispositionFormData("attachment", "filename=user.xls");
headers.setContentType(MediaType.MULTIPART_FORM_DATA);
return new ResponseEntity<>(IOUtils.toByteArray(new FileInputStream(realFile)), headers, HttpStatus.OK);
} catch (Exception e) {
throw new BusinessMessage("下载失败!");
}
}
/**
* 获取单元格内容
*
* @param cell
* @return
* @author 谢石
* @date 2020-10-23
*/
private String getCellStringData(Cell cell) {
String value = "";
if (cell != null) {
cell.setCellType(CellType.STRING);
value = cell.getStringCellValue();
if (StringUtils.isNotBlank(value)) {
value = value.trim();
}
}
return value;
}
}
| [
"xyf080218@163.com"
] | xyf080218@163.com |
3876b1ef687292f11c559f381aa0e1efb2bf1fca | 04c1224e1fcccbd2bb11b0da5b0aa13463efec56 | /TwoComputerScientistsLab/gen/course/labs/twocomputer/R.java | e5ea5ccfe89d13a0992645a9b4aa7f69f6359898 | [] | no_license | allx1m1k/HelloAndroid | 732cd303307a7c1ac8a8937ae0e1c5de033aa25d | c0f3c8fe303ec188c342fa8ff74877a290c32eec | refs/heads/master | 2019-01-02T05:17:32.116427 | 2015-03-22T20:51:13 | 2015-03-22T20:51:13 | 24,426,220 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 179 | java | /*___Generated_by_IDEA___*/
package course.labs.twocomputer;
/* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */
public final class R {
} | [
"dima@ua2012.org.ua"
] | dima@ua2012.org.ua |
493d1d307eabc498498ceca245a034b458ba2d6c | 5223cdbafd174e362c7b8c3374d2900ed7a796ad | /Proyecto/src/proyecto/test.java | a0e9a62878b3e2a094fb13824521aeb4557f0909 | [] | no_license | 3v1lC0d3/Chat-multihilos | e678453dd86b3c8b2586fcb5be02f80530925ca6 | 86594045fc63b49725b32aeedb49e4e2b12053dd | refs/heads/master | 2022-05-17T11:42:02.200688 | 2019-06-25T18:57:54 | 2019-06-25T18:57:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 33,349 | java | package proyecto;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedInputStream;
import java.io.*;
import java.io.File;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.*;
import javax.swing.filechooser.FileSystemView;
public class test extends javax.swing.JFrame implements Runnable{
/**
* Creates new form Cliente
*/
DataInputStream input;
BufferedInputStream bis;
BufferedOutputStream bos;
JFileChooser jfc = new JFileChooser(FileSystemView.getFileSystemView().getHomeDirectory());
byte[] byteArray;
int in;
Paquetes datos = new Paquetes();
public test() {
initComponents();
mensajes.setContentType("text/html");
campo1.setContentType("text/html");
Thread mihilo = new Thread(this);
mihilo.start();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPopupMenu1 = new javax.swing.JPopupMenu();
emojis = new javax.swing.JPanel();
jButton3 = new javax.swing.JButton();
jButton4 = new javax.swing.JButton();
jButton5 = new javax.swing.JButton();
jButton6 = new javax.swing.JButton();
jButton7 = new javax.swing.JButton();
jButton8 = new javax.swing.JButton();
jButton9 = new javax.swing.JButton();
jButton10 = new javax.swing.JButton();
jButton11 = new javax.swing.JButton();
jButton12 = new javax.swing.JButton();
jButton13 = new javax.swing.JButton();
jButton14 = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
nick = new javax.swing.JTextField();
jLabel2 = new javax.swing.JLabel();
ip = new javax.swing.JTextField();
jButton1 = new javax.swing.JButton();
sendFile = new javax.swing.JButton();
jScrollPane2 = new javax.swing.JScrollPane();
mensajes = new javax.swing.JTextPane();
jButton2 = new javax.swing.JButton();
jScrollPane1 = new javax.swing.JScrollPane();
campo1 = new javax.swing.JTextPane();
emojis.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
emojisMouseClicked(evt);
}
});
jButton3.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/1.png"))); // NOI18N
jButton3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton3ActionPerformed(evt);
}
});
jButton4.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/2.png"))); // NOI18N
jButton4.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton4ActionPerformed(evt);
}
});
jButton5.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/10.png"))); // NOI18N
jButton5.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton5ActionPerformed(evt);
}
});
jButton6.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/xyz.png"))); // NOI18N
jButton6.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton6ActionPerformed(evt);
}
});
jButton7.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/12.png"))); // NOI18N
jButton7.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton7ActionPerformed(evt);
}
});
jButton8.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/3.png"))); // NOI18N
jButton8.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton8ActionPerformed(evt);
}
});
jButton9.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/4.png"))); // NOI18N
jButton9.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton9ActionPerformed(evt);
}
});
jButton10.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/6.png"))); // NOI18N
jButton10.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton10ActionPerformed(evt);
}
});
jButton11.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/8.png"))); // NOI18N
jButton11.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton11ActionPerformed(evt);
}
});
jButton12.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/5.png"))); // NOI18N
jButton12.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton12ActionPerformed(evt);
}
});
jButton13.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/9.png"))); // NOI18N
jButton13.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton13ActionPerformed(evt);
}
});
jButton14.setIcon(new javax.swing.ImageIcon(getClass().getResource("/proyecto/7.png"))); // NOI18N
jButton14.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton14ActionPerformed(evt);
}
});
javax.swing.GroupLayout emojisLayout = new javax.swing.GroupLayout(emojis);
emojis.setLayout(emojisLayout);
emojisLayout.setHorizontalGroup(
emojisLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(emojisLayout.createSequentialGroup()
.addGroup(emojisLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addGroup(emojisLayout.createSequentialGroup()
.addComponent(jButton3, javax.swing.GroupLayout.PREFERRED_SIZE, 37, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jButton4, javax.swing.GroupLayout.PREFERRED_SIZE, 36, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jButton5, javax.swing.GroupLayout.PREFERRED_SIZE, 34, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, emojisLayout.createSequentialGroup()
.addComponent(jButton7, javax.swing.GroupLayout.PREFERRED_SIZE, 37, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jButton8, javax.swing.GroupLayout.PREFERRED_SIZE, 36, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jButton13, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(emojisLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jButton6, javax.swing.GroupLayout.PREFERRED_SIZE, 35, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jButton12, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(emojisLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jButton14, javax.swing.GroupLayout.PREFERRED_SIZE, 33, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jButton9, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(emojisLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jButton11, javax.swing.GroupLayout.PREFERRED_SIZE, 36, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jButton10, javax.swing.GroupLayout.PREFERRED_SIZE, 35, javax.swing.GroupLayout.PREFERRED_SIZE)))
);
emojisLayout.setVerticalGroup(
emojisLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(emojisLayout.createSequentialGroup()
.addGroup(emojisLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(emojisLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(jButton3, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButton4, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButton6, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jButton5, javax.swing.GroupLayout.Alignment.LEADING))
.addComponent(jButton9)
.addComponent(jButton11))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(emojisLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jButton10)
.addComponent(jButton8)
.addComponent(jButton7)
.addComponent(jButton13)
.addComponent(jButton12)
.addComponent(jButton14))
.addGap(5, 5, 5))
);
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
addKeyListener(new java.awt.event.KeyAdapter() {
public void keyPressed(java.awt.event.KeyEvent evt) {
formKeyPressed(evt);
}
});
jLabel1.setText("Nickname");
jLabel2.setText("IP");
jButton1.setText("Enviar");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
sendFile.setText("Adjuntar Archivo");
sendFile.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
sendFileActionPerformed(evt);
}
});
jScrollPane2.setViewportView(mensajes);
jButton2.setText("Emojis");
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});
jScrollPane1.setViewportView(campo1);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jLabel1)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(nick, javax.swing.GroupLayout.PREFERRED_SIZE, 87, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(18, 18, 18)
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 16, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addComponent(ip, javax.swing.GroupLayout.PREFERRED_SIZE, 142, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(layout.createSequentialGroup()
.addComponent(jButton1)
.addGap(106, 106, 106)
.addComponent(sendFile))
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addComponent(jScrollPane1)
.addComponent(jScrollPane2, javax.swing.GroupLayout.DEFAULT_SIZE, 343, Short.MAX_VALUE))
.addGap(18, 18, 18)
.addComponent(jButton2)))
.addContainerGap(47, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel1)
.addComponent(nick, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel2)
.addComponent(ip, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 144, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 15, Short.MAX_VALUE)
.addComponent(jButton2, javax.swing.GroupLayout.PREFERRED_SIZE, 33, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(22, 22, 22))
.addGroup(layout.createSequentialGroup()
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jScrollPane1)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)))
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jButton1)
.addComponent(sendFile))
.addGap(14, 14, 14))
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void formKeyPressed(java.awt.event.KeyEvent evt) {//GEN-FIRST:event_formKeyPressed
System.out.println(evt.getKeyCode());
}//GEN-LAST:event_formKeyPressed
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed
enviarTexto();
//java.net.URL url = getClass().getResource("1.png");
//String mod = mensajes.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img></body></html>" ;
//mensajes.setText(mod);
//mensajes.setText(campo1.getText());
campo1.setText("");
}//GEN-LAST:event_jButton1ActionPerformed
private void sendFileActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_sendFileActionPerformed
datos.setArchivo(true);
datos.setTexto(false);
datos.setIp(ip.getText());
datos.setNick(nick.getText());
try {
int returnValue = jfc.showOpenDialog(null);
String path="";
// int returnValue = jfc.showSaveDialog(null);
if (returnValue == JFileChooser.APPROVE_OPTION) {
File selectedFile = jfc.getSelectedFile();
path = selectedFile.getAbsolutePath();
}
File file = new File(path);
Socket cliente = new Socket("192.168.43.59",2512);//server port
bis = new BufferedInputStream(new FileInputStream(file));
bos = new BufferedOutputStream(cliente.getOutputStream());
//Enviamos el nombre del fichero
DataOutputStream dos = new DataOutputStream(cliente.getOutputStream());
FileInputStream ficheroStream = new FileInputStream(file);
datos.setNameA(file.getName());
//Enviamos el fichero
int tam = (int)file.length();
byteArray = new byte[tam];
ficheroStream.read(byteArray);
datos.setTam(tam);
datos.setArchi(byteArray);
ObjectOutputStream paqueteDatos = new ObjectOutputStream(cliente.getOutputStream());
paqueteDatos.writeObject(datos);
bis.close();
bos.close();
} catch (FileNotFoundException ex) {
Logger.getLogger(test.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(test.class.getName()).log(Level.SEVERE, null, ex);
}
datos.setArchivo(false);
}//GEN-LAST:event_sendFileActionPerformed
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton2ActionPerformed
jPopupMenu1.add(emojis);
jPopupMenu1.setVisible(true);
jPopupMenu1.setLocation(jButton2.getLocationOnScreen());
}//GEN-LAST:event_jButton2ActionPerformed
private void jButton8ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton8ActionPerformed
java.net.URL url = getClass().getResource("3.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton8ActionPerformed
private void emojisMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_emojisMouseClicked
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_emojisMouseClicked
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton3ActionPerformed
java.net.URL url = getClass().getResource("1.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img><p></p></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton3ActionPerformed
private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton4ActionPerformed
java.net.URL url = getClass().getResource("2.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img><p></p></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton4ActionPerformed
private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton5ActionPerformed
java.net.URL url = getClass().getResource("10.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img><p></p></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton5ActionPerformed
private void jButton6ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton6ActionPerformed
java.net.URL url = getClass().getResource("xyz.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img><p></p></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton6ActionPerformed
private void jButton9ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton9ActionPerformed
java.net.URL url = getClass().getResource("4.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img><p></p></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton9ActionPerformed
private void jButton7ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton7ActionPerformed
java.net.URL url = getClass().getResource("12.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img><p></p></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton7ActionPerformed
private void jButton13ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton13ActionPerformed
java.net.URL url = getClass().getResource("9.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img><p></p></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton13ActionPerformed
private void jButton12ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton12ActionPerformed
java.net.URL url = getClass().getResource("5.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img><p></p></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton12ActionPerformed
private void jButton14ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton14ActionPerformed
java.net.URL url = getClass().getResource("7.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img><p></p></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton14ActionPerformed
private void jButton10ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton10ActionPerformed
java.net.URL url = getClass().getResource("6.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img><p></p></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton10ActionPerformed
private void jButton11ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton11ActionPerformed
java.net.URL url = getClass().getResource("8.png");
String mod = campo1.getText().replace("</body>","").replace("</html>","") + "<img src="+url+"></img><p></p></body></html>" ;
campo1.setText(mod);
jPopupMenu1.setVisible(false);
}//GEN-LAST:event_jButton11ActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(test.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(test.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(test.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(test.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
//</editor-fold>
//</editor-fold>
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new test().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JTextPane campo1;
private javax.swing.JPanel emojis;
private javax.swing.JTextField ip;
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton10;
private javax.swing.JButton jButton11;
private javax.swing.JButton jButton12;
private javax.swing.JButton jButton13;
private javax.swing.JButton jButton14;
private javax.swing.JButton jButton2;
private javax.swing.JButton jButton3;
private javax.swing.JButton jButton4;
private javax.swing.JButton jButton5;
private javax.swing.JButton jButton6;
private javax.swing.JButton jButton7;
private javax.swing.JButton jButton8;
private javax.swing.JButton jButton9;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JPopupMenu jPopupMenu1;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JScrollPane jScrollPane2;
private javax.swing.JTextPane mensajes;
private javax.swing.JTextField nick;
private javax.swing.JButton sendFile;
// End of variables declaration//GEN-END:variables
@Override
public void run() {
String [] names = {"1.png","2.png","3.png","4.png","5.png","6.png","7.png","8.png","9.png","10.png","xyz.png","12.png"};
String []lista = {"<html>"," <head>","</head>","<body>","</body>","</html>"};
String data = "";
String data2="";
//si es texto hacer tal
try {
ServerSocket receptor = new ServerSocket(4118);
Socket clienteReceptor = new Socket();
Paquetes paqueteRecibido = new Paquetes();
while (true) {
clienteReceptor=receptor.accept();
ObjectInputStream flujoReceptor = new ObjectInputStream(clienteReceptor.getInputStream());
paqueteRecibido=(Paquetes) flujoReceptor.readObject();
if(paqueteRecibido.isTexto()){
String cadeout = paqueteRecibido.getMensaje();
for(String i : names){
java.net.URL url = getClass().getResource(i);
//System.out.println(campo1.getText().contains(url.toString()));
if(paqueteRecibido.getMensaje().contains(i)){
//System.out.println(i);
cadeout = cadeout.replace(i,url.toString());
}
}
System.out.println(cadeout);
data = cadeout;//recibe
data2 = mensajes.getText();//tenia
for(String i : lista){
data = data.replace(i, "");
data2 = data2.replace(i, "");
//System.out.println(i);
}
//System.out.println(data2);
//data = data.replace("<p style=\"margin-top: 0\">", "<p style=\"margin-top: 0\">");
String mod ="<html>\n<head>\n</head>\n<body>\n"+ data2 +"<p></p>"+ data + "</body>\n</html>" ;
//System.out.println(mod);
mensajes.setText("\n"+mod);
//mensajes.setText(paqueteRecibido.getMensaje());
}
else if(paqueteRecibido.isArchivo()){
//Buffer de 1024 bytes
String name = paqueteRecibido.getNameA();
//convertir byte array a fichero =)
byte []fileArray = new byte[paqueteRecibido.getTam()];
fileArray = paqueteRecibido.getArchi();
FileOutputStream fileOuputStream = new FileOutputStream(name);
fileOuputStream.write(fileArray);
fileOuputStream.close();
}
clienteReceptor.close();
}
} catch (IOException | ClassNotFoundException ex) {
System.err.println(ex.getMessage());
}
}
public void enviarTexto(){
String []lista = {"<html>"," <head>","</head>","<body>","</body>","</html>"};
String [] names = {"1.png","2.png","3.png","4.png","5.png","6.png","7.png","8.png","9.png","10.png","xyz.png","12.png"};
String data = "";
String data2 = "";
datos.setTexto(true);
datos.setArchivo(false);
try {
//aqui
//System.out.println(campo1.getText());
//System.out.println(mensajes.getText());
//System.out.println("------------------------------------------");
data = campo1.getText();//recibe
data2 = mensajes.getText();//tenia
for(String i : lista){
data = data.replace(i, "");
data2 = data2.replace(i, "");
//System.out.println(i);
}
data = data.replace("<p style=\"margin-top: 0\">", "<p style=\"margin-top: 0\">YO:");
String mod ="<html>\n<head>\n</head>\n<body>\n"+ data2 + data + "</body>\n</html>" ;
mensajes.setText(mod);
//System.out.println(mensajes.getText());
String cadeout = campo1.getText();
for(String i : names){
java.net.URL url = getClass().getResource(i);
//System.out.println(campo1.getText().contains(url.toString()));
if(campo1.getText().contains(url.toString())){
System.out.println("entra");
cadeout = cadeout.replace(url.toString(),i);
}
System.out.println(cadeout);
}
//System.out.println(cadeout);
Socket cliente = new Socket("192.168.43.59",2512);//,server ip server port
datos.setIp(ip.getText());
datos.setNick(nick.getText());
//datos.setMensaje(campo1.getText());
datos.setMensaje(cadeout);
ObjectOutputStream paqueteDatos = new ObjectOutputStream(cliente.getOutputStream());
paqueteDatos.writeObject(datos);
paqueteDatos.close();
campo1.setText("");
cliente.close();
} catch (IOException ex) {
System.err.println(ex.getMessage());
}
datos.setTexto(false);
}
}
| [
"noreply@github.com"
] | noreply@github.com |
90d411a3c975f639fa5b2cb211faa12be7efef49 | 1a9baae971ff93219a925ed73ade4d8deda5a9e6 | /other/src/main/java/com/example/demo/javabasics/MyArray.java | 5f65920956f4652606e362283cfbb1aeee826582 | [] | no_license | git197/demo_project | ea1e0816e78449cc82e19d10a3e96c9b2a9d07ff | 1e850e61b61c2d25efa4d4020febaaf5c31365e8 | refs/heads/master | 2020-09-09T10:01:51.697965 | 2019-11-22T03:15:57 | 2019-11-22T03:15:57 | 221,149,207 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 331 | java | package com.example.demo.javabasics;
public class MyArray {
public static void main(String[] args) {
//String 的length()是方法
String ss="s";
System.out.println(ss.length());
//数组的length是属性
String []sarr =new String[3];
System.out.println(sarr.length);
}
}
| [
"wangyi163s@163.com"
] | wangyi163s@163.com |
9f8a003d7027c1f98ed83bbb7eeebf1aebc0a6f9 | 083a9db6d12229899e37e9525623fd6985242df1 | /Dexta/DextaCore/src/Tools/Tools.java | ce03c3a32b798f314a808f17eb257c85d7fc0942 | [] | no_license | callumj/Dexta | a58876087675c87e9202328fbefad79f4ed7adc5 | 8cb4b9dbe892677b8ee6eaa62005fbae3487d888 | refs/heads/master | 2021-01-25T03:27:07.394575 | 2010-11-30T17:51:17 | 2010-11-30T17:51:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,856 | java | package com.dexta.tools;
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class Tools {
private static String convertToHex(byte[] data) {
StringBuffer buf = new StringBuffer();
for (int i = 0; i < data.length; i++) {
int halfbyte = (data[i] >>> 4) & 0x0F;
int two_halfs = 0;
do {
if ((0 <= halfbyte) && (halfbyte <= 9))
buf.append((char) ('0' + halfbyte));
else
buf.append((char) ('a' + (halfbyte - 10)));
halfbyte = data[i] & 0x0F;
} while(two_halfs++ < 1);
}
return buf.toString();
}
public static String SHA1(String text) throws NoSuchAlgorithmException, UnsupportedEncodingException {
MessageDigest md;
md = MessageDigest.getInstance("SHA-1");
byte[] sha1hash = new byte[40];
md.update(text.getBytes("iso-8859-1"), 0, text.length());
sha1hash = md.digest();
return convertToHex(sha1hash);
}
public static String SHA256(String text) throws NoSuchAlgorithmException, UnsupportedEncodingException {
MessageDigest md;
md = MessageDigest.getInstance("SHA-256");
byte[] sha1hash = new byte[40];
md.update(text.getBytes("iso-8859-1"), 0, text.length());
sha1hash = md.digest();
return convertToHex(sha1hash);
}
public static String SHA512(String text) throws NoSuchAlgorithmException, UnsupportedEncodingException {
MessageDigest md;
md = MessageDigest.getInstance("SHA-512");
byte[] sha1hash = new byte[40];
md.update(text.getBytes("iso-8859-1"), 0, text.length());
sha1hash = md.digest();
return convertToHex(sha1hash);
}
} | [
"callum@callumj.com"
] | callum@callumj.com |
ff2c4b0caafe031d8b2e578b46cc18032f48e6ee | 4522399ca306da11ab5be224ee20669c96422e10 | /ictu-edu-api/src/main/java/com/globits/ictuedu/rest/RestTranscriptController.java | 9ef149a7ecab83c704c2fef126b2c0173a1e6d06 | [] | no_license | haiduong07137/itcu_reactjs_xuatfileExcel | 6e05642b12aa55b9b16d3871820cdbb47623680e | 5a17bbe25a31f69d04dcc8a5055da36c98f65790 | refs/heads/master | 2023-01-22T19:14:33.733817 | 2020-12-04T16:12:15 | 2020-12-04T16:12:15 | 318,525,375 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,930 | java | package com.globits.ictuedu.rest;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.util.Date;
import java.util.List;
import java.util.UUID;
import org.joda.time.LocalDateTime;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.data.domain.Page;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.security.access.annotation.Secured;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import com.globits.core.domain.Department;
import com.globits.core.domain.Person;
import com.globits.core.dto.PersonDto;
import com.globits.core.repository.DepartmentRepository;
import com.globits.ictuedu.Constants;
import com.globits.ictuedu.domain.Student;
import com.globits.ictuedu.dto.StudentDto;
import com.globits.ictuedu.dto.TranscriptDto;
import com.globits.ictuedu.dto.searchdto.SearchDto;
import com.globits.ictuedu.dto.searchdto.StudentSearchDto;
import com.globits.ictuedu.dto.searchdto.TranscriptSearchDto;
import com.globits.ictuedu.service.TranscriptService;
import com.globits.ictuedu.service.impl.StudentServiceImpl;
import com.globits.ictuedu.service.impl.TranscriptServiceImpl;
@RestController
@RequestMapping("/api/transcript")
public class RestTranscriptController {
@Autowired
TranscriptServiceImpl transcriptServiceImpl;
@Secured({ Constants.ROLE_ADMIN ,Constants.ROLE_USER, Constants.ROLE_QLSV, Constants.ROLE_QLDT})
@RequestMapping(value = "/searchByPage", method = RequestMethod.POST)
public ResponseEntity<Page<TranscriptDto>> createAgency(@RequestBody TranscriptSearchDto dto) {
Page<TranscriptDto> result = transcriptServiceImpl.searchByPage(dto);
return new ResponseEntity<Page<TranscriptDto>>(result, (result != null) ? HttpStatus.OK : HttpStatus.BAD_REQUEST);
}
@Secured({ Constants.ROLE_ADMIN ,Constants.ROLE_USER, Constants.ROLE_QLSV, Constants.ROLE_QLDT})
@RequestMapping(value = "/getScoreByStudentCode", method = RequestMethod.POST)
public ResponseEntity<Page<TranscriptDto>> createAgency(@RequestBody StudentSearchDto dto) {
Page<TranscriptDto> result = transcriptServiceImpl.getScoreByStudentCode(dto);
return new ResponseEntity<Page<TranscriptDto>>(result, (result != null) ? HttpStatus.OK : HttpStatus.BAD_REQUEST);
}
}
| [
"mrduongno2@gmail.com"
] | mrduongno2@gmail.com |
43924ef123ea785e168261b0f6358e71b4661b1c | fe711416301bdc8fcd798a5c20d7a02f37f61362 | /zwsm/src/com/hzfc/utils/Ztree.java | 57c6b4ae87d2e22af2fc2feba62ddedae014abac | [] | no_license | chaiguolong/javaweb_step1 | e9175521485813c40e763a95629c1ef929405010 | e9e8d3e70fd5d9495b6675c60e35d8ca12eefdc2 | refs/heads/master | 2022-07-07T18:10:59.431906 | 2020-04-28T05:41:51 | 2020-04-28T05:41:51 | 143,223,415 | 1 | 0 | null | 2022-06-21T00:55:31 | 2018-08-02T00:53:40 | Java | UTF-8 | Java | false | false | 2,818 | java | package com.hzfc.utils;
public class Ztree {
private String id;
private String pid;
private String name;
private boolean open;
private boolean isParent;
private String rid;
private int openValue;
private int isParentValue;
private String iconSkin;
private String clickme; //点击行为
private String newme; //新增行为
private String updateme; //修改行为
private String deleteme; //删除行为
public String getClickme() {
return clickme;
}
public void setClickme(String clickme) {
this.clickme = clickme;
}
public String getNewme() {
return newme;
}
public void setNewme(String newme) {
this.newme = newme;
}
public String getUpdateme() {
return updateme;
}
public void setUpdateme(String updateme) {
this.updateme = updateme;
}
public String getDeleteme() {
return deleteme;
}
public void setDeleteme(String deleteme) {
this.deleteme = deleteme;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getPid() {
return pid;
}
public void setPid(String pid) {
this.pid = pid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public boolean isOpen() {
return open;
}
public void setOpen(boolean open) {
this.open = open;
}
public boolean isParent() {
return isParent;
}
public void setParent(boolean isParent) {
this.isParent = isParent;
}
public int getOpenValue() {
return openValue;
}
public void setOpenValue(int openValue) {
this.openValue = openValue;
if(openValue == 1){
this.open = true;
}
else {
this.open = false;
}
}
public int getIsParentValue() {
return isParentValue;
}
public void setIsParentValue(int isParentValue) {
this.isParentValue = isParentValue;
if(isParentValue == 1){
this.isParent = true;
}
else {
this.isParent = false;
}
if(isParentValue == 1){
this.iconSkin = "pIcon01";
}
else {
this.iconSkin = "";
}
}
public String getIconSkin() {
return iconSkin;
}
public void setIconSkin(String iconSkin) {
this.iconSkin = iconSkin;
}
public String getRid() {
return rid;
}
public void setRid(String rid) {
this.rid = rid;
}
}
| [
"584238433@qq.com"
] | 584238433@qq.com |
e61563f6930862cf4fcf32d8055c4470fbed1063 | 8ecf9fed02240dcf2f95172226727bf5c74ca1e8 | /Green_Debug/src/edu/buffalo/cse/green/test/core/Robot.java | db95877721b7502abccf0290b7ba3cf1fa8b38c9 | [] | no_license | wulibing/Green-UML-project | 886b457019b565015093c7600a35e740e3bc2bcd | b0e7dab95a5f77dfb603dc499959c4802f66d6ea | refs/heads/master | 2021-01-17T11:39:14.783939 | 2014-10-06T06:38:26 | 2014-10-06T06:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,990 | java | /* This file is part of Green.
*
* Copyright (C) 2005 The Research Foundation of State University of New York
* All Rights Under Copyright Reserved, The Research Foundation of S.U.N.Y.
*
* Green is free software, licensed under the terms of the Eclipse
* Public License, version 1.0. The license is available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package edu.buffalo.cse.green.test.core;
import java.util.Iterator;
import java.util.List;
import abbot.tester.swt.WidgetTester;
import edu.buffalo.cse.green.PlugIn;
import edu.buffalo.cse.green.editor.DiagramEditor;
import edu.buffalo.cse.green.editor.controller.AbstractPart;
import edu.buffalo.cse.green.editor.controller.RelationshipPart;
import edu.buffalo.cse.green.editor.controller.TypePart;
import edu.buffalo.cse.green.editor.model.AbstractModel;
import edu.buffalo.cse.green.editor.model.TypeModel;
import org.eclipse.draw2d.IFigure;
import org.eclipse.draw2d.PolylineConnection;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.draw2d.geometry.PointList;
import org.eclipse.draw2d.geometry.Rectangle;
import org.eclipse.gef.ui.palette.PaletteViewer;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Tree;
import org.eclipse.swt.widgets.TreeItem;
import org.eclipse.swt.widgets.Widget;
/**
* @author evertwoo
*/
public class Robot extends WidgetTester {
public static final int PALETTE_VSPACING = 20;
/**
* Activates the shortcut menu using the keyboard shortcut.
*
* @param display The display to activate the shortcut on.
*/
public final void actionShortcutMenu(Display display) {
actionKey(SWT.F10 | SWT.SHIFT, display);
}
/**
* Activates a menu item in a context menu. It activates the
* <code>itemPosition</code> <sup>th</sup> item. <br>
* Warning: This method only works on systems where the following is true:
* <br>
* <ul>
* <li>Shift-F10 is the keyboard shortcut for context menu</li>
* <li>The menu wraps over between the first and the last menu item</li>
* <li>The item that will be selected when hitting up right after the
* context menu appears is the last menu item</li>
* </ul>
*
* @param itemPosition
* The position of the menu item (as dictated by the number of
* arrow-down keys that needs to be pressed). The first menu item
* is item 1.
* @param display
*/
public Thread actionShortcutMenuActivate(final int itemPosition, final List<Integer> submenus) {
//Runs the keystrokes in a seperate thread. Replaces the OLD code below.
return new Thread(){
public void run() {
actionKey(SWT.F10|SWT.SHIFT, getDisplay());
// traverse submenus until you get to the menu containing the desired item
for (Iterator iter = submenus.iterator(); iter.hasNext();) {
Integer subMenuPos = (Integer) iter.next();
actionKey(SWT.ARROW_UP, getDisplay());
for (int i = 0; i < subMenuPos.intValue(); i++) {
actionKey(SWT.ARROW_DOWN, getDisplay());
}
actionKey(SWT.CR, getDisplay());
actionKey(SWT.ARROW_RIGHT, getDisplay());
}
// select the desired item
actionKey(SWT.ARROW_UP, getDisplay());
for (int i = 0; i < itemPosition; i++){
actionKey(SWT.ARROW_DOWN, getDisplay());
}
actionKey(SWT.CR, getDisplay());
}
};
}
public void actionJitterMouseAt(Widget widget, int x, int y){
mouseMove(widget, x, y);
mouseMove(widget, x-1, y);
mouseMove(widget, x+1, y);
mouseMove(widget, x, y);
mouseMove(widget, x, y-1);
mouseMove(widget, x, y+1);
mouseMove(widget, x, y);
}
/**
* Clicks on the edit part.
* Knows how to handle <code>TypeEditPart</code> specially.
*
* @param editPart The edit part to click on.
*/
public void actionClick(AbstractPart editPart) {
Point location = getLocation(editPart);
Control control = null;
while (control == null) {
control = editPart.getViewer().getControl();
delay(10);
}
actionClick(control, location.x, location.y);
}
private Control getControl (AbstractPart part) {
Control control = null;
while (control == null) {
control = part.getViewer().getControl();
delay(1);
}
return control;
}
public void jitterMouse(AbstractPart part) {
Control control = getControl(part);
Point location = getLocation(part);
actionJitterMouseAt(control, location.x, location.y);
}
/**
* Clicks on the specified subcomponent of the edit part.
*
* @param editPartToClickOn The edit part which contains the reference <code>Control</code> to click on.
* @param figureSubcomponent The figure on the control to click.
*/
public void actionClick(AbstractPart editPartToClickOn, IFigure figureSubcomponent) {
actionClick(editPartToClickOn.getViewer().getControl(), figureSubcomponent);
}
/**
* Clicks on a figure, relative to the specified reference control.
*
* @param referenceControl The reference control to click on.
* @param figureToClickOn The figure to click on, containing location relative to the specified reference control.
*/
public void actionClick(Control referenceControl, IFigure figureToClickOn){
Rectangle bounds = figureToClickOn.getBounds();
Point center = bounds.getCenter();
actionClick(referenceControl, center.x, center.y);
}
/**
* Convenience for calling actionClick(Widget, int, int) twice.
*
* @see #actionClick(Widget, int, int)
*
* @param widgetToClickOn The widget to click on.
* @param x The x location to click on (relative to the widget).
* @param y The y location to click on (relative to the widget).
*/
public final void actionDoubleClick(Widget widgetToClickOn, int x, int y){
actionClick(widgetToClickOn, x, y);
actionClick(widgetToClickOn, x, y);
}
/**
* Convenience for calling actionClick(Widget) twice.
*
* @see #actionClick(Widget)
*
* @param widgetToClickOn The widget to click on.
*/
public final void actionDoubleClick(Widget widgetToClickOn){
actionClick(widgetToClickOn);
actionClick(widgetToClickOn);
}
/**
* Clicks on a tool in the palette.
*
* @see ConstantsUI
*
* @param tool - the tool as specified in <code>ConstantsUI</code>.
*/
public void actionSelectPaletteTool(Control paletteControl, int tool, Display display) {
actionClick(paletteControl, 5, tool * PALETTE_VSPACING);
waitForIdle(display);
}
/**
* Gets a location on the specified <code>AbstractPart</code> that can be clicked on to select it.
*
* @param editPart The <code>AbstractPart</code> to get the location on.
* @return A location on the edit part to click on to select it.
*/
public Point getLocation(AbstractPart editPart){
// If relationship, just try to click (and hopefully miss any labels)
if (editPart instanceof RelationshipPart) {
RelationshipPart rEditPart = (RelationshipPart) editPart;
PolylineConnection connection = (PolylineConnection) rEditPart.getFigure();
IFigure umlBoxSource = ((AbstractPart) rEditPart.getSource()).getFigure();
IFigure umlBoxTarget = ((AbstractPart) rEditPart.getTarget()).getFigure();
PointList ptList = connection.getPoints();
Point pt1 = null, pt2 = null; // optimal points (bendpoints not hidden by source or target)
Point pt1Backup = null; // transition points
boolean optimal = false;
for (int p = 0; p < ptList.size() - 1; p++) {
Point ptCurrent = ptList.getPoint(p);
Point ptNext = ptList.getPoint(p + 1);
boolean pt1InBoxSource = umlBoxSource.containsPoint(ptCurrent);
boolean pt1InBoxTarget = umlBoxTarget.containsPoint(ptCurrent);
boolean pt2InBoxSource = umlBoxSource.containsPoint(ptNext);
boolean pt2InBoxTarget = umlBoxTarget.containsPoint(ptNext);
if (!(pt1InBoxSource || pt1InBoxTarget)){
pt1 = ptCurrent;
pt2 = ptNext;
optimal = !(pt2InBoxSource || pt2InBoxTarget);
if (optimal){ break; }
}
else if ((pt1InBoxSource && pt2InBoxTarget) ||
(pt2InBoxSource && pt1InBoxTarget)) { // transition points
pt1Backup = ptCurrent;
}
}
if (pt1 == null){ pt1 = pt1Backup; pt2 = pt1Backup; }
return new Point((pt1.x + pt2.x) / 2, (pt1.y + pt2.y) / 2);
}
else if (editPart instanceof TypePart){
// Click on name compartment edit part instead if clicking on TypeEditPart
AbstractModel nameComponentModel = ((TypeModel) editPart.getModel()).getNameCompartmentModel();
AbstractPart nameCompartmentEditPart = editPart.getRootPart().getPartFromModel(nameComponentModel);
// If the map is not initialized, do it the hard way
if (nameCompartmentEditPart == null){
nameCompartmentEditPart = editPart.getRootPart().getPartFromModel(nameComponentModel);
}
// If we can find it
if (nameCompartmentEditPart != null){
editPart = nameCompartmentEditPart;
}
}
return editPart.getFigure().getBounds().getCenter();
}
/**
* Gets the palette control within the specified editor.
*
* @param editor The editor to get the control from.
* @return The palette's control.
*/
public Control getPaletteControl(DiagramEditor editor){
return getPaletteViewer(editor).getControl();
}
/**
* Gets the palette viewer within the specified editor.
*
* @param editor The editor to get the control from.
* @return The palette's viewer.
*/
public PaletteViewer getPaletteViewer(DiagramEditor editor){
return editor.getRootPart().getViewer().getEditDomain().getPaletteViewer();
}
/**
* Expands the tree item on the package explorer.
*
* @param item The tree item to expand.
*/
public void actionExpandTreeItem(TreeItem item) {
WidgetTester.waitForIdle(item.getDisplay());
if (!item.getExpanded()) {
// if this is a item is direct child of the root, do it manually
if (item.getParentItem() == null) {
Tree root = item.getParent();
actionClick(root, 5, 5);
}
else {
int parentX = item.getParentItem().getBounds().x;
int childX = item.getBounds().x;
//TreeItems that are descendent of the root have bounding boxes relative to the label
//Get the left side of the parent's label
//Then get the left side of the parent's icon (- 16 px)
//Then go forward 5 px to get the arrow (+ 5)
actionClick(item, parentX - childX - 11, 5);
}
WidgetTester.waitForIdle(item.getDisplay());
}
}
public Display getDisplay() {
Display display;
display = PlugIn.getDefault().getWorkbench().getDisplay();
if (display == null || display.isDisposed()) {
display = Display.getCurrent();
if (display == null || display.isDisposed()) {
display = Display.getDefault();
if (display == null || display.isDisposed()) {
throw new NullPointerException("Evert Woo exception");
}
}
}
return display;
}
} | [
"wulibing94@gmail.com"
] | wulibing94@gmail.com |
25f53b57c8ff3f7edd2341c5569baaf6adead9c0 | 42eed3a620930cffcd5aa92915bb814082edc2a5 | /src/model/bo/InsertBO.java | ddf633ab501e34f1301933d2dd877c19b5095087 | [] | no_license | ductrinh98/JSP | 1fb02efc50c279e4485fb47ae0a6c30105150ec0 | 61641d02b5d762e63c86f3b4470dd84b496a7b3b | refs/heads/main | 2023-02-24T01:42:07.951361 | 2021-01-26T13:44:24 | 2021-01-26T13:44:24 | 333,097,027 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 443 | java | package model.bo;
import java.sql.SQLException;
import model.bean.SinhVien;
import model.dao.InsertDAO;
public class InsertBO {
InsertDAO insertDAO = new InsertDAO();
public boolean isIdExisting(String maSV) throws ClassNotFoundException, SQLException {
return insertDAO.checkExistingMaSV(maSV);
}
public void InsertSinhVien(SinhVien sinhVien) throws ClassNotFoundException, SQLException {
insertDAO.insertSinhVien(sinhVien);
}
}
| [
"trinhle0120@gmail.com"
] | trinhle0120@gmail.com |
3875869a87bc629b550fb122fd581bcbf13acc4e | e561d6ea521a4d7eee9c96eca671ae6212406309 | /Java/src/codility/TapeEquilibrium.java | ad7714b719e04c6201e07f4b1ee79037d737f179 | [] | no_license | Seungpang/Algorithms | 02a9a9dc3225caf8651c03208334082024deb65f | f7e6c5f28ce3b6509cb91d7aca162f36ae837b82 | refs/heads/master | 2023-08-19T03:30:24.346606 | 2023-08-17T15:50:18 | 2023-08-17T15:50:18 | 176,178,409 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 648 | java | package codility;
public class TapeEquilibrium {
public static void main(String[] args) {
final TapeEquilibrium tapeEquilibrium = new TapeEquilibrium();
int[] A = {3, 1, 2, 4, 3};
System.out.println(tapeEquilibrium.solution(A)); //1
}
public int solution(int[] A) {
int totalSum = 0;
for (int num : A) {
totalSum += num;
}
int result = Integer.MAX_VALUE;
int sum = 0;
for (int i = 0; i < A.length - 1; i++) {
sum += A[i];
result = Math.min(result, Math.abs(sum - (totalSum - sum)));
}
return result;
}
}
| [
"obey1342@gmail.com"
] | obey1342@gmail.com |
31d66d863f3658310704243559bc7b7afbf36b6c | c02ad37700bcd0d5d900a08dfc4a63180d588e45 | /app/src/test/java/com/stark/quizzer/ExampleUnitTest.java | 97b036d9ecc380ce517be711cab1411fd075bacb | [] | no_license | RishabhStark/AllInOneGK | de62733499bf1b41a558048437d5a9af1d7b644a | aa7fbd247e129226f36e2566deb6fc79a47f714c | refs/heads/master | 2023-08-23T09:23:04.139205 | 2021-10-27T13:37:28 | 2021-10-27T13:37:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 378 | java | package com.stark.quizzer;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
} | [
"rishavh408@gmail.com"
] | rishavh408@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.